diff --git a/doc/release-notes.md b/doc/release-notes.md index ddda21de6e4f..b4d058f90309 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -110,22 +110,41 @@ update a masternode list with additional proof data. Read more: https://github.com/dashpay/dips/blob/master/dip-0004.md +Mining +------ +Please note that masternode payments in `getblocktemplate` rpc are now returned as an array and not as +a single object anymore. Make sure to apply corresponding changes to your pool software. + +Also, deterministic masternodes can now set their payout address to a P2SH address. The most common use +case for P2SH is multisig but script can be pretty much anything. If your pool software doesn't recognize +P2SH addresses, the simplest way to fix it is to use `script` field which shows scriptPubKey for each +entry of masternode payments array in `getblocktemplate`. + +And finally, after DIP0003 activation your pool software must be able to produce Coinbase Special +Transaction https://github.com/dashpay/dips/blob/master/dip-0004.md#coinbase-special-transaction. +Use `coinbase_payload` from `getblocktemplate` to get extra payload needed to construct this transaction. + PrivateSend ----------- With further refactoring of PrivateSend code it became possible to implement mixing in few parallel mixing sessions at once from one single wallet. You can set number of mixing sessions via `privatesendsessions` cmd-line option or dash.conf. You can pick any number of sessions between 1 and 10, default is 4 which should be good enough for most users. For this feature to work you should also make -sure that `privatesendmultisession` is set to `1` via cmd-line or `Enable PrivateSend multi-session` is enabled -in GUI. +sure that `privatesendmultisession` is set to `1` via cmd-line or `Enable PrivateSend multi-session` is +enabled in GUI. -Introducing parallel mixing sessions should speed mixing up which makes it's reasonable to add a new +Introducing parallel mixing sessions should speed mixing up which makes it reasonable to add a new mixing denom (0.00100001 DASH) now while keeping all the old ones too. It also makes sense to allow more mixing rounds now, so the new default number of rounds is 4 and the maximum number of rounds is 16 now. You can also adjust rounds and amount via `setprivatesendrounds` and `setprivatesendamount` RPC commands which override corresponding cmd-line params (`privatesendrounds` and `privatesendamount` respectively). +NOTE: Introducing the new denom and a couple of other changes made it incompatible with mixing on +masternodes running on pre-0.13 software. Please keep using 0.12.3 local wallet to mix your coins until +there is some significant number of masternodes running on version 0.13 to make sure you have enough +masternodes to choose from when the wallet picks one to mix funds on. + InstantSend ----------- With further improvements of networking code it's now possible to handle more load, so we are changing @@ -189,10 +208,11 @@ detailed list of fixes. RPC changes ----------- There are a few changes in existing RPC interfaces in this release: -- `gobject prepare` accepts an UTXO reference to spend; -- `masternode status` has DIP0003 related info now; +- `gobject prepare` allows to send proposal transaction as an InstantSend one and also accepts an UTXO reference to spend; +- `masternode status` and `masternode list` show some DIP0003 related info now; - `previousbits` and `coinbase_payload` fields were added in `getblocktemplate`; - `getblocktemplate` now returns an array for masternode payments instead of a single object (miners and mining pools have to upgrade their software to support multiple masternode payees); +- masternode and superblock payments in `getblocktemplate` show payee scriptPubKey in `script` field in addition to payee address in `payee`; - `getblockchaininfo` shows BIP9 deployment progress; - `help command subCommand` should give detailed help for subcommands e.g. `help protx list`; - `compressed` option in `masternode genkey`; @@ -278,6 +298,8 @@ See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.12.3.4. - [`0a086898f`](https://github.com/dashpay/dash/commit/0a086898f) Implement and enforce CbTx with correct block height and deprecate BIP34 ### RPC +- [`a22f1bffe`](https://github.com/dashpay/dash/commit/a22f1bffe) Remove support for "0" as an alternative to "" when the default is requested (#2622) (#2624) +- [`18e1edabf`](https://github.com/dashpay/dash/commit/18e1edabf) Backport 2618 to v0.13.0.x (#2619) - [`0dce846d5`](https://github.com/dashpay/dash/commit/0dce846d5) Add an option to use specific address as a source of funds in protx rpc commands (otherwise use payoutAddress/operatorPayoutAddress) (#2581) - [`e71ea29e6`](https://github.com/dashpay/dash/commit/e71ea29e6) Add ownerAddr and votingAddr to CDeterministicMNState::ToJson (#2571) - [`999a51907`](https://github.com/dashpay/dash/commit/999a51907) Fix optional revocation reason parameter for "protx revoke" and a few help strings (#2568) @@ -332,6 +354,7 @@ See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.12.3.4. - [`ac30196bc`](https://github.com/dashpay/dash/commit/ac30196bc) Show some info about the wallet dumped via dumpwallet (#2191) ### LLMQ and Deterministic Masternodes +- [`a3b01dfbe`](https://github.com/dashpay/dash/commit/a3b01dfbe) Gracefully shutdown on evodb inconsistency instead of crashing (#2611) (#2620) - [`3861c6a82`](https://github.com/dashpay/dash/commit/3861c6a82) Add BIP9 deployment for DIP3 on mainnet (#2585) - [`587911b36`](https://github.com/dashpay/dash/commit/587911b36) Fix IsBlockPayeeValid (#2577) - [`3c30a6aff`](https://github.com/dashpay/dash/commit/3c30a6aff) Add missing masternodeblsprivkey help text (#2569) @@ -517,6 +540,10 @@ See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.12.3.4. - [`d7e210341`](https://github.com/dashpay/dash/commit/d7e210341) Fixes inaccurate round count in CoinControlDialog (#2137) ### Cleanups/Tests/Docs/Other +- [`b5670c475`](https://github.com/dashpay/dash/commit/b5670c475) Set CLIENT_VERSION_IS_RELEASE to true (#2591) +- [`a05eeb21e`](https://github.com/dashpay/dash/commit/a05eeb21e) Update immer to c89819df92191d6969a6a22c88c72943b8e25016 (#2626) +- [`10b3736bd`](https://github.com/dashpay/dash/commit/10b3736bd) [0.13.0.x] Translations201901 (#2592) +- [`34d2a6038`](https://github.com/dashpay/dash/commit/34d2a6038) Release notes 0.13.0.0 draft (#2583) - [`c950a8f51`](https://github.com/dashpay/dash/commit/c950a8f51) Merge v0.12.3.4 commits into develop (#2582) - [`6dfceaba5`](https://github.com/dashpay/dash/commit/6dfceaba5) Force FlushStateToDisk on ConnectTip/DisconnectTip while not in IBD (#2560) - [`552d9089e`](https://github.com/dashpay/dash/commit/552d9089e) Update testnet seeds to point to MNs that are on the new chain (#2558) diff --git a/src/immer/array.hpp b/src/immer/array.hpp index 08a8b0916751..b3ad63e33421 100644 --- a/src/immer/array.hpp +++ b/src/immer/array.hpp @@ -305,7 +305,7 @@ class array array take_move(std::false_type, size_type elems) { return impl_.take(elems); } - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } /* namespace immer */ diff --git a/src/immer/detail/arrays/no_capacity.hpp b/src/immer/detail/arrays/no_capacity.hpp index e056739c35b3..381750cc1142 100644 --- a/src/immer/detail/arrays/no_capacity.hpp +++ b/src/immer/detail/arrays/no_capacity.hpp @@ -24,7 +24,14 @@ struct no_capacity node_t* ptr; size_t size; - static const no_capacity empty; + static const no_capacity& empty() + { + static const no_capacity empty_ { + node_t::make_n(0), + 0, + }; + return empty_; + } no_capacity(node_t* p, size_t s) : ptr{p}, size{s} @@ -37,7 +44,7 @@ struct no_capacity } no_capacity(no_capacity&& other) - : no_capacity{empty} + : no_capacity{empty()} { swap(*this, other); } @@ -181,12 +188,6 @@ struct no_capacity } }; -template -const no_capacity no_capacity::empty = { - node_t::make_n(0), - 0, -}; - } // namespace arrays } // namespace detail } // namespace immer diff --git a/src/immer/detail/arrays/with_capacity.hpp b/src/immer/detail/arrays/with_capacity.hpp index fc97f1f9f4d2..79f97ad4c95c 100644 --- a/src/immer/detail/arrays/with_capacity.hpp +++ b/src/immer/detail/arrays/with_capacity.hpp @@ -27,7 +27,15 @@ struct with_capacity size_t size; size_t capacity; - static const with_capacity empty; + static const with_capacity& empty() + { + static const with_capacity empty_ { + node_t::make_n(1), + 0, + 1 + }; + return empty_; + } with_capacity(node_t* p, size_t s, size_t c) : ptr{p}, size{s}, capacity{c} @@ -46,7 +54,7 @@ struct with_capacity } with_capacity(with_capacity&& other) - : with_capacity{empty} + : with_capacity{empty()} { swap(*this, other); } @@ -285,13 +293,6 @@ struct with_capacity } }; -template -const with_capacity with_capacity::empty = { - node_t::make_n(1), - 0, - 1, -}; - } // namespace arrays } // namespace detail } // namespace immer diff --git a/src/immer/detail/hamts/champ.hpp b/src/immer/detail/hamts/champ.hpp index fb5c9bb6f974..11c3435c145b 100644 --- a/src/immer/detail/hamts/champ.hpp +++ b/src/immer/detail/hamts/champ.hpp @@ -33,7 +33,14 @@ struct champ node_t* root; size_t size; - static const champ empty; + static const champ& empty() + { + static const champ empty_ { + node_t::make_inner_n(0), + 0, + }; + return empty_; + } champ(node_t* r, size_t sz) : root{r}, size{sz} @@ -47,7 +54,7 @@ struct champ } champ(champ&& other) - : champ{empty} + : champ{empty()} { swap(*this, other); } @@ -387,7 +394,7 @@ struct champ node->values()[!offset]); } else { assert(shift == 0); - return empty.root->inc(); + return empty().root->inc(); } } } @@ -463,12 +470,6 @@ struct champ } }; -template -const champ champ::empty = { - node_t::make_inner_n(0), - 0, -}; - } // namespace hamts } // namespace detail } // namespace immer diff --git a/src/immer/detail/rbts/operations.hpp b/src/immer/detail/rbts/operations.hpp index e07a3dabfee6..3d54e92fa40b 100644 --- a/src/immer/detail/rbts/operations.hpp +++ b/src/immer/detail/rbts/operations.hpp @@ -15,6 +15,7 @@ #include #include +#include #include #include @@ -1959,9 +1960,9 @@ struct concat_merger_mut from_data + from_offset + to_copy, data + to_offset_); else - uninitialized_move(from_data + from_offset, - from_data + from_offset + to_copy, - data + to_offset_); + detail::uninitialized_move(from_data + from_offset, + from_data + from_offset + to_copy, + data + to_offset_); } to_offset_ += to_copy; from_offset += to_copy; diff --git a/src/immer/detail/rbts/rbtree.hpp b/src/immer/detail/rbts/rbtree.hpp index d4f3bcf9a01a..c6b39aa160e3 100644 --- a/src/immer/detail/rbts/rbtree.hpp +++ b/src/immer/detail/rbts/rbtree.hpp @@ -35,13 +35,22 @@ struct rbtree node_t* root; node_t* tail; - static const rbtree empty; + static const rbtree& empty() + { + static const rbtree empty_ { + 0, + BL, + node_t::make_inner_n(0u), + node_t::make_leaf_n(0u) + }; + return empty_; + } template static auto from_initializer_list(std::initializer_list values) { auto e = owner_t{}; - auto result = rbtree{empty}; + auto result = rbtree{empty()}; for (auto&& v : values) result.push_back_mut(e, v); return result; @@ -51,7 +60,7 @@ struct rbtree static auto from_range(Iter first, Iter last) { auto e = owner_t{}; - auto result = rbtree{empty}; + auto result = rbtree{empty()}; for (; first != last; ++first) result.push_back_mut(e, *first); return result; @@ -60,7 +69,7 @@ struct rbtree static auto from_fill(size_t n, T v) { auto e = owner_t{}; - auto result = rbtree{empty}; + auto result = rbtree{empty()}; while (n --> 0) result.push_back_mut(e, v); return result; @@ -79,7 +88,7 @@ struct rbtree } rbtree(rbtree&& other) - : rbtree{empty} + : rbtree{empty()} { swap(*this, other); } @@ -235,7 +244,7 @@ struct rbtree { if (size != other.size) return false; if (size == 0) return true; - return (size <= branches + return (size <= branches || make_regular_sub_pos(root, shift, tail_offset()).visit( equals_visitor{}, other.root)) && make_leaf_sub_pos(tail, tail_size()).visit( @@ -415,7 +424,7 @@ struct rbtree { auto tail_off = tail_offset(); if (new_size == 0) { - return empty; + return empty(); } else if (new_size >= size) { return *this; } else if (new_size > tail_off) { @@ -434,7 +443,7 @@ struct rbtree assert(new_root->check(new_shift, new_size - get<2>(r))); return { new_size, new_shift, new_root, new_tail }; } else { - return { new_size, BL, empty.root->inc(), new_tail }; + return { new_size, BL, empty().root->inc(), new_tail }; } } } @@ -444,7 +453,7 @@ struct rbtree auto tail_off = tail_offset(); if (new_size == 0) { // todo: more efficient? - *this = empty; + *this = empty(); } else if (new_size >= size) { return; } else if (new_size > tail_off) { @@ -471,7 +480,7 @@ struct rbtree root = new_root; shift = new_shift; } else { - root = empty.root->inc(); + root = empty().root->inc(); shift = BL; } dec_leaf(tail, size - tail_off); @@ -515,14 +524,6 @@ struct rbtree } }; -template -const rbtree rbtree::empty = { - 0, - BL, - node_t::make_inner_n(0), - node_t::make_leaf_n(0) -}; - } // namespace rbts } // namespace detail } // namespace immer diff --git a/src/immer/detail/rbts/rrbtree.hpp b/src/immer/detail/rbts/rrbtree.hpp index 5766cffc50b7..f18de3528e4d 100644 --- a/src/immer/detail/rbts/rrbtree.hpp +++ b/src/immer/detail/rbts/rrbtree.hpp @@ -42,13 +42,22 @@ struct rrbtree node_t* root; node_t* tail; - static const rrbtree empty; + static const rrbtree& empty() + { + static const rrbtree empty_ { + 0, + BL, + node_t::make_inner_n(0u), + node_t::make_leaf_n(0u) + }; + return empty_; + } template static auto from_initializer_list(std::initializer_list values) { auto e = owner_t{}; - auto result = rrbtree{empty}; + auto result = rrbtree{empty()}; for (auto&& v : values) result.push_back_mut(e, v); return result; @@ -58,7 +67,7 @@ struct rrbtree static auto from_range(Iter first, Iter last) { auto e = owner_t{}; - auto result = rrbtree{empty}; + auto result = rrbtree{empty()}; for (; first != last; ++first) result.push_back_mut(e, *first); return result; @@ -67,7 +76,7 @@ struct rrbtree static auto from_fill(size_t n, T v) { auto e = owner_t{}; - auto result = rrbtree{empty}; + auto result = rrbtree{empty()}; while (n --> 0) result.push_back_mut(e, v); return result; @@ -86,7 +95,7 @@ struct rrbtree } rrbtree(rrbtree&& other) - : rrbtree{empty} + : rrbtree{empty()} { swap(*this, other); } @@ -519,7 +528,7 @@ struct rrbtree { auto tail_off = tail_offset(); if (new_size == 0) { - *this = empty; + *this = empty(); } else if (new_size >= size) { return; } else if (new_size > tail_off) { @@ -546,7 +555,7 @@ struct rrbtree root = new_root; shift = new_shift; } else { - root = empty.root->inc(); + root = empty().root->inc(); shift = BL; } dec_leaf(tail, size - tail_off); @@ -560,7 +569,7 @@ struct rrbtree { auto tail_off = tail_offset(); if (new_size == 0) { - return empty; + return empty(); } else if (new_size >= size) { return *this; } else if (new_size > tail_off) { @@ -579,7 +588,7 @@ struct rrbtree assert(new_root->check(new_shift, new_size - get<2>(r))); return { new_size, new_shift, new_root, new_tail }; } else { - return { new_size, BL, empty.root->inc(), new_tail }; + return { new_size, BL, empty().root->inc(), new_tail }; } } } @@ -591,21 +600,21 @@ struct rrbtree if (elems == 0) { return; } else if (elems >= size) { - *this = empty; + *this = empty(); } else if (elems == tail_off) { dec_inner(root, shift, tail_off); shift = BL; - root = empty.root->inc(); + root = empty().root->inc(); size -= elems; return; } else if (elems > tail_off) { auto v = slice_left_mut_visitor(); tail = get<1>(make_leaf_sub_pos(tail, size - tail_off).visit( v, elems - tail_off, e)); - if (root != empty.root) { + if (root != empty().root) { dec_inner(root, shift, tail_off); shift = BL; - root = empty.root->inc(); + root = empty().root->inc(); } size -= elems; return; @@ -624,14 +633,14 @@ struct rrbtree if (elems == 0) { return *this; } else if (elems >= size) { - return empty; + return empty(); } else if (elems == tail_offset()) { - return { size - elems, BL, empty.root->inc(), tail->inc() }; + return { size - elems, BL, empty().root->inc(), tail->inc() }; } else if (elems > tail_offset()) { auto tail_off = tail_offset(); auto new_tail = node_t::copy_leaf(tail, elems - tail_off, size - tail_off); - return { size - elems, BL, empty.root->inc(), new_tail }; + return { size - elems, BL, empty().root->inc(), new_tail }; } else { using std::get; auto v = slice_left_visitor(); @@ -947,9 +956,9 @@ struct rrbtree } else if (tail_size + r.size <= branches) { l.ensure_mutable_tail(el, tail_size); if (r.tail->can_mutate(er)) - uninitialized_move(r.tail->leaf(), - r.tail->leaf() + r.size, - l.tail->leaf() + tail_size); + detail::uninitialized_move(r.tail->leaf(), + r.tail->leaf() + r.size, + l.tail->leaf() + tail_size); else std::uninitialized_copy(r.tail->leaf(), r.tail->leaf() + r.size, @@ -960,9 +969,9 @@ struct rrbtree auto remaining = branches - tail_size; l.ensure_mutable_tail(el, tail_size); if (r.tail->can_mutate(er)) - uninitialized_move(r.tail->leaf(), - r.tail->leaf() + remaining, - l.tail->leaf() + tail_size); + detail::uninitialized_move(r.tail->leaf(), + r.tail->leaf() + remaining, + l.tail->leaf() + tail_size); else std::uninitialized_copy(r.tail->leaf(), r.tail->leaf() + remaining, @@ -1150,10 +1159,11 @@ struct rrbtree void hard_reset() { assert(supports_transient_concat); - size = empty.size; - shift = empty.shift; - root = empty.root; - tail = empty.tail; + auto&& empty_ = empty(); + size = empty_.size; + shift = empty_.shift; + root = empty_.root; + tail = empty_.tail; } bool check_tree() const @@ -1192,27 +1202,28 @@ struct rrbtree } #if IMMER_DEBUG_PRINT - void debug_print() const + void debug_print(std::ostream& out) const { - std::cerr + out << "--" << std::endl << "{" << std::endl << " size = " << size << std::endl << " shift = " << shift << std::endl << " root = " << std::endl; - debug_print_node(root, shift, tail_offset()); - std::cerr << " tail = " << std::endl; - debug_print_node(tail, endshift, tail_size()); - std::cerr << "}" << std::endl; + debug_print_node(out, root, shift, tail_offset()); + out << " tail = " << std::endl; + debug_print_node(out, tail, endshift, tail_size()); + out << "}" << std::endl; } - void debug_print_indent(unsigned indent) const + void debug_print_indent(std::ostream& out, unsigned indent) const { while (indent --> 0) - std::cerr << ' '; + out << ' '; } - void debug_print_node(node_t* node, + void debug_print_node(std::ostream& out, + node_t* node, shift_t shift, size_t size, unsigned indent = 8) const @@ -1220,36 +1231,39 @@ struct rrbtree const auto indent_step = 4; if (shift == endshift) { - debug_print_indent(indent); - std::cerr << "- {" << size << "} " - << pretty_print_array(node->leaf(), size) - << std::endl; + debug_print_indent(out, indent); + out << "- {" << size << "} " + << pretty_print_array(node->leaf(), size) + << std::endl; } else if (auto r = node->relaxed()) { auto count = r->d.count; - debug_print_indent(indent); - std::cerr << "# {" << size << "} " - << pretty_print_array(r->d.sizes, r->d.count) - << std::endl; + debug_print_indent(out, indent); + out << "# {" << size << "} " + << pretty_print_array(r->d.sizes, r->d.count) + << std::endl; auto last_size = size_t{}; - for (auto i = 0; i < count; ++i) { - debug_print_node(node->inner()[i], + for (auto i = count_t{}; i < count; ++i) { + debug_print_node(out, + node->inner()[i], shift - B, r->d.sizes[i] - last_size, indent + indent_step); last_size = r->d.sizes[i]; } } else { - debug_print_indent(indent); - std::cerr << "+ {" << size << "}" << std::endl; + debug_print_indent(out, indent); + out << "+ {" << size << "}" << std::endl; auto count = (size >> shift) + (size - ((size >> shift) << shift) > 0); if (count) { - for (auto i = 0; i < count - 1; ++i) - debug_print_node(node->inner()[i], + for (auto i = count_t{}; i < count - 1; ++i) + debug_print_node(out, + node->inner()[i], shift - B, 1 << shift, indent + indent_step); - debug_print_node(node->inner()[count - 1], + debug_print_node(out, + node->inner()[count - 1], shift - B, size - ((count - 1) << shift), indent + indent_step); @@ -1259,14 +1273,6 @@ struct rrbtree #endif // IMMER_DEBUG_PRINT }; -template -const rrbtree rrbtree::empty = { - 0, - BL, - node_t::make_inner_n(0u), - node_t::make_leaf_n(0u) -}; - } // namespace rbts } // namespace detail } // namespace immer diff --git a/src/immer/flex_vector.hpp b/src/immer/flex_vector.hpp index 77313267b13f..e2ddea24e9a7 100644 --- a/src/immer/flex_vector.hpp +++ b/src/immer/flex_vector.hpp @@ -441,8 +441,8 @@ class flex_vector const impl_t& impl() const { return impl_; } #if IMMER_DEBUG_PRINT - void debug_print() const - { impl_.debug_print(); } + void debug_print(std::ostream& out=std::cerr) const + { impl_.debug_print(out); } #endif private: @@ -494,7 +494,7 @@ class flex_vector static flex_vector concat_move(std::false_type, const flex_vector& l, const flex_vector& r) { return l.impl_.concat(r.impl_); } - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } // namespace immer diff --git a/src/immer/flex_vector_transient.hpp b/src/immer/flex_vector_transient.hpp index 19c088d9bd10..0d6e50aae1ef 100644 --- a/src/immer/flex_vector_transient.hpp +++ b/src/immer/flex_vector_transient.hpp @@ -226,7 +226,7 @@ class flex_vector_transient : impl_(std::move(impl)) {} - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } // namespace immer diff --git a/src/immer/map.hpp b/src/immer/map.hpp index 553bfcd54495..53d450b6835f 100644 --- a/src/immer/map.hpp +++ b/src/immer/map.hpp @@ -305,7 +305,7 @@ class map : impl_(std::move(impl)) {} - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } // namespace immer diff --git a/src/immer/set.hpp b/src/immer/set.hpp index 0de09614d3d5..9f2b0b301df4 100644 --- a/src/immer/set.hpp +++ b/src/immer/set.hpp @@ -155,7 +155,7 @@ class set : impl_(std::move(impl)) {} - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } // namespace immer diff --git a/src/immer/vector.hpp b/src/immer/vector.hpp index f808a3242f70..296431fb0ae6 100644 --- a/src/immer/vector.hpp +++ b/src/immer/vector.hpp @@ -306,8 +306,8 @@ class vector const impl_t& impl() const { return impl_; } #if IMMER_DEBUG_PRINT - void debug_print() const - { flex_t{*this}.debug_print(); } + void debug_print(std::ostream& out=std::cerr) const + { flex_t{*this}.debug_print(out); } #endif private: @@ -346,7 +346,7 @@ class vector vector take_move(std::false_type, size_type elems) { return impl_.take(elems); } - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } // namespace immer diff --git a/src/immer/vector_transient.hpp b/src/immer/vector_transient.hpp index 3d6f2fd6f1bc..4cf81f07114a 100644 --- a/src/immer/vector_transient.hpp +++ b/src/immer/vector_transient.hpp @@ -183,7 +183,7 @@ class vector_transient : impl_(std::move(impl)) {} - impl_t impl_ = impl_t::empty; + impl_t impl_ = impl_t::empty(); }; } // namespace immer diff --git a/src/qt/dashstrings.cpp b/src/qt/dashstrings.cpp index 7fe00c06893d..174d6b6de20c 100644 --- a/src/qt/dashstrings.cpp +++ b/src/qt/dashstrings.cpp @@ -72,6 +72,12 @@ QT_TRANSLATE_NOOP("dash-core", "" "Enable multiple PrivateSend mixing sessions per block, experimental (0-1, " "default: %u)"), QT_TRANSLATE_NOOP("dash-core", "" +"Enable publish raw transactions of attempted InstantSend double spend in " +"
"), +QT_TRANSLATE_NOOP("dash-core", "" +"Enable publish transaction hashes of attempted InstantSend double spend in " +"
"), +QT_TRANSLATE_NOOP("dash-core", "" "Enable use of automated PrivateSend for funds stored in this wallet (0-1, " "default: %u)"), QT_TRANSLATE_NOOP("dash-core", "" @@ -174,6 +180,9 @@ QT_TRANSLATE_NOOP("dash-core", "" "Override spork address. Only useful for regtest and devnet. Using this on " "mainnet or testnet will ban you."), QT_TRANSLATE_NOOP("dash-core", "" +"Overrides minimum spork signers to change spork value. Only useful for " +"regtest and devnet. Using this on mainnet or testnet will ban you."), +QT_TRANSLATE_NOOP("dash-core", "" "Please check that your computer's date and time are correct! If your clock " "is wrong, %s will not work properly."), QT_TRANSLATE_NOOP("dash-core", "" @@ -261,6 +270,8 @@ QT_TRANSLATE_NOOP("dash-core", "" "Use N separate masternodes for each denominated input to mix funds (%u-%u, " "default: %u)"), QT_TRANSLATE_NOOP("dash-core", "" +"Use N separate masternodes in parallel to mix funds (%u-%u, default: %u)"), +QT_TRANSLATE_NOOP("dash-core", "" "Use UPnP to map the listening port (default: 1 when listening and no -proxy)"), QT_TRANSLATE_NOOP("dash-core", "" "Use hierarchical deterministic key generation (HD) after BIP39/BIP44. Only " @@ -327,6 +338,9 @@ QT_TRANSLATE_NOOP("dash-core", "" "mode. This will redownload the entire blockchain"), QT_TRANSLATE_NOOP("dash-core", "" "You need to rebuild the database using -reindex-chainstate to change -txindex"), +QT_TRANSLATE_NOOP("dash-core", "" +"You should specify a masternodeblsprivkey in the configuration. Please see " +"documentation for help."), QT_TRANSLATE_NOOP("dash-core", "%s corrupt, salvage failed"), QT_TRANSLATE_NOOP("dash-core", "%s is not a valid backup folder!"), QT_TRANSLATE_NOOP("dash-core", "%s is set very high!"), @@ -382,7 +396,6 @@ QT_TRANSLATE_NOOP("dash-core", "Enable publish raw block in
"), QT_TRANSLATE_NOOP("dash-core", "Enable publish raw transaction (locked via InstantSend) in
"), QT_TRANSLATE_NOOP("dash-core", "Enable publish raw transaction in
"), QT_TRANSLATE_NOOP("dash-core", "Enable the client to act as a masternode (0-1, default: %u)"), -QT_TRANSLATE_NOOP("dash-core", "Enable transaction replacement in the memory pool (default: %u)"), QT_TRANSLATE_NOOP("dash-core", "Entries are full."), QT_TRANSLATE_NOOP("dash-core", "Entry exceeds maximum size."), QT_TRANSLATE_NOOP("dash-core", "Error initializing block database"), @@ -431,8 +444,9 @@ QT_TRANSLATE_NOOP("dash-core", "Invalid -proxy address: '%s'"), QT_TRANSLATE_NOOP("dash-core", "Invalid amount for -%s=: '%s'"), QT_TRANSLATE_NOOP("dash-core", "Invalid amount for -fallbackfee=: '%s'"), QT_TRANSLATE_NOOP("dash-core", "Invalid amount for -paytxfee=: '%s' (must be at least %s)"), -QT_TRANSLATE_NOOP("dash-core", "Invalid input count."), +QT_TRANSLATE_NOOP("dash-core", "Invalid masternodeblsprivkey. Please see documenation."), QT_TRANSLATE_NOOP("dash-core", "Invalid masternodeprivkey. Please see documenation."), +QT_TRANSLATE_NOOP("dash-core", "Invalid minimum number of spork signers specified with -minsporkkeys"), QT_TRANSLATE_NOOP("dash-core", "Invalid netmask specified in -whitelist: '%s'"), QT_TRANSLATE_NOOP("dash-core", "Invalid port detected in masternode.conf"), QT_TRANSLATE_NOOP("dash-core", "Invalid script detected."), @@ -517,6 +531,7 @@ QT_TRANSLATE_NOOP("dash-core", "Session timed out."), QT_TRANSLATE_NOOP("dash-core", "Set database cache size in megabytes (%d to %d, default: %d)"), QT_TRANSLATE_NOOP("dash-core", "Set key pool size to (default: %u)"), QT_TRANSLATE_NOOP("dash-core", "Set maximum block size in bytes (default: %d)"), +QT_TRANSLATE_NOOP("dash-core", "Set the masternode BLS private key"), QT_TRANSLATE_NOOP("dash-core", "Set the masternode private key"), QT_TRANSLATE_NOOP("dash-core", "Set the number of threads to service RPC calls (default: %d)"), QT_TRANSLATE_NOOP("dash-core", "Show all debugging options (usage: --help -help-debug)"), @@ -550,6 +565,7 @@ QT_TRANSLATE_NOOP("dash-core", "This is the minimum transaction fee you pay on e QT_TRANSLATE_NOOP("dash-core", "This is the transaction fee you will pay if you send a transaction."), QT_TRANSLATE_NOOP("dash-core", "Threshold for disconnecting misbehaving peers (default: %u)"), QT_TRANSLATE_NOOP("dash-core", "Too many %f denominations, removing."), +QT_TRANSLATE_NOOP("dash-core", "Too many %f denominations, skipping."), QT_TRANSLATE_NOOP("dash-core", "Tor control port password (default: empty)"), QT_TRANSLATE_NOOP("dash-core", "Tor control port to use if onion listening enabled (default: %s)"), QT_TRANSLATE_NOOP("dash-core", "Transaction amount too small"), diff --git a/src/qt/locale/dash_ar.ts b/src/qt/locale/dash_ar.ts index 5f588b8305f1..ab75ea0c0a8e 100644 --- a/src/qt/locale/dash_ar.ts +++ b/src/qt/locale/dash_ar.ts @@ -3,7 +3,7 @@ AddressBookPage Right-click to edit address or label - انقر بالزر الايمن لتعديل العنوان + انقر بالزر الايمن لتعديل العنوان Create a new address @@ -43,7 +43,7 @@ Choose the address to send coins to - اختر العنوان الذي سترسل له العملات + اختر العنوان الذي إرسال له العملات Choose the address to receive coins with @@ -55,7 +55,7 @@ Sending addresses - عناوين الإرسال + عناوين إرسال Receiving addresses @@ -79,7 +79,7 @@ &Edit - تعديل + تعديل Export Address List @@ -189,7 +189,7 @@ IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. Previous backups of the unencrypted wallet file contain the same HD seed and still have full access to all your funds just like the new, encrypted wallet. - مهم:يجب استبدال أي نسخ احتياطية سابقة قمت بها من ملف المحفظة بملف المحفظة المشفر حديثًا. تحتوي النسخ الاحتياطية السابقة لملف المحفظة غير المشفرة على نفس البذرة عالية الدقة ، ولا تزال تتمتع بالوصول الكامل إلى جميع أموالك مثل المحفظة الجديدة المشفرة. + مهم:يجب استبدال أي نسخ احتياطية سابقة قمت بها من ملف المحفظة ملف المحفظة المشفر حديثًا. تحتوي النسخ الاحتياطية السابقة ملف المحفظة غير المشفرة على نفس البذرة عالية الدقة ، ولا تزال تتمتع بالوصول الكامل إلى جميع أموالك مثل المحفظة الجديدة المشفرة. 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. @@ -263,15 +263,15 @@ Show general overview of wallet - إظهار نظرة عامة على المحفظة + إظهار نظرة عموما على المحفظة &Send - ارسل + إرسال Send coins to a Dash address - ارسل عملات الى عنوان داش + إرسال عملات الى عنوان داش &Receive @@ -483,7 +483,7 @@ Show the %1 help message to get a list with possible Dash command-line options - عرض رسالة المساعدة%1 للحصول على قائمة مع خيارات سطر أوامر داش المحتملة + عرض رسالة مساعدة%1 للحصول على قائمة مع خيارات سطر أوامر داش المحتملة %1 client @@ -503,11 +503,11 @@ &Settings - الاعدادات + الإعدادات &Tools - أدوات + الأدوات &Help @@ -531,7 +531,7 @@ Synchronizing with network... - جار المزامنة مع الشبكة ... + التزامن مع الشبكة... Indexing blocks on disk... @@ -652,7 +652,7 @@ ClientModel Total: %1 (PS compatible: %2 / Enabled: %3) - الإجمالي: %1 (متوافق مع بس: %2 / ممكن: %3) + المجموع: %1 (متوافق مع بس: %2 / ممكن: %3) Network Alert @@ -793,6 +793,10 @@ Please switch to "List mode" to use this function. يرجى التبديل إلى "وضع قائمة" لاستخدام هذه الوظيفة. + + Non-anonymized input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-anonymized inputs first and then check the PrivateSend checkbox again. + الإدخال غير المجهول المحدد. <b>سيتم تعطيل الإرسال المخفي . </b><br><br>إذا كنت لا تزال ترغب في استخدام الإرسال المخفي ، فيرجى إلغاء تحديد كافة مدخلات غير المجهولة أولاً ثم تحقق من خانة الاختيار الإرسال المخفي مرة أخرى. + (%1 locked) (%1 مقفل) @@ -960,13 +964,17 @@ Reset all settings changed in the GUI - اعد تعديل جميع النظم المتغيرة في GUI + اعد تعديل جميع الإعدادات المتغيرة في GUI PrivateSend information معلومات الإرسال المخفي - + + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>أساسيات الإرسال المخفي </h3> يمنحك الإرسال المخفي الخصوصية المالية الحقيقية عن طريق حجب أصول أموالك. تتألف جميع داش في محفظتك من "مدخلات" مختلفة يمكنك التفكير فيها على أنها عملات معدنية منفصلة ومنفصلة. <br>يستخدم الإرسال المخفي عملية مبتكرة لخلط مدخلات الخاصة بك مع مدخلات شخصين آخرين ، دون أن تترك العملات المعدنية الخاصة بك من أي وقت مضى محفظتك. أنت تحتفظ بالسيطرة على أموالك في جميع الأوقات.<hr> <b> تعمل عملية الإرسال المخفي على النحو التالي: </b><ol type="1"><li>يبدأ الإرسال المخفي عن طريق كسر مدخلات الخاصة بالمعاملات إلى فئات قياسية. هذه الفئات هي 0.001 داش ، 0.01 داش ، 0.1 داش ، 1 داش و 10 داش - نوع من مثل النقود الورقية التي تستخدمها كل يوم. </li> عندئذٍ ترسل محفظتك طلبات إلى عقد برامج تم تكوينها خصيصًا على الشبكة ، تُسمى "ماسترنود". يتم إخبار هذه الألفاظ بأنك مهتم بخلط فئة معينة. يتم إرسال أي معلومات يمكن تحديدها إلى جميع ماسترنود ، لذلك لا يعرفون أبدا "من" أنت<li> <li> عندما يرسل شخصان آخران رسائل مشابهة ، تشير إلى أنهما يرغبان في خلط نفس المذهب ، تبدأ جلسة الخلط. يمزج متاسترنود يصل مدخلات ويكلف محافظ المستخدمين الثلاثة لدفع مدخلات تحولت الآن إلى أنفسهم. تدفع محفظتك تلك التسمية مباشرة لنفسها ، ولكن في عنوان مختلف (يسمى عنوان التغيير). <li></li> من أجل حجب أموالك بشكل كامل ، يجب أن تكرر محفظتك هذه العملية عدة مرات مع كل فئة. في كل مرة يتم الانتهاء من العملية ، يطلق عليها "جولة". كل جولة من الإرسال المخفي تجعل من الصعب بشكل كبير تحديد المكان الذي نشأت فيه أموالك.</li> <li> تحدث عملية الاختلاط هذه في الخلفية دون أي تدخل من جانبك. عندما ترغب في إجراء معاملة ، ستكون أموالك مجهولة المصدر بالفعل. مطلوب أي انتظار إضافي. </li></ol><hr><b>مهم </b> تحتوي محفظتك فقط على 1000 من "عناوين التغيير" هذه. في كل مرة يحدث فيها حدث خلط ، يتم استخدام ما يصل إلى 9 عناوين من عناوينك. هذا يعني أن 1000 عنوان تدوم لحوالي 100 حدث خلط. عند استخدام 900 منهم ، يجب أن تنشئ محفظتك المزيد من العناوين. يمكن فقط القيام بذلك ، ومع ذلك ، إذا قمت بتمكين النسخ الاحتياطي التلقائي.<br> وبالتالي ، سيتم تعطيل الإرسال المخفي أيضًا للمستخدمين الذين لديهم نسخ احتياطية معطلة.<hr> لمزيد من المعلومات ، راجع<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html"> وثائق الإرسال المخفي </a> + + Intro @@ -1003,9 +1011,13 @@ %1 GB of free space available - يتوفر %1 جيغابايت من المساحة المتاحة + يتوفر %1 جيغابايت من المساحة متاح + + + (of %1 GB needed) + (على %1 جيغابايت محتاجة) - + MasternodeList @@ -1096,17 +1108,81 @@ Node Count: عدد نود + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>ملاحظة: تمثل هذه القائمة قائمة ماسترنود القديمة وغير المحددة. وهو نشط فقط طالما أن DIP3 لم يتم تنشيطه بالكامل. بعد تنشيط SPORK15 ، ستكون هذه القائمة فارغة.</p></body></html> + + + DIP3 Masternodes + DIP3 ماسترنود + + + PoSe Score + نقاط PoSe + + + Registered + مسجل + + + Last Paid + آخر دفع + + + Next Payment + الدفع المقبل + + + Operator Reward + مكافأة المشغل + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>ملاحظة: هذه القائمة ليست نشطة حتى الآن ولأغراض المعلومات فقط. لا تزال الشبكة قيد التشغيل في وضع التوافق ، مما يعني أن قائمة ماسترنود غير الحتمية لا تزال نشطة. فقط بعد تنشيط SPORK15 ، ستصبح هذه القائمة نشطة. أيضًا ، لا يتم استخدام القيم في الحقول المرتبطة بالدفع في الوقت الحالي ، ولكن لا تزال محدّثة لكل كتلة. يرجى تجاهل هذا حتى تفعيل SPORK15.</p></body></html> + Start alias بدأ الإسم المستعار - Confirm masternode start - تأكيد بداية ماسترنود + Copy ProTx Hash + نسخ ProTx Hash + + + Copy Collateral Outpoint + نسخ نقطة خارجية - Are you sure you want to start masternode %1? - هل أنت متأكد أنك تريد بدء ماسترنود %1؟ + ENABLED + مفعل + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + غير مغروف + + + to %1 + %1 إلى + + + to UNKNOWN + إلى غير معرف + + + but not claimed + ولكن لم تطالب + + + NONE + لا شيء + + + Confirm masternode start + تأكيد بداية ماسترنود Confirm all masternodes start @@ -1118,7 +1194,7 @@ Command is not available right now - الأمر غير متوفر الآن + الأمر غير متاح الآن You can't use this command until masternode list is synced @@ -1164,6 +1240,10 @@ Sentinel الحارس + + Additional information for DIP3 Masternode %1 + معلومات إضافية عن DIP3 ماسترنود %1 + ModalOverlay @@ -1279,7 +1359,7 @@ Show Masternodes Tab - إظهار جدول ماسترنود + إضهار شريط ماسترنود Show additional information and buttons for PrivateSend on overview screen. @@ -1303,7 +1383,7 @@ Enable PrivateSend &multi-session - تمكين الإرسال المخفي جلسة متعددة + تمكين الإرسال المخفي متعددة الجلسة If you disable the spending of unconfirmed change, the change from a transaction<br/>cannot be used until that transaction has at least one confirmation.<br/>This also affects how your balance is computed. @@ -1311,7 +1391,7 @@ PrivateSend rounds to use - جولات لإستعمال الإرسال المخفي + الإرسال المخفي و جولات للاستخدام This amount acts as a threshold to turn off PrivateSend once it's reached. @@ -1343,7 +1423,7 @@ Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items.<br/>%s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - عناوين التابعة لجهات خارجية (مثل مستكشف كتلة) التي تظهر في علامة تبويب المعاملات كعناصر قائمة السياق <br/> يتم استبدال %s في عنوان بتجزئة المعاملة. عناوين متعددة مفصولة بشريط عمودي. + عناوين التابعة لجهات خارجية (مثل مستكشف كتلة) التي تظهر في علامة شريط المعاملات كعناصر قائمة السياق <br/> يتم استبدال %s في عنوان بتجزئة المعاملة. عناوين متعددة مفصولة بشريط عمودي. Expert @@ -1367,11 +1447,19 @@ Enable coin &control features - تفعيل ميزات التحكم في العملة + تمكين ميزات التحكم في العملة + + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + إظهار النوافذ المنبثقة للنظام لـ الإرسال المخفي معاملات المزج <br/> تمامًا مثل جميع أنواع المعاملات الأخرى. + + + Show popups for PrivateSend transactions + إظهار النوافذ المنبثقة لمعاملات الإرسال المخفي &Spend unconfirmed change - دفع الفكة غير المؤكدة + اقضي على تغيير غير مؤكد &Network @@ -1379,7 +1467,7 @@ Map port using &UPnP - ربط المنفذ باستخدام UPnP + ميناء الخريطة باستخدام UPnP Proxy &IP: @@ -1431,11 +1519,11 @@ &Hide the icon from the system tray. - إخفاء الرمز من علبة النظام + إإخفاء الأيقونة من علبة النظام Hide tray icon - رمز علبة اخفاء + إخفاء الأيقونة Show only a tray icon after minimizing the window. @@ -1455,21 +1543,21 @@ User Interface &language: - واجهة المستخدم &اللغة: + لغة واجهة المستخدم: The user interface language can be set here. This setting will take effect after restarting %1. - يمكن تعيين لغة واجهة المستخدم هنا. سيتم تفعيل هذا الإعداد بعد إعادة تشغيل%1. + يمكن تعيين لغة واجهة للمستخدم هنا. سيتم تفعيل هذا الإعداد بعد إعادة تشغيل%1. Language missing or translation incomplete? Help contributing translations here: https://www.transifex.com/projects/p/dash/ - لغة مفقودة أو ترجمة غير مكتملة؟ ساعد في المساهمة بالترجمات هنا: + لغة مفقودة أو ترجمة غير مكتملة؟ مساعدة في المساهمة بالترجمات هنا: https://www.transifex.com/projects/p/dash/ User Interface Theme: - موضوع واجهة المستخدم: + موضوع جهة التعامل للمستخدم: &Unit to show amounts in: @@ -1477,7 +1565,7 @@ https://www.transifex.com/projects/p/dash/ Choose the default subdivision unit to show in the interface and when sending coins. - اختر وحدة التقسيم الفرعية الافتراضية للعرض في الواجهة وعند إرسال العملات. + اختر وحدة التقسيم الفرعية الافتراضية للعرض في جهة التعامل وعند إرسال العملات. Decimal digits @@ -1548,7 +1636,7 @@ https://www.transifex.com/projects/p/dash/ Available: - متوفر + متاح Your current spendable balance @@ -1556,15 +1644,15 @@ https://www.transifex.com/projects/p/dash/ 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 @@ -1588,11 +1676,11 @@ https://www.transifex.com/projects/p/dash/ Your current total balance - رصيدك الكلي الحالي + مجموع رصيدك الحالي Current total balance in watch-only addresses - الرصيد الإجمالي الحالي في العناوين المشاهدة فقط + مجموع الرصيد الحالي في العناوين المشاهدة فقط Watch-only: @@ -1732,7 +1820,7 @@ https://www.transifex.com/projects/p/dash/ Denominated inputs have %5 of %n rounds on average - تبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسط + تبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة المدخلات المقومة %5 من %n من الجولات في المتوسطتبلغ قيمة مدخلات المقومة %5 من %n من الجولات في المتوسط keys left: %1 @@ -1750,6 +1838,10 @@ https://www.transifex.com/projects/p/dash/ We are about to create a new automatic backup for you, however <span style='color:red;'> you should always make sure you have backups saved in some safe place</span>! نحن على وشك إنشاء نسخة احتياطية تلقائية جديدة لك <span style='color:red;'>يجب عليك دائمًا التأكد من الاحتفاظ بنسخ احتياطية في مكان آمن </span>! + + Note: You can turn this message off in options. + ملاحظة: يمكنك إيقاف تشغيل هذه الرسالة. + WARNING! Something went wrong on automatic backup تحذير! حدث خطأ ما في النسخ الاحتياطي التلقائي @@ -1780,17 +1872,13 @@ https://www.transifex.com/projects/p/dash/ آخر رسالة ابإرسال المخفي - - N/A - غير معروف - PrivateSend was successfully reset. تم اعادة ضبط الإرسال المخفي بنجاح .. If you don't want to see internal PrivateSend fees/transactions select "Most Common" as Type on the "Transactions" tab. - إذا كنت لا ترغب في رؤية رسوم / معاملات الإرسال المخفي الداخلي حدد "الأكثر شيوعًا" كأنواع في علامة التبويب "المعاملات". + إذا كنت لا ترغب في رؤية رسوم / معاملات الإرسال المخفي الداخلي حدد "الأكثر شيوعًا" كأنواع في علامة شريط "المعاملات". PrivateSend requires at least %1 to use. @@ -2078,7 +2166,7 @@ https://www.transifex.com/projects/p/dash/ General - عام + عموما Name @@ -2162,7 +2250,7 @@ https://www.transifex.com/projects/p/dash/ Totals - المجاميع + المجموع Received @@ -2370,7 +2458,7 @@ https://www.transifex.com/projects/p/dash/ Type <b>help</b> for an overview of available commands. - نوع <b>مساعدة</b>للحصول على نظرة عامة على الأوامر المتاحة. + نوع <b>مساعدة</b>للحصول على نظرة عامة على الأوامر متاح. 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. @@ -2642,7 +2730,7 @@ https://www.transifex.com/projects/p/dash/ Inputs... - المدخلات... + مدخلات... automatically selected @@ -2706,7 +2794,7 @@ https://www.transifex.com/projects/p/dash/ collapse fee-settings - خفض اعدادات الرسوم + خفض الإعدادات الرسوم Confirmation time target: @@ -2726,7 +2814,7 @@ https://www.transifex.com/projects/p/dash/ If the custom fee is set to 1000 duffs and the transaction is only 250 bytes, then "per kilobyte" only pays 250 duffs in fee,<br />while "total at least" pays 1000 duffs. For transactions bigger than a kilobyte both pay by kilobyte. - إذا تم تعيين الرسوم الجمركية على 1000 دافع وكانت المعاملة 250 بايتًا فقط ، فإن "كل كيلوبايت" يدفع 250 جنيهًا فقط رسومًا ، <br /> بينما "الإجمالي على الأقل" يدفع 1000 دفين. لمعاملات أكبر من كيلوبايت تدفع كل من كيلوبايت. + إذا تم تعيين الرسوم الجمركية على 1000 دافع وكانت المعاملة 250 بايتًا فقط ، فإن "كل كيلوبايت" يدفع 250 جنيهًا فقط رسومًا ، <br /> بينما "المجموع على الأقل" يدفع 1000 دفين. لمعاملات أكبر من كيلوبايت تدفع كل من كيلوبايت. Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks.<br />But be aware that this can end up in a never confirming transaction once there is more demand for dash transactions than the network can process. @@ -2742,7 +2830,7 @@ https://www.transifex.com/projects/p/dash/ total at least - مجموع على الأقل + المجموع على الأقل (read the tooltip) @@ -2838,7 +2926,7 @@ https://www.transifex.com/projects/p/dash/ any available funds (not anonymous) - أي أموال متاحة (غير مجهولة) + أي أموال متاح (غير مجهولة) and InstantSend @@ -2858,7 +2946,7 @@ https://www.transifex.com/projects/p/dash/ Total Amount = <b>%1</b><br />= %2 - مجمود المبلغ = <b> %1</b> <br /> = %2 + المجموع المبلغ = <b> %1</b> <br /> = %2 <b>(%1 of %2 entries displayed)</b> @@ -3146,7 +3234,7 @@ https://www.transifex.com/projects/p/dash/ Private key for the entered address is not available. - المفتاح الخاص للعنوان المدخل غير موجود. + المفتاح الخاص للعنوان المدخل غير متاح. Message signing failed. @@ -3315,11 +3403,11 @@ https://www.transifex.com/projects/p/dash/ Total debit - إجمالي الخصم + المجموع الخصم Total credit - إجمالي الرصيد + المجموع الرصيد Transaction fee @@ -3347,7 +3435,7 @@ https://www.transifex.com/projects/p/dash/ Transaction total size - الحجم الكلي للمعاملات + المجموع الكلي للمعاملات Merchant @@ -3367,7 +3455,7 @@ https://www.transifex.com/projects/p/dash/ Inputs - المدخلات + مدخلات Amount @@ -3441,7 +3529,7 @@ https://www.transifex.com/projects/p/dash/ Immature (%1 confirmations, will be available after %2) - غير ناضجة (تأكيدات %1 ، ستكون متوفرة بعد %2) + غير متاح (تأكيدات %1 ، ستكون متوفرة بعد %2) This block was not received by any other nodes and will probably not be accepted! @@ -3485,7 +3573,7 @@ https://www.transifex.com/projects/p/dash/ PrivateSend Make Collateral Inputs - الإرسال المخفي جعل المدخلات الجانبية + الإرسال المخفي جعل مدخلات الجانبية PrivateSend Create Denominations @@ -3523,6 +3611,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. ما إذا كان العنوان المشاهدة فقط متضمنًا في هذه المعاملة أم لا. + + Whether or not this transaction was locked by InstantSend. + ما إذا كانت هذه المعاملة مقفلة بواسطة الإرسال الفوري أم لا. + User-defined intent/purpose of the transaction. هدف / غرض محدد من قبل المستخدم للمعاملات. @@ -3538,6 +3630,14 @@ https://www.transifex.com/projects/p/dash/ All الكل + + Locked by InstantSend + مغلق من الإرسال الفوري + + + Not locked by InstantSend + غير مغلق من الإرسال الفوري + Today اليوم @@ -3580,7 +3680,7 @@ https://www.transifex.com/projects/p/dash/ PrivateSend Make Collateral Inputs - الإرسال المخفي جعل المدخلات الجانبية + الإرسال المخفي جعل مدخلات الجانبية PrivateSend Create Denominations @@ -3737,7 +3837,7 @@ https://www.transifex.com/projects/p/dash/ Used way too many inputs (>%1) for this InstantSend transaction, fees could be huge. - تستخدم طريقة إدخال كثيرة (>%1) لهذه المعاملة الإرسال الفوري ، قد تكون الرسوم كبيرة + تستخدم طريقة إدخال مدخلات (>%1) لهذه المعاملة الإرسال الفوري ، قد تكون الرسوم كبيرة @@ -3811,7 +3911,7 @@ https://www.transifex.com/projects/p/dash/ Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - تعيين عدد سلاسل عمليات التحقق من البرنامج النصي (%u إلى %d ، 0 = auto ، <0 = ترك العديد من النوى خالية ، الافتراضي: %d) + عدد مؤشرات التحقق من البرنامج النصي (%u إلى %d ، 0 = auto ، <0 = ترك العديد من النوى خالية ، الافتراضي: %d) This is a pre-release test build - use at your own risk - do not use for mining or merchant applications @@ -3827,7 +3927,7 @@ https://www.transifex.com/projects/p/dash/ You must specify a masternodeprivkey in the configuration. Please see documentation for help. - يجب عليك تحديد masternodeprivkey في التكوين. يرجى الاطلاع على الوثائق للمساعدة. + يجب عليك تحديد masternodeprivkey في التكوين. يرجى الاطلاع على الوثائق مساعدة. Accept command line and JSON-RPC commands @@ -3951,7 +4051,7 @@ https://www.transifex.com/projects/p/dash/ 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. استخدم [host]: تدوين المنفذ لـ IPv6. يمكن تحديد هذا الخيار عدة مرات (افتراضي: ربط لجميع الواجهات) + ربط عنوان معين للاستماع إلى اتصالات JSON-RPC. استخدم [host]: تدوين المنفذ لـ IPv6. يمكن تحديد هذا الخيار عدة مرات (افتراضي: ربط لجميع جهة النعامل) Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) @@ -3961,6 +4061,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup حذف جميع معاملات المحفظة واسترداد فقط تلك الأجزاء من سلسلة الكتل عبر -escan عند بدء التشغيل + + Enable publish raw transactions of attempted InstantSend double spend in <address> + تمكين نشر المعاملات الأولية لمحاولات الإرسال الفوري للإنفاق الفوري في <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + تمكين تجزئات عمليات النشر لمحاولة الإرسال الفوري ومضاعفة إنفاق فيها <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet حدث خطأ أثناء تحميل %s: لا يمكنك تمكين HD في محفظة غير عالية موجودة بالفعل @@ -4001,6 +4109,14 @@ https://www.transifex.com/projects/p/dash/ Number of seconds to keep misbehaving peers from reconnecting (default: %u) عدد الثواني للاحتفاظ بسوء تصرف الأقران من إعادة الاتصال (الإعداد الافتراضي: %u) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + يلغي الحد الأدنى من مواقع السبات لتغيير قيمة السِلك. مفيدة فقط ل regtest و devnet. استخدام هذا على mainnet أو testnet سيحظر لك. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + استخدم N ماسترنود منفصلة بالتوازي مع خلط الصناديق (%u-%u ، القيمة الافتراضية: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) استخدام وكيل SOCKS5 منفصل للوصول إلى الأقران عبر خدمات تور المخفية (القيمة الافتراضية: %s) @@ -4021,6 +4137,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex تحتاج إلى إعادة بناء قاعدة البيانات باستخدام -reindex-chainstate لتغيير -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + يجب عليك تحديد مفتاح ماسترنود في التكوين. يرجى الاطلاع على الوثائق للمساعدة. + (default: %s) (القيمة الافتراضية: %s) @@ -4133,6 +4253,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) مبلغ غير صالح لـ -paytxfee = : '%s' <amount> (يجب أن يكون على الأقل %s) + + Invalid masternodeblsprivkey. Please see documenation. + غير صالحة ماسترنود. يرجى الاطلاع على الوثائق. + + + Invalid minimum number of spork signers specified with -minsporkkeys + الحد الأدنى لعدد مميّزي مواقع السبط المحدد + Keypool ran out, please call keypoolrefill first ركض خارج ، يرجى الاتصال الأولى @@ -4233,6 +4361,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) تعيين حجم تجمع مفتاح <n> (افتراضي: %u) + + Set the masternode BLS private key + تعيين المفتاح الخاص ماسترنود الخاص + Set the number of threads to service RPC calls (default: %d) تعيين عدد مؤشرات الترابط لخدمة المكالمات RPC (الافتراضي: %d) @@ -4297,6 +4429,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. عدد كبير جدًا من %f فئة ، إزالة. + + Too many %f denominations, skipping. + عدد أكبر من %f من الطوائف ، تخطي. + Tor control port password (default: empty) كلمة مرور منفذ تحكم تور (القيمة الافتراضية: فارغة) @@ -4393,6 +4529,10 @@ https://www.transifex.com/projects/p/dash/ Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) تعطيل جميع وظائف داش المحددة (ماسترنود ، الإرسال المخفي ، الإرسال الفوري ، الحوكمة) (0-1 ، القيمة الافتراضية: %u) + + %s file contains all private keys from this wallet. Do not share it with anyone! + يحتوي ملف %s على جميع المفاتيح الخاصة من هذه المحفظة. لا تشاركه مع أي شخص! + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) اكتشاف عناوين IP الخاصة (الافتراضي: 1 عند الاستماع وعدم وجود - أو "خضوع") @@ -4417,6 +4557,10 @@ https://www.transifex.com/projects/p/dash/ Execute command when a wallet InstantSend transaction is successfully locked (%s in cmd is replaced by TxID) تنفيذ الأمر عند قفل معاملة الإرسال الفوري في المحفظة بنجاح (يتم استبدال %s في cmd بـ TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + معاملات إضافية للاحتفاظ بالذاكرة لإعادة إنشاء الكتل المضغوطة (الافتراضي: %u) + Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this. فشل إنشاء نسخة احتياطية ، يوجد ملف بالفعل! قد يحدث هذا إذا أعدت تشغيل المحفظة في أقل من 60 ثانية. يمكنك الاستمرار إذا كنت على ما يرام مع هذا. @@ -4495,7 +4639,11 @@ https://www.transifex.com/projects/p/dash/ Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. - إجمالي طول سلسلة إصدار الشبكة (%i) يتجاوز الحد الأقصى للطول (%i). تقليل عدد أو حجم + المجموع طول سلسلة إصدار الشبكة (%i) يتجاوز الحد الأقصى للطول (%i). تقليل عدد أو حجم + + + Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. + لا يمكن تعطيل فهرس المعاملات في الوضع الكامل. إما أن تبدأ مع مفتاح تبديل سطر الأوامر أو تمكين فهرس المعاملة. Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) @@ -4529,6 +4677,10 @@ https://www.transifex.com/projects/p/dash/ Warning: Unknown block versions being mined! It's possible unknown rules are in effect تحذير: يتم نسخ إصدارات الحظر غير المعروفة! من المحتمل أن تكون قواعد غير معروفة سارية المفعول + + You are starting in lite mode, all Dash-specific functionality is disabled. + أنت تبدأ في الوضع البسيط ، يتم تعطيل جميع وظائف داش المحددة. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain تحتاج إلى إعادة إنشاء قاعدة البيانات باستخدام -reindex للعودة إلى الوضعية الغير مجردة. هذا سوف يعيد تحميل سلسلة الكتل بأكملها @@ -4573,6 +4725,14 @@ https://www.transifex.com/projects/p/dash/ Enable publish hash block in <address> تمكين حظر التجزئة في <address> + + Enable publish hash of governance objects (like proposals) in <address> + تمكين نشر التجزئة من كائنات الحوكمة (مثل المقترحات) في <address> + + + Enable publish hash of governance votes in <address> + تمكين نشر التجزئة من أصوات الحكم في <address> + Enable publish hash transaction (locked via InstantSend) in <address> تمكين عملية التجزئة المنشورة (مؤمنة عبر الإرسال الفوري) في <address> @@ -4593,10 +4753,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> تمكين نشر المعاملة الأولية في <address> - - Enable transaction replacement in the memory pool (default: %u) - تمكين استبدال المعاملة في تجمع الذاكرة (الافتراضي: %u) - Error: A fatal internal error occurred, see debug.log for details خطأ: حدث خطأ داخلي فادح، راجع debug.log للحصول على التفاصيل @@ -4613,6 +4769,14 @@ https://www.transifex.com/projects/p/dash/ Failed to delete backup, error: %s أخفق حذف النسخة الاحتياطية ، الخطأ: %s + + Failed to load InstantSend data cache from + أخفق تحميل ذاكرة التخزين المؤقت لبيانات الإرسال الفوري + + + Failed to load sporks cache from + فشل تحميل ذاكرة التخزين المؤقت + Failed to parse host:port string فشل تحليل المضيف: سلسلة المنفذ @@ -4649,6 +4813,10 @@ https://www.transifex.com/projects/p/dash/ Line: %d سطر: %d + + Loading InstantSend data cache... + جارٍ تحميل ذاكرة التخزين المؤقت لبيانات الإرسال الفوري ... + Loading addresses... تحميل العنوان @@ -4661,6 +4829,10 @@ https://www.transifex.com/projects/p/dash/ Loading governance cache... جارٍ تحميل ذاكرة التخزين المؤقتة ... + + Loading sporks cache... + جارٍ تحميل ذاكرة التخزين المؤقت ... + Loading wallet... (%3.2f %%) جارٍ تحميل المحفظة ... (%3.2f %%) @@ -4723,7 +4895,7 @@ https://www.transifex.com/projects/p/dash/ Not enough file descriptors available. - لا تتوفر واصفات ملفات كافية. + لا تتوفر واصفات ملف متاح. Not enough funds to anonymize. @@ -4801,6 +4973,10 @@ https://www.transifex.com/projects/p/dash/ Transaction must have at least one recipient يجب أن تحتوي المعاملة على مستلم واحد على الأقل + + Transaction too large + الصفقة كبيرة جدا + Trying to connect... تحاول الاتصال... @@ -4821,6 +4997,10 @@ https://www.transifex.com/projects/p/dash/ Wallet debugging/testing options: خيارات تصحيح / اختبار المحفظة: + + Wallet is not initialized + لم تتم تهيئة المحفظة + Wallet needed to be rewritten: restart %s to complete يلزم إعادة كتابة المحفظة: إعادة تشغيل %s لإكمال العملية @@ -4837,13 +5017,17 @@ https://www.transifex.com/projects/p/dash/ Whether to operate in a blocks only mode (default: %u) ما إذا كان سيتم العمل في وضع الكتل فقط (الإعداد الافتراضي: %u) + + You can not start a masternode in lite mode. + لا يمكنك بدء تشغيل ماسترنود في الوضع البسيط. + ZeroMQ notification options: خيارات إعلام ZeroMQ: no mixing available. - لا خلط المتاحة. + لا خلط متاح. see debug.log for details. @@ -4875,7 +5059,7 @@ https://www.transifex.com/projects/p/dash/ Distributed under the MIT software license, see the accompanying file %s or %s - موزعة تحت ترخيص برنامج MIT ، راجع الملف المرافق %s أو %s + موزعة تحت ترخيص برنامج MIT ، راجع ملف المرافق %s أو %s Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. @@ -4895,7 +5079,7 @@ https://www.transifex.com/projects/p/dash/ 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) + المجموع الأقصى للرسوم (في %s) لاستخدامها في معاملة محفظة واحدة أو معاملة أولية ؛ قد يؤدي تعيين هذا منخفض جدًا إلى إحباط المعاملات الكبيرة (الإعداد الافتراضي: %s) Override spork address. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. @@ -4927,7 +5111,7 @@ https://www.transifex.com/projects/p/dash/ 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. @@ -5063,7 +5247,7 @@ https://www.transifex.com/projects/p/dash/ Print this help message and exit - اطبع رسالة المساعدة هذه واخرج منها + اطبع رسالة مساعدة هذه واخرج منها Receive and display P2P network alerts (default: %u) @@ -5143,7 +5327,7 @@ https://www.transifex.com/projects/p/dash/ Synchronization pending... - التزامن في انتظار ... + التزامن في طور الإنجاز... Synchronizing governance objects... @@ -5155,7 +5339,7 @@ https://www.transifex.com/projects/p/dash/ The source code is available from %s. - شفرة المصدر متاحة من %s. + شفرة المصدر متاح من %s. The transaction amount is too small to pay the fee diff --git a/src/qt/locale/dash_bg.ts b/src/qt/locale/dash_bg.ts index 1d417f656b16..02125799dd90 100644 --- a/src/qt/locale/dash_bg.ts +++ b/src/qt/locale/dash_bg.ts @@ -971,8 +971,8 @@ PrivateSend информация - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>PrivateSend основни понятия</h3> PrivateSend ви дава истинска финансова независимост чрез скриване произхода на средствата ви. Всички Dash монети в портфейла ви са съставени от различни "входове" които можете да приемете като отделни дискретни монети<br> PrivateSend използва иновативен процес като смесва вашите входове с входовете на други двама души без монетите да напускат изобщо портфейла ви. Имате пълен контрол върху парите си през цялото време. <hr> <b> PrivateSend процесът работи по следния начин:</b><ol type="1"> <li>PrivateSend започва чрез разделяне на транзакцията ви до стандартни деноминации. Тези деноминации са 0.01 DASH, 0.1 DASH, 1 DASH и 10 DASH --подобно на стандартните пари, които ползваме ежедневно.</li> <li>Вашия портфейл изпраща запитване към специално конфигурираните софтуерни възли в мрежата, наречени "masternodes." Тези masternodes са информирани, че се интересувате от смесване на определена деноминация. Никаква идентификационна информация не се изпраща към masternodes, така, че те никога не знаят "кой" сте.</li> <li>Когато други двама души изпратят подобни съобщения, обозначаващи, че искат да смесят същата деноминация, смесващата сесия започва. Masternode смесват входовете и инструктират портфейлите на тримата потребители да платят новотрансформираните входове обратно към притежателите им. Вашият портфейл плаща деноминацията директно на себе си, но с различен адрес (наричан сменен адрес). </li> <li>С цел напълно скриване на доходите ви, вашият портфейл трябва да повтори този процес няколко пъти във всяка деноминация. Всеки път завършеният процес се нарича "цикъл." Всеки цикъл на PrivateSend прави откриването на първоначалния източник на вашите средства напълно непроследим.</li> <li>Този смесващ процес се случва като процес на заден фон без никаква намеса от ваша страна. Когато искате да направите транзакция, вашите средства са винаги анонимни. Не е необходимо допълнително изчакване. </li> </ol> <hr><b>ВАЖНО:</b> Вашият портфейл съдържа само 1000 от тези "сменяеми адреси". Всеки път когато се случва смесването до 9 от вашите адреси се ползват. Това означава, че тези 1000 адреси се миксират в около 100 смесващи събития. Когато 900 се използват, вашия портфейл трябва да създаде повече адреси. Това може да стане само ако имате автоматично архивиране.<br> Следователно, потребителите, на които е изключено автоматичното архивиране, нямат и PrivateSend включено. <hr>За повече информация вижте <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">документацията за PrivateSend</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>PrivateSend основни понятия</h3> PrivateSend ви дава истинска финансова независимост чрез скриване произхода на средствата ви. Всички Dash монети в портфейла ви са съставени от различни "входове" които можете да приемете като отделни дискретни монети<br> PrivateSend използва иновативен процес като смесва вашите входове с входовете на други двама души без монетите да напускат изобщо портфейла ви. Имате пълен контрол върху парите си през цялото време. <hr> <b> PrivateSend процесът работи по следния начин:</b><ol type="1"> <li>PrivateSend започва чрез разделяне на транзакцията ви до стандартни деноминации. Тези деноминации са 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH и 10 DASH --подобно на стандартните пари, които ползваме ежедневно.</li> <li>Вашия портфейл изпраща запитване към специално конфигурираните софтуерни възли в мрежата, наречени "masternodes." Тези masternodes са информирани, че се интересувате от смесване на определена деноминация. Никаква идентификационна информация не се изпраща към masternodes, така, че те никога не знаят "кой" сте.</li> <li>Когато други двама души изпратят подобни съобщения, обозначаващи, че искат да смесят същата деноминация, смесващата сесия започва. Masternode смесват входовете и инструктират портфейлите на тримата потребители да платят новотрансформираните входове обратно към притежателите им. Вашият портфейл плаща деноминацията директно на себе си, но с различен адрес (наричан сменен адрес). </li> <li>С цел напълно скриване на доходите ви, вашият портфейл трябва да повтори този процес няколко пъти във всяка деноминация. Всеки път завършеният процес се нарича "цикъл." Всеки цикъл на PrivateSend прави откриването на първоначалния източник на вашите средства напълно непроследим.</li> <li>Този смесващ процес се случва като процес на заден фон без никаква намеса от ваша страна. Когато искате да направите транзакция, вашите средства са винаги анонимни. Не е необходимо допълнително изчакване. </li> </ol> <hr><b>ВАЖНО:</b> Вашият портфейл съдържа само 1000 от тези "сменяеми адреси". Всеки път когато се случва смесването до 9 от вашите адреси се ползват. Това означава, че тези 1000 адреси се миксират в около 100 смесващи събития. Когато 900 се използват, вашия портфейл трябва да създаде повече адреси. Това може да стане само ако имате автоматично архивиране.<br> Следователно, потребителите, на които е изключено автоматичното архивиране, нямат и PrivateSend включено. <hr>За повече информация вижте <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">документацията за PrivateSend</a>. @@ -1108,10 +1108,78 @@ Node Count: Брой възли: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Бележка: Този списък представя наследения и недетерминистичен masternode списък . Той е активен само докато DIP3 не е напълно активиран. След активирането на SPORK15 този списък ще бъде празен.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + PoSe резултат + + + Registered + Регистриран + + + Last Paid + Последно плащане + + + Next Payment + Следващо плащане + + + Operator Reward + Награда на оператора + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Забележка: Този списък все още не е активен и e само за информационни цели. Мрежата все още работи в режим на съвместимост, което означава, че недетерминистичният masternode списък все още е активен. Само след активирането на SPORK15 този списък ще стане активен. Също така, стойностите в полетата, свързани с плащане, са неизползваеми в момента, но все пак се актуализират за всеки блок. Моля, игнорирайте това до активирането на SPORK15.</p></body></html> + Start alias Стартиране псевдоним + + Copy ProTx Hash + Копирай ProTx Hash + + + Copy Collateral Outpoint + Копирай Collateral Outpoint + + + ENABLED + ВКЛЮЧЕН + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + НЕИЗВЕСТЕН + + + to %1 + до %1 + + + to UNKNOWN + към НЕИЗВЕСТЕН + + + but not claimed + но неизискан + + + NONE + НИЩО + Confirm masternode start Потвърден старт на masternode @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Допълнителна информация за DIP3 Masternode %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Активиране &контролните функции на монетата + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Показване на изскачащи системни прозорци при PrivateSend миксирани транзакции<br/>както за всички други видове транзакции. + + + Show popups for PrivateSend transactions + Показване на изскачащи прозорци за PrivateSend транзакции + &Spend unconfirmed change &Изхарчете непотвърденото ресто @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Последно PrivateSend съобщение: - - N/A - N/A - PrivateSend was successfully reset. PrivateSend беше успешно нулиран. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Дали има или не наблюдаван/watch-only адрес участващ в тази транзакция. + + Whether or not this transaction was locked by InstantSend. + Дали тази транзакция е била заключена чрез InstantSend. + User-defined intent/purpose of the transaction. Дефинирани от потребителя намерение/цели на сделката. @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Всички + + Locked by InstantSend + Заключена чрез InstantSend + + + Not locked by InstantSend + Не е заключена чрез InstantSend + Today Днес @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Изтриване на всички транзакции на портфейла и възстановява само тези части на блок веригата чрез -rescan при стартиране + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Включване публикуване на сурови транзакции при опит за двойно похарчване с InstantSend в <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Включване публикуването хеша на транзакция при опит за двойно похарчване с InstantSend в <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Грешка при зареждане %s: Не може да включите HD на вече съществуващ не-HD портфейл @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Изходяща информация за грешки (по подразбиране: %u, задаването на <category> е опция) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Отменя се минималният брой ауторизатори на spork за промяна на стойността на spork. Полезно само за regtest и devnet. Използването на това в mainnet или testnet ще ви изхвърли от мрежата. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Използвай N броя различни masternodes в паралел за миксиране на средства (%u-%u, по подразбиране: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Използва отделен SOCKS5 прокси, за достигне на пиъри чрез Tor скрити услуги (по подразбиране: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Нужно е възстановяване на базата данни, използвайте -reindex-chainstate за промяна на -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Трябва да укажете masternodeblsprivkey в конфигурацията. Моля вижте документацията за помощ. + (default: %s) (по подразбиране: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Невалидна сума за -paytxfee=<amount>: '%s' (трябва да бъде най-малко %s) + + Invalid masternodeblsprivkey. Please see documenation. + Невалиден masternodeblsprivkey. Моля вижте документацията. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Невалиден минимален брой ауторизатори на spork определен с -minsporkkeys + Keypool ran out, please call keypoolrefill first Keypool изтече, моля поискайте първо keypoolrefill @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Задайте максимален брой на генерираните ключове до <n> (по подразбиране: %u) + + Set the masternode BLS private key + Задаване на masternode BLS частен ключ + Set the number of threads to service RPC calls (default: %d) Задай брой заявки обслужващи процеса RPC повикванията (по подразбиране: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Твърде много %f деноминации, премахване. + + Too many %f denominations, skipping. + Твърде много %f деноминации, прескочи. + Tor control port password (default: empty) Tor контролира паролата на порта (по подразбиране: празно) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Включва публикуване на необранотена транзакция в <address> - - Enable transaction replacement in the memory pool (default: %u) - Включва подмяна на транзакциите в memory pool (по подразниране: %u) - Error: A fatal internal error occurred, see debug.log for details Грешка: Възникна сериозна вътрешна грешка, виж debug.log за подробности @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Невалидно количество за -fallbackfee=<amount>: '%s' - - Invalid input count. - Невалиден брой входове. - Keep the transaction memory pool below <n> megabytes (default: %u) Дръж мемпула за транзакциите под <n> мегабайта (по подразбиране: %u) diff --git a/src/qt/locale/dash_de.ts b/src/qt/locale/dash_de.ts index dea83685e6b6..b00a702ddd5e 100644 --- a/src/qt/locale/dash_de.ts +++ b/src/qt/locale/dash_de.ts @@ -971,8 +971,8 @@ PrivateSend Informationen - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Basisinformation zu PrivateSend</h3> PrivateSend bietet finanziellen Datenschutz durch geschickte Verschleierung der Herkunft Ihres Geldes. Die Dash in Ihrer Geldbörse setzen sich aus völlig unterschiedlichen eigenständigen "Inputs" zusammen.<br> PrivateSend benutzt einen innovativen Prozeß, um Ihre "Inputs" mit denen von 2 anderen Personen zu mischen, ohne das Ihr Geld jemals Ihre Geldbörse verlassen muß, d.h. Sie haben während dieses Prozesses immer die Kontrolle über Ihr Geld.<hr><b>Der PrivateSend-Prozess funktioniert folgendermaßen:</b><ol type="1"><li>PrivateSend stückelt Ihre "Inputs" in kleinere Teile. Diese sind 0,01 DASH, 0,1 DASH, 1DASH und 10 DASH -- im Prinzip wie Münzen oder Scheine, wie wir sie jeden Tag benutzen.</li> <li>Ihre Geldbörse sendet dann eine entsprechende Mixing Anforderungen an spezielle Dash-Server im Internet, die sogenannten "Masternodes". Damit werden diese Masternodes darüber informiert, daß Sie Ihre gestückelten DASH gerne mixen würden. Dabei wird keinerlei Information über Sie versendet, d.h. die Masternodes wissen nie, wer genau mixen möchte.</li> <li> Sobald zwei andere Personen eine gleiche Mixing-Anforderung mit der gleichen Stückelung senden beginnt der Mixing-Prozeß. Der Masternode vermischt (daher das Wort "Mixing") die gestückelten Inputs und weist das Ergebnis wieder den Geldbörsen zu, allerdings mit neuen Empfängeradressen (die natürlich zu Ihrer Wallet gehören), so daß man sie nicht mehr den ursprünglichen Adressen zuordnen kann.. Man kann sich das so vorstellen wie wenn 3 Personen jeweils 100 Euro in der gleichen Anzahl von 10 Euro Scheinen, 5 Euro Scheinen, 2- und 1-Euro Münzen auf einen Tisch legen, alles einmal gut durchmischen, und sich anschießend ohne hinzusehen wieder 100 Euro vom Tischen nehmen. Jeder hat genau so viele Euro wie vorher, aber keiner weiß, wessen Scheine oder Münzen er letztendlich in seiner Geldbörse hat, oder wo sie herkommen. Und das Gute dabei ist, im Dash Mixing Prozeß verlassen die Scheine oder Münzen niemals die Geldbörse ihres Besitzers, daher kann kein Betrug stattfinden.</li> <li>Um die Herkunft Ihres Guthabens vollständig zu verschleiern muß dieser Prozeß mehrmals wiederholt werden, d.h. es gibt mehrere "Runden" des Mixing-Prozesses. Die Anzahl der Runden ist einstellbar, je mehr, desto besser ist die Herkunft Ihres Guthabens verschleiert, aber um so länger dauert der Prozeß.</li> <li> + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Basisinformation zu PrivateSend</h3> PrivateSend bietet finanziellen Datenschutz durch geschickte Verschleierung der Herkunft Ihres Geldes. Die Dash in Ihrer Geldbörse setzen sich aus völlig unterschiedlichen eigenständigen "Inputs" zusammen.<br> PrivateSend benutzt einen innovativen Prozeß, um Ihre "Inputs" mit denen von 2 anderen Personen zu mischen, ohne das Ihr Geld jemals Ihre Geldbörse verlassen muß, d.h. Sie haben während dieses Prozesses immer die Kontrolle über Ihr Geld.<hr><b>Der PrivateSend-Prozess funktioniert folgendermaßen:</b><ol type="1"><li>PrivateSend stückelt Ihre "Inputs" in kleinere Teile. Diese sind 0,001 DASH, 0,01 DASH, 0,1 DASH, 1 DASH und 10 DASH -- im Prinzip wie Münzen oder Scheine, wie wir sie jeden Tag benutzen.</li> <li>Ihre Geldbörse sendet dann eine entsprechende Mixing Anforderungen an spezielle Dash-Server im Internet, die sogenannten "Masternodes". Damit werden diese Masternodes darüber informiert, daß Sie Ihre gestückelten DASH gerne mixen würden. Dabei wird keinerlei Information über Sie versendet, d.h. die Masternodes wissen nie, wer genau mixen möchte.</li> <li> Sobald zwei andere Personen eine gleiche Mixing-Anforderung mit der gleichen Stückelung senden beginnt der Mixing-Prozeß. Der Masternode vermischt (daher das Wort "Mixing") die gestückelten Inputs und weist das Ergebnis wieder den Geldbörsen zu, allerdings mit neuen Empfängeradressen (die natürlich zu Ihrer Wallet gehören), so daß man sie nicht mehr den ursprünglichen Adressen zuordnen kann.. Man kann sich das so vorstellen wie wenn 3 Personen jeweils 100 Euro in der gleichen Anzahl von 10 Euro Scheinen, 5 Euro Scheinen, 2- und 1-Euro Münzen auf einen Tisch legen, alles einmal gut durchmischen, und sich anschießend ohne hinzusehen wieder 100 Euro vom Tischen nehmen. Jeder hat genau so viele Euro wie vorher, aber keiner weiß, wessen Scheine oder Münzen er letztendlich in seiner Geldbörse hat, oder wo sie herkommen. Und das Gute dabei ist, im Dash Mixing Prozeß verlassen die Scheine oder Münzen niemals die Geldbörse ihres Besitzers, daher kann kein Betrug stattfinden.</li> <li>Um die Herkunft Ihres Guthabens vollständig zu verschleiern muß dieser Prozeß mehrmals wiederholt werden, d.h. es gibt mehrere "Runden" des Mixing-Prozesses. Die Anzahl der Runden ist einstellbar, je mehr, desto besser ist die Herkunft Ihres Guthabens verschleiert, aber um so länger dauert der Prozeß.</li> <li> Der Mixing-Prozeß läuft nach dem Start vollständig im Hintergrund, d.h. es ist keine Benutzerinteraktion mehr erforderlich. Das Wallet informiert Sie über den Fortschrittsbalken über den aktuellen Status des Prozesses.</li> </ol> <hr><b>WICHTIG:</b> beim Mischen der Inputs werden die einzelnen Stückelungen einer NEUEN Empfängeradresse zugeordnet (siehe Oben). Ihre Geldbörse hat bereits beim ersten Start 1000 dieser "Wechseladressen" auf Vorrat erzeugt. Bei jedem Mischen werden 9 dieser Wechseladressen verbraucht, d.h. nach ungefähr 100 Mischvorgänge sind diese 1000 Wechseladressen aufgebraucht. Die Geldbörse ist so eingestellt, daß sie bei Erreichen von 900 benutzen Wechseladressen wieder genug neue Wechseladressen erzeugt, damit man auch in der Zukunft wieder mischen kann. Die neuen Wechseladressen werden aber nur dann erzeugt, wenn man in den Einstellungen "Automatische Datensicherungen" aktiviert hat.<br> Daher ist bei Benutzern, die "Automatische Datensicherungen" deaktiviert haben, automatisch auch PrivateSend dekativiert.<hr> Weitere Information hierzu finden Sie in der <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend-Dokumentation</a>. @@ -1109,10 +1109,78 @@ Der Mixing-Prozeß läuft nach dem Start vollständig im Hintergrund, d.h. es is Node Count: Anzahl Knoten + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Hinweis: Diese Liste stellt eine traditionelle und keine nicht-deterministische Masternode-Liste dar. Sie bleibt nur bis zur vollständigen Aktivierung von DIP3 aktiv. Nachdem SPORK15 aktiviert wurde, wird diese Liste keinen Inhalt mehr haben.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + PoSe Wertung + + + Registered + Registriert + + + Last Paid + Zuletzt ausbezahlt + + + Next Payment + Nächste Auszahlung + + + Operator Reward + Betreibervergütung + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Hinweis: Diese Liste ist noch nicht aktiv und dient nur zu Informationszwecken. Das Netzwerk läuft weiterhin im Kompatibilitätsmodus, was bedeutet, dass die nicht-deterministische Masternode-Liste weiterhin aktiv ist. Diese Liste wird erst nach SPORK15 aktiviert. Die Auszahlungswerte werden momentan nicht verwendet, auch wenn sie mit jedem Block neu berechnet werden. Bis zur Aktivierung von SPORK15 sollte diese Liste ignoriert werden.</p></body></html> + Start alias Alias-Namen starten + + Copy ProTx Hash + ProTx Hash kopieren + + + Copy Collateral Outpoint + Collateral Outpoint kopieren + + + ENABLED + AKTIVIERT + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + UNBEKANNT + + + to %1 + an %1 + + + to UNKNOWN + an UNBEKANNT + + + but not claimed + aber nicht beansprucht + + + NONE + KEINE + Confirm masternode start Masternode-Start bestätigen @@ -1177,6 +1245,10 @@ Der Mixing-Prozeß läuft nach dem Start vollständig im Hintergrund, d.h. es is Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Zusätzliche Informationen für DIP3 Masternode %1 + ModalOverlay @@ -1382,6 +1454,14 @@ Der Mixing-Prozeß läuft nach dem Start vollständig im Hintergrund, d.h. es is Enable coin &control features "&Coin Control"-Funktionen aktivieren + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Systembenachrichtigungen für PrivateSend-Mischtransaktionen<br/>genauso wie andere Transaktionen anzeigen. + + + Show popups for PrivateSend transactions + Benachrichtigungen für PrivateSend-Transaktionen anzeigen + &Spend unconfirmed change &Unbestätigtes Wechselgeld darf ausgegeben werden @@ -1798,10 +1878,6 @@ https://www.transifex.com/projects/p/dash/ - - N/A - k.A. - PrivateSend was successfully reset. PrivateSend wurde erfolgreich zurückgesetzt. @@ -3541,6 +3617,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Zeigt ob eine beobachtete Adresse in dieser Transaktion beteiligt ist. + + Whether or not this transaction was locked by InstantSend. + Ob diese Transaktion mit InstantSend gesichert wurde. + User-defined intent/purpose of the transaction. Benutzerdefinierter Verwendungszweck der Transaktion @@ -3556,6 +3636,14 @@ https://www.transifex.com/projects/p/dash/ All Alle + + Locked by InstantSend + Mit InstantSend gesichert + + + Not locked by InstantSend + Nicht mit InstantSend gesichert + Today Heute @@ -3979,6 +4067,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Lösche alle Wallet-Transaktionen stelle nur diese mittels -rescan beim nächsten Start des Wallets wieder her. + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Veröffentlichung der Transaktionsdaten eines versuchten InstantSend-DoubleSpends aktivieren <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Veröffentlichung des öffentlichen Transaktionshashes eines versuchten InstantSend-DoubleSpends aktivieren <address> + 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 bei einer bestehenden nicht-HD Wallet aktivieren @@ -4023,6 +4119,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Debugging-Informationen ausgeben (Standard: %u, <category> anzugeben ist optional) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Spork-Wert durch ein Minimum an Spork-Unterzeichnern überschreiben. Nur für regtest und devnet verwendbar. Die Verwendung im Mainnet oder Testnet führt zum Bann. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + N verschiedene Masternodes verwenden, um Guthaben parallel zu mischen (%u-%u, Standard: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Separaten SOCKS5-Proxy verwenden, um Gegenstellen über versteckte Tor-Dienste zu erreichen (Standard: %s) @@ -4043,6 +4147,10 @@ https://www.transifex.com/projects/p/dash/ 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 + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Den masternodeblsprivkey in den Konfigurationseinstellungen spezifizieren. Hilfe hierzu kann in der Dokumentation gefunden werden. + (default: %s) (Standard: %s) @@ -4155,6 +4263,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Ungültiger Betrag für -paytxfee=<amount>: '%s' (Betrag muss mindestens %s sein) + + Invalid masternodeblsprivkey. Please see documenation. + Ungültiger masternodeblsprivkey. Weitere Informationen befinden sich in der Dokumentation. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Ungültige minimale Anzahl an Spork-Unterzeichnern durch -minsporkkeys spezifiziert + Keypool ran out, please call keypoolrefill first Schlüssel-Pool aufgebraucht, bitte rufen Sie zunächst "keypoolrefill" auf @@ -4255,6 +4371,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Größe des Schlüsselpools festlegen auf <n> (Standard: %u) + + Set the masternode BLS private key + Masternode BLS PrivateKey setzen + Set the number of threads to service RPC calls (default: %d) Maximale Anzahl an Threads zur Verarbeitung von RPC-Anfragen festlegen (Standard: %d) @@ -4319,6 +4439,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Zu viele %f Stückelungen, wird entfernt. + + Too many %f denominations, skipping. + Zu viele %f Denominationen, überspringen. + Tor control port password (default: empty) Tor Kontroll-Port Paßwort (Standard: nicht gesetzt) @@ -4639,10 +4763,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Veröffentlichung des Originaltransaktion in <Adresse> ermöglichen - - Enable transaction replacement in the memory pool (default: %u) - Transaktions-Ersetzung im "Mempool" aktivieren (Standard: %u) - Error: A fatal internal error occurred, see debug.log for details Fehler: ein nicht-behebbarer interner Fehler ist aufgetreten, Details sind in der Datei debug.log @@ -4687,10 +4807,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Ungültiger Betrag für -fallbackfee=<amount>: '%s' - - Invalid input count. - Ungültige Input-Zahl - Keep the transaction memory pool below <n> megabytes (default: %u) Transaktionen im "Mempool" unterhalb von <n> halten (Standard: %u) diff --git a/src/qt/locale/dash_en.ts b/src/qt/locale/dash_en.ts index 85b199ef5976..09e7e163afb2 100644 --- a/src/qt/locale/dash_en.ts +++ b/src/qt/locale/dash_en.ts @@ -1007,7 +1007,7 @@ Non-anonymized input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-anonymized inputs first and then check the PrivateSend checkbox again. - + Non-anonymized input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-anonymized inputs first and then check the PrivateSend checkbox again. @@ -1227,8 +1227,8 @@ - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. @@ -1303,53 +1303,56 @@ - + Alias Alias - + + Address Address - - + + Protocol Protocol - - + + + Status Status - - + + Active Active - - + + Last Seen Last Seen - - + + + Payee Payee - + S&tart alias S&tart alias @@ -1385,37 +1388,128 @@ - + + 0 0 - + All Masternodes All Masternodes - + + Filter List: Filter List: - + + Filter masternode list Filter masternode list - + + Node Count: Node Count: - + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + + + + DIP3 Masternodes + DIP3 Masternodes + + + + PoSe Score + PoSe Score + + + + Registered + Registered + + + + Last Paid + Last Paid + + + + Next Payment + Next Payment + + + + Operator Reward + Operator Reward + + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + + + Start alias Start alias - + + Copy ProTx Hash + Copy ProTx Hash + + + + Copy Collateral Outpoint + Copy Collateral Outpoint + + + + ENABLED + ENABLED + + + + POSE_BANNED + POSE_BANNED + + + + + + UNKNOWN + UNKNOWN + + + + to %1 + to %1 + + + + to UNKNOWN + to UNKNOWN + + + + but not claimed + but not claimed + + + + NONE + NONE + + + Confirm masternode start Confirm masternode start @@ -1435,7 +1529,7 @@ Are you sure you want to start ALL masternodes? - + Command is not available right now Command is not available right now @@ -1455,7 +1549,7 @@ Are you sure you want to start MISSING masternodes? - + Additional information for Masternode %1 Additional information for Masternode %1 @@ -1495,6 +1589,11 @@ Sentinel Sentinel + + + Additional information for DIP3 Masternode %1 + Additional information for DIP3 Masternode %1 + ModalOverlay @@ -1623,12 +1722,12 @@ (0 = auto, <0 = leave that many cores free) - + Amount of Dash to keep anonymized Amount of Dash to keep anonymized - + W&allet W&allet @@ -1653,7 +1752,7 @@ Enable advanced PrivateSend interface - + Show warning dialog when PrivateSend detects that wallet has very low number of keys left. Show warning dialog when PrivateSend detects that wallet has very low number of keys left. @@ -1724,17 +1823,17 @@ Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items.<br/>%s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - + Expert Expert - + This setting determines the amount of individual masternodes that an input will be anonymized through.<br/>More rounds of anonymization gives a higher degree of privacy, but also costs more in fees. This setting determines the amount of individual masternodes that an input will be anonymized through.<br/>More rounds of anonymization gives a higher degree of privacy, but also costs more in fees. - + Whether to show coin control features or not. Whether to show coin control features or not. @@ -1754,7 +1853,17 @@ Enable coin &control features - + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + + + + Show popups for PrivateSend transactions + Show popups for PrivateSend transactions + + + &Spend unconfirmed change &Spend unconfirmed change @@ -1942,7 +2051,7 @@ https://www.transifex.com/projects/p/dash/ none - + Confirm options reset Confirm options reset @@ -2062,7 +2171,7 @@ https://www.transifex.com/projects/p/dash/ - + @@ -2160,7 +2269,7 @@ https://www.transifex.com/projects/p/dash/ Reset - + out of sync @@ -2174,18 +2283,18 @@ https://www.transifex.com/projects/p/dash/ - + Start Mixing Start Mixing - - + + Stop Mixing Stop Mixing - + No inputs detected No inputs detected @@ -2246,7 +2355,7 @@ https://www.transifex.com/projects/p/dash/ - + @@ -2254,7 +2363,7 @@ https://www.transifex.com/projects/p/dash/ Disabled - + Very low number of keys left since last automatic backup! Very low number of keys left since last automatic backup! @@ -2308,12 +2417,7 @@ https://www.transifex.com/projects/p/dash/ - - N/A - N/A - - - + PrivateSend was successfully reset. PrivateSend was successfully reset. @@ -3439,7 +3543,7 @@ https://www.transifex.com/projects/p/dash/ SendCoinsDialog - + Send Coins Send Coins @@ -3645,7 +3749,7 @@ https://www.transifex.com/projects/p/dash/ Balance: - + Copy quantity Copy quantity @@ -3681,14 +3785,14 @@ https://www.transifex.com/projects/p/dash/ - - + + using using - - + + anonymous funds anonymous funds @@ -3698,17 +3802,17 @@ https://www.transifex.com/projects/p/dash/ (privatesend requires this amount to be rounded up to the nearest %1). - + any available funds (not anonymous) any available funds (not anonymous) - + and InstantSend and InstantSend - + @@ -4438,7 +4542,7 @@ https://www.transifex.com/projects/p/dash/ TransactionTableModel - + Date Date @@ -4566,7 +4670,7 @@ https://www.transifex.com/projects/p/dash/ PrivateSend - + watch-only watch-only @@ -4576,7 +4680,7 @@ https://www.transifex.com/projects/p/dash/ (n/a) - + (no label) (no label) @@ -4600,6 +4704,11 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Whether or not a watch-only address is involved in this transaction. + + + Whether or not this transaction was locked by InstantSend. + Whether or not this transaction was locked by InstantSend. + User-defined intent/purpose of the transaction. @@ -4614,13 +4723,24 @@ https://www.transifex.com/projects/p/dash/ TransactionView - + + All All - + + Locked by InstantSend + Locked by InstantSend + + + + Not locked by InstantSend + Not locked by InstantSend + + + Today Today @@ -4760,7 +4880,7 @@ https://www.transifex.com/projects/p/dash/ Show transaction details - + Export Transaction History Export Transaction History @@ -4854,16 +4974,16 @@ https://www.transifex.com/projects/p/dash/ WalletModel - - + + Send Coins Send Coins - - + + InstantSend doesn't support sending values that high yet. Transactions are currently limited to %1 DASH. InstantSend doesn't support sending values that high yet. Transactions are currently limited to %1 DASH. @@ -4876,7 +4996,7 @@ https://www.transifex.com/projects/p/dash/ WalletView - + &Export &Export @@ -4891,7 +5011,7 @@ https://www.transifex.com/projects/p/dash/ Selected amount: - + Backup Wallet Backup Wallet @@ -4929,7 +5049,7 @@ https://www.transifex.com/projects/p/dash/ Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Error: Listening for incoming connections failed (listen returned error %s) Error: Listening for incoming connections failed (listen returned error %s) @@ -4954,7 +5074,7 @@ https://www.transifex.com/projects/p/dash/ Name to construct url for KeePass entry that stores the wallet passphrase - + 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) @@ -4969,7 +5089,7 @@ https://www.transifex.com/projects/p/dash/ This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. @@ -4984,7 +5104,7 @@ https://www.transifex.com/projects/p/dash/ You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + Accept command line and JSON-RPC commands Accept command line and JSON-RPC commands @@ -5059,7 +5179,7 @@ https://www.transifex.com/projects/p/dash/ Done loading - + Entries are full. Entries are full. @@ -5104,7 +5224,7 @@ https://www.transifex.com/projects/p/dash/ Failed to listen on any port. Use -listen=0 if you want this. - + (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) @@ -5149,7 +5269,17 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Enable publish raw transactions of attempted InstantSend double spend in <address> + + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Enable publish transaction hashes of attempted InstantSend double spend in <address> + + + 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 @@ -5204,7 +5334,17 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) - + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + + + 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) @@ -5229,7 +5369,12 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex - + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + + + (default: %s) (default: %s) @@ -5269,7 +5414,7 @@ https://www.transifex.com/projects/p/dash/ Enable the client to act as a masternode (0-1, default: %u) - + Entry exceeds maximum size. Entry exceeds maximum size. @@ -5369,7 +5514,17 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - + + Invalid masternodeblsprivkey. Please see documenation. + Invalid masternodeblsprivkey. Please see documenation. + + + + Invalid minimum number of spork signers specified with -minsporkkeys + Invalid minimum number of spork signers specified with -minsporkkeys + + + Keypool ran out, please call keypoolrefill first Keypool ran out, please call keypoolrefill first @@ -5494,7 +5649,12 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) - + + Set the masternode BLS private key + Set the masternode BLS private key + + + Set the number of threads to service RPC calls (default: %d) Set the number of threads to service RPC calls (default: %d) @@ -5573,6 +5733,11 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Too many %f denominations, removing. + + + Too many %f denominations, skipping. + Too many %f denominations, skipping. + Tor control port password (default: empty) @@ -5639,12 +5804,12 @@ https://www.transifex.com/projects/p/dash/ Will retry... - + Invalid masternodeprivkey. Please see documenation. Invalid masternodeprivkey. Please see documenation. - + Can't find random Masternode. Can't find random Masternode. @@ -5689,14 +5854,14 @@ https://www.transifex.com/projects/p/dash/ Keep at most <n> unconnectable transactions in memory (default: %u) - + Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) %s file contains all private keys from this wallet. Do not share it with anyone! - + %s file contains all private keys from this wallet. Do not share it with anyone! @@ -5719,7 +5884,7 @@ https://www.transifex.com/projects/p/dash/ Enable multiple PrivateSend mixing sessions per block, experimental (0-1, default: %u) - + Enable use of automated PrivateSend for funds stored in this wallet (0-1, default: %u) Enable use of automated PrivateSend for funds stored in this wallet (0-1, default: %u) @@ -5731,7 +5896,7 @@ https://www.transifex.com/projects/p/dash/ Extra transactions to keep in memory for compact block reconstructions (default: %u) - + Extra transactions to keep in memory for compact block reconstructions (default: %u) @@ -5784,7 +5949,7 @@ https://www.transifex.com/projects/p/dash/ Maintain at most <n> connections to peers (temporary service connections excluded) (default: %u) - + PrivateSend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. PrivateSend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. @@ -5836,7 +6001,7 @@ https://www.transifex.com/projects/p/dash/ Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. - + Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. @@ -5859,7 +6024,7 @@ https://www.transifex.com/projects/p/dash/ Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. - + 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) @@ -5881,7 +6046,7 @@ https://www.transifex.com/projects/p/dash/ You are starting in lite mode, all Dash-specific functionality is disabled. - + You are starting in lite mode, all Dash-specific functionality is disabled. @@ -5889,7 +6054,7 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - + (%d could be used only on mainnet) (%d could be used only on mainnet) @@ -5941,12 +6106,12 @@ https://www.transifex.com/projects/p/dash/ Enable publish hash of governance objects (like proposals) in <address> - + Enable publish hash of governance objects (like proposals) in <address> Enable publish hash of governance votes in <address> - + Enable publish hash of governance votes in <address> @@ -5974,12 +6139,7 @@ https://www.transifex.com/projects/p/dash/ 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: A fatal internal error occurred, see debug.log for details Error: A fatal internal error occurred, see debug.log for details @@ -6001,12 +6161,12 @@ https://www.transifex.com/projects/p/dash/ Failed to load InstantSend data cache from - + Failed to load InstantSend data cache from Failed to load sporks cache from - + Failed to load sporks cache from @@ -6034,12 +6194,7 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' - - Invalid input count. - - - - + Keep the transaction memory pool below <n> megabytes (default: %u) Keep the transaction memory pool below <n> megabytes (default: %u) @@ -6061,7 +6216,7 @@ https://www.transifex.com/projects/p/dash/ Loading InstantSend data cache... - + Loading InstantSend data cache... @@ -6081,7 +6236,7 @@ https://www.transifex.com/projects/p/dash/ Loading sporks cache... - + Loading sporks cache... @@ -6229,7 +6384,7 @@ https://www.transifex.com/projects/p/dash/ Rescan the block chain for missing wallet transactions on startup - + The wallet will avoid paying less than the minimum relay fee. The wallet will avoid paying less than the minimum relay fee. @@ -6244,7 +6399,7 @@ https://www.transifex.com/projects/p/dash/ This is the transaction fee you will pay if you send a transaction. - + Transaction amounts must not be negative Transaction amounts must not be negative @@ -6261,7 +6416,7 @@ https://www.transifex.com/projects/p/dash/ Transaction too large - + Transaction too large @@ -6291,7 +6446,7 @@ https://www.transifex.com/projects/p/dash/ Wallet is not initialized - + Wallet is not initialized @@ -6316,7 +6471,7 @@ https://www.transifex.com/projects/p/dash/ You can not start a masternode in lite mode. - + You can not start a masternode in lite mode. @@ -6334,12 +6489,12 @@ https://www.transifex.com/projects/p/dash/ see debug.log for details. - + RPC server options: RPC server options: - + Dash Core Dash Core @@ -6369,7 +6524,7 @@ https://www.transifex.com/projects/p/dash/ Distributed under the MIT software license, see the accompanying file %s or %s - + 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. @@ -6399,7 +6554,7 @@ https://www.transifex.com/projects/p/dash/ Override spork address. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. - + 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. @@ -6449,7 +6604,7 @@ https://www.transifex.com/projects/p/dash/ Use N separate masternodes for each denominated input to mix funds (%u-%u, default: %u) - + Use hierarchical deterministic key generation (HD) after BIP39/BIP44. Only has effect during wallet creation/first start Use hierarchical deterministic key generation (HD) after BIP39/BIP44. Only has effect during wallet creation/first start @@ -6489,7 +6644,7 @@ https://www.transifex.com/projects/p/dash/ 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 corrupt, salvage failed %s corrupt, salvage failed @@ -6549,7 +6704,7 @@ https://www.transifex.com/projects/p/dash/ Copyright (C) - + Error loading %s Error loading %s @@ -6589,7 +6744,7 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -%s=<amount>: '%s' - + Invalid spork address specified with -sporkaddr Invalid spork address specified with -sporkaddr @@ -6659,7 +6814,7 @@ https://www.transifex.com/projects/p/dash/ Set maximum block size in bytes (default: %d) - + Set the masternode private key Set the masternode private key @@ -6729,7 +6884,7 @@ https://www.transifex.com/projects/p/dash/ This is experimental software. - + Transaction amount too small Transaction amount too small diff --git a/src/qt/locale/dash_es.ts b/src/qt/locale/dash_es.ts index 52363b975a28..5ae5138e22c8 100644 --- a/src/qt/locale/dash_es.ts +++ b/src/qt/locale/dash_es.ts @@ -971,8 +971,8 @@ Información de PrivateSend - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Conceptos básico de PrivateSend</h3>PrivateSend te da verdadera privacidad financiera al ocultar los orígenes de tus fondos. Todos los Dash en su billetera están compuestos por diferentes "depositos" en las que puede pensar como monedas separadas, discretas.<br>PrivateSend utiliza un proceso innovador que mezcla sus depósitos con las depósitos de otras dos personas, sin que sus monedas salgan de billetera. Usted retiene el control de su dinero en todo momento ..<hr><b>El proceso de PrivateSend funciona así:</b><ol type="1"><li>PrivateSend comienza dividiendo los depósitos de sus transacciones en denominaciones estándar. Éstas denominaciones son 0.01 DASH, 0.1 DASH, 1 DASH y 10 DASH - algo así como el papel moneda que usas todos los días.</li><li>Entonces, su billetera envía solicitudes a nodos de software especialmente configurados en la red, llamados "masternodes". Estos masternodes son informados que usted está interesado en mezclar una cierta denominación. Información no identificable es enviada a los masternodes, por lo que nunca saben "quién" es usted.</li><li>Cuando otras dos personas envían mensajes similares, indicando que desean mezclar la misma denominación, comienza una sesión de mezclado. El masternode mezcla los depósitos e instruye a las billeteras de los tres usuarios para que paguen el depósito ahora transformado a si mismos. Su monedero paga esa denominación directamente a sí misma, pero en una dirección diferente (llamada dirección de cambio).</li> <li>En orden de ocultar totalmente sus fondos, su billetera debe repetir este proceso varias veces con cada denominación. Cada vez que se completa el proceso, se denomina "ronda". Cada ronda de PrivateSend hace que sea exponencialmente más difícil determinar de dónde provienen los fondos.</li><li>Este proceso de mezclado ocurre en segundo plano sin ninguna intervención de su parte. Cuando desee realizar una transacción, sus fondos ya serán anónimos. No se requiere tiempo de espera adicional.</li></ol><hr><b>IMPORTATE:</b>Su billetera solo contiene 1000 de estas "direcciones de cambio". Cada vez que ocurre un evento de mezclado, hasta 9 de sus direcciones son usadas. Esto significa que esas 1000 direcciones duran alrededor de 100 eventos de mezclado. Cuando 900 de ellas sean usadas, su billetera debe crear más direcciones. Sin embargo, solo podra hacer esto si tiene las copias de seguridad automáticas habilitadas.<br>En consecuencia, los usuarios que tengan las copias de seguridad deshabilitadas también tendrán PrivateSend deshabilitado.<hr>Para mas información, consulte la <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">documentación de PrivateSend</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Conceptos básico de PrivateSend</h3>PrivateSend te da verdadera privacidad financiera al ocultar los orígenes de tus fondos. Todos los Dash en su billetera están compuestos por diferentes "depositos" en las que puede pensar como monedas separadas, discretas.<br>PrivateSend utiliza un proceso innovador que mezcla sus depósitos con las depósitos de otras dos personas, sin que sus monedas salgan de billetera. Usted retiene el control de su dinero en todo momento ..<hr><b>El proceso de PrivateSend funciona así:</b><ol type="1"><li>PrivateSend comienza dividiendo los depósitos de sus transacciones en denominaciones estándar. Éstas denominaciones son 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH y 10 DASH - algo así como el papel moneda que usas todos los días.</li><li>Entonces, su billetera envía solicitudes a nodos de software especialmente configurados en la red, llamados "masternodes". Estos masternodes son informados que usted está interesado en mezclar una cierta denominación. Información no identificable es enviada a los masternodes, por lo que nunca saben "quién" es usted.</li><li>Cuando otras dos personas envían mensajes similares, indicando que desean mezclar la misma denominación, comienza una sesión de mezclado. El masternode mezcla los depósitos e instruye a las billeteras de los tres usuarios para que paguen el depósito ahora transformado a si mismos. Su monedero paga esa denominación directamente a sí misma, pero en una dirección diferente (llamada dirección de cambio).</li> <li>En orden de ocultar totalmente sus fondos, su billetera debe repetir este proceso varias veces con cada denominación. Cada vez que se completa el proceso, se denomina "ronda". Cada ronda de PrivateSend hace que sea exponencialmente más difícil determinar de dónde provienen los fondos.</li><li>Este proceso de mezclado ocurre en segundo plano sin ninguna intervención de su parte. Cuando desee realizar una transacción, sus fondos ya serán anónimos. No se requiere tiempo de espera adicional.</li></ol><hr><b>IMPORTATE:</b>Su billetera solo contiene 1000 de estas "direcciones de cambio". Cada vez que ocurre un evento de mezclado, hasta 9 de sus direcciones son usadas. Esto significa que esas 1000 direcciones duran alrededor de 100 eventos de mezclado. Cuando 900 de ellas sean usadas, su billetera debe crear más direcciones. Sin embargo, solo podra hacer esto si tiene las copias de seguridad automáticas habilitadas.<br>En consecuencia, los usuarios que tengan las copias de seguridad deshabilitadas también tendrán PrivateSend deshabilitado.<hr>Para mas información, consulte la <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">documentación de PrivateSend</a>. @@ -1108,10 +1108,78 @@ Node Count: Recuento de nodos: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Nota: Esta lista representa la lista de masternodes heredada y no determinista. Solo está activoa mientras DIP3 no se haya activado completamente. Después de la activación de SPORK15, esta lista estará vacía.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + PoSe Marcador + + + Registered + Registrado + + + Last Paid + Último pago + + + Next Payment + Próximo pago + + + Operator Reward + Recompensa del operador + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Nota: Esta lista aún no está activa y es solo para fines informativos. La red todavía se está ejecutando en el modo de compatibilidad, lo que significa que la lista de masternodes no determinista aún está activa. Solo después de la activación de SPORK15, esta lista se convertirá en la activa. Además, los valores en los campos relacionados con el pago no se utilizan en este momento, pero aún se actualizan para cada bloque. Por favor ignore esto hasta la activación de SPORK15.</p></body></html> + Start alias Iniciar alias + + Copy ProTx Hash + Copiar ProTx Hash + + + Copy Collateral Outpoint + Copiar punto de garantía + + + ENABLED + HABILITADO + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + DESCONOCIDO + + + to %1 + para %1 + + + to UNKNOWN + para DESCONOCIDO + + + but not claimed + pero no reclamado + + + NONE + NINGUNO + Confirm masternode start Confirmar incio de Masternode @@ -1176,6 +1244,10 @@ Sentinel Centinela + + Additional information for DIP3 Masternode %1 + Información adicional para Masternode DIP3 %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Activar característica coin &control + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Mostrar ventanas emergentes del sistema para transacciones de mezcla PrivateSend <br/>así como para cualquier otro tipo de transacciones. + + + Show popups for PrivateSend transactions + Mostrar notificaciones para las transaccioes de PrivateSend + &Spend unconfirmed change &Gastar cambio no confirmado @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Último mensaje de PrivateSend: - - N/A - N/D - PrivateSend was successfully reset. PrivateSend se reinició con éxito. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Si una dirección de sólo vigilancia toma parte o no en esta transacción. + + Whether or not this transaction was locked by InstantSend. + Si esta transacción fue bloqueada o no por InstantSend. + User-defined intent/purpose of the transaction. intent/purpose definido por el usuario de la transacción. @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Todo + + Locked by InstantSend + Bloqueado por InstantSend + + + Not locked by InstantSend + No bloqueado por InstantSend + Today Hoy @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Borrar todas las transacciones de la billetera y recuperar únicamente aquellas partes de la cadena de bloques a través de -rescan al iniciar + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Habilitar la publicación de transacciones en bruto del intento de doble gasto de InstantSend en <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Habilitar la publicación de hashes de transacciones del intento de doble gasto de InstantSend en <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Error cargando %s: No puede habilitar HD en una billetera non-HD existente. @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Información de salida para depuración (predeterminado: %u, proporcionando <category> es opcional) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Anula los firmantes de spork mínimos para cambiar el valor de spork. Sólo es útil para regtest y devnet. Usar esto en la red principal o en la red de prueba te prohibirá el acceso. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Usa N separar masternodes en paralelo para mezclar fondos (%u-%u, default: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Usar proxy SOCKS5 independiente para alcanzar pares mediante servicios ocultos de la red Tor (predeterminado: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Necesita reconstruir la base de datos usando -reindex-chainstate para cambiar -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Debes especificar una llave privada de masternode en la configuración. Por favor, consulta la documentación para obtener ayuda. + (default: %s) (predeterminado: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Cantidad inválida para -paytxfee=<amount>: '%s' (debe ser al menos %s) + + Invalid masternodeblsprivkey. Please see documenation. + Llave privada de Masternode inválida. Por favor ver la documentación. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Número mínimo inválido de firmantes de spork especificados con -minsporkkeys + Keypool ran out, please call keypoolrefill first Keypool se ha agotado, llame a keypoolrefill primero @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Establecer el tamaño del grupo de llaves a <n> (predeterminado: %u) + + Set the masternode BLS private key + Configurar la llave privada de masternode BLS + Set the number of threads to service RPC calls (default: %d) Establecer el número de hilos para atender las llamadas RPC (predeterminado: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Demasiadas %f denominaciones, removiendo. + + Too many %f denominations, skipping. + Demasiadas denominaciones %f, saltando. + Tor control port password (default: empty) Contraseña del puerto de control de Tor (predeterminado: vacio) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Habilitar la publicación de transacción sin procesar en <address> - - Enable transaction replacement in the memory pool (default: %u) - Habilitar el reemplazo de transacciones en el pool de memoria (predeterminado: %u) - Error: A fatal internal error occurred, see debug.log for details Error: Un error interno fatal ocurrió, ver debug.log para detalles @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Cantidad inválida para -fallbackfee=<amount>: '%s' - - Invalid input count. - Cuenta de entrada inválida. - Keep the transaction memory pool below <n> megabytes (default: %u) Mantener el pool de la memoria de transacciones por debajo de <n> megabytes (predeterminado: %u) diff --git a/src/qt/locale/dash_fi.ts b/src/qt/locale/dash_fi.ts index 8393905ed04b..be41b83f4e13 100644 --- a/src/qt/locale/dash_fi.ts +++ b/src/qt/locale/dash_fi.ts @@ -971,8 +971,8 @@ PrivateSend tietoja - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>PrivateSend perusteet</h3> PrivateSend tarjoaa yksityisyyden hämärtämällä varojesi alkuperäisen osoitteen. Kaikki Dash:it lompakossasi muodostuvat erillisistä "syötteistä", joita voit ajatella erillisinä kolikkoina.<br> PrivateSend käyttää innovatiivista prosessia sekoittaakseen lompakkosi syötteet kahden muun ihmisen syötteisiin, siirtämättä varoja pois lompakostasi. Varojesi kontrolli pysyy aina sinulla.<hr> <b> PrivateSend prosessi toimii seuraavasti:</b><ol type="1"> <li>PrivateSend aloittaa pilkkomalla siirtotapahtumiesi syötteet pienemmiksi standardi arvoiksi. Nämä arvot ovat 0.01 DASH, 0.1 DASH, 1 DASH ja 10 DASH.</li> <li>Sitten lompakkosi lähettää pyynnön verkon palvelimille, joita kutsutaan "masternode:iksi". Masternodet saavat tiedon että haluat sekoittaa pilkottuja standardi arvoja. Mitään tunnistetietoja ei lähetetä masternode:ille, ne eivät koskaan tiedä "kuka" olet.</li> <li>Kun 2 muuta käyttäjää ilmoittaa että he haluavat myös sekoittaa varoja, alkaa sekoitus-sessio. Masternodet sekoittavat standardi arvot ja ilmoittavat kaikille 3:lle käyttäjän lompakoille että maksavat sekoitetut arvot takaisin itselleen. Lompakkosi maksaa nuo sekoitetut arvot suoraan itselleen, mutta eri osoitteeseen (vaihto-osoite).</li> <li>Jotta varojesi alkuperäinen lähde hämärretään, lompakkosi suorittaa tämän prosessin useita kertoja kaikilla standardi arvoilla. Aina kun prosessi on valmis, sitä kutsutaan "kierrokseksi". Jokainen PrivateSend kierros tekee eksponentiaalisesti vaikeammaksi löytää varojesi alkuperäisen osoitteen.</li> <li>Tämä sekoitusprosessi tapahtuu taustalla ilman käyttäjän toimenpiteitä. Kun haluat myöhemmin tehdä anonyymin varojen siirron, on varasi valmiiksi sekoitettu eli anonymisoitu. Erillistä sekoitusta/odotusta ei tarvita.</li> </ol> <hr><b>TÄRKEÄÄ:</b> Lompakkosi sisältää vain 1000 "vaihto-osoitetta". Aina kun sekoitustapahtuma tehdään, max 9 osoitetta käytetään. Tämä tarkoittaa sitä että nuo 1000 osoitetta kestää noin 100 sekoitustapahtumaa. Kun 900 osoitetta on käytetty, lompakkosi täytyy tehdä lisää osoitteita. Se voi tehdä niitä vain jos automaattinen varmistus on käytössä.<br> Tästä seuraa että jos varmistus ei ole käytössä, myös PrivateSend on pois käytöstä. <hr>Katso lisätietoja <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend dokumentaatiosta</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>PrivateSend perusteet</h3> PrivateSend tarjoaa yksityisyyden hämärtämällä varojesi alkuperäisen osoitteen. Kaikki Dash:it lompakossasi muodostuvat erillisistä "syötteistä", joita voit ajatella erillisinä kolikkoina.<br> PrivateSend käyttää innovatiivista prosessia sekoittaakseen lompakkosi syötteet kahden muun ihmisen syötteisiin, siirtämättä varoja pois lompakostasi. Varojesi kontrolli pysyy aina sinulla.<hr> <b> PrivateSend prosessi toimii seuraavasti:</b><ol type="1"> <li>PrivateSend aloittaa pilkkomalla siirtotapahtumiesi syötteet pienemmiksi standardi arvoiksi. Nämä arvot ovat 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH ja 10 DASH.</li> <li>Sitten lompakkosi lähettää pyynnön verkon palvelimille, joita kutsutaan "masternode:iksi". Masternodet saavat tiedon että haluat sekoittaa pilkottuja standardi arvoja. Mitään tunnistetietoja ei lähetetä masternode:ille, ne eivät koskaan tiedä "kuka" olet.</li> <li>Kun 2 muuta käyttäjää ilmoittaa että he haluavat myös sekoittaa varoja, alkaa sekoitus-sessio. Masternodet sekoittavat standardi arvot ja ilmoittavat kaikille 3:lle käyttäjän lompakoille että maksavat sekoitetut arvot takaisin itselleen. Lompakkosi maksaa nuo sekoitetut arvot suoraan itselleen, mutta eri osoitteeseen (vaihto-osoite).</li> <li>Jotta varojesi alkuperäinen lähde hämärretään, lompakkosi suorittaa tämän prosessin useita kertoja kaikilla standardi arvoilla. Aina kun prosessi on valmis, sitä kutsutaan "kierrokseksi". Jokainen PrivateSend kierros tekee eksponentiaalisesti vaikeammaksi löytää varojesi alkuperäisen osoitteen.</li> <li>Tämä sekoitusprosessi tapahtuu taustalla ilman käyttäjän toimenpiteitä. Kun haluat myöhemmin tehdä anonyymin varojen siirron, on varasi valmiiksi sekoitettu eli anonymisoitu. Erillistä sekoitusta/odotusta ei tarvita.</li> </ol> <hr><b>TÄRKEÄÄ:</b> Lompakkosi sisältää vain 1000 "vaihto-osoitetta". Aina kun sekoitustapahtuma tehdään, max 9 osoitetta käytetään. Tämä tarkoittaa sitä että nuo 1000 osoitetta kestää noin 100 sekoitustapahtumaa. Kun 900 osoitetta on käytetty, lompakkosi täytyy tehdä lisää osoitteita. Se voi tehdä niitä vain jos automaattinen varmistus on käytössä.<br> Tästä seuraa että jos varmistus ei ole käytössä, myös PrivateSend on pois käytöstä. <hr>Katso lisätietoja <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend dokumentaatiosta</a>. @@ -1108,10 +1108,78 @@ Node Count: Solmuja Yht: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Huomio: Tämä lista edustaa perinteistä ja ei-determinististä masternode listaa. Tämä on näkyvissä ainoastaan niin kauan kun DIP3 on aktivoimatta. Kun SPORK15 on aktivoitu, tämä lista on tyhjä.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodet + + + PoSe Score + PoSe Pisteet + + + Registered + Rekisteröity + + + Last Paid + Viimeisin Maksu + + + Next Payment + Seuraava Maksu + + + Operator Reward + Operaattorin Palkkio + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Huomio: Tämä lista ei ole vielä käytössä ja on näkyvissä vain informatiivisesti. Verkko on vielä yhteensopivuus tilassa, mikä tarkoittaa että ei-deterministinen masternodelista on vielä käytössä. Vasta kun SPORK15 on aktiivinen, tämä lista tulee käyttöön. Myös arvot maksuihin liittyvissä kentissä eivät ole vielä käytössä, mutta päivittyvät silti jokaisen uuden lohkon kohdalla. Älä huomioi tätä ennen kuin SPORK15 on aktivoitu.</p></body></html> + Start alias Käynnistä alias + + Copy ProTx Hash + Kopioi ProTx Tarkiste + + + Copy Collateral Outpoint + Kopioi Vakuus Lähtöpiste + + + ENABLED + KÄYTÖSSÄ + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + TUNTEMATON + + + to %1 + -> %1 + + + to UNKNOWN + -> TUNTEMATON + + + but not claimed + mutta ei lunastettu + + + NONE + EI MITÄÄN + Confirm masternode start Vahvista masternoden käynnistys @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Masternode DIP3 lisätietoja %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Ota käytöön &kolikkokontrolli ominaisuudet + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Näytä järjestelmän ponnahdusikkunat PrivateSend sekoituksen siirtotapahtumista<br/>aivan kuin kaikista muistakin siirtotapahtumista. + + + Show popups for PrivateSend transactions + Näytä PrivateSend siirtotapahtumien ponnahdusikkunat + &Spend unconfirmed change &Käytä vahvistamattomia vaihtorahoja @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Viimeisin PrivateSend viesti: - - N/A - e/s - PrivateSend was successfully reset. PrivateSend nollattu onnistuneesti. @@ -3543,6 +3619,10 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van Whether or not a watch-only address is involved in this transaction. Käytetäänkö vai ei lue-vain osoitetta tässä tapahtumassa. + + Whether or not this transaction was locked by InstantSend. + Onko vai ei tämä siirtotapahtuma InstantSend lukittu. + User-defined intent/purpose of the transaction. Käyttäjän määrittämä siirtotapahtuman käyttötarkoitus. @@ -3558,6 +3638,14 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van All Kaikki + + Locked by InstantSend + InstantSend lukittu + + + Not locked by InstantSend + Ei ole InstantSend lukittu + Today Tänään @@ -3981,6 +4069,14 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Poista kaikki lompakon siirtotapahtumat ja palauta vain nuo osat lohkoketjusta -rescan valinnan avulla käynnistyksessä + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Ota käyttöön julkaise raaka siirtotapahtuma kaksoiskäytön yrityksessä InstantSend osoitteessa <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Ota käyttöön julkaise siirtotapahtuman tarkisteet kaksoiskäytön yrityksessä InstantSend osoitteessa <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Virhe latauksessa %s: Et voi ottaa käyttöön HD:tä jo olemassa olevassa ei-HD lompakossa @@ -4025,6 +4121,14 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van Output debugging information (default: %u, supplying <category> is optional) Tulosta debuggaustieto (oletus: %u, tarjottava <category> on valinnainen) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Ohittaa vähimmäis spork allekirjoittajat jotka vaihtavat spork arvoja. Käyttökelpoinen vain regtest tai devnet. Jos käytät tätä pääverkossa tai testiverkossa, joudut estolistalle, eli bannataan. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Käytä N erillistä masternodea yhtäaikaiseen varojen sekoitukseen (%u-%u, oletus: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Käytä erillistä SOCKS5 proxya tavoittaaksesi peers:it Tor piilotetun palvelun kautta (oletus: %s) @@ -4045,6 +4149,10 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van You need to rebuild the database using -reindex-chainstate to change -txindex Sinun tulee uudelleen rakentaa tietokanta käyttäen -reindex-chainstate vaihtaen -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Sinun täytyy määritellä masternodeblsprivkey asetustiedostoon. Katso lisätietoja dokumentaatiosta. + (default: %s) (oletus: %s) @@ -4157,6 +4265,14 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Virheellinen määrä -maxtxfee=<amount>: '%s' (oltava vähintään %s) + + Invalid masternodeblsprivkey. Please see documenation. + Virheellinen masternodeblsprivkey. Katso lisätietoja dokumentaatiosta. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Virheellinen minimi määrä spork allekirjoittajia määritelty -minsporkkeys + Keypool ran out, please call keypoolrefill first Osoitevaranto on tyhjä, tee ensin uudelleen täyttö komennolla keypoolrefill @@ -4257,6 +4373,10 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van Set key pool size to <n> (default: %u) Aseta avainvarannon koko <n> (oletus: %u) + + Set the masternode BLS private key + Aseta masternoden BLS yksityisavain + Set the number of threads to service RPC calls (default: %d) Aseta säikeiden lukumäärä RPC kutsuille (oletus: %d) @@ -4321,6 +4441,10 @@ Näillä toiminnoilla voit korjata korruptoituneen lohkoketjun tai puuttuvat/van Too many %f denominations, removing. Liian monta %f denominointia, poistetaan. + + Too many %f denominations, skipping. + Liian monta %f denominointia, ohitetaan. + Tor control port password (default: empty) Tor hallintaportin salasana (oletus: tyhjä) @@ -4642,10 +4766,6 @@ Vähennä uakommenttien määrää tai kokoa. Enable publish raw transaction in <address> Ota käyttöön julkaise raaka siirtotapahtuma osoitteessa <address> - - Enable transaction replacement in the memory pool (default: %u) - Ota käyttöön siirtotapahtuman korvaaminen muistivarannossa (oletus: %u) - Error: A fatal internal error occurred, see debug.log for details Virhe: Vakava sisäinen virhe, katso debug.log lisätietoja @@ -4690,10 +4810,6 @@ Vähennä uakommenttien määrää tai kokoa. Invalid amount for -fallbackfee=<amount>: '%s' Virheellinen määrä -fallbackfee=<amount>: '%s' - - Invalid input count. - Virheellinen syötemäärä. - Keep the transaction memory pool below <n> megabytes (default: %u) Pidä siirtotapahtuma muistivaranto alle <n> megatavun (oletus: %u) diff --git a/src/qt/locale/dash_fr.ts b/src/qt/locale/dash_fr.ts index f5def6a97e4f..bfb130a701f9 100644 --- a/src/qt/locale/dash_fr.ts +++ b/src/qt/locale/dash_fr.ts @@ -793,6 +793,10 @@ Please switch to "List mode" to use this function. Veuillez passer en “mode liste” pour utiliser cette fonction. + + Non-anonymized input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-anonymized inputs first and then check the PrivateSend checkbox again. + Éléments non-anonymisés sélectionnés. <b>PrivateSend sera désactivé.</b><br><br>Si vous voulez quand même utiliser PrivateSend, veuillez d'abord désélectionner tous les éléments non-anonymisés, puis recochez la case PrivateSend. + (%1 locked) (%1 verrouillés) @@ -966,7 +970,11 @@ PrivateSend information Information PrivateSend - + + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Ce qu'il faut savoir sur PrivateSend</h3> PrivateSend vous donne une véritable confidentialité financière en obscurcissant l'origine de vos fonds. Tous les dashs de votre portefeuille sont répartis en différentes "entrées", qu'on peut se représenter comme des pièces distinctes.<br> PrivateSend utilise une procédure innovante pour mélanger vos entrées avec les entrées de deux autres personnes, sans que vos fonds ne quittent jamais votre portefeuille. Vous gardez le contrôle de votre argent à tout moment.<hr> <b>La procédure PrivateSend fonctionne comme ceci :</b><ol type="1"> <li>PrivateSend commence par diviser vos entrées de transaction en coupures standard. Ces coupures sont de 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH et 10 DASH -- un peu comme pour les billets de banque que vous utilisez tous les jours.</li> <li>Votre portefeuille envoie alors des requêtes à des serveurs spécifiques sur le réseau, appelés "masternodes". Ces masternodes sont informés que vous souhaiteriez mélanger certaines coupures. Aucune information permettant de vous identifier n'est envoyée aux masternodes, qui ne savent donc jamais "qui" vous êtes.</li> <li>Quand deux autres personnes envoient des requêtes similaires, indiquant qu'elles veulent mélanger les mêmes coupures, alors commence une session de mélange. Le masternode mélange les entrées et demande aux portefeuilles des trois utilisateurs de payer l'entrée, désormais transformée, à eux-mêmes. Votre portefeuille paie cette coupure directement à lui-même, mais à une adresse différente (appelée une adresse de monnaie rendue).</li> <li>Afin d'obscurcir complètement vos fonds, votre portefeuille doit répéter cette procédure un certain nombre de fois avec chaque coupure. Une procédure terminée s'appelle un "cycle". Chaque cycle PrivateSend rend exponentiellement plus difficile de déterminer d'où viennent vos fonds.</li> <li>Cette procédure de mélange intervient en arrière-plan, sans aucune intervention de votre part. Quand vous souhaiterez faire une transaction, vos fonds seront déjà anonymisés. Aucune autre attente ne sera nécessaire.</li> </ol> <hr><b>IMPORTANT :</b> Votre portefeuille ne contient que 1000 de ces "adresses de monnaie rendue". À chaque opération de mélange, jusqu'à 9 de ces adresses sont utilisées. Cela signifie que ces 1000 adresses couvrent environ 100 opérations de mélange. Quand 900 d'entre elles sont utilisées, votre portefeuille doit créer de nouvelles adresses. Cependant il ne peut le faire que si vous avez activé les sauvegardes automatiques.<br> En conséquence, les utilisateurs qui ont désactivé les sauvegardes ont aussi PrivateSend désactivé. <hr>Pour en savoir plus, voir la documentation PrivateSend. + + Intro @@ -1100,10 +1108,78 @@ Node Count: Nombre de nœuds : + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Note : ceci est la liste des masternodes non-déterministes historiques. Elle restera active tant que la DIP3 n'aura pas été entièrement activée. Après l'activation SPORK15, cette liste sera vide.</p></body></html> + + + DIP3 Masternodes + Masternodes DIP3 + + + PoSe Score + Score PoSe + + + Registered + Enregistré + + + Last Paid + Dernier paiement + + + Next Payment + Prochain paiement + + + Operator Reward + Récompense opérateur + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Note : cette liste n'est pas encore active, elle n'est affichée qu'à titre informatif. Le réseau fonctionne encore en mode de compatibilité, ce qui signifie que la liste des masternodes non-déterministes est encore active. Ce n'est qu'après l'activation SPORK15 que cette liste deviendra la liste active. Par ailleurs, les valeurs des champs relatifs aux paiements ne sont pas encore utilisées, mais sont mises à jour avec chaque bloc. Veuillez ignorer cette liste avant l'activation SPORK15.</p></body></html> + Start alias Start-alias + + Copy ProTx Hash + Copier hachage ProTx + + + Copy Collateral Outpoint + Copier sortie caution + + + ENABLED + ACTIVÉ + + + POSE_BANNED + BANNI_PoSe + + + UNKNOWN + INCONNU + + + to %1 + à %1 + + + to UNKNOWN + à INCONNU + + + but not claimed + mais non réclamé + + + NONE + AUCUN + Confirm masternode start Confirmer le démarrage du masternode @@ -1168,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Infos supplémentaires pour le masternode DIP3 %1 + ModalOverlay @@ -1373,6 +1453,14 @@ Enable coin &control features Activer les fonctions de &contrôle des pièces + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Affiche des notifications système pour les transactions de mélange PrivateSend<br/>tout comme pour les autres types de transaction. + + + Show popups for PrivateSend transactions + Afficher des notifications pour les transactions PrivateSend + &Spend unconfirmed change &Dépenser l'argent non confirmé @@ -1754,6 +1842,10 @@ https://www.transifex.com/projects/p/dash/ We are about to create a new automatic backup for you, however <span style='color:red;'> you should always make sure you have backups saved in some safe place</span>! Une nouvelle sauvegarde automatique est sur le point d'être créée pour vous, cependant <span style='color:red;'>assurez-vous toujours d'avoir des sauvegardes en lieu sûr</span> ! + + Note: You can turn this message off in options. + À noter : vous pouvez masquer ce message dans Options. + WARNING! Something went wrong on automatic backup ATTENTION ! Quelque chose a mal tourné lors de la sauvegarde automatique @@ -1784,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Dernier message PrivateSend : - - N/A - n.d. - PrivateSend was successfully reset. PrivateSend a bien été réinitialisé. @@ -3527,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Si une adresse en lecture seule est impliquée dans cette transaction. + + Whether or not this transaction was locked by InstantSend. + Si cette transaction est ou n'est pas verrouillée par InstantSend. + User-defined intent/purpose of the transaction. Intention/raison de la transaction définie par l'utilisateur @@ -3542,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Toutes + + Locked by InstantSend + Verrouillée par InstantSend + + + Not locked by InstantSend + Non verrouillée par InstantSend + Today Aujourd’hui @@ -3965,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Effacer toutes les transactions du portefeuille et récupérer celles qui font partie de la chaîne de blocs par un -rescan au démarrage + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Activer la publication des transactions brutes des tentatives de double dépense InstantSend dans <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Activer la publication des empreintes de transaction des tentatives de double dépense InstantSend dans <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Erreur en chargeant %s : Impossible d'activer HD sur un portefeuille non-HD déjà existant @@ -4009,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Extraire les informations de débogage (par défaut : %u, fournir <category> est optionnel) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Ignore le nombre minimal de signataires spork pour la modification de la valeur de spork. Utile seulement pour les réseaux d'enregistrement et de développement. Utiliser ceci sur les réseaux principal ou de test entraînera votre bannissement. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Utiliser en parallèle N masternodes distincts pour mélanger les fonds (%u-%u, par défaut : %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Utiliser un serveur proxy SOCKS5 séparé pour atteindre les pairs par les services cachés de Tor (par défaut : %s) @@ -4029,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Vous devez reconstruire la base de données en utilisant -reindex-chainstate pour modifier -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Vous devriez indiquer une "masternodeprivkey" dans la configuration. Veuillez consulter la documentation pour en savoir plus. + (default: %s) (par défaut: %s) @@ -4141,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Montant invalide pour -paytxfee=<montant> : « %s » (minimum possible: %s) + + Invalid masternodeblsprivkey. Please see documenation. + masternodeblsprivkey invalide. Veuillez vous référer à la documentation. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Le nombre minimal de signataires spork spécifié avec -minsporkkeys est invalide + Keypool ran out, please call keypoolrefill first La réserve de clefs est épuisée, veuillez d'abord utiliser keypoolrefill @@ -4241,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Définir la taille de la réserve de clefs à <n> (par défaut : %u) + + Set the masternode BLS private key + Définir la clé privée BLS du masternode + Set the number of threads to service RPC calls (default: %d) Définir le nombre de fils d’exécution pour desservir les appels RPC (par défaut : %d) @@ -4305,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Trop de coupures %f, suppression en cours. + + Too many %f denominations, skipping. + Trop de coupures %f, on ignore. + Tor control port password (default: empty) Mot de passe pour le port de contrôle Tor (par défaut : vide) @@ -4401,6 +4537,10 @@ https://www.transifex.com/projects/p/dash/ Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) Désactiver toutes les fonctionnalités liées à Dash (masternodes, PrivateSend, InstantSend, gouvernance) (0-1, par défaut : %u) + + %s file contains all private keys from this wallet. Do not share it with anyone! + Le fichier %s contient toutes les clés privées de ce portefeuille. Ne le partagez avec personne ! + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Découvrir sa propre adresse IP (par défaut : 1 lors de l'écoute et si aucun -externalip ou -proxy) @@ -4425,6 +4565,10 @@ https://www.transifex.com/projects/p/dash/ Execute command when a wallet InstantSend transaction is successfully locked (%s in cmd is replaced by TxID) Exécuter la commande lorsqu'une transaction InstantSend de portefeuille est bloquée avec succès (%s dans la commande est remplacée par TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + Transactions supplémentaires à conserver en mémoire pour les reconstructions de bloc compact (par défaut : %u) + Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this. La création de la sauvegarde a échoué, le fichier existe déjà ! Cela peut arriver si vous avez redémarré le portefeuille il y a moins de 60 secondes. Vous pouvez continuer si cela ne vous pose pas de problème. @@ -4505,6 +4649,10 @@ https://www.transifex.com/projects/p/dash/ 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 réseau (%i) dépasse la taille maximum (%i). Réduisez le nombre ou la taille des uacomments. + + Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. + L'index de transaction ne peut pas être désactivé en mode complet. Démarrez en ligne de commande avec l'argument -litemode, ou bien activez l'index de transaction. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Essaie de limiter le trafic sortant sous la cible indiquée (en Mio par 24h), 0 = sans limite (par défaut : %d) @@ -4537,6 +4685,10 @@ https://www.transifex.com/projects/p/dash/ Warning: Unknown block versions being mined! It's possible unknown rules are in effect Attention : un bloc de version inconnue est en train d'être miné ! Il est possible que des règles inconnues soient en vigueur. + + You are starting in lite mode, all Dash-specific functionality is disabled. + Vous démarrez en mode allégé : toutes les fonctionnalités propres à Dash sont désactivées. + 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 pour retourner en mode non-élagué. Ceci aura pour effet de télécharger à nouveau la chaîne de blocs complète. @@ -4581,6 +4733,14 @@ https://www.transifex.com/projects/p/dash/ Enable publish hash block in <address> Activer la publication du hachage de bloc dans <address> + + Enable publish hash of governance objects (like proposals) in <address> + Activer la publication du hachage des objets de gouvernance (tels que les propositions budgétaires) dans <address> + + + Enable publish hash of governance votes in <address> + Activer la publication du hachage des votes de gouvernance dans <address> + Enable publish hash transaction (locked via InstantSend) in <address> Activer la publication du hachage de transaction (verrouillée via InstantSend) dans <address> @@ -4601,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ 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 transaction dans la zone mémoire (par défaut : %u) - Error: A fatal internal error occurred, see debug.log for details Erreur : Une erreur interne fatale est survenue, voir debug.log pour les détails @@ -4621,6 +4777,14 @@ https://www.transifex.com/projects/p/dash/ Failed to delete backup, error: %s La suppression de la sauvegarde a échoué, erreur : %s ! + + Failed to load InstantSend data cache from + Échec du chargement du cache de données InstantSend depuis + + + Failed to load sporks cache from + Échec du chargement du cache des sporks depuis + Failed to parse host:port string L'analyse de la chaîne hôte:port a échoué @@ -4657,6 +4821,10 @@ https://www.transifex.com/projects/p/dash/ Line: %d Ligne : %d + + Loading InstantSend data cache... + Chargement du cache de données d'InstantSend… + Loading addresses... Chargement des adresses... @@ -4669,6 +4837,10 @@ https://www.transifex.com/projects/p/dash/ Loading governance cache... Chargement du cache de gouvernance... + + Loading sporks cache... + Chargement du cache des sporks… + Loading wallet... (%3.2f %%) Chargement du portefeuille... (%3.2f %%) @@ -4809,6 +4981,10 @@ https://www.transifex.com/projects/p/dash/ Transaction must have at least one recipient La transaction doit comporter au moins un destinataire + + Transaction too large + Transaction trop volumineuse + Trying to connect... Tentative de connexion... @@ -4829,6 +5005,10 @@ https://www.transifex.com/projects/p/dash/ Wallet debugging/testing options: Options de débogage/de test du porte-monnaie : + + Wallet is not initialized + Le portefeuille n'est pas initialisé + Wallet needed to be rewritten: restart %s to complete Le porte-monnaie devait être réécrit : redémarrer %s pour terminer l’opération. @@ -4845,6 +5025,10 @@ https://www.transifex.com/projects/p/dash/ Whether to operate in a blocks only mode (default: %u) Opérer en mode blocs uniquement (par défaut : %u) + + You can not start a masternode in lite mode. + Vous ne pouvez pas démarrer un masternode en mode allégé. + ZeroMQ notification options: Options de notifications ZeroMQ : diff --git a/src/qt/locale/dash_it.ts b/src/qt/locale/dash_it.ts index 0b26b3de7797..9030cbd47d8b 100644 --- a/src/qt/locale/dash_it.ts +++ b/src/qt/locale/dash_it.ts @@ -971,8 +971,8 @@ Informazioni di Private Send - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Nozioni di base di PrivateSend</h3> PrivateSend ti offre una vera privacy finanziaria oscurando le origini dei tuoi fondi. Tutti i Dash nel tuo portafoglio sono costituiti da diversi "input" che puoi pensare come monete separate e discrete. <br>PrivateSend utilizza un processo innovativo per mescolare i tuoi input con gli input di due altre persone, senza che le tue monete lascino mai il tuo portafoglio. Si mantiene il controllo del proprio denaro in ogni momento. <hr><b>Il processo di PrivateSend funziona in questo modo: </b><ol type="1"><li>PrivateSend inizia dividendo gli input della transazioni in denominazioni standard. Queste denominazioni sono 0,01 DASH, 0,1 DASH, 1 DASH e 10 DASH: una specie di carta moneta che utilizzi ogni giorno.</li><li> Il tuo portafoglio quindi invia richieste ai nodi software appositamente configurati sulla rete, chiamati "masternode". Questi masternode vengono informati che sei interessato a mescolare una certa denominazione. Nessuna informazione identificabile viene inviata ai masternodes, quindi non sanno mai "chi" tu sia. </li><li>Quando altre due persone inviano messaggi simili, indicando che desiderano mescolare la stessa denominazione, inizia una sessione di mixaggio. Il masternode mescola gli input e incarica i portafogli di tutti e tre gli utenti di pagare a loro stessi l'input trasformato. Il tuo portafoglio paga quella denominazione direttamente a se stessa, ma in un indirizzo diverso (chiamato indirizzo di modifica). </li><li>Per oscurare completamente i tuoi fondi, il tuo portafoglio deve ripetere questo processo un certo numero di volte con ogni denominazione. Ogni processo completato, è chiamato "round". Ogni ciclo di PrivateSend rende esponenzialmente più difficile determinare la provenienza dei fondi. </li><li>Questo processo di miscelazione avviene in background senza alcun intervento da parte dell'utente. Quando desideri effettuare una transazione, i tuoi fondi saranno già resi anonimi. Non è richiesta alcuna attesa aggiuntiva.</li></ol><hr><b> IMPORTANTE: </b>il tuo portafoglio contiene solo 1000 di questi "indirizzi di modifica". Ogni volta che si verifica un evento di mixaggio, vengono usati fino a 9 dei tuoi indirizzi. Ciò significa che i 1000 indirizzi durano per circa 100 eventi di mixaggio. Quando vengono utilizzati 900 di questi, il tuo portafoglio deve creare altri indirizzi. Può farlo solo se si dispone dei backup automatici abilitati. <br>Di conseguenza, gli utenti che hanno disabilitato i backup avranno anche PrivateSend disabilitato. <hr>Per maggiori informazioni consulta la <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">documentazione di PrivateSend</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Nozioni di base di PrivateSend</h3> PrivateSend ti offre una vera privacy finanziaria oscurando le origini dei tuoi fondi. Tutti i Dash nel tuo portafoglio sono costituiti da diversi "input" che puoi pensare come monete separate e discrete. <br>PrivateSend utilizza un processo innovativo per mescolare i tuoi input con gli input di due altre persone, senza che le tue monete lascino mai il tuo portafoglio. Si mantiene il controllo del proprio denaro in ogni momento. <hr><b>Il processo di PrivateSend funziona in questo modo: </b><ol type="1"><li>PrivateSend inizia dividendo gli input della transazioni in denominazioni standard. Queste denominazioni sono 0,001 DASH, 0,01 DASH, 0,1 DASH, 1 DASH e 10 DASH: una specie di carta moneta che utilizzi ogni giorno.</li><li> Il tuo portafoglio quindi invia richieste ai nodi software appositamente configurati sulla rete, chiamati "masternode". Questi masternode vengono informati che sei interessato a mescolare una certa denominazione. Nessuna informazione identificabile viene inviata ai masternodes, quindi non sanno mai "chi" tu sia. </li><li>Quando altre due persone inviano messaggi simili, indicando che desiderano mescolare la stessa denominazione, inizia una sessione di mixaggio. Il masternode mescola gli input e incarica i portafogli di tutti e tre gli utenti di pagare a loro stessi l'input trasformato. Il tuo portafoglio paga quella denominazione direttamente a se stessa, ma in un indirizzo diverso (chiamato indirizzo di modifica). </li><li>Per oscurare completamente i tuoi fondi, il tuo portafoglio deve ripetere questo processo un certo numero di volte con ogni denominazione. Ogni processo completato, è chiamato "round". Ogni ciclo di PrivateSend rende esponenzialmente più difficile determinare la provenienza dei fondi. </li><li>Questo processo di miscelazione avviene in background senza alcun intervento da parte dell'utente. Quando desideri effettuare una transazione, i tuoi fondi saranno già resi anonimi. Non è richiesta alcuna attesa aggiuntiva.</li></ol><hr><b> IMPORTANTE: </b>il tuo portafoglio contiene solo 1000 di questi "indirizzi di modifica". Ogni volta che si verifica un evento di mixaggio, vengono usati fino a 9 dei tuoi indirizzi. Ciò significa che i 1000 indirizzi durano per circa 100 eventi di mixaggio. Quando vengono utilizzati 900 di questi, il tuo portafoglio deve creare altri indirizzi. Può farlo solo se si dispone dei backup automatici abilitati. <br>Di conseguenza, gli utenti che hanno disabilitato i backup avranno anche PrivateSend disabilitato. <hr>Per maggiori informazioni consulta la <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">documentazione di PrivateSend</a>. @@ -1108,10 +1108,78 @@ Node Count: Numero dei nodi: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Nota: questo elenco rappresenta l'elenco di masternode legacy e non-deterministico. È attivo solo finché DIP3 non è stato completamente attivato. Dopo l'attivazione di SPORK15, questa lista sarà vuota.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + Punteggio PoSe + + + Registered + Registrato + + + Last Paid + Ultimo pagato + + + Next Payment + Pagamento successivo + + + Operator Reward + Ricompensa dell'Operatore + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Nota: questo elenco non è ancora attivo e solo a scopo informativo. La rete è ancora in esecuzione in modalità di compatibilità, il che significa che l'elenco masternode non deterministico è ancora attivo. Solo dopo l'attivazione di SPORK15, questa lista diventerà attiva. Inoltre, i valori nei campi relativi al pagamento non vengono utilizzati al momento, ma vengono comunque aggiornati per ogni blocco. Ignora questo fino all'attivazione di SPORK15.</p></body></html> + Start alias Inizia alias + + Copy ProTx Hash + Copia ProTx Hash + + + Copy Collateral Outpoint + Copia Collateral Outpoint + + + ENABLED + ABILITATO + + + POSE_BANNED + POSIZIONE_BANNATA + + + UNKNOWN + SCONOSCIUTO + + + to %1 + a %1 + + + to UNKNOWN + a SCONOSCIUTO + + + but not claimed + ma non richiesto + + + NONE + nessuna + Confirm masternode start Conferma avviamento del Masternode @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Ulteriori informazioni per DIP3 Masternode %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Abilita le funzionalità di coin &control + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Mostra popup di sistema per le transazioni di missaggio PrivateSend<br/>proprio come per tutti gli altri tipi di transazione. + + + Show popups for PrivateSend transactions + Mostra popup per transazioni PrivateSend + &Spend unconfirmed change &Spendere resti non confermati @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Ultimo messaggio di PrivateSend: - - N/A - N/A - PrivateSend was successfully reset. PrivateSend è stato reimpostato correttamente. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Anche se in questa transazione è coinvolto un indirizzo di sola lettura + + Whether or not this transaction was locked by InstantSend. + Indipendentemente dal fatto che questa transazione sia stata bloccata da InstantSend. + User-defined intent/purpose of the transaction. Intento/scopo della transazione definito dall'utente. @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Tutti + + Locked by InstantSend + Bloccato da InstantSend + + + Not locked by InstantSend + Non bloccato da InstantSend + Today Oggi @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Cancella tutte le transazioni del portafoglio e sistema solo quelle parti della blockchain mediante -rescan quando apri il portafoglio + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Abilita le prime transazioni pubblicate del tentativo di doppia spesa di InstantSend in <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Abilita gli hash delle transazioni di pubblicazione del tentativo di doppia spesa di InstantSend in <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Errore durante il caricamento di %s: non è possibile abilitare l'HD su un portafoglio non-HD già esistente. @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Emette informazioni di debug (default: : %u, fornire <category> è opzionale) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Sovrascrive i segnaposti di spork minimi per modificare il valore di spork. Utile solo per regtest e devnet. Se lo usi su mainnet o testnet sarai bannato . + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Usa N masternodes separati in parallelo per mescolare i fondi (%u-%u, predefinito: %u) + 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 (default: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex È necessario ricostruire il database usando -reindex-chainstate per cambiare -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + È necessario specificare un masternodeblsprivkey nella configurazione. Si prega di consultare la documentazione per aiuto. + (default: %s) (default: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Importo non valido per -paytxfee=<amount>: '%s' (deve essere almeno %s) + + Invalid masternodeblsprivkey. Please see documenation. + Invalid masternodeblsprivkey. Per favore vedi documentazione. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Numero minimo non valido di firmatari di spork specificato con -minsporkkeys + Keypool ran out, please call keypoolrefill first Keypool esaurito, prima invocare keypoolrefill @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Imposta la dimensione del pool di chiavi a <n> (default: %u) + + Set the masternode BLS private key + Imposta la chiave privata BLS masternode + Set the number of threads to service RPC calls (default: %d) Imposta il numero di thread destinati a rispondere alle chiamate RPC (default: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Troppe denominazioni %f, rimuovendo. + + Too many %f denominations, skipping. + Troppe denominazioni %f, saltando. + Tor control port password (default: empty) Password porta di controllo Tor (default: empty) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Abilita la pubblicazione delle 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: 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 @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Importo non valido per -fallbackfee=<amount>: '%s' - - Invalid input count. - Conteggio di input non valido. - Keep the transaction memory pool below <n> megabytes (default: %u) Mantieni la memory pool delle transazioni al di sotto di <n> megabyte (default: %u) diff --git a/src/qt/locale/dash_ja.ts b/src/qt/locale/dash_ja.ts index 375e8e5fee1c..6cea74660e97 100644 --- a/src/qt/locale/dash_ja.ts +++ b/src/qt/locale/dash_ja.ts @@ -971,8 +971,8 @@ プライベートセンドの情報 - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>プライベートセンドの基本</h3> プライベートセンドはあなたのファンドの起源を不明瞭にすることによって真のファイナンシャルプライバシーを提供します。あなたのウォレットにあるDashは別々の異なるコインとして考えられる”インプット”から構成されています。<br> プライベートセンドは画期的なプロセスを使用し、ウォレットからあなたのコインが移動させられることなく、他の二人の人々のインプットとあなたのインプットをミックスします。あなたは常にあなたのファンドをコントロールしています。<hr> <b>プライベートセンドのプロセスは以下のように機能します:</b><ol type="1"> <li>プライベートセンドは、あなたのトランザクションインプットをスタンダードな通貨単位に分割します。これらの通貨単位は0.01 DASH, 0.1 DASH, 1 DASH そして 10 DASH -- 日常的に使われる紙幣のようなものです。</li> <li>あなたのウォレットは次に、 "マスターノード"と呼ばれるネットワーク上に特別に設定されたソフトウェアノードにリクエストを送信します。これらのマスターノードは、特定の通貨単位をミキシングしたいというあなたの要望を知らされます。送信者を特定できる情報は送信されないので、マスターノードはあなたが誰かわかりません。 </li> <li>二人の別の人たちが同じようなメッセージを送信して、同じ通貨単位をミキシングしたいという要望を伝え、ミキシングセッションが開始されます。マスターノードはインプットをミックスし、すべての三人のユーザーのウォレットに命じて変更されたインプットをもとのウォレットに戻させます。あなたのウォレットはその通貨単位を直接もとのウォレットに支払いますが、アドレスは異なっています(チェンジアドレスといいます)</li> <li>完全にあなたのファンドを匿名化するには、あなたのウォレットはこのプロセスをそれぞれの通貨単位で何回もリピートする必要があります。このプロセスは "ラウンド"と呼びます。プライベートセンドのラウンドが進めば、あなたのファンドの起源を遡ることは指数関数的に困難になっていきます。</li> <li>このミキシングのプロセスはあなたになにも干渉することなくバックグラウンドで実行されます。あなたがトランザクションを実行したいとき、あなたのファンドはすでに匿名化されています。追加の待ち時間は必要ありません。</li> </ol> <hr><b>重要:</b> あなたのウォレットは、 1000個の "チェンジアドレス"しか保有できません。ミキシングが実行されるたびに、9個のアドレスが使用されます。これは1000個のアドレスを使い切るまでに約100回のミキシングがきることを意味します。900個のアドレスが使用されると、あなたのウォレットは追加のアドレスを生成しなくてはなりません。しかし、あなたが自動バックアップを有効にしていれば可能です。<br> つまりバックアップが無効なユーザーはプライベートセンドが無効になります。 <hr>詳細は <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">プライベートセンドドキュメンテーション</a>参照. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>プライベートセンドの基本</h3> プライベートセンドはあなたのファンドの起源を不明瞭にすることによって真のファイナンシャルプライバシーを提供します。あなたのウォレットにあるDashは別々の異なるコインとして考えられる”インプット”から構成されています。<br> プライベートセンドは画期的なプロセスを使用し、ウォレットからあなたのコインが移動させられることなく、他の二人の人々のインプットとあなたのインプットをミックスします。あなたは常にあなたのファンドをコントロールしています。<hr> <b>プライベートセンドのプロセスは以下のように機能します:</b><ol type="1"> <li>プライベートセンドは、あなたのトランザクションインプットをスタンダードな通貨単位に分割します。これらの通貨単位は0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH そして 10 DASH -- 日常的に使われる紙幣のようなものです。</li> <li>あなたのウォレットは次に、 "マスターノード"と呼ばれるネットワーク上に特別に設定されたソフトウェアノードにリクエストを送信します。これらのマスターノードは、特定の通貨単位をミキシングしたいというあなたの要望を知らされます。送信者を特定できる情報は送信されないので、マスターノードはあなたが誰かわかりません。 </li> <li>二人の別の人たちが同じようなメッセージを送信して、同じ通貨単位をミキシングしたいという要望を伝え、ミキシングセッションが開始されます。マスターノードはインプットをミックスし、すべての三人のユーザーのウォレットに命じて変更されたインプットをもとのウォレットに戻させます。あなたのウォレットはその通貨単位を直接もとのウォレットに支払いますが、アドレスは異なっています(チェンジアドレスといいます)</li> <li>完全にあなたのファンドを匿名化するには、あなたのウォレットはこのプロセスをそれぞれの通貨単位で何回もリピートする必要があります。このプロセスは "ラウンド"と呼びます。プライベートセンドのラウンドが進めば、あなたのファンドの起源を遡ることは指数関数的に困難になっていきます。</li> <li>このミキシングのプロセスはあなたになにも干渉することなくバックグラウンドで実行されます。あなたがトランザクションを実行したいとき、あなたのファンドはすでに匿名化されています。追加の待ち時間は必要ありません。</li> </ol> <hr><b>重要:</b> あなたのウォレットは、 1000個の "チェンジアドレス"しか保有できません。ミキシングが実行されるたびに、9個のアドレスが使用されます。これは1000個のアドレスを使い切るまでに約100回のミキシングがきることを意味します。900個のアドレスが使用されると、あなたのウォレットは追加のアドレスを生成しなくてはなりません。しかし、あなたが自動バックアップを有効にしていれば可能です。<br> つまりバックアップが無効なユーザーはプライベートセンドが無効になります。 <hr>詳細は <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">プライベートセンドドキュメンテーション</a>参照. @@ -1109,10 +1109,78 @@ Node Count: ノード数: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>注:このリストは、従来の非決定論的マスターノードリストを表します。 DIP3が完全にアクティブ化されていない限り有効です。 SPORK15の有効化後、このリストは空になります。</p></body></html> + + + DIP3 Masternodes + DIP3マスターノード + + + PoSe Score + PoSeスコア + + + Registered + 登録済み + + + Last Paid + 最新の支払い + + + Next Payment + 次の支払い + + + Operator Reward + オペレーター報酬 + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>注:このリストはまだアクティブではなく、情報提供のみを目的としています。 ネットワークはまだ互換モードで実行されています。つまり、非決定論的マスターノードリストはまだアクティブです。 SPORK15のアクティブ化後に初めて、このリストがアクティブになります。 また、支払い関連フィールドの値は現時点では使用されていませんが、ブロックごとに更新されています。 SPORK15のアクティブ化までこれを無視してください。</p></body></html> + Start alias エイリアス開始 + + Copy ProTx Hash + ProTxハッシュをコピー + + + Copy Collateral Outpoint + Collateral Outpointをコピー + + + ENABLED + 使用可能 + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + 不明 + + + to %1 + to %1 + + + to UNKNOWN + to UNKNOWN + + + but not claimed + but not claimed + + + NONE + 無し + Confirm masternode start マスターノードの開始を確認 @@ -1177,6 +1245,10 @@ Sentinel センチネル + + Additional information for DIP3 Masternode %1 + DIP3 Masternode %1の追加情報 + ModalOverlay @@ -1324,7 +1396,7 @@ PrivateSend rounds to use - プライベートセンドのラウンドを使用 + プライベートセンドを利用する際のラウンド回数 This amount acts as a threshold to turn off PrivateSend once it's reached. @@ -1382,6 +1454,14 @@ Enable coin &control features コインコントロール機能を有効化 (&C) + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + 守秘送金[プライベートセンド]のミキシングトランザクション<br/>を他のすべてのトランザクションタイプと同じようにポップアップ表示します。 + + + Show popups for PrivateSend transactions + 守秘送金[プライベートセンド]トランザクションのポップアップを表示する + &Spend unconfirmed change 未検証のチェンジを使用 (&S) @@ -1797,10 +1877,6 @@ https://www.transifex.com/projects/p/dash/ 最後のプライベートセンドのメッセージ: - - N/A - N/A - PrivateSend was successfully reset. プライベートセンドのリセットに成功しました。 @@ -3540,6 +3616,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. ウォッチオンリーのアドレスがこのトランザクションに含まれているかどうか + + Whether or not this transaction was locked by InstantSend. + このトランザクションがインスタントセンドによってロックされていたかどうか。 + User-defined intent/purpose of the transaction. ユーザー定義のトランザクションの意図/目的 @@ -3555,6 +3635,14 @@ https://www.transifex.com/projects/p/dash/ All すべて + + Locked by InstantSend + 即時送金[インスタントセンド]によってロックされています + + + Not locked by InstantSend + 即時送金[インスタントセンド]によってロックされていません + Today 今日 @@ -3978,6 +4066,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup ウォレットの全トランザクションを削除し、これらを-rescanオプションを用いることで起動時にブロックチェインのデータのみからリカバリします。 + + Enable publish raw transactions of attempted InstantSend double spend in <address> + 試行中のインスタントセンド二重支払い <address> の未確定トランザクションの生成を有効にする + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + <address>で試行されたインスタントセンド二重支払いのトランザクションハッシュの生成を有効にする + Error loading %s: You can't enable HD on a already existing non-HD wallet %s読み込みエラー: 既存の非HDウォレット上でHDを有効化できません @@ -4022,6 +4118,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) デバッグ情報を出力する (初期設定: %u, <category> の指定は任意です) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + スポーク値を変更するために最小のスポーク署名者を無視します。 regtestとdevnetでのみ使用可能です。これをmainnetやtestnetで使うとあなたは追放されます。 + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + 資金を混合するためにN個の別々のマスターノードを並行して使用する (%u-%u, default: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Tor 秘匿サービスを経由して別々の SOCKS5 プロキシを用いることでピアに到達する (初期設定: %s) @@ -4042,6 +4146,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex -txindexを変更するために -reindex-chainstate を使用してデータベースをリビルドする必要があります。 + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + 設定でマスターノードBLS秘密鍵を指定する必要があります。 ヘルプの説明を参照してください。 + (default: %s) (初期設定: %s) @@ -4154,6 +4262,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) -paytxfee=<amount> に対する無効な数量です: '%s' (少なくとも %s でなければいけません) + + Invalid masternodeblsprivkey. Please see documenation. + マスターノードBLS秘密鍵が無効です。説明をお読み下さい。 + + + Invalid minimum number of spork signers specified with -minsporkkeys + -minsporkkeysで指定されたスポーク署名者の最小数が無効です + Keypool ran out, please call keypoolrefill first キープールが枯渇しました。まずはじめに keypoolrefill を呼び出してください。 @@ -4254,6 +4370,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) key pool のサイズを <n> (初期設定: %u) にセット + + Set the masternode BLS private key + マスターノードBLS秘密鍵の設定 + Set the number of threads to service RPC calls (default: %d) RPC 呼び出しのスレッド数を設定 (初期設定: %d) @@ -4318,6 +4438,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. 異常に多くの %f デノミネーション、削除中 + + Too many %f denominations, skipping. + %f 分割単位が多すぎるため、スキップします。 + Tor control port password (default: empty) Tor管理ポートのパスワード (初期値: 空文字) @@ -4638,10 +4762,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> <address> に対し、原トランザクションの公開を有効にする - - Enable transaction replacement in the memory pool (default: %u) - メモリプール内のトランザクションの置換を有効化する (初期設定: %u) - Error: A fatal internal error occurred, see debug.log for details エラー:致命的な内部エラーが発生しました。詳細はdebug.logを参照してください @@ -4686,10 +4806,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' 無効な額 -fallbackfee=<amount>: '%s' - - Invalid input count. - 無効なインプットカウント - Keep the transaction memory pool below <n> megabytes (default: %u) トランザクションのメモリープールの総量を <n> メガバイト以下に維持する (初期値: %u) diff --git a/src/qt/locale/dash_ko.ts b/src/qt/locale/dash_ko.ts index 33e376abc021..a67cf48e5905 100644 --- a/src/qt/locale/dash_ko.ts +++ b/src/qt/locale/dash_ko.ts @@ -971,8 +971,8 @@ 프라이빗샌드 정보 - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>프라이빗샌드에 관한 기본 정보</h3> 프라이빗 샌드는 당신의 자금 출처를 가려 진정한 재정적 프라이버시를 보장합니다. 당신의 지갑에 보관된 모든 대시는 각기 다른 ‘입력값’으로 구성되어 있습니다. 쉽게 생각하면 별도의 분리된 동전으로 구성되어 있다고 볼 수 있습니다.<br> 프라이빗샌드는 당신의 코인이 지갑을 떠나지 않고도 그 입력값을 다른 두 사람의 입력값과 섞는 혁신적인 방식을 사용합니다. 이로써 당신의 자금은 언제나 당신의 통제 하에 있습니다.<hr><b> 프라이빗샌드는 다음과 같은 방식으로 작동합니다.</b><ol type="1"><li> 프라이빗샌드는 당신의 거래 입력값을 표준 단위로 쪼개는 것으로 시작합니다. 이렇게 분할하는 단위는 0.01대시, 0.1대시, 1대시 혹은 10대시 입니다 - 귀하가 일상적으로 사용하는 지폐와 비슷하다고 생각하셔도 좋습니다. </li><li>이후 당신의 지갑은 ‘마스터노드’라고 불리는 네트워크의 특수 구성 소프트웨어 노드에 요청을 전송합니다. 이로써 이들 마스터노드는 당신이 특정 금액을 믹싱하고자 한다는 정보를 수신합니다. 마스터노드에는 당신의 개인 정보를 식별할 수 있는 어떤 내용도 전송되지 않습니다. 즉 당신이 ‘누구’인지 알 수 있는 방법은 없습니다.</li><li> 두 명의 다른 사람이 비슷한 메시지를 보내어 그들 역시 같은 단위의 금액을 믹싱하고 싶다는 정보를 표시하면 믹싱 세션이 시작됩니다. 마스터노드는 이들 입력값을 믹싱하여 세 사용자의 지갑에 변환된 입력을 지불하도록 지시합니다. 당신의 지갑은 해당 입력값을 지불하지만, 지불되는 주소는 '변경 주소'라고 불리는 다른 주소로 보내집니다.</li><li> 당신의 자금을 완전히 가리기 위해서, 당신의 지갑은 이 과정을 각 대시 분할 단위만큼 여러번 반복합니다. 이러한 반복을 ‘라운드’라고 부릅니다. 프라이빗샌드의 각 라운드가 진행됨에 따라 당신이 송금하고자 하는 자금의 출처는 기하급수적으로 높은 수준으로 가려집니다.</li><li> 이 믹싱 과정은 당신이 개입할 필요 없이 백그라운드에서 진행됩니다. 당신이 거래를 원하시는 경우, 당신의 자금은 이미 익명화가 진행되는 중입니다. 추가적으로 대기할 필요 역시 없습니다. </li></ol><hr><b>중요:</b> 당신의 지갑은 1,000개의 ‘변경 주소’만을 가지고 있습니다. 믹싱을 실행할 때마다 최대 9개의 주소가 사용됩니다. 이는 곧 이들 1000개의 주소가 약 100개의 믹싱 작업을 위해 사용될 수 있다는 것을 의미합니다. 전체 1,000개의 주소 중 900개가 사용된 경우 당신의 지갑은 더 많은 주소를 만들어야 합니다. 그러나 이 작업은 당신이 자동 백업을 설정한 경우에만 수행됩니다. <br>따라서 백업이 비활성화된 사용자는 프라이빗샌드 역시 비활성화 됩니다. <hr>더 많은 정보를 위해서는 다음을 참조하세요 <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">프라이빗샌드 설명서</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>프라이빗샌드에 관한 기본 정보</h3> 프라이빗 샌드는 당신의 자금 출처를 가려 진정한 재정적 프라이버시를 보장합니다. 당신의 지갑에 보관된 모든 대시는 각기 다른 ‘입력값’으로 구성되어 있습니다. 쉽게 생각하면 별도의 분리된 동전으로 구성되어 있다고 볼 수 있습니다.<br> 프라이빗샌드는 당신의 코인이 지갑을 떠나지 않고도 그 입력값을 다른 두 사람의 입력값과 섞는 혁신적인 방식을 사용합니다. 이로써 당신의 자금은 언제나 당신의 통제 하에 있습니다.<hr><b> 프라이빗샌드는 다음과 같은 방식으로 작동합니다.</b><ol type="1"><li> 프라이빗샌드는 당신의 거래 입력값을 표준 단위로 쪼개는 것으로 시작합니다. 이렇게 분할하는 단위는 0.001대시, 0.01대시, 0.1대시, 1대시 혹은 10대시 입니다 - 귀하가 일상적으로 사용하는 지폐와 비슷하다고 생각하셔도 좋습니다. </li><li>이후 당신의 지갑은 ‘마스터노드’라고 불리는 네트워크의 특수 구성 소프트웨어 노드에 요청을 전송합니다. 이로써 이들 마스터노드는 당신이 특정 금액을 믹싱하고자 한다는 정보를 수신합니다. 마스터노드에는 당신의 개인 정보를 식별할 수 있는 어떤 내용도 전송되지 않습니다. 즉 당신이 ‘누구’인지 알 수 있는 방법은 없습니다.</li><li> 두 명의 다른 사람이 비슷한 메시지를 보내어 그들 역시 같은 단위의 금액을 믹싱하고 싶다는 정보를 표시하면 믹싱 세션이 시작됩니다. 마스터노드는 이들 입력값을 믹싱하여 세 사용자의 지갑에 변환된 입력을 지불하도록 지시합니다. 당신의 지갑은 해당 입력값을 지불하지만, 지불되는 주소는 '변경 주소'라고 불리는 다른 주소로 보내집니다.</li><li> 당신의 자금을 완전히 가리기 위해서, 당신의 지갑은 이 과정을 각 대시 분할 단위만큼 여러번 반복합니다. 이러한 반복을 ‘라운드’라고 부릅니다. 프라이빗샌드의 각 라운드가 진행됨에 따라 당신이 송금하고자 하는 자금의 출처는 기하급수적으로 높은 수준으로 가려집니다.</li><li> 이 믹싱 과정은 당신이 개입할 필요 없이 백그라운드에서 진행됩니다. 당신이 거래를 원하시는 경우, 당신의 자금은 이미 익명화가 진행되는 중입니다. 추가적으로 대기할 필요 역시 없습니다. </li></ol><hr><b>중요:</b> 당신의 지갑은 1,000개의 ‘변경 주소’만을 가지고 있습니다. 믹싱을 실행할 때마다 최대 9개의 주소가 사용됩니다. 이는 곧 이들 1000개의 주소가 약 100개의 믹싱 작업을 위해 사용될 수 있다는 것을 의미합니다. 전체 1,000개의 주소 중 900개가 사용된 경우 당신의 지갑은 더 많은 주소를 만들어야 합니다. 그러나 이 작업은 당신이 자동 백업을 설정한 경우에만 수행됩니다. <br>따라서 백업이 비활성화된 사용자는 프라이빗샌드 역시 비활성화 됩니다. <hr>더 많은 정보를 위해서는 다음을 참조하세요 <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">프라이빗샌드 설명서</a>. @@ -1108,10 +1108,78 @@ Node Count: 노드 개수: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>주의: 이 리스트는 레거시와 비결정론적 마스터노드 리스트를 나타냅니다. 이는 DIP3가 완전히 활성화되지 않은 경우에만 활성화됩니다. SPORK15 활성화 후에 이 리스트는 비워집니다.</p></body></html> + + + DIP3 Masternodes + DIP3 마스터노드 + + + PoSe Score + PoSe 스코어 + + + Registered + 등록됨 + + + Last Paid + 지난 지불 + + + Next Payment + 다음 지불 + + + Operator Reward + 운영 보상 + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>주의: 이 리스트는 아직 활성화되지 않았으며 정보 전달을 위한 목적으로만 사용됩니다. 네트워크는 여전히 호환성 모드에서 작동하고 있으며, 이는 곧 비결정론적 마스터노드 리스트가 여전히 활성화되어 있음을 나타냅니다. 이 리스트는 SPORK15 활성화 이후에만 활성화됩니다. 또한, 지불과 관련된 필드의 값은 현재 사용되지 않지만, 여전히 모든 블록에 대해 업데이트 됩니다. SPORK15 활성화가 이루어질 때까지 이를 무시해주십시오.</p></body></html> + Start alias 에일리어스 시작 + + Copy ProTx Hash + ProTx 해시 복사 + + + Copy Collateral Outpoint + 콜래트럴 아웃포인트 복사 + + + ENABLED + 활성화됨 + + + POSE_BANNED + POSE_금지됨 + + + UNKNOWN + 알 수 없음 + + + to %1 + %1 까지 + + + to UNKNOWN + 알 수 없음 까지 + + + but not claimed + 아직 나타나지 않았습니다. + + + NONE + 없음 + Confirm masternode start 마스터노드 실행 확인 @@ -1176,6 +1244,10 @@ Sentinel 센티넬 + + Additional information for DIP3 Masternode %1 + DIP3 마스터노드 %1에 대한 추가 정보 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features 코인 제어 기능 활성화(&C) + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + 다른 모든 거래 타입과 같이<br/>프라이빗샌드 믹싱 거래를 위한 시스템 팝업을 보여줍니다 + + + Show popups for PrivateSend transactions + 프라이빗샌드 거래를 위한 팝업을 보여줍니다. + &Spend unconfirmed change 검증되지 않은 잔돈 쓰기 (&S) @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ 지난 프라이빗샌드 메시지: - - N/A - 없음 - PrivateSend was successfully reset. 프라이빗샌드가 성공적으로 재설정 되었습니다. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. 이 거래에 조회 전용 주소가 포함 되는지의 여부 + + Whether or not this transaction was locked by InstantSend. + 이 거래가 인스턴트샌드를 통해 잠겼는 지의 여부 + User-defined intent/purpose of the transaction. 거래의 의도/목적에 대한 사용자 정의 @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All 전체 + + Locked by InstantSend + 인스턴트샌드로 잠김 + + + Not locked by InstantSend + 인스턴트샌드로 잠기지 않음 + Today 오늘 @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup 시작 시 모든 지갑 거래를 삭제하고 -rescan을 통해 블록체인의 특정 부분만을 복구합니다. + + Enable publish raw transactions of attempted InstantSend double spend in <address> + <address>에서 시도된 인스턴트샌드 이중 지불의 원시 거래 공개를 활성화합니다. + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + <address>에서 시도된 인스턴트샌드 이중 지불의 거래 해시 공개를 활성화합니다. + Error loading %s: You can't enable HD on a already existing non-HD wallet %s 로딩 에러: HD 지갑이 아닌 경우 HD를 활성화 할 수 없습니다. @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) 디버그 정보 출력 (디폴트: %u, <category> 제공 선택 가능) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + 최소 스포크 서명자를 무시하고 스포크 값을 변경합니다. 오직 회귀 테스트와 개발 네트워크에서만 유용합니다. 메인넷이나 테스트넷에서 사용하는 경우에는 금지당할 수 있습니다. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + 병렬 관계에 있는 N개의 마스터노드를 사용하여 금액을 믹스합니다. (%u-%u, 디폴트: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Tor 숨김 서비스로 피어에 접속하기 위해 별도의 SOCKS5 프록시를 사용하기 (디폴트: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex -txindex를 변경하기 위해서는 -reindex- 체인 상태를 사용하여 데이터를 재구성해야 합니다. + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + 설정에서 masternodeblsprivkey를 지정하십시오. 도움이 필요하신 경우 문서를 확인하십시오. + (default: %s) (디폴트: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) 유효하지 않은 금액입니다. -paytxfee=<amount>: '%s' (최소 %s 이상이어야 합니다) + + Invalid masternodeblsprivkey. Please see documenation. + 유효하지 않은 masternodeblsprivkey 입니다. 문서를 확인하세요. + + + Invalid minimum number of spork signers specified with -minsporkkeys + -minsporkkeys로 지정된 스포크 서명자의 최소 숫자가 유효하지 않습니다. + Keypool ran out, please call keypoolrefill first Keypool을 모두 사용하였습니다. 우선 keypoolrefill을 호출하십시오. @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) 키풀 크기를 <n> 로 설정합니다. (기본값: %u) + + Set the masternode BLS private key + 마스터노드 BLS 개인 키를 설정합니다. + Set the number of threads to service RPC calls (default: %d) RPC 호출 서비스를 위한 스레드의 개수 설정 (기본값: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. %f 분할 단위가 너무 많습니다. 삭제합니다. + + Too many %f denominations, skipping. + %f 분할 단위가 너무 많습니다. 건너뜁니다. + Tor control port password (default: empty) Tor 관리 포트 암호 (기본값: 공란) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> <address>에 대한 원시 거래 공개 활성화 - - Enable transaction replacement in the memory pool (default: %u) - 메모리 풀 내의 거래 대체를 활성화합니다. (기본값: %u) - Error: A fatal internal error occurred, see debug.log for details 에러: 치명적인 내부 오류가 발생했습니다, 자세한 내용은 debug.log 를 확인해주세요. @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' 유효하지 않은 금액 -fallbackfee=<amount>: '%s' - - Invalid input count. - 잘못된 입력 횟수입니다. - Keep the transaction memory pool below <n> megabytes (default: %u) 거래 메모리 풀의 용량을 <n>메가바이트 아래로 유지하기 (기본값: %u) diff --git a/src/qt/locale/dash_nl.ts b/src/qt/locale/dash_nl.ts index 268cfa39bce2..4ee8733b0993 100644 --- a/src/qt/locale/dash_nl.ts +++ b/src/qt/locale/dash_nl.ts @@ -971,8 +971,8 @@ PrivateSend informatie - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>PrivateSend Basics</h3> PrivateSend geeft u een echte financiële privacy door de oorsprong van uw geld te verschuilen. Alle Dash in uw portefeuille bestaat uit verschillende "inputs" die u kunt beschouwen als afzonderlijke, discrete munten.<br> PrivateSend maakt gebruik van een innovatief proces om uw invoer te mengen met de invoer van twee andere mensen, zonder dat uw munten ooit uw portemonnee verlaten . U behoudt de controle over uw geld te allen tijde. <hr> <b>Het PrivateSend-proces werkt als volgt: </b><ol type="1"> <li>PrivateSend begint door uw transactie-inputs in de standaard denominaties te breken. Deze denominaties zijn 0,01 DASH, 0,1 DASH, 1 DASH en 10 DASH - zoals de papiergeld dat u elke dag gebruikt.</li> <li>Jouw portemonnee stuurt dan verzoeken naar speciaal geconfigureerde software nodes op het netwerk, genaamd "masternodes." Deze masternodes worden dan op de hoogte gesteld dat u geïnteresseerd bent in het mengen van een bepaalde denominaties. Er wordt geen identificeerbare informatie naar de masternodes gestuurd, zodat ze nooit weten wie je bent.</li> <li>Wanneer twee andere mensen dezelfde berichten sturen, die aanduiden dat ze dezelfde denominaties willen vermengen, begint een mengsessie. De masternode mengt alle invoeren en instrueert de portefeuilles van alle drie de gebruikers om de nu getransformeerde invoer aan zichzelf terug te betalen. Jouw portemonnee betaalt die denominaties rechtstreeks naar zichzelf, maar met een ander adres (een wijziging adres genoemd).</li> <li>Om uw geld volledig te verschuilen, moet uw portemonnee dit proces een aantal keren herhalen voor elke denominaties. Elke keer dat het proces wordt voltooid, dit heet een 'ronde'. Elke ronde van PrivateSend maakt het exponentieel moeilijker om te bepalen waar uw geld van afkomstig is.</li> <li>Dit mengproces gebeurt op de achtergrond zonder enige interventie van uw kant. Wanneer u een transactie wenst uit te voeren, zijn uw fondsen al geanonimiseerd. Er is geen extra wachttijd nodig.</li> </ol> <hr><b>BELANGRIJK:</b> Je portemonnee bevat slechts 1000 van deze "wijzigingsadressen". Elke keer dat er een mengsessie plaatsvindt, worden maximaal 9 van uw adressen opgebruikt. Dit betekent dat deze 1000 adressen voor ongeveer 100 mengsessies volstaat. Wanneer er 900 werden gebruikt, moet je portemonnee meer adressen aanmaken. Dit kan alleen maar als u automatische back-ups hebt ingeschakeld.<br> Bijgevolg hebben gebruikers die back-ups hebben uitgeschakeld, ook PrivateSend uitgeschakeld. <hr>Voor meer informatie zie de <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentatie</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>PrivateSend Basics</h3> PrivateSend geeft u een echte financiële privacy door de oorsprong van uw geld te verschuilen. Alle Dash in uw portefeuille bestaat uit verschillende "inputs" die u kunt beschouwen als afzonderlijke, discrete munten.<br> PrivateSend maakt gebruik van een innovatief proces om uw invoer te mengen met de invoer van twee andere mensen, zonder dat uw munten ooit uw portemonnee verlaten . U behoudt de controle over uw geld te allen tijde. <hr> <b>Het PrivateSend-proces werkt als volgt: </b><ol type="1"> <li>PrivateSend begint door uw transactie-inputs in de standaard denominaties te breken. Deze denominaties zijn 0,001 DASH, 0,01 DASH, 0,1 DASH, 1 DASH en 10 DASH - zoals de papiergeld dat u elke dag gebruikt.</li> <li>Jouw portemonnee stuurt dan verzoeken naar speciaal geconfigureerde software nodes op het netwerk, genaamd "masternodes." Deze masternodes worden dan op de hoogte gesteld dat u geïnteresseerd bent in het mengen van een bepaalde denominaties. Er wordt geen identificeerbare informatie naar de masternodes gestuurd, zodat ze nooit weten wie je bent.</li> <li>Wanneer twee andere mensen dezelfde berichten sturen, die aanduiden dat ze dezelfde denominaties willen vermengen, begint een mengsessie. De masternode mengt alle invoeren en instrueert de portefeuilles van alle drie de gebruikers om de nu getransformeerde invoer aan zichzelf terug te betalen. Jouw portemonnee betaalt die denominaties rechtstreeks naar zichzelf, maar met een ander adres (een wijziging adres genoemd).</li> <li>Om uw geld volledig te verschuilen, moet uw portemonnee dit proces een aantal keren herhalen voor elke denominaties. Elke keer dat het proces wordt voltooid, dit heet een 'ronde'. Elke ronde van PrivateSend maakt het exponentieel moeilijker om te bepalen waar uw geld van afkomstig is.</li> <li>Dit mengproces gebeurt op de achtergrond zonder enige interventie van uw kant. Wanneer u een transactie wenst uit te voeren, zijn uw fondsen al geanonimiseerd. Er is geen extra wachttijd nodig.</li> </ol> <hr><b>BELANGRIJK:</b> Je portemonnee bevat slechts 1000 van deze "wijzigingsadressen". Elke keer dat er een mengsessie plaatsvindt, worden maximaal 9 van uw adressen opgebruikt. Dit betekent dat deze 1000 adressen voor ongeveer 100 mengsessies volstaat. Wanneer er 900 werden gebruikt, moet je portemonnee meer adressen aanmaken. Dit kan alleen maar als u automatische back-ups hebt ingeschakeld.<br> Bijgevolg hebben gebruikers die back-ups hebben uitgeschakeld, ook PrivateSend uitgeschakeld. <hr>Voor meer informatie zie de <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentatie</a>. @@ -1108,10 +1108,78 @@ Node Count: Aantal Nodes: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Opmerking: Deze lijst vertegenwoordigt de verouderde non-deterministische masternode lijst. Deze is actief zolang DIP3 nog niet volledig geactiveerd is. Na de activatie van SPORK15 zal deze lijst leeg zijn.</body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + PoSe Score + + + Registered + Geregistreerd + + + Last Paid + Laatst Betaald + + + Next Payment + Volgende betaling + + + Operator Reward + Vergoeding voor Bediener + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Opmerking: Deze lijst is nog niet actief en is alleen voor informatieve doeleinden. Het netwerk draait nog steeds in compatibliteitsmodus, wat betekent dat de non-deterministische masternode lijst nog steeds actief is. Pas na de activatie van SPORK15 zal deze lijst de actieve worden. Tevens worden de waardes in de betalingsgerelateerde velden op het moment niet gebruikt, maar worden geüpdatet bij elk blok. Negeer dit tot dat SPORK15 actief is.</p></body></html> + Start alias Start alias + + Copy ProTx Hash + Kopieer ProTx Hash + + + Copy Collateral Outpoint + Kopieer Onderpand Outpoint + + + ENABLED + INGESCHAKELD + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + ONBEKEND + + + to %1 + naar %1 + + + to UNKNOWN + naar ONBEKEND + + + but not claimed + naar niet gevorderd + + + NONE + GEEN + Confirm masternode start Bevestig opstarten van Masternode @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Extra informatie voor DIP3 Masternode %1 + ModalOverlay @@ -1383,6 +1455,14 @@ Meer anonimisatie rondes geeft een hoger niveau van privacy, maar kost ook meer Enable coin &control features Coin &Control activeren + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Toon systeem popups voor PrivateSend mixing transacties <br/>, net zoals voor alle andere transactie types. + + + Show popups for PrivateSend transactions + Toon popups voor PrivateSend transacties + &Spend unconfirmed change &Spendeer onbevestigd wisselgeld @@ -1799,10 +1879,6 @@ Om te mixen moeten andere gebruikers exact dezelfde denominaties inbrengen.Laatste PrivateSend bericht: - - N/A - N.v.t. - PrivateSend was successfully reset. PrivateSend is succesvol gereset @@ -2193,7 +2269,7 @@ Om te mixen moeten andere gebruikers exact dezelfde denominaties inbrengen. &Peers - $Peers + &Peers Banned peers @@ -2329,11 +2405,11 @@ Om te mixen moeten andere gebruikers exact dezelfde denominaties inbrengen. -zapwallettxes=1: Recover transactions from blockchain (keep meta-data, e.g. account owner). - -zapwallettxes=1: Herstel transacties van de blocks(behoud metadata; bv. accounteigenaar) + -zapwallettxes=1: Herstel transacties van de blocks (behoud metadata; bv. accounteigenaar) -zapwallettxes=2: Recover transactions from blockchain (drop meta-data). - -zapwallettxes=2: Herstel transacties vanuit de blocks (laat metadata vervallen) + -zapwallettxes=2: Herstel transacties van de blocks (laat metadata vervallen) -upgradewallet: Upgrade wallet to latest format on startup. (Note: this is NOT an update of the wallet itself!) @@ -3545,6 +3621,10 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer Whether or not a watch-only address is involved in this transaction. Of er een alleen-bekijken-adres is betrokken bij deze transactie. + + Whether or not this transaction was locked by InstantSend. + Of deze transactie wel of niet was vastgezet door InstantSend. + User-defined intent/purpose of the transaction. Door gebruiker gedefinieerde intentie/doel van de transactie. @@ -3560,6 +3640,14 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer All Alles + + Locked by InstantSend + Geblokkeerd door InstantSend + + + Not locked by InstantSend + Niet geblokkeerd door InstantSend + Today Vandaag @@ -3983,6 +4071,14 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer 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 + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Inschakelen van ruwe transacties van pogingen van InstantSend double spend in<address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Inschakelen van het publiceren van transactiehashes van pogingen van InstantSend double spend in <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Fout bij het laden van %s: U kunt HD niet inschakelen op een al bestaande non-HD wallet @@ -4027,6 +4123,14 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer Output debugging information (default: %u, supplying <category> is optional) Output extra debugginginformatie (standaard: %u, het leveren van <categorie> is optioneel) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Overschrijf minimum spork ondertekenaars om de spork waarde te veranderen. Alleen bruikbaar bij regtest en devnet. Door dit te gebruiken op mainnet of testnet zal een ban opleveren. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Gebruik N verschillende masternodes tegelijk om saldo te mixen (%u-%u, standaard: %u) + 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) @@ -4047,6 +4151,10 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer You need to rebuild the database using -reindex-chainstate to change -txindex U moet de database herbouwen met -reindex-chainstate om -txindex aan te passen + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + U dient een masternode BLS geheime sleutel te specificeren in de configuratie. Raadpleeg de documentatie voor hulp. + (default: %s) (standaard: %s) @@ -4159,6 +4267,14 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Ongeldig bedrag voor -paytxfee=<bedrag>: '%s' (Minimum %s) + + Invalid masternodeblsprivkey. Please see documenation. + Ongeldige masternode BLS geheime sleutel. Raadpleeg de documentatie. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Ongeldig minumum aantal spork ondertekenaars zoals ingesteld met -minsporkkeys + Keypool ran out, please call keypoolrefill first Keypool op geraakt, roep alsjeblieft eerst keypoolrefill functie aan @@ -4259,6 +4375,10 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer Set key pool size to <n> (default: %u) Stel sleutelpoelgrootte in op <n> (standaard: %u) + + Set the masternode BLS private key + Stel de BLS geheime sleutel van de masternode in + Set the number of threads to service RPC calls (default: %d) Stel het aantal threads in om RPC-aanvragen mee te bedienen (standaard: %d) @@ -4323,6 +4443,10 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer Too many %f denominations, removing. Te veel %f denominaties, verwijderen. + + Too many %f denominations, skipping. + Te veel %f denominaties, overgeslagen. + Tor control port password (default: empty) Tor bepaalt poortwachtwoord (standaard: empty) @@ -4643,10 +4767,6 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer 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: A fatal internal error occurred, see debug.log for details Fout: er is een fout opgetreden, zie debug.log voor details @@ -4691,10 +4811,6 @@ Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwer Invalid amount for -fallbackfee=<amount>: '%s' Ongeldig bedrag voor -fallbackfee=<bedrag>: '%s' - - Invalid input count. - Ongeldig invoer aantal. - Keep the transaction memory pool below <n> megabytes (default: %u) De transactiegeheugenpool moet onder de <n> megabytes blijven (standaard: %u) diff --git a/src/qt/locale/dash_pl.ts b/src/qt/locale/dash_pl.ts index 90564883c895..aed772d24281 100644 --- a/src/qt/locale/dash_pl.ts +++ b/src/qt/locale/dash_pl.ts @@ -971,8 +971,8 @@ Informacje o PrivateSend - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Podstawy PrivateSend</h3> PrivateSend zapewnia prawdziwą prywatność poprzez ukrycie pochodzenia środków. Wszystkie dashe w twoim portfelu składają się z różnych "kwot wejściowych", które można traktować jako oddzielne, indywidualne monety.<br> PrivateSend wykorzystuje rewolucyjny proces mieszania twoich "kwot wejściowych" z "kwotami wejściowymi" dwóch innych użytkowników, przy czym twoje środki nigdy nie opuszczają twojego portfela. W każdej chwili zachowujesz nad nimi pełną kontrolę.<hr> <b>Proces PrivateSend przebiega w następujący sposób:</b><ol type="1"> <li>Najpierw PrivateSend dzieli twoje kwoty wejściowe twoich transakcji na standardowe nominały. Są kwoty 0.01 DASH, 0.1 DASH, 1 DASH oraz 10 DASH – mniej więcej jak banknoty, których codziennie używasz.</li> <li>Następnie twój portfel wysyła żądania do specjalnie skonfigurowanych węzłów sieci, zwanych "masternodami." Masternody otrzymują komunikat, że jesteś zainteresowany wymieszaniem określonego nominału. Masternody nie otrzymują żadnych informacji pozwalających na identyfikację, w związku z tym nigdy nie wiedzą "kim" jesteś.</li> <li>Kiedy dwaj inni użytkownicy wyślą podobne komunikaty, z żądanie wymieszanie takiego samego nominału, rozpocznie się sesja mieszania. Masternod wymiesza kwoty wejściowe i nakaże portfelom takich trzech użytkowników wypłacić sobie samemu przetworzone kwoty wejściowe. Twój portfel wpłaci dany nominał do siebie samego, jednak na inny adres (tzw. adres reszty).</li> <li>W celu pełnego zaciemnienia pochodzenia środków, twój portfel musi powtórzyć te czynności dla każdego nominału określoną ilość razy. Każde wykonanie tego procesu określamy mianem "rundy." Każda runda procesu PrivateSend wykładniczo zwiększa trudność ustalenia pochodzenia twoich środków.</li> <li>Proces mieszania odbywa się w tle, bez dodatkowego zaangażowania z twojej strony. Kiedy zechcesz wykonać transakcję, twoje środki będą już zanonimizowane. Nie będzie konieczne dodatkowe oczekiwanie.</li> </ol> <hr><b>UWAGA:</b> Portfel zawiera tylko 1000 "adresów reszty." Każde mieszanie zużywa do 9 adresów. Oznacza to, że po 100 mieszaniach zużyjesz ok. 1000 adresów. Po wykorzystaniu 900 adresów, portfel musi wygenerować nowe adresy. Może not nastąpić jedynie, jeżeli włączone jest automatyczne tworzenie kopii zapasowych.<br> Dlatego też, PrivateSend jest wyłączone, jeżeli użytkownik wyłączył automatyczne tworzenie kopii zapasowych. <hr>Więcej informacji na temat PrivateSend<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html"> można znaleźć w dokumentacji technicznej</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Podstawy PrivateSend</h3> PrivateSend zapewnia prawdziwą prywatność poprzez ukrycie pochodzenia środków. Wszystkie dashe w twoim portfelu składają się z różnych "kwot wejściowych", które można traktować jako oddzielne, indywidualne monety.<br> PrivateSend wykorzystuje rewolucyjny proces mieszania twoich "kwot wejściowych" z "kwotami wejściowymi" dwóch innych użytkowników, przy czym twoje środki nigdy nie opuszczają twojego portfela. W każdej chwili zachowujesz nad nimi pełną kontrolę.<hr> <b>Proces PrivateSend przebiega w następujący sposób:</b><ol type="1"> <li>Najpierw PrivateSend dzieli twoje kwoty wejściowe twoich transakcji na standardowe nominały. Są kwoty 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH oraz 10 DASH – mniej więcej jak banknoty, których codziennie używasz.</li> <li>Następnie twój portfel wysyła żądania do specjalnie skonfigurowanych węzłów sieci, zwanych "masternodami." Masternody otrzymują komunikat, że jesteś zainteresowany wymieszaniem określonego nominału. Masternody nie otrzymują żadnych informacji pozwalających na identyfikację, w związku z tym nigdy nie wiedzą "kim" jesteś.</li> <li>Kiedy dwaj inni użytkownicy wyślą podobne komunikaty, z żądanie wymieszanie takiego samego nominału, rozpocznie się sesja mieszania. Masternod wymiesza kwoty wejściowe i nakaże portfelom takich trzech użytkowników wypłacić sobie samemu przetworzone kwoty wejściowe. Twój portfel wpłaci dany nominał do siebie samego, jednak na inny adres (tzw. adres reszty).</li> <li>W celu pełnego zaciemnienia pochodzenia środków, twój portfel musi powtórzyć te czynności dla każdego nominału określoną ilość razy. Każde wykonanie tego procesu określamy mianem "rundy." Każda runda procesu PrivateSend wykładniczo zwiększa trudność ustalenia pochodzenia twoich środków.</li> <li>Proces mieszania odbywa się w tle, bez dodatkowego zaangażowania z twojej strony. Kiedy zechcesz wykonać transakcję, twoje środki będą już zanonimizowane. Nie będzie konieczne dodatkowe oczekiwanie.</li> </ol> <hr><b>UWAGA:</b> Portfel zawiera tylko 1000 "adresów reszty." Każde mieszanie zużywa do 9 adresów. Oznacza to, że po 100 mieszaniach zużyjesz ok. 1000 adresów. Po wykorzystaniu 900 adresów, portfel musi wygenerować nowe adresy. Może not nastąpić jedynie, jeżeli włączone jest automatyczne tworzenie kopii zapasowych.<br> Dlatego też, PrivateSend jest wyłączone, jeżeli użytkownik wyłączył automatyczne tworzenie kopii zapasowych. <hr>Więcej informacji na temat PrivateSend<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html"> można znaleźć w dokumentacji technicznej</a>. @@ -1108,10 +1108,78 @@ Node Count: Liczba węzłów: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Uwaga: Ta lista jest starszą niedeterministyczną listą masternodów. Jest ona aktywna tylko dopóki DIP3 nie zostanie w pełni aktywowany. Jak tylko SPORK15 zostanie włączony, llista ta będzie pusta. </p></body></html> + + + DIP3 Masternodes + DIP3 Masternody + + + PoSe Score + Wynik PoSe + + + Registered + Zarejestrowany + + + Last Paid + Ostatnio zapłacony + + + Next Payment + Następna płatność + + + Operator Reward + Nagroda dla operatora + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p> Uwaga: Ta lista nie jest jeszcze aktywna i istnieje tylko w celu informacyjnym. Sieć dalej działą w trybie kompatybilności, co onacza że niedeterministyczna lista masternodów jest wciąż aktywna, Ta lista zacznie działać po aktywowaniu SPORK15. Co więcej, wartości w polach płatności nie są w tej chwili używane, ale wciąż aktualizowane dla każdego bloku. Zignoruj je dopóki SPORK15 nie zosanie w pełni aktywowany. + Start alias Uruchom alias + + Copy ProTx Hash + Skopiuj ProTx Hash + + + Copy Collateral Outpoint + Skopiuj Collateral punkt wyjscia + + + ENABLED + WŁĄCZONY + + + POSE_BANNED + POSE_ZBANOWANY + + + UNKNOWN + NIEZNANY + + + to %1 + do %1 + + + to UNKNOWN + do NIEZNANEGO + + + but not claimed + ale nie zarzadana + + + NONE + ŻADEN + Confirm masternode start Potwierdź start masternoda @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Dodatkowe informacje dla DIP3 Masternode %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Włącz funkcje &kontroli monet + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Pokaż podręczne systemowe wyskakujące okienka PrivateSend transakcji mieszania <br/> tak jak dla wszystkich innych typów transakcji. + + + Show popups for PrivateSend transactions + Pokazuj podręczne wyskakujące okienka dla transakcji PrivateSend + &Spend unconfirmed change &Wydaj niepotwierdzoną resztę @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Ostatnia wiadomość PrivateSend: - - N/A - NIEDOSTĘPNE - PrivateSend was successfully reset. PrivateSend pomyślnie zresetowano @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Bez względu na to czy adres tylko do odczytu jest zawarty w tej transakcji. + + Whether or not this transaction was locked by InstantSend. + Czy transakcja ta została zabezpieczona przez InstantSend lub nie. + User-defined intent/purpose of the transaction. Określony przez użytkownika cel transakcji. @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Wszystko + + Locked by InstantSend + Zablokowane przez InstantSend + + + Not locked by InstantSend + Niezablokowane przez InstantSend + Today Dzisiaj @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Usuń wszystkie transakcje portfela i odzyskaj tylko te części blockchainu - zeskanuj powonie na starcie. + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Włącz upublicznienie surowej transakcji próby double spendingu InstantSend w <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Włącz upublicznienie hashy transakcji próby double spendingu InstantSend w <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Błąd podczas wczytywania %s: Niemożliwe jest zmienienie zwykłego porfela w porfel HD @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Informacje na temat debugowania danych wyjściowych (domyślnie: %u, podanie <category> jest opcjonalne) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Zastępuje minimalną liczbę osób podpsujących sporka. Użyeczne tylko dla regtest oraz devnet. Używanie tego na normalnej sieci lub testnecie zaskutkuje banem. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Użyj N osobnych masternodów jednocześnie aby wymieszać monety (%u-%u, domyślnie: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Użyj osobnego proxy SOCK5 aby połączyć się z peerami przez sieć Tor (domyślnie: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Musisz odnowić bazę danych używając -reindex-chainstate aby zmienić -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Powinieneś sprecyzować masternodeblsprivkey w konfiguracji. Proszę sprawdź dokumentacje w celu pomocy. + (default: %s) (domyślnie: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' (musi wynosić co najmniej %s) + + Invalid masternodeblsprivkey. Please see documenation. + Niewłaściwy masternodeblsprivkey. Sprawdź dokumentacje. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Nieważna minimalna liczba osób podpisujących sporka ustawiona z -minsporkkeys + Keypool ran out, please call keypoolrefill first Wyczerpana pula kluczy, najpierw wywołaj keypoolrefill @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Ustaw ilość kluczy w key pool na <n> (domyślny: %u) + + Set the masternode BLS private key + Ustaw masternode BLS klucz prywatny + Set the number of threads to service RPC calls (default: %d) Ustaw liczbę wątków dla usługi połączen RPC (domyślny: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Zbyt wiele %f nominałów, usuwam. + + Too many %f denominations, skipping. + Zbyt wiele %f denominacji, pomijam. + Tor control port password (default: empty) Hasło do kontroli portu Tor (domyślnie: puste) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Pozwól na publikację czystych danych transakcji w <address> - - Enable transaction replacement in the memory pool (default: %u) - Włącz zastępowanie transakcji w memory pool (domyślnie: %u) - Error: A fatal internal error occurred, see debug.log for details Błąd: Wystąpił wewnętrzny błąd krytyczny, szczegóły znajdziesz w pliku debug.log @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Błędna ilość -fallbackfee=<amount>: '%s' - - Invalid input count. - Niewłaściwa ilość transakcji wejściowych. - Keep the transaction memory pool below <n> megabytes (default: %u) Utrzymuj rozmiar memory pool poniżej <n> megabajtów (domyślnie: %u) diff --git a/src/qt/locale/dash_pt.ts b/src/qt/locale/dash_pt.ts index 66e2d643a027..ea9e10732496 100644 --- a/src/qt/locale/dash_pt.ts +++ b/src/qt/locale/dash_pt.ts @@ -3,7 +3,7 @@ AddressBookPage Right-click to edit address or label - Clique com o botão direito para editar o endereço ou o rótulo + Clique com o botão direito para editar o endereço ou o etiqueta Create a new address @@ -971,8 +971,8 @@ Informação de Envio&Privado - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>O básico sobre EnvioPrivado</h3>O EnvioPrivado te dá verdadeira privacidade financeira ao obscurecer a origem dos seus fundos. Todos os dashs na sua carteira é composto de "inputs" diferentes que você pode pensar como sendo moedas separadas, discretas.<br>O EnvioPrivado usa um processo inovador para misturas os inputs de duas pessoas diferentes, sem que suas moedas saiam de suas carteiras. Você mantém o controle de seu dinheiro o tempo todo.. <hr><b>O processo do EnvioPrivado funciona assim: </b><li>O EnvioPrivado começa quebrando os inputs de suuas transações em denominações padrão. Essas denominações são 0.01 DASH, 0.1 DASH, 1 DASH e 10 DASH -- algo como o dinheiro de papel que você usa todo dia.</li>Sua carteira então envia uma requisição para um software especialmente configurado na rede, chamados de "masternodes." Esses masternodes são informados que você está interessado em misturar uma denominação específica. Nenhuma informação identificável é enviada aos masternodes, então eles nunca sabem "quem" você é.<li>Quando duas pessoas enviam mensagens similares, uma sessão de mistura tem início. O masternode mistura os inputs e instrui os três usuários da carteira para pagar o input agora transformado de volta a si mesmos. Sua carteira paga a denominação diretamente a si mesmo, mas em um endereço diferente (chamado de endereço mudado).<li>A fim de obscurecer plenamente seus fundos, sua carteira repete esse processo várias vezes com cada denominação. Cada vez que o processo é completado, se chama um "round". Cada round de EnvioPrivado torna exponencialmente mais difícil determinar onde os fundos se originaram.<li>Esse processo de mistura acontece no background sem nenhuma intervenção da sua parte. Quando você deseja fazer uma transação, seus fundos jã estarão anonimizados. Nenhuma espera adicional é requerida.<li><ol type="1"><hr>IMPORTANTE: <b>Sua carteira só contém 1000 desses "endereços mudados." Cada vez que um evento de mistura acontece, 9 de seus endereços são usados. Isso indica que esses 1000 endereços duram por cerca de 100 eventos de mistura. Quando 900 desses endereços são usados, sua carteira deve criar mais endereços. Contudo, ela só é capaz de fazer isso se você tem o backup automático habilitado.<br>Consequentemente, usuários que têm seus backups desabilitados também terão o EnvioPrivado desabilitado. <hr>Para mais informações, consulte a <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">documentação do PrivateSend</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>O básico sobre EnvioPrivado</h3>O EnvioPrivado te dá verdadeira privacidade financeira ao obscurecer a origem dos seus fundos. Todos os dashs na sua carteira é composto de "inputs" diferentes que você pode pensar como sendo moedas separadas, discretas.<br>O EnvioPrivado usa um processo inovador para misturas os inputs de duas pessoas diferentes, sem que suas moedas saiam de suas carteiras. Você mantém o controle de seu dinheiro o tempo todo.. <hr><b>O processo do EnvioPrivado funciona assim: </b><li>O EnvioPrivado começa quebrando os inputs de suuas transações em denominações padrão. Essas denominações são 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH e 10 DASH -- algo como o dinheiro de papel que você usa todo dia.</li>Sua carteira então envia uma requisição para um software especialmente configurado na rede, chamados de "masternodes." Esses masternodes são informados que você está interessado em misturar uma denominação específica. Nenhuma informação identificável é enviada aos masternodes, então eles nunca sabem "quem" você é.<li>Quando duas pessoas enviam mensagens similares, uma sessão de mistura tem início. O masternode mistura os inputs e instrui os três usuários da carteira para pagar o input agora transformado de volta a si mesmos. Sua carteira paga a denominação diretamente a si mesmo, mas em um endereço diferente (chamado de endereço mudado).<li>A fim de obscurecer plenamente seus fundos, sua carteira repete esse processo várias vezes com cada denominação. Cada vez que o processo é completado, se chama um "round". Cada round de EnvioPrivado torna exponencialmente mais difícil determinar onde os fundos se originaram.<li>Esse processo de mistura acontece no background sem nenhuma intervenção da sua parte. Quando você deseja fazer uma transação, seus fundos jã estarão anonimizados. Nenhuma espera adicional é requerida.<li><ol type="1"><hr>IMPORTANTE: <b>Sua carteira só contém 1000 desses "endereços mudados." Cada vez que um evento de mistura acontece, 9 de seus endereços são usados. Isso indica que esses 1000 endereços duram por cerca de 100 eventos de mistura. Quando 900 desses endereços são usados, sua carteira deve criar mais endereços. Contudo, ela só é capaz de fazer isso se você tem o backup automático habilitado.<br>Consequentemente, usuários que têm seus backups desabilitados também terão o EnvioPrivado desabilitado. <hr>Para mais informações, consulte a <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">documentação do PrivateSend</a>. @@ -1108,10 +1108,78 @@ Node Count: Contagem de Masternodes + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Nota: Esta lista representa a lista de masternode legada e não determinística. Só está ativo enquanto o DIP3 não estiver totalmente ativado. Após a ativação do SPORK15, esta lista estará vazia.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + Contagem PoSe + + + Registered + Registrado + + + Last Paid + Último pagamento + + + Next Payment + Próximo pagamento + + + Operator Reward + Recompensa do Operador + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Nota: Esta lista ainda não está ativa e apenas para fins informativos. A rede ainda está em execução no modo de compatibilidade, o que significa que a lista de masternodes não determinísticos ainda está ativa. Somente após a ativação do SPORK15, essa lista se tornará ativa. Além disso, os valores nos campos relacionados ao pagamento não são usados no momento, mas ainda são atualizados para cada bloco. Por favor, ignore isso até a ativação do SPORK15.</p></body></html> + Start alias Iniciar apelido + + Copy ProTx Hash + Copiar ProTx Hash + + + Copy Collateral Outpoint + Copiar Outpoint Collateral + + + ENABLED + HABILITADO + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + DESCONHECIDO + + + to %1 + para %1 + + + to UNKNOWN + para DESCONHECIDO + + + but not claimed + mas não reivindicado + + + NONE + NENHUM + Confirm masternode start Confirmar início de masternode @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Informações adicionais para DIP3 Masternode %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Habilitar opções de &controle de moedas + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Mostrar pop-ups do sistema para transações de mesclagem do PrivateSend <br/>como para todos os outros tipos de transação. + + + Show popups for PrivateSend transactions + Mostrar pop-ups para transações do PrivateSend + &Spend unconfirmed change Ga&star mudança não confirmada @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Última mensagem do PrivateSend: - - N/A - N/A - PrivateSend was successfully reset. PrivateSend foi reiniciado com sucesso. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Mostrar ou não endereços monitorados na lista de transações. + + Whether or not this transaction was locked by InstantSend. + Se esta transação foi ou não bloqueada pelo InstantSend. + User-defined intent/purpose of the transaction. Intenção/Propósito definido pelo usuário para a transação @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Todos + + Locked by InstantSend + Bloqueado pelo InstantSend + + + Not locked by InstantSend + Não bloqueado pelo InstantSend + Today Hoje @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ 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 + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Ativar publicação de transações brutas na tentativa de gasto duplo do InstantSend em <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Habilitar hashes de transação de publicação da tentativa de gasto duplo do InstantSend em <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Erro ao carregar %s: você não pode ativar o HD em uma carteira não HD já existente @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Informação de saída de debug (padrão: %u, definir <category> é opcional) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Substitui signatários de spork mínimos para alterar o valor do spork. Útil apenas para regtest e devnet. Usando isto na mainnet ou testnet irá banir você. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Use N masternodes separados em paralelo para misturar fundos (%u-%u, padrao: %u) + 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) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Você precisa reconstruir o banco de dados usando -reindex-chainstate para alterar -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Você deve especificar um masternodeblsprivkey na configuração. Por favor, consulte a documentação para obter ajuda. + (default: %s) (padão: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ 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 masternodeblsprivkey. Please see documenation. + Masternodeblsprivkey invalido. Por favor, veja a documentação. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Número mínimo inválido de assinantes do spork especificados com -minsporkkeys + Keypool ran out, please call keypoolrefill first Erro na Keypool, favor executar keypoolrefill primeiro @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Defina o tamanho da chave para piscina<n> (padrão: %u) + + Set the masternode BLS private key + Definir a chave privada BLS do masternode + 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) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Muitas %f denominações, removendo. + + Too many %f denominations, skipping. + Muitos %f denominações, saltando. + Tor control port password (default: empty) Senha da porta de controle do Tor (padrão: vazio) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ 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: A fatal internal error occurred, see debug.log for details Erro: Um erro interno fatal ocorreu, veja debug.log para detalhes @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Valor inválido para -fallbackfee=<amount>: '%s' - - Invalid input count. - Contagem de entrada inválida. - Keep the transaction memory pool below <n> megabytes (default: %u) Mantenha a mempool de transações abaixo de <n> megabytes (padrão: %u) diff --git a/src/qt/locale/dash_ru.ts b/src/qt/locale/dash_ru.ts index 120b9e299ebd..2809692a69b5 100644 --- a/src/qt/locale/dash_ru.ts +++ b/src/qt/locale/dash_ru.ts @@ -971,8 +971,8 @@ Информация о PrivateSend - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Основы PrivateSend</h3>PrivateSend позволяет Вам получить настоящую финансовую конфиденциальность за счет скрытия источников Ваших средств. Все Dash в Вашем кошельке состоят из различных "входов", Вы можете думать о них как об отдельных монетах.<br>PrivateSend использует инновационный процесс для перемешивания Ваших входов со входами еще двоих человек, но при этом Ваши монеты никогда не покидают Ваш кошелек. Вы сохраняете контроль над Вашими деньгами на протяжении всего времени.<hr> <b>PrivateSend работает так:</b><ol type="1"> <li>PrivateSend начинается с разбиения Ваших входов транзакций на стандартные номиналы. Такими номиналами являются 0.01 DASH, 0.1 DASH, 1 DASH и 10 DASH -- что-то вроде купюр, которыми вы пользуетесь каждый день.</li> <li>Ваш кошелек затем отправляет запросы к особым образом настроенным сетевым узлам, называемым "мастернодами". Эти мастерноды знают только то, что Вы хотите перемешать определенные номиналы. Никакой идентифицирующей информации мастернодам не отправляется, так что они не знают "кто" Вы конкретно.</li> <li>Сессия перемешивания начинается тогда, когда еще двое человек отправляют схожее сообщение, подтверждающее, что они хотят перемешать точно такой же номинал. Мастернода перемешивает входы и просит кошельки всех пользователей осуществить платежи по ним. Ваш кошелек осуществляет выплату самому себе, но на другой адрес (тоже из вашего кошелька).</li> <li>Для скрытия Ваших средств кошелек должен повторить этот процесс несколько раз с каждым номиналом. Каждый раз, когда такой процесс завершается, называется "раундом". С каждым раундом PrivateSend становится экспоненциально сложнее определить откуда поступили средства.</li> <li>Процесс перемешивания выполняется в фоне, без участия пользователя. Когда Вы захотите провести транзакцию, средства уже будут анонимизированы. Дополнительно ждать не требуется.</li> </ol> <hr><b>ВАЖНО:</b> Ваш кошелек содержит 1000 адресов. Каждое перемешивание использует до 9 из этих адресов. Это означает, что 1000 адресов хватит примерно на 100 перемешиваний. Когда 900 адресов будут уже использованы, Ваш кошелек должен создать новые адреса. Однако, он может сделать это, только если у Вас включены автоматические резервные копии.<br>Соответственно, пользователям с отключенным резервным копированием PrivateSend не доступен. <hr>Дополнительная информация доступна в <a href="https://dashpay.atlassian.net/wiki/display/DOC/PrivateSend">документации по PrivateSend</a> + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Основы PrivateSend</h3>PrivateSend позволяет Вам получить настоящую финансовую конфиденциальность за счет скрытия источников Ваших средств. Все Dash в Вашем кошельке состоят из различных "входов", Вы можете думать о них как об отдельных монетах.<br>PrivateSend использует инновационный процесс для перемешивания Ваших входов со входами еще двоих человек, но при этом Ваши монеты никогда не покидают Ваш кошелек. Вы сохраняете контроль над Вашими деньгами на протяжении всего времени.<hr> <b>PrivateSend работает так:</b><ol type="1"> <li>PrivateSend начинается с разбиения Ваших входов транзакций на стандартные номиналы. Такими номиналами являются 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH и 10 DASH -- что-то вроде купюр, которыми вы пользуетесь каждый день.</li> <li>Ваш кошелек затем отправляет запросы к особым образом настроенным сетевым узлам, называемым "мастернодами". Эти мастерноды знают только то, что Вы хотите перемешать определенные номиналы. Никакой идентифицирующей информации мастернодам не отправляется, так что они не знают "кто" Вы конкретно.</li> <li>Сессия перемешивания начинается тогда, когда еще двое человек отправляют схожее сообщение, подтверждающее, что они хотят перемешать точно такой же номинал. Мастернода перемешивает входы и просит кошельки всех пользователей осуществить платежи по ним. Ваш кошелек осуществляет выплату самому себе, но на другой адрес (тоже из вашего кошелька).</li> <li>Для скрытия Ваших средств кошелек должен повторить этот процесс несколько раз с каждым номиналом. Каждый раз, когда такой процесс завершается, называется "раундом". С каждым раундом PrivateSend становится экспоненциально сложнее определить откуда поступили средства.</li> <li>Процесс перемешивания выполняется в фоне, без участия пользователя. Когда Вы захотите провести транзакцию, средства уже будут анонимизированы. Дополнительно ждать не требуется.</li> </ol> <hr><b>ВАЖНО:</b> Ваш кошелек содержит 1000 адресов. Каждое перемешивание использует до 9 из этих адресов. Это означает, что 1000 адресов хватит примерно на 100 перемешиваний. Когда 900 адресов будут уже использованы, Ваш кошелек должен создать новые адреса. Однако, он может сделать это, только если у Вас включены автоматические резервные копии.<br>Соответственно, пользователям с отключенным резервным копированием PrivateSend не доступен. <hr>Дополнительная информация доступна в <a href="https://dashpay.atlassian.net/wiki/display/DOC/PrivateSend">документации по PrivateSend</a> @@ -1108,10 +1108,78 @@ Node Count: Количество узлов: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Примечание: Этот список показывает старые недетерминированные мастерноды. Он будет активным до тех пор, пока DIP3 не будет полностью активирован. После активации SPORK15 этот список будет обнулен.</p></body></html> + + + DIP3 Masternodes + DIP3 мастерноды + + + PoSe Score + PoSe штраф + + + Registered + Зарегистрирована + + + Last Paid + Последний платеж + + + Next Payment + Следующий платеж + + + Operator Reward + Награда оператора + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Примечание: Этот список еще не активен и пока что служит только для информационных целей. Сеть все еще работает в режиме совместимости, что означает, что старый список недетерминированных мастернод все еще активен. Этот список станет активным только после активации SPORK15. Также обратите внимание, что хотя значения в платежных полях и обновляются с каждым новым блоком, но на данный момент они не используются. Пожалуйста, игнорируйте их до активации SPORK15.</p></body></html> + Start alias Запуск по имени + + Copy ProTx Hash + Скопировать хэш ProTx + + + Copy Collateral Outpoint + Скопировать залоговый выход + + + ENABLED + ENABLED + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + UNKNOWN + + + to %1 + на %1 + + + to UNKNOWN + на UNKNOWN + + + but not claimed + , но не затребовано + + + NONE + NONE + Confirm masternode start Подтверждение запуска мастерноды @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + Дополнительная информация для DIP3 мастерноды %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Включить функции &контроля монет + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Показывать всплывающие уведомления для транзакций перемешивания PrivateSend<br/>также как для всех остальных типов транзакций. + + + Show popups for PrivateSend transactions + Показывать всплывающие уведомления для транзакций PrivateSend + &Spend unconfirmed change &Тратить неподтверждённую сдачу @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Последнее сообщение PrivateSend: - - N/A - Н/Д - PrivateSend was successfully reset. PrivateSend был успешно прерван. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Участвовал ли адрес для просмотра в этой транзакции. + + Whether or not this transaction was locked by InstantSend. + Была ли данная транзакция заблокирована с помощью InstantSend. + User-defined intent/purpose of the transaction. Определенное пользователем назначение транзакции. @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Все + + Locked by InstantSend + Заблокировано с помощью InstantSend + + + Not locked by InstantSend + Не заблокировано с помощью InstantSend + Today Сегодня @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Удалить все трансакции из кошелька и при рестарте с помощью -rescan восстановить только те, которые есть в цепочке блоков + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Включить публикацию кода транзакции при попытке двойной траты другой транзакции, заблокированной через InstantSend, на <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Включить публикацию хэша транзакции при попытке двойной траты другой транзакции, заблокированной через InstantSend, на <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Ошибка загрузки %s: Вы не можете включить HD режим для существующего не-HD кошелька @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Вывод отладочной информации (по умолчанию: %u, указание <category> необязательно) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Установить новый минимум количества подписантов спорков. Полезно только для regtest и devnet. Использование этого параметра на mainnet или testnet приведет к блокировке. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Использовать N отдельных мастернод для параллельного перемешивания средств (%u-%u, по умолчанию: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Использовать отдельный SOCKS5 прокси для подключения к участникам через скрытые сервисы Tor (по умолчанию: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Вам необходимо пересобрать базы данных с помощью -reindex-chainstate, чтобы изменить -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Необходимо указать masternodeblsprivkey в кофигурации. Пожалуйста, ознакомьтесь с документацией. + (default: %s) (по умолчанию: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Неверная сумма в параметре -paytxfee=<amount>: '%s' (должна быть минимум %s) + + Invalid masternodeblsprivkey. Please see documenation. + Некорректный masternodeblsprivkey. Пожалуйста, ознакомьтесь с документацией. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Некорректное минимальное количество подписантов спорков, указанное в -minsporkkeys + Keypool ran out, please call keypoolrefill first Не осталось ключей, пожалуйста, выполните команду keypoolrefill @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Установить размер пула ключей в <n> (по умолчанию: %u) + + Set the masternode BLS private key + Установить закрытый BLS ключ мастерноды + Set the number of threads to service RPC calls (default: %d) Задать число потоков выполнения запросов RPC (по умолчанию: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Слишком много номиналов %f, удаляем. + + Too many %f denominations, skipping. + Слишком много номиналов %f, пропускаем. + Tor control port password (default: empty) Пароль контрольного порта Tor (по умолчанию: пустой) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Включить публикацию кода транзакции на <address> - - Enable transaction replacement in the memory pool (default: %u) - Разрешить подмену транзакций в пуле памяти (по умолчанию: %u) - Error: A fatal internal error occurred, see debug.log for details Ошибка: Произошла критическая ошибка, подробности смотрите в файле debug.log @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Неверная сумма в параметре -fallbackfee=<amount>: '%s' - - Invalid input count. - Неверная количество входов. - Keep the transaction memory pool below <n> megabytes (default: %u) Держать размер пула памяти транзакций ниже <n> мегабайт (по умолчанию: %u) diff --git a/src/qt/locale/dash_sk.ts b/src/qt/locale/dash_sk.ts index 7dcea13cb3c0..e9af5b905dec 100644 --- a/src/qt/locale/dash_sk.ts +++ b/src/qt/locale/dash_sk.ts @@ -291,11 +291,11 @@ &Masternodes - &Masternodes + &Masternódy Browse masternodes - Prechádzať masternodes + Prechádzať masternódy E&xit @@ -971,8 +971,8 @@ Informácie o PrivateSend - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Základy PrivateSend</h3> PrivateSend Vám poskytuje skutočné finančné súkromie skrývaním pôvodu Vašich zdrojov. Všetky Dash vo vašej peňaženke pozostávajú z rôznych "vstupov", ktoré si môžete predstaviť ako rozdelené, which you can think of as separate, diskrétne mince.<br> PrivateSend používa zdokonalený proces pre miešanie Vašich vstupov so vstupmi iných ľudí bez toho. aby Vaše mince museli opustiť Vašu peňaženku. Počas cele doby máte kontrolu nad Vašimi peniazmi.<hr> <b>Proces PrivateSend funguje nasledovne:</b><ol type="1"> <li>PrivateSend začne rozdelením Vašich transakčných vstupov na štandardné časti, takzvané denominácie. Tieto denominácie sú 0.01 DASH, 0.1 DASH, 1 DASH a 10 DASH -- v podstate niečo ako papierové peniaze, ktoré používate každý deň.</li> <li>Vaša peňaženka potom pošle požiadavok špeciálne nastavenému softvérovému uzlu nazvaného "Masternode". Tieto Masternode sú potom informované, že máte záujem miešať určité denominácie. Masternode neobdrží žiadne informácie ktoré by Vás identifikovali, takže niekdy nevedia kto ste.</li> <li>Keď ďalší dvaja ľudia pošlú podobnú správu hovoriacu o tom že chcú miešať rovnakú denomináciu, začne sa samotné miešanie. Masternode zamieša vstupy a povie peňaženkám všetkých troch používateľov, aby zaplatili teraz už zmiešané vstupy sami sebe. Vaša peňaženka zaplatí tieto denominácie priamo sebe, ale už na inú adresu (nazývanú "meniaca adresa").</li> <li>Aby boli Vaše zdroje plne zakryté, Vaša peňaženka musí zopakovať tento proces niekoľko krát s každou denomináciou. Vždy keď je tento proces dokončený, je nazvaný "kolo". Každé kolo PrivateSend exponenciálne sťažuje určiť odkiaľ pochádzajú Vaše zdroje.</li> <li>Toto miešanie sa deje na pozadí bez nutnosti zásahov z Vašej strany. Keď si prajete uskutočniť transakciu, Vaše zdroje budú už anonýmne. Nie je nutné na nič čakať.</li> </ol> <hr> <b>DÔLEŽITÉ:</b> Vaša peňaženka obsahuje iba 1000 týchto "meniacich adries". Vždy keď prebehne miešanie, použije sa maximálne až 9 Vašich adries. To znamená, že týchto 1000 adries vystačí zhruba na 100 miešaní. Keď sa použije 900 adries, Vaša peňaženka musí vytvoriť viac adries. Toto je však možné iba vtedy, keď máte zapnuté automatické zálohovanie.<br> V dôsledku toho, používatelia ktorí majú zálohovanie vypnuté, budú mať vypnutý aj PrivateSend. <hr><a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">Viac informácií nájdete v dokumentácii PrivateSend</a>. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Základy PrivateSend</h3> PrivateSend Vám poskytuje skutočné finančné súkromie skrývaním pôvodu Vašich zdrojov. Všetky Dash vo vašej peňaženke pozostávajú z rôznych "vstupov", ktoré si môžete predstaviť ako rozdelené, which you can think of as separate, diskrétne mince.<br> PrivateSend používa zdokonalený proces pre miešanie Vašich vstupov so vstupmi iných ľudí bez toho. aby Vaše mince museli opustiť Vašu peňaženku. Počas cele doby máte kontrolu nad Vašimi peniazmi.<hr> <b>Proces PrivateSend funguje nasledovne:</b><ol type="1"> <li>PrivateSend začne rozdelením Vašich transakčných vstupov na štandardné časti, takzvané denominácie. Tieto denominácie sú 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH a 10 DASH -- v podstate niečo ako papierové peniaze, ktoré používate každý deň.</li> <li>Vaša peňaženka potom pošle požiadavok špeciálne nastavenému softvérovému uzlu nazvaného "Masternode". Tieto masternódy sú potom informované, že máte záujem miešať určité denominácie. Masternode neobdrží žiadne informácie ktoré by Vás identifikovali, takže nikdy nevedia kto ste.</li> <li>Keď ďalší dvaja ľudia pošlú podobnú správu hovoriacu o tom že chcú miešať rovnakú denomináciu, začne sa samotné miešanie. Masternode zamieša vstupy a povie peňaženkám všetkých troch používateľov, aby zaplatili teraz už zmiešané vstupy sami sebe. Vaša peňaženka zaplatí tieto denominácie priamo sebe, ale už na inú adresu (nazývanú "meniaca adresa").</li> <li>Aby boli Vaše zdroje plne zakryté, Vaša peňaženka musí zopakovať tento proces niekoľko krát s každou denomináciou. Vždy keď je tento proces dokončený, je nazvaný "kolo". Každé kolo PrivateSend exponenciálne sťažuje určiť odkiaľ pochádzajú Vaše zdroje.</li> <li>Toto miešanie sa deje na pozadí bez nutnosti zásahov z Vašej strany. Keď si prajete uskutočniť transakciu, Vaše zdroje budú už anonymné. Nie je nutné na nič čakať.</li> </ol> <hr> <b>DÔLEŽITÉ:</b> Vaša peňaženka obsahuje iba 1000 týchto "meniacich adries". Vždy keď prebehne miešanie, použije sa maximálne až 9 Vašich adries. To znamená, že týchto 1000 adries vystačí zhruba na 100 miešaní. Keď sa použije 900 adries, Vaša peňaženka musí vytvoriť viac adries. Toto je však možné iba vtedy, keď máte zapnuté automatické zálohovanie.<br> V dôsledku toho, používatelia ktorí majú zálohovanie vypnuté, budú mať vypnutý aj PrivateSend. <hr><a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">Viac informácií nájdete v dokumentácii PrivateSend</a>. @@ -1026,11 +1026,11 @@ My Masternodes - Moje Masternodes + Moje Masternódy Note: Status of your masternodes in local wallet can potentially be slightly incorrect.<br />Always wait for wallet to sync additional data and then double check from another node<br />if your masternode should be running but you still do not see "ENABLED" in "Status" field. - Poznámka: Stav Vášho Masternode v lokálnej peňaženke môže byť potencionálne trochu nepresný.<br />Vždy počkajte na peňaženku pokým nestiahne dodatočné dáta a opätovne neoverí y druhého uzlu,<br />ak by Váš Maternode mal bežať, ale stále nevidíte "Zapnuté" v poli "Stav". + Poznámka: Stav Vašich masternódov v lokálnej peňaženke môže byť potencionálne trochu nepresný.<br />Vždy počkajte na peňaženku pokým nestiahne dodatočné dáta a opätovne neoverí z druhého uzlu,<br />ak by Váš masternode mal bežať, ale stále nevidíte "Zapnuté" v poli "Stav". Alias @@ -1094,7 +1094,7 @@ All Masternodes - Všetky Masternode + Všetky Masternódy Filter List: @@ -1102,31 +1102,99 @@ Filter masternode list - Filtrovať zoznam Masternode. + Filtrovať zoznam masternódov Node Count: Počet uzlov: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Poznámka: Tento zoznam predstavuje starší a nedeterministický zoznam masternódov. Je aktívny iba pokým DIP3 nebol plne aktivovaný. Po aktivácii SPORK15 bude tento zoznam prázdny.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternódy + + + PoSe Score + PoSe skóre + + + Registered + Zaregistrované + + + Last Paid + Posledná platba + + + Next Payment + Ďalšia platba + + + Operator Reward + Odmena operátora + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Poznámka: Tento zoznam ešte nie je aktívny a slúži len na informačné účely. Sieť stále beží v režime kompatibility, čo znamená, že nedeterministický zoznam masternódov je stále aktívny. Iba po aktivácii SPORK15 sa tento zoznam stane aktívnym. Hodnoty v poliach súvisiacich s platbou sa v súčasnosti nepoužívajú, ale aktualizujú sa pre každý blok. Prosím, ignorujte to až do aktivácie SPORK15.</p></body></html> + Start alias Začať alias + + Copy ProTx Hash + Skopírovať ProTx hash + + + Copy Collateral Outpoint + Kopírovať zábezpeku Outpoint + + + ENABLED + AKTÍVNE + + + POSE_BANNED + POSE_ZAKÁZANÉ + + + UNKNOWN + NEZNÁME + + + to %1 + do %1 + + + to UNKNOWN + do NEZNÁME + + + but not claimed + ale nie nárokované + + + NONE + ŽIADNE + Confirm masternode start - Potvrdiť spustenie Masternode + Potvrdiť spustenie masternode Are you sure you want to start masternode %1? - Ste si istý, že chcete spustiť Masternode %1? + Ste si istý, že chcete spustiť masternode %1? Confirm all masternodes start - Potvrdiť spustenie všetkých Masternode + Potvrdiť spustenie všetkých masternódov Are you sure you want to start ALL masternodes? - Ste si istý, že chcete spustiť VŠETKY masternodes? + Ste si istý, že chcete spustiť VŠETKY masternódy? Command is not available right now @@ -1134,15 +1202,15 @@ You can't use this command until masternode list is synced - Tento príkaz nemôžete použiť pokým sa nesynchronizuje zoznam Masternode + Tento príkaz nemôžete použiť pokým sa nesynchronizuje zoznam masternode Confirm missing masternodes start - Potvrdiť spustenie chýbajúcich Masternode + Potvrdiť spustenie chýbajúcich masternódov Are you sure you want to start MISSING masternodes? - Ste si istý, že chcete spustiť CHÝBAJÚCE Masternodes? + Ste si istý, že chcete spustiť CHÝBAJÚCE masternódy? Additional information for Masternode %1 @@ -1150,7 +1218,7 @@ Masternode Private Key - Súkromný kľúč Masternode  + Súkromný kľúč masternode Private Key @@ -1176,6 +1244,10 @@ Sentinel Strážca + + Additional information for DIP3 Masternode %1 + Ďalšie informácie pre DIP3 Masternode %1 + ModalOverlay @@ -1287,11 +1359,11 @@ Show additional tab listing all your masternodes in first sub-tab<br/>and all masternodes on the network in second sub-tab. - Zobraziť dodatočnú záložku, ktorá vypíše všetky Vaše Masternode v prvej pod-zložke<br/>- a všetky Masternode v druhej pod-zložke. + Zobraziť dodatočnú záložku, ktorá vypíše všetky Vaše masternódy v prvej pod-zložke<br/>- a všetky masternódy v druhej pod-zložke. Show Masternodes Tab - Ukázať záložku Masternodes + Ukázať záložku masternódov Show additional information and buttons for PrivateSend on overview screen. @@ -1363,7 +1435,7 @@ This setting determines the amount of individual masternodes that an input will be anonymized through.<br/>More rounds of anonymization gives a higher degree of privacy, but also costs more in fees. - Toto nastavenie určuje množstvo rozličných masternode cez ktoré sa bude anonymizovať vstup.<br/> Viac kôl anonymizácie dáva väčšiu úroveň súkromia, ale tiež stojí viac na poplatkoch. + Toto nastavenie určuje množstvo jednotlivých masternódov cez ktoré sa bude anonymizovať vstup.<br/> Viac kôl anonymizácie dáva väčšiu úroveň súkromia, ale tiež stojí viac na poplatkoch. Whether to show coin control features or not. @@ -1381,6 +1453,14 @@ Enable coin &control features Povoliť možnosti "&coin control" + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Zobraziť vyskakovacie okná pre miešacie PrivateSend transakcie,<br/> tak ako pre ostatné typy transakcií. + + + Show popups for PrivateSend transactions + Zobraziť vyskakovacie okná pre PrivateSend transakcie + &Spend unconfirmed change &Minúť nepotvrdený výdavok @@ -1797,10 +1877,6 @@ https://www.transifex.com/projects/p/dash/ - - N/A - nie je k dispozícii - PrivateSend was successfully reset. PrivateSend bol úspešne obnovený @@ -1940,7 +2016,7 @@ https://www.transifex.com/projects/p/dash/ Error reading masternode configuration file: %1 - Chyba pri načítaní konfiguračného súboru Masternode: %1 + Chyba pri načítaní konfiguračného súboru masternode: %1 Amount @@ -2147,7 +2223,7 @@ https://www.transifex.com/projects/p/dash/ Number of Masternodes - Počet Mastenode + Počet masternódov Memory Pool @@ -3540,6 +3616,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Či sú ale nie sú, adresy iba na sledovanie zahrnuté v tejto transakcii. + + Whether or not this transaction was locked by InstantSend. + Či bola, alebo nebola táto transakcia uzamknutá pomocou InstantSend. + User-defined intent/purpose of the transaction. Užívateľsky určený účel transakcie. @@ -3555,6 +3635,14 @@ https://www.transifex.com/projects/p/dash/ All Všetko + + Locked by InstantSend + Uzamknuté cez InstantSend + + + Not locked by InstantSend + Neuzamknuté cez InstantSend + Today Dnes @@ -3978,6 +4066,14 @@ https://www.transifex.com/projects/p/dash/ 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 blockchainu iba tie získané pomocou -rescan + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Povoliť publikovanie nespracovaných transakcií, ktoré sa pokúsili o dvojité minutie InstantSend v <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Povoliť publikovanie transakčných hashov, ktoré sa pokúsili o dvojité minutie InstantSend v + Error loading %s: You can't enable HD on a already existing non-HD wallet Chyba pri načítaní %s: Nemôžete zapnúť HD na už existujúcej nie-HD peňaženke @@ -4022,6 +4118,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Výstupné ladiace informácie (predvolené: %u, dodanie <category> je voliteľné) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Nahrádza minimálny počet spork podpisovateľov pre zmenu spork hodnoty. Použiteľné iba pre regtest a devnet. Použitie tejto funkcie na hlavnej alebo testovacej vás zablokuje. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Použiť N oddelených masternódov súčasne pre zmiešanie prostriedkov (%u-%u, predvolené: %u) + 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) @@ -4042,6 +4146,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Potrebujete prebudovať databázu použitím -reindex-chainstate pre zmenu -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + V konfigurácii by ste mali špecifikovať masternodeblsprivkey. Pre pomoc sa pozrite do dokumentácie. + (default: %s) (predvolené: %s) @@ -4092,11 +4200,11 @@ https://www.transifex.com/projects/p/dash/ Failed to load masternode cache from - Chyba pri načítaní vyrovnávajúcej pamäti Masternode z + Chyba pri načítaní vyrovnávajúcej pamäti masternode z Failed to load masternode payments cache from - Chyba pri načítaní vyrovnávajúcej pamäti platieb Masternode z + Chyba pri načítaní vyrovnávajúcej pamäti platieb masternode z Found enough users, signing ( waiting %s ) @@ -4154,6 +4262,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Neplatná suma pre -paytxfee=<amount>: '%s' (musí byť aspoň %s) + + Invalid masternodeblsprivkey. Please see documenation. + Neplatný masternodeblsprivkey. Pozrite si dokumentáciu. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Neplatný minimálny počet spork podpisovateľov určených pomocou -minsporkkeys + Keypool ran out, please call keypoolrefill first Vyčerpal sa zásobník kľúčov, zavolať najskôr keypoolrefill @@ -4254,6 +4370,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Nastaviť veľkosť kľúča fronty na <n> (predvolené: %u) + + Set the masternode BLS private key + Nastaviť súkromný kľúč masternode BLS + Set the number of threads to service RPC calls (default: %d) Nastaviť počet vlákien na obsluhu RPC volaní (predvolené: %d) @@ -4318,6 +4438,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Príliš mnoho %f denominácií, maže sa. + + Too many %f denominations, skipping. + Príliš mnoho %f denominácií, preskakuje sa. + Tor control port password (default: empty) Heslo na kontrolu portu pre Tor (predvolené: žiadne) @@ -4412,7 +4536,7 @@ https://www.transifex.com/projects/p/dash/ Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) - Vypnúť všetky funkcie špecifické pre Dash (Masternodes, PrivateSend, InstantSend, Vláda) (0-1, predvolené: %u) + Vypnúť všetky funkcie špecifické pre Dash (Masternódy, PrivateSend, InstantSend, Správu) (0-1, predvolené: %u) %s file contains all private keys from this wallet. Do not share it with anyone! @@ -4638,10 +4762,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> Povoliť publikovať hrubý prevod v <address> - - Enable transaction replacement in the memory pool (default: %u) - Povoliť výmenu transakcií v transakčnom zásobníku (predvolené: %u) - Error: A fatal internal error occurred, see debug.log for details Chyba: Vyskytla sa interná chyba, pre viac informácií zobrazte debug.log @@ -4686,10 +4806,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' Neplatná suma pre -fallbackfee=<amount>: '%s' - - Invalid input count. - Neplatný počet vstupov. - Keep the transaction memory pool below <n> megabytes (default: %u) Udržovať zasobník transakcií menší než <n> megabajtov (predvolené: %u) @@ -5036,7 +5152,7 @@ https://www.transifex.com/projects/p/dash/ Warning: At least %d of %d masternodes are running on a newer software version. Please check latest releases, you might need to update too. - Upozornenie: Aspoň %d z %d masternode beží na novšej verzii softvéru. Skontrolujte najnovšie verzie, možno budete musieť tiež aktualizovať. + Upozornenie: Aspoň %d z %d masternódov beží na novšej verzii softvéru. Skontrolujte najnovšie verzie, možno budete musieť tiež aktualizovať. Warning: Every masternode (out of %d known ones) is running on a newer software version. Please check latest releases, it's very likely that you missed a major/critical update. diff --git a/src/qt/locale/dash_th.ts b/src/qt/locale/dash_th.ts index 9cf7194e319d..4a99c4f269c1 100644 --- a/src/qt/locale/dash_th.ts +++ b/src/qt/locale/dash_th.ts @@ -971,8 +971,8 @@ ข้อมูล PrivateSend - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>ข้อมูลพื้นฐานเกี่ยวกับ PrivateSend PrivateSend ช่วยให้คุณมีความเป็นส่วนตัวทางการเงินอย่างแท้จริงโดยปิดบังแหล่งที่มาของเงินทุนของคุณ Dash ทั้งหมดใน wallet ของคุณประกอบด้วย "อินพุต" ที่แตกต่างกันซึ่งคุณสามารถแยกเหรียญกันได้ <br> PrivateSend ใช้กระบวนการใหม่ในการผสมผสานอินพุตของคุณเข้ากับอินพุตของคนอื่นอีกสองคนโดยไม่ต้องมีเหรียญออกจาก wallet คุณสามารถควบคุมเงินได้ตลอดเวลา<hr><b>กระบวนการ PrivateSend ทำงานได้ดังนี้:</b><ol type="1"><li>PrivateSend เริ่มต้นด้วยการทำลายอินพุตการทำธุรกรรมของคุณลงไปเป็นหน่วยเงินมาตรฐาน หน่วยเงินเหล่านี้คือ 0.01 DASH, 0.1 DASH, 1 DASH และ 10 DASH - เหมือนกับเงินกระดาษที่คุณใช้ทุกวัน</li><li> Wallet ของคุณจะส่งคำขอไปยังโหนดซอฟต์แวร์ที่กำหนดค่าไว้เป็นพิเศษในเครือข่ายที่ เรียกว่า "masternodes" โดย masternodes เหล่านี้จะแจ้งให้ทราบแล้วว่าคุณสนใจที่จะผสมหน่วยเงินนั้นๆ ไม่มีข้อมูลที่สามารถระบุตัวได้ถูกส่งไปยัง masternodes ดังนั้นพวกเขาจึงไม่เคยรู้จักว่าคุณเป็นใคร </li><li>เมื่อมีคนอีกสองคนส่งข้อความที่คล้ายกันแสดงว่าพวกเขาต้องการที่จะผสมผสานหน่วยเงินเดียวกันเซสชันการผสมจะเริ่มขึ้น Masternode จะผสมผสานอินพุตเข้าด้วยกันและสั่งให้ wallet ของผู้ใช้ทั้ง 3 รายชำระค่าป้อนข้อมูลที่เปลี่ยนไปแล้วกลับคืนสู่ตัวเอง Wallet ของคุณจ่ายเงินให้กับตัวเองโดยตรง แต่ในที่อยู่อื่น (เรียกว่าที่อยู่เปลี่ยน)</li><li>เพื่อเป็นการปิดบังเงินทุนของคุณ wallet ของคุณจะต้องทำซ้ำขั้นตอนนี้ซ้ำหลายครั้งโดยใช้แต่ละหน่วยเงิน ทุกครั้งที่ดำเนินการเสร็จสิ้นระบบจะเรียกว่า "รอบ ๆ " รอบ PrivateSend ในแต่ละครั้งทำให้การระบุแหล่งเงินทุนของคุณเกิดขึ้นยากขึ้นอย่างมาก</li><li>กระบวนการผสมนี้เกิดขึ้นโดยไม่มีการก้าวก่ายในส่วนของคุณ เมื่อคุณต้องการทำธุรกรรม เงินของคุณจะถูกซ่อนไว้ ไม่ต้องการเพิ่มเติม </li></ol><hr><b>สำคัญ:</b>Wallet ของคุณมีเพียง 1,000 ที่อยู่ในการเปลี่ยนแปลงเท่านั้น ทุกครั้งที่เกิดเหตุการณ์ผสมเกิดขึ้น 9 ที่อยู่ของคุณจะถูกนำมาใช้ ซึ่งหมายความว่า 1000 ที่อยู่ล่าสุดสำหรับการผสมประมาณ 100 เหตุการณ์ เมื่อมีการใช้ 900 ราย Wallet ของคุณต้องสร้างที่อยู่เพิ่มเติม สามารถทำเช่นนี้ได้หากคุณเปิดใช้งานการสำรองข้อมูลอัตโนมัติไว้<br>ดังนั้นผู้ใช้ที่มีการสำรองข้อมูลถูกปิดใช้งานจะมีการปิดใช้ PrivateSend <hr>สำหรับข้อมูลเพิ่มเติม<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">โปรดดูที่เอกสาร PrivateSend </a> + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>ข้อมูลพื้นฐานเกี่ยวกับ PrivateSend PrivateSend ช่วยให้คุณมีความเป็นส่วนตัวทางการเงินอย่างแท้จริงโดยปิดบังแหล่งที่มาของเงินทุนของคุณ Dash ทั้งหมดใน wallet ของคุณประกอบด้วย "อินพุต" ที่แตกต่างกันซึ่งคุณสามารถแยกเหรียญกันได้ <br> PrivateSend ใช้กระบวนการใหม่ในการผสมผสานอินพุตของคุณเข้ากับอินพุตของคนอื่นอีกสองคนโดยไม่ต้องมีเหรียญออกจาก wallet คุณสามารถควบคุมเงินได้ตลอดเวลา<hr><b>กระบวนการ PrivateSend ทำงานได้ดังนี้:</b><ol type="1"><li>PrivateSend เริ่มต้นด้วยการทำลายอินพุตการทำธุรกรรมของคุณลงไปเป็นหน่วยเงินมาตรฐาน หน่วยเงินเหล่านี้คือ 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH และ 10 DASH - เหมือนกับเงินกระดาษที่คุณใช้ทุกวัน</li><li> Wallet ของคุณจะส่งคำขอไปยังโหนดซอฟต์แวร์ที่กำหนดค่าไว้เป็นพิเศษในเครือข่ายที่ เรียกว่า "masternodes" โดย masternodes เหล่านี้จะแจ้งให้ทราบแล้วว่าคุณสนใจที่จะผสมหน่วยเงินนั้นๆ ไม่มีข้อมูลที่สามารถระบุตัวได้ถูกส่งไปยัง masternodes ดังนั้นพวกเขาจึงไม่เคยรู้จักว่าคุณเป็นใคร </li><li>เมื่อมีคนอีกสองคนส่งข้อความที่คล้ายกันแสดงว่าพวกเขาต้องการที่จะผสมผสานหน่วยเงินเดียวกันเซสชันการผสมจะเริ่มขึ้น Masternode จะผสมผสานอินพุตเข้าด้วยกันและสั่งให้ wallet ของผู้ใช้ทั้ง 3 รายชำระค่าป้อนข้อมูลที่เปลี่ยนไปแล้วกลับคืนสู่ตัวเอง Wallet ของคุณจ่ายเงินให้กับตัวเองโดยตรง แต่ในที่อยู่อื่น (เรียกว่าที่อยู่เปลี่ยน)</li><li>เพื่อเป็นการปิดบังเงินทุนของคุณ wallet ของคุณจะต้องทำซ้ำขั้นตอนนี้ซ้ำหลายครั้งโดยใช้แต่ละหน่วยเงิน ทุกครั้งที่ดำเนินการเสร็จสิ้นระบบจะเรียกว่า "รอบ ๆ " รอบ PrivateSend ในแต่ละครั้งทำให้การระบุแหล่งเงินทุนของคุณเกิดขึ้นยากขึ้นอย่างมาก</li><li>กระบวนการผสมนี้เกิดขึ้นโดยไม่มีการก้าวก่ายในส่วนของคุณ เมื่อคุณต้องการทำธุรกรรม เงินของคุณจะถูกซ่อนไว้ ไม่ต้องการเพิ่มเติม </li></ol><hr><b>สำคัญ:</b>Wallet ของคุณมีเพียง 1,000 ที่อยู่ในการเปลี่ยนแปลงเท่านั้น ทุกครั้งที่เกิดเหตุการณ์ผสมเกิดขึ้น 9 ที่อยู่ของคุณจะถูกนำมาใช้ ซึ่งหมายความว่า 1000 ที่อยู่ล่าสุดสำหรับการผสมประมาณ 100 เหตุการณ์ เมื่อมีการใช้ 900 ราย Wallet ของคุณต้องสร้างที่อยู่เพิ่มเติม สามารถทำเช่นนี้ได้หากคุณเปิดใช้งานการสำรองข้อมูลอัตโนมัติไว้<br>ดังนั้นผู้ใช้ที่มีการสำรองข้อมูลถูกปิดใช้งานจะมีการปิดใช้ PrivateSend <hr>สำหรับข้อมูลเพิ่มเติม<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">โปรดดูที่เอกสาร PrivateSend </a> @@ -1108,10 +1108,78 @@ Node Count: จำนวนโหนด: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>หมายเหตุ: รายการนี้แสดงทรัพย์สินและรายการ masternode แบบไม่กำหนดค่า มันเปิดใช้งานได้ตราบใดที่ DIP3 ยังไม่ได้เปิดใช้งานอย่างสมบูรณ์ หลังจากเปิดใช้งาน SPORK15 รายการนี้จะว่างเปล่า </p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + คะแนน PoSe + + + Registered + ลงทะเบียน + + + Last Paid + ชำระครั้งล่าสุด + + + Next Payment + การชำระครั้งถัดไป + + + Operator Reward + รางวัลผู้ดำเนินการ + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>หมายเหตุ: รายการนี้ยังไม่เปิดใช้งานและมีวัตถุประสงค์เพื่อให้ข้อมูลเท่านั้น เครือข่ายยังคงทำงานในโหมดสอดคล้องกันได้ซึ่งหมายความว่ารายการ masternode ที่ไม่ได้กำหนดค่ายังคงทำงานอยู่ หลังจากเปิดงาน SPORK15 แล้วรายการนี้จะเปิดใช้งาน นอกจากนี้ยังไม่ได้ใช้ค่าในฟิลด์ที่เกี่ยวข้องกับการชำระเงิน แต่ยังคงได้รับการอัปเดตสำหรับทุก ๆ บล็อก โปรดเพิกเฉยต่อสิ่งนี้จนกว่าจะเปิดใช้งาน SPORK15</p></body></html> + Start alias เริ่มนามแฝง + + Copy ProTx Hash + คัดลอก ProTx Hash + + + Copy Collateral Outpoint + Copy Collateral Outpoint + + + ENABLED + เปิดการใช้งาน + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + ไม่ทราบ + + + to %1 + ไปยัง %1 + + + to UNKNOWN + ไม่ทราบ + + + but not claimed + แต่ไม่ได้ถูกเรียกร้อง + + + NONE + ไม่มี + Confirm masternode start ยืนยันว่า Masternodes เริ่มทำงาน @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + ข้อมูลเพิ่มเติมสำหรับ DIP3 Masternode %1 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features เปิดใช้ coin & รูปแบบการควบคุม + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + แสดงระบบป๊อปอัพสำหรับทำธุรกรรมผสม PrivateSend <br/> เช่นเดียวกับทำธุรกรรมแบบประเภทอื่นๆ + + + Show popups for PrivateSend transactions + แสดงป๊อปอัปสำหรับธุรกรรม PrivateSend + &Spend unconfirmed change &ใช้เงินทอนที่ยังไม่ยืนยัน @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ ข้อความ PrivateSend ล่าสุด: - - N/A - N/A - PrivateSend was successfully reset. รีเซ็ต PrivateSend สำเร็จแล้ว @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. ไม่ว่าจะเป็นที่อยู่สำหรับดูอย่างเดียวหรือไม่ก็ตามก็เกี่ยวข้องกับธุรกรรมนี้ + + Whether or not this transaction was locked by InstantSend. + ไม่ว่าธุรกรรมนี้จะถูกล็อคโดย InstantSend หรือไม่ + User-defined intent/purpose of the transaction. เจตนา / วัตถุประสงค์ที่กำหนดโดยผู้ใช้ของธุรกรรม @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All ทั้งหมด + + Locked by InstantSend + ล็อคโดย InstantSend + + + Not locked by InstantSend + ไม่ได้ถูกล็อคโดย InstantSend + Today วันนี้ @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup ลบการทำธุรกรรมทั้งหมดของ wallet และกู้เฉพาะส่วนของ blockchain ผ่านการสแกนใหม่เมื่อเริ่มต้น + + Enable publish raw transactions of attempted InstantSend double spend in <address> + เปิดใช้งาน raw transactions ของ InstantSend พยายามที่จะใช้จ่ายสองเท่าใน <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + เปิดใช้งาน transaction hashes ของ InstantSend พยายามที่จะใช้จ่ายสองเท่าใน<address> + Error loading %s: You can't enable HD on a already existing non-HD wallet เกิดข้อผิดพลาดในการโหลด %s: คุณไม่สามารถเปิดใช้งาน HD บน wallet ที่ไม่ใช่ของ HD ที่มีอยู่แล้ว @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) ข้อมูลการแก้ไขจุดบกพร่องของ Output (ค่าดีฟอลต์: %u <category> เป็นตัวเลือกเพิ่มเติม) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + ยกเลิกจำนวนขั้นต่ำ spork signers เพื่อเปลี่ยนจำนวน มีประโยชน์สำหรับ regtest และ devnet เท่านั้น หากใช้สิ่งนี้บน mainnet หรือ testnet คุณจะถูกแบน + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + ใช้ N masternode ในการผสมเงินทุน (%u-%u, ค่าเริ่มต้น: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) ใช้พร็อกซี SOCKS5 แยกเพื่อเข้าถึงเพื่อนร่วมทางผ่านบริการที่ซ่อนไว้ของ Tor (ค่าดีฟอลต์: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex คุณจำเป็นต้องสร้างฐานข้อมูลโดยใช้ -reindex-chainstate เพื่อเปลี่ยน -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + คุณควรระบุ masternodeblsprivkey ในการกำหนดค่า โปรดดูเอกสารประกอบสำหรับความช่วยเหลือเพิ่มเติม + (default: %s) (ค่าดีฟอลต์: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) จำนวนที่ไม่ถูกต้องสำหรับ -paytxfee = <amount>: '%s' (ต้องมีอย่างน้อย %s) + + Invalid masternodeblsprivkey. Please see documenation. + masternodeprivkey ไม่ถูกต้อง โปรดดูเอกสารประกอบ + + + Invalid minimum number of spork signers specified with -minsporkkeys + จำนวนขั้นต่ำ spork signers ไม่ถูกต้องระบุด้วย -minsporkkeys + Keypool ran out, please call keypoolrefill first Keypool หมดแล้ว โปรดเติม Keypool ก่อน @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) ตั้งค่าขนาด key pool เป็น <n> (ค่าเริ่มต้น: %u) + + Set the masternode BLS private key + ตั้งค่า The Masternode BLS private key + Set the number of threads to service RPC calls (default: %d) กำหนดจำนวน threads เพื่อให้บริการการโทร RPC (ค่าเริ่มต้น: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. จำนวนเงิน %f มากเกินไป, กำลังลบออก + + Too many %f denominations, skipping. + จำนวน %f มากเกินไป , ข้าม + Tor control port password (default: empty) รหัสผ่านพอร์ตควบคุม Tor (ค่าเริ่มต้น: ว่าง) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> เปิดใช้งานการทำธุรกรรมดิบใหม่ใน <address> - - Enable transaction replacement in the memory pool (default: %u) - เปิดใช้การแทนที่ธุรกรรมในหน่วยความจำ pool (ค่าดีฟอลต์: %u) - Error: A fatal internal error occurred, see debug.log for details ข้อผิดพลาด: มีข้อผิดพลาดร้ายแรงภายในเกิดขึ้น โปรดดูที่ debug.log เพื่อดูรายละเอียด @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' จำนวนเงินที่ไม่ถูกต้องสำหรับ -fallbackfee = 1: '%s' - - Invalid input count. - จำนวนการป้อนข้อมูลไม่ถูกต้อง - Keep the transaction memory pool below <n> megabytes (default: %u) เก็บหน่วยความจำธุรกรรมไว้ต่ำกว่า 1 เมกะไบต์ (ค่าเริ่มต้น: %u) diff --git a/src/qt/locale/dash_tr.ts b/src/qt/locale/dash_tr.ts index 9b7cd22cd699..994732778576 100644 --- a/src/qt/locale/dash_tr.ts +++ b/src/qt/locale/dash_tr.ts @@ -971,8 +971,8 @@ Özel Gönder bilgisi - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>Özel Gönder Temel Bilgiler</h3> Özel Gönder size paranızın gerçek kaynağını gizleyerek tam bir gizlilik imkanı sağlar. Cüzdanınızdaki Dash farklı "girdiler"den oluşur, bunu ayrı gizli paralar olarak düşünebilirsiniz.<br> Özel Gönder sizin girdilerinizi başka iki kişinin girdileri ile karıştırmak için yenilikçi bir işlem kullanır ve bu sırada paranın cüzdanınızdan çıkmasına gerek kalmaz. Her an paranızın kontrolü sizdedir.<hr> <b>Özel Gönder işlemi şöyle işler:</b><ol type="1"> <li>Özel Gönder işlem girdilerinizi standart birimlere bölerek başlar. Bu birimler 0.01 DASH, 0.1 DASH, 1 DASH ve 10 DASH'dir -- her gün kullandığınız kağıt para gibi düşünebilirsiniz.</li> <li>Sonra cüzdanınız ağdaki özel ayarlanmış yazılım düğümlerine talepler gönderir, bunşara "ana düğümler" denir. Bu ana düğümlere sizin belli bir miktar birimi karıştırmak istediğiniz bilgisi gider. Ana düğümlere kimliğinizi açık edecek bir bilgi gönderilmez, bu yüzden "kim" olduğunuzu bilmezler.</li> <li>Aynı birimleri karıştırmak istediğini belirten iki başka kişi daha benzer mesajlar gönderince, karıştırma işlemi başlar. Ana düğüm giridleri karıştırır ve üç kullanıcının da cüzdanına şimdi dönüştürülmüş olan girdiyi kendilerne ödemelerini emreder. Cüzdanınız bu birimleri doğrudan kendisine öder ama farklı bir adres kullanır (buna değişim adresi denir).</li> <li>Paranızı tamamen gizlemek için cüzdanınız bu işlemi her birim için birkaç defa tekrar etmelidir. Her işlem tamamlandığına buna bir "tur" denir. Her bir Özel Gönder turu paranızın kaynağının bulunmasını üstel olarak zorlaştırır.</li> <li>Bu karışım işlemi arkaplanda sizin tarafınızdan bir müdahale olmadan gerçekleşir. Bir işlem yapmak istediğinizde bakiyeniz zaten anonimleştirilmiş olacaktır. Ek bir beklemeye gerek kalmaz.</li> </ol> <hr><b>ÖNEMLİ:</b> Cüzdanınızda bu "değişim adreslerinden" sadece 1000 tane vardır. Her bir karışım işleminde bu adreslerden 9 taneye kadar kullanılır. Bu da 1000 adresin yaklaşık 100 karışım işlemine yeteceği anlamına gelir. 900 tanesi kullanıldığı zaman, cüzdanınızın daha fazla adres oluşturması gerekir. Yalnız bunu ancak otomatik yedekleme etkinse yapabilir.<br> Sonuç olarak yedeklemeyi kapatan kullanıcılar aynı zamanda Özel Gönderi de kapatmış olurlar. <hr>Daha fazla bilgi için lütfen <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">Özel Gönder dökümantasyonuna</a> göz atın. + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Özel Gönder Temel Bilgiler</h3> Özel Gönder size paranızın gerçek kaynağını gizleyerek tam bir gizlilik imkanı sağlar. Cüzdanınızdaki Dash farklı "girdiler"den oluşur, bunu ayrı gizli paralar olarak düşünebilirsiniz.<br> Özel Gönder sizin girdilerinizi başka iki kişinin girdileri ile karıştırmak için yenilikçi bir işlem kullanır ve bu sırada paranın cüzdanınızdan çıkmasına gerek kalmaz. Her an paranızın kontrolü sizdedir.<hr> <b>Özel Gönder işlemi şöyle işler:</b><ol type="1"> <li>Özel Gönder işlem girdilerinizi standart birimlere bölerek başlar. Bu birimler 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH ve 10 DASH'dir -- her gün kullandığınız kağıt para gibi düşünebilirsiniz.</li> <li>Sonra cüzdanınız ağdaki özel ayarlanmış yazılım düğümlerine talepler gönderir, bunşara "ana düğümler" denir. Bu ana düğümlere sizin belli bir miktar birimi karıştırmak istediğiniz bilgisi gider. Ana düğümlere kimliğinizi açık edecek bir bilgi gönderilmez, bu yüzden "kim" olduğunuzu bilmezler.</li> <li>Aynı birimleri karıştırmak istediğini belirten iki başka kişi daha benzer mesajlar gönderince, karıştırma işlemi başlar. Ana düğüm giridleri karıştırır ve üç kullanıcının da cüzdanına şimdi dönüştürülmüş olan girdiyi kendilerne ödemelerini emreder. Cüzdanınız bu birimleri doğrudan kendisine öder ama farklı bir adres kullanır (buna değişim adresi denir).</li> <li>Paranızı tamamen gizlemek için cüzdanınız bu işlemi her birim için birkaç defa tekrar etmelidir. Her işlem tamamlandığına buna bir "tur" denir. Her bir Özel Gönder turu paranızın kaynağının bulunmasını üstel olarak zorlaştırır.</li> <li>Bu karışım işlemi arkaplanda sizin tarafınızdan bir müdahale olmadan gerçekleşir. Bir işlem yapmak istediğinizde bakiyeniz zaten anonimleştirilmiş olacaktır. Ek bir beklemeye gerek kalmaz.</li> </ol> <hr><b>ÖNEMLİ:</b> Cüzdanınızda bu "değişim adreslerinden" sadece 1000 tane vardır. Her bir karışım işleminde bu adreslerden 9 taneye kadar kullanılır. Bu da 1000 adresin yaklaşık 100 karışım işlemine yeteceği anlamına gelir. 900 tanesi kullanıldığı zaman, cüzdanınızın daha fazla adres oluşturması gerekir. Yalnız bunu ancak otomatik yedekleme etkinse yapabilir.<br> Sonuç olarak yedeklemeyi kapatan kullanıcılar aynı zamanda Özel Gönderi de kapatmış olurlar. <hr>Daha fazla bilgi için lütfen <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">Özel Gönder dökümantasyonuna</a> göz atın. @@ -1108,10 +1108,78 @@ Node Count: Düğüm Sayısı: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Not: Bu liste eski ve deterministik olmayan ana düğüm listesini gösterir. Bu liste sadece DIP3 tamamen etkinleştirilene kadar etkin olacaktır. SPORK15 etkinleştirmesinden sonra bu liste boş kalacaktır.</p></body></html> + + + DIP3 Masternodes + DIP3 Ana Düğümleri + + + PoSe Score + PoSe Puanı + + + Registered + Kayıtlı + + + Last Paid + Son Ödeme + + + Next Payment + Gelecek Ödeme + + + Operator Reward + Operatör Ödülü + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Not: Bu liste henüz etkin değildir ve sadece bilgi amaçlıdır. Ağ hala uyumluluk modunda çalışıyor bu sebeple deterministik olmayan ana düğüm listesi hala etkin. SPORK15 etkinleştirmesinden sonra bu liste geçerli olacak. Ayrıca, ödemeyle ilgili alanlardaki değerler şu anda kullanımda değil ama yine de ger bloktan sonra güncelleniyor. Lütfen bu değerleri SPORK15 etkinleştirmesine kadar dikkate almayın.</p></body></html> + Start alias Ad başlat + + Copy ProTx Hash + ProTx Hashini kopyala + + + Copy Collateral Outpoint + Teminat Çıkış Noktasını Kopyala + + + ENABLED + ETKİN + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + BİLİNMİYOR + + + to %1 + şuna: %1 + + + to UNKNOWN + şuna: BİLİNMİYOR + + + but not claimed + ama alınmadı + + + NONE + YOK + Confirm masternode start Ana düğüm başlangıcını onayla @@ -1176,6 +1244,10 @@ Sentinel Sentinel + + Additional information for DIP3 Masternode %1 + DIP3 Ana Düğümü %1 için ek bilgi + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features Para &kontrolü özelliklerini etkinleştir + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Özel Gönder karışım işlemleri için tıpkı diğer işlemler<br/>için olduğu gibi sistem popuplarını göster. + + + Show popups for PrivateSend transactions + Özel Gönder işlemleri için popup göster. + &Spend unconfirmed change Teyit edilmemiş para üstünü &harca @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Son Özel Gönder mesajı: - - N/A - Mevcut değil - PrivateSend was successfully reset. Özel Gönder başarıyla sıfırlandı. @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Bu işleme sadece-izlenen bir adresin dahil edilip, edilmediği. + + Whether or not this transaction was locked by InstantSend. + Bu işlem Anında Gönder ile kilitlendi mi gösterir. + User-defined intent/purpose of the transaction. İşlemin kullanıcı tanımlı amacı. @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Hepsi + + Locked by InstantSend + Anında Gönder ile kilitlendi + + + Not locked by InstantSend + Anında Gönder ile kilitlenmedi + Today Bugün @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ 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 + + Enable publish raw transactions of attempted InstantSend double spend in <address> + <address> adresindeki Anında Gönder çift harcama girişimleri için ham işlem yayınını etkinleştir. + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + <address> adresindeki Anında Gönder çift harcama girişimleri için işlem hash yayınını etkinleştir. + Error loading %s: You can't enable HD on a already existing non-HD wallet %s yüklenirken hata: Zaten var olan bir HD olmayan cüzdanda HD etkinleştiremezsiniz @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Hata ayıklama bilgisini dök (varsayılan: %u, <category> sağlanması seçime dayalıdır) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Spork değerini değiştirmek için ereken spork imzacısı sayısını değiştirir. Sadece regtest ve devnet için kullanılır. Bunu mainnet veya testnette kullanırsanız atılırsınız. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Meblağı karıştırmak için N tane farklı ana düğüm kullan (%u-%u, varsayılan: %u) + 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) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex -txindex'i değiştirmek için -reindex-chainstate kullanarak veritabanını baştan kurmalısınız + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Ayarlarda bir masternodeblsprivkey belirtmelisiniz. Yardım için dökümanlara göz atın. + (default: %s) (varsayılan: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ 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 masternodeblsprivkey. Please see documenation. + Geçersiz masternodeblsprivkey. Lütfen dökümanlara göz atın. + + + Invalid minimum number of spork signers specified with -minsporkkeys + -minsporkkeys ile belirtilmiş geçersiz minimum spork imzacısı sayısı + Keypool ran out, please call keypoolrefill first Keypool tükendi, lütfen önce keypoolrefill'i çağırın @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Anahtar alan boyutunu <n> değerine ayarla (varsayılan: %u) + + Set the masternode BLS private key + Ana düğüm BLS özel anahtarını belirle + Set the number of threads to service RPC calls (default: %d) Hizmet RCP aramaları iş parçacığı sayısını belirle (varsayılan: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. Çok fazla %f birimi, siliniyor. + + Too many %f denominations, skipping. + Çok fazla %f birimi, geçiliyor. + Tor control port password (default: empty) Tor kontrol portu parolası (varsayılan: boş) @@ -4637,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ 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: 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 @@ -4685,10 +4805,6 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -fallbackfee=<amount>: '%s' -fallbackfee=<tutar> için geçersiz tutar: '%s' - - Invalid input count. - Girdi sayısı geçersiz. - Keep the transaction memory pool below <n> megabytes (default: %u) İşlem bellek alanını <n> megabayttan düşük tut (varsayılan: %u) diff --git a/src/qt/locale/dash_vi.ts b/src/qt/locale/dash_vi.ts index e950edc8c892..ce2b40f660bc 100644 --- a/src/qt/locale/dash_vi.ts +++ b/src/qt/locale/dash_vi.ts @@ -793,6 +793,10 @@ Please switch to "List mode" to use this function. Hãy chuyển về "Chế độ danh sách" để sử dụng tính năng này. + + Non-anonymized input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-anonymized inputs first and then check the PrivateSend checkbox again. + Đầu vào được chọn chưa được ẩn danh. <b>PrivateSend sẽ được tắt.</b><br><br>Nếu bạn vẫn muốn sử dụng PrivateSend, hãy bỏ chọn tất cả các đầu vào chưa được ẩn danh trước và sau đó chọn vào ô PrivateSend lần nữa. + (%1 locked) (%1 được khoá) @@ -966,7 +970,11 @@ PrivateSend information Thông tin PrivateSend - + + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>Cơ bản về PrivateSend</h3> PrivateSend cho bạn sự thực sự riêng tư về tài chính bằng việc che dấu những nguồn cung. Tất cả Dash trong ví của bạn bao gồm những "đầu vào" khác nhau mà bạn nghĩ đó là các coin riêng biệt và rời rạc.<br> PrivateSend sử dụng một tiến trình độc đáo để trộn các đầu vào của bạn với đầu vào của những người khác, mà không làm cho các coin rời khỏi ví của bạn. Bạn vẫn giữ quyền kiểm soát tiền của bạn bất cứ lúc nào.<hr> <b>Quá trình PrivateSend làm việc như sau: </b> <ol type="1"> <li>PrivateSend bắt đầu bằng việc chia các giao dịch đầu vào của bạn thành những mệnh giá chuẩn. Những mệnh giá đó là 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH, và 10 DASH -- cũng giống như các mệnh giá trên tiền giấy mà bạn sử dụng hàng ngày. </li><li>Ví của bạn sau đó gửi yêu cầu đến những nút phần mềm được cấu hình đặc biệt trên mạng gọi là các "masternode". Những masternode được báo rằng bạn quan tâm đến việc xáo trộn một mệnh giá nào đó. Không có thông tin định danh nào được gửi đến cho các masternode, và như vậy họ không bao giờ biết bạn "là ai". </li> <li>Khi hai người khác nhau gửi những thông điệp tương tự, có nghĩa là họ muốn xáo trộn cùng loại mệnh giá, một phiên xáo trộn bắt đầu. Masternode xáo trộn các đầu vào và hướng dẫn tất cả ví của tất cả ba người dùng để trả đầu vào đã được chuyển đổi trở lại cho chính họ. Ví của bạn sẽ trả mệnh giá đó trực tiếp cho nó, nhưng với một địa chỉ khác (được gọi là địa chỉ trả tiền lẻ). </li> <li>Để thực sự che khuất nguồn tiền của bạn, ví của bạn phải lặp lại quy trình đó một số lần với mỗi mệnh giá nhất định. Mỗi lần tiến trình hoàn tất, nó được gọi là một "vòng". Mỗi vòng của PrivateSend làm nên độ khó bậc số mũ để xác định nguồn tiền của bạn đến từ đâu. </li> <li>Quá trình xáo trộn này xảy ra trong chế độ nền mà không xen vào những việc khác của bạn. Khi bạn muốn thực hiện một giao dịch, nguồn tiền của bạn đã được ẩn danh rồi. Do đó bạn không cần phải đợi thêm gì nữa. </li></ol> <hr> <b>QUAN TRỌNG:</b> Ví của bạn chỉ có chứa 1000 "địa chỉ tiền trả lại". Mỗi lần một sự kiện xáo trộn xảy ra, có đến 9 địa chỉ sẽ được sử dụng. Điều đó có nghĩa với ví mới với 1000 địa chỉ thì dùng cho 100 lần trộn. Khi 900 địa chỉ đã được sử dụng, ví của bạn phải tạo thêm các địa chỉ mới. Nó chỉ có thể làm việc đó, tuy nhiên, nếu bạn có chế độ tự động backup được bật<br> Kết quả là, những người dùng mà chế độ backup bị tắt sẽ có chế độ PrivateSend cũng bị tắt.<hr> Để biết thêm thông tin hãy xem <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">Tài liệu về PrivateSend</a>. + + Intro @@ -1100,10 +1108,78 @@ Node Count: Số lượng các nút: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>Chú ý: Danh sách này liệt kê danh sách các masternode và không phải loại xác định trước. Nó chỉ hoạt động khi mà DIP3 không được kích hoạt một cách đầy đủ. Sau khi SPORK15 được kích hoạt, danh sách này sẽ bị trống.</p></body></html> + + + DIP3 Masternodes + DIP3 Masternodes + + + PoSe Score + Điểm PoSe + + + Registered + Đã đăng ký + + + Last Paid + Thanh toán lần cuối + + + Next Payment + Kỳ thanh toán tiếp theo + + + Operator Reward + Phần thưởng cho người vận hành + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>Chú ý: Danh sách này chưa được kích hoạt và chỉ có mục tiêu cung cấp thông tin. Mạng vẫn đang được chạy trong chế độ tương thích, điều đó có nghĩa là danh sách các masternode không xác định trước vẫn đang hoạt động. Chỉ sau khi SPORK15 được kích hoạt, danh sách này mới sẽ được hoạt động. Như vậy, các giá trị trong các trường liên quan đến giao dịch là hiện tại chưa được sử dụng, nhưng sẽ được cập nhật cho mỗi khối. Hãy bỏ qua điều này cho đến khi SPORK15 được kích hoạt.</p></body></html> + Start alias Khởi động bí danh + + Copy ProTx Hash + Copy mã băm ProTx + + + Copy Collateral Outpoint + Copy các đầu ra của khoản đặt cọc + + + ENABLED + BẬT + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + KHÔNG XÁC ĐỊNH + + + to %1 + đến %1 + + + to UNKNOWN + đến KHÔNG XÁC ĐỊNH + + + but not claimed + nhưng không được đòi + + + NONE + KHÔNG + Confirm masternode start Xác nhận khởi động masternode @@ -1168,6 +1244,10 @@ Sentinel Lính canh + + Additional information for DIP3 Masternode %1 + Thông tin thêm về DIP3 Masternode %1 + ModalOverlay @@ -1373,6 +1453,14 @@ Enable coin &control features Bật tính năng Coin &control + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + Hiển thị bảng hội thoại cho giao dịch trộn PrivateSend <br/>giống như cho tất các các loại giao dịch khác. + + + Show popups for PrivateSend transactions + Hiển thị yêu cầu xác nhận cho các giao dịch PrivateSend + &Spend unconfirmed change &Tiêu phần trả lại chưa được xác nhận @@ -1754,6 +1842,10 @@ https://www.transifex.com/projects/p/dash/ We are about to create a new automatic backup for you, however <span style='color:red;'> you should always make sure you have backups saved in some safe place</span>! Chúng tôi sẽ tạo một bản tự động backup cho bạn, tuy nhiên <span style='color:red;'>bạn nên luôn chắc chắn rằng bạn đã lưu backup ở nơi nào đó an toàn</span>! + + Note: You can turn this message off in options. + Chú ý: Bạn có thể tắt thông báo này trong phần tuỳ chọn. + WARNING! Something went wrong on automatic backup CHÚ Ý: Có gì đó có vấn đề khi đang tự động backup @@ -1784,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ Thông điệp PrivateSend cuối cùng: - - N/A - Không áp dụng - PrivateSend was successfully reset. PrivateSend đã được thiết lập lại thành công. @@ -3527,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. Cho dù có hay không thì một địa chỉ chỉ theo dõi cũng liên quan đến giao dịch này. + + Whether or not this transaction was locked by InstantSend. + Giao dịch này có được khoá hay không được khoá bởi InstantSend. + User-defined intent/purpose of the transaction. Người dùng định nghĩa ý định/mục đích của giao dịch. @@ -3542,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All Tất cả + + Locked by InstantSend + Đã được khoá bởi InstantSend + + + Not locked by InstantSend + Không được khoá bởi InstantSend + Today Hôm nay @@ -3965,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Xoá hết tất cả các giao dịch ví và chỉ phục hồi những phần đó của blockchain qua -rescan khi khởi động + + Enable publish raw transactions of attempted InstantSend double spend in <address> + Cho phép công bố các giao dịch thô đã dùng InstantSend trong việc tiêu lặp ở <address> + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + Cho phép công bố các mã băm của giao dịch đã dùng InstantSend trong việc tiêu lặp ở <address> + Error loading %s: You can't enable HD on a already existing non-HD wallet Lỗi tải %s: Bạn không thể mở HD trên ví mà không phải là HD @@ -4009,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) Thông tin gỡ rối đầu ra (ngầm định: %u, cung cấp <category> là một tuỳ chọn) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + Ghi đè yêu cầu về số người ký spork tối thiểu để thay đổi giá trị spork. Chỉ hữu ích cho regtest và devnet. Không được sử dụng cái này trên mainnet hoặc test net. + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + Sử dụng N masternode riêng biệt một cách song song để trộn ngân quỹ (%u-%u, ngầm định: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Sửa dụng các SOCKS5 proxy riêng biệt cho mỗi đối tác ngang hàng thông qua dịch vụ ẩn Tor (ngầm định: %s) @@ -4029,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex Bạn cần tái tạo lại cơ sở dữ liệu sử dụng tham số -reindex-chainstate để thay cho -txindex + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + Bạn cần chỉ rõ một masternodeblsprivkey trong cấu hình. Hãy xem lại tài liệu để biết thêm chi tiết. + (default: %s) (ngầm định: %s) @@ -4141,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Số tiền không hợp lệ cho -paytxfee=<số tiền>: '%s' (ít nhất phải bằng %s) + + Invalid masternodeblsprivkey. Please see documenation. + masternodeblsprivkey không hợp lệ. Hãy xem lại tài liệu. + + + Invalid minimum number of spork signers specified with -minsporkkeys + Số lượng người ký tối thiểu cho spork được chỉ bởi -minsporkkeys không hợp lệ + Keypool ran out, please call keypoolrefill first Keypool đã hết, hãy gọi keypoolrefill trước @@ -4241,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) Thiết lập kích thước pool đến <n> (ngầm định: %u) + + Set the masternode BLS private key + Thiết lập khoá riêng BLS cho masternode + Set the number of threads to service RPC calls (default: %d) Thiết lập số luồng phục vụ các lời gọi RPC (ngầm định: %d) @@ -4303,7 +4435,11 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. - Có quá nhiều %f mệnh giá, đang xoá. + Có quá nhiều mệnh giá %f, đang xoá. + + + Too many %f denominations, skipping. + Có quá nhiều mệnh giá %f, đang bỏ qua. Tor control port password (default: empty) @@ -4401,6 +4537,10 @@ https://www.transifex.com/projects/p/dash/ Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) Tắt tất cả các chức năng đắc trưng của Dash (Masternode, PrivateSend, InstantSend, Governance) (0-1, ngầm định: %u) + + %s file contains all private keys from this wallet. Do not share it with anyone! + File %s có chứa tất cả các khoá riêng từ ví này. Không nên chia sẻ nó với bất cứ ai. + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Tự phát hiện địa chỉ IP (ngầm định: 1 khi nghe và không dùng -externalip hoặc -proxy) @@ -4425,6 +4565,10 @@ https://www.transifex.com/projects/p/dash/ Execute command when a wallet InstantSend transaction is successfully locked (%s in cmd is replaced by TxID) Thực hiện lên khi một giao dịch InstantSend được khoá thành công (%s trong cmd được thay thế bằng TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + Những giao dịch khác được giữ ở trong bộ nhớ cho việc tái xây dựng các khối được gọn gàng (ngầm định: %u) + Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this. Không tạo được file dự phòng, file đã tồn tại rồi! Điều này có thể xảy ra nếu bạn khởi động lại ví trong ít hơn 60 giây. Bạn có thể tiếp tục nếu bạn đồng ý với việc đó. @@ -4505,6 +4649,10 @@ https://www.transifex.com/projects/p/dash/ Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Tổng độ dài của chuỗi phiên bản mạng (%i) vượt qua độ dài tối đa (%i). Hãy giảm số hoặc kích thước của uacomments. + + Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. + Chỉ số giao dịch không thể được tắt trong chế độ đầy đủ. Cả việc khởi động với câu lệnh với tuỳ chọn -litemode hoặc cho phép chỉ số giao dịch. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Thử giữ cho thông lượng mạng truyền ra dưới ngưỡng (theo MiB mỗi 24 giờ), 0 = không giới hạn (ngầm định: %d) @@ -4537,6 +4685,10 @@ https://www.transifex.com/projects/p/dash/ Warning: Unknown block versions being mined! It's possible unknown rules are in effect Cảnh báo: Không xác định được phiên bản khối được đào! Có thể những luật chưa được biết đang có tác động + + You are starting in lite mode, all Dash-specific functionality is disabled. + Bạn đang khởi động trong chế độ nhẹ, tất cả các chức năng đặc trưng của Dash sẽ bị tắt. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Bạn cần tái lập lại cơ sở dữ liệu sử dụng -reindex để quay trở lại chế độ không bị xén tỉa. Điều này sẽ làm tải lại toàn bộ blockchain @@ -4581,6 +4733,14 @@ https://www.transifex.com/projects/p/dash/ Enable publish hash block in <address> Cho phép xuất bản khối băm trong <address> + + Enable publish hash of governance objects (like proposals) in <address> + Cho phép xuất bản hash cho đối tượng quản trị (như các đề xuất) trong <address> + + + Enable publish hash of governance votes in <address> + Cho phép xuất bản hash của các biểu quyết quản trị trong <address> + Enable publish hash transaction (locked via InstantSend) in <address> Cho phép công bố hash transaction (khoá thông qua InstantSend) trong <address> @@ -4595,15 +4755,11 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction (locked via InstantSend) in <address> - Cho phép công bố các giao dịch raw (được khoá qua InstantSend) trong <address> + Cho phép công bố các giao dịch thô (được khoá qua InstantSend) trong <address> Enable publish raw transaction in <address> - Cho phép công bố giao dịch raw trong <address> - - - Enable transaction replacement in the memory pool (default: %u) - Cho phép thay thế giao dịch trong bể nhớ (ngầm định: %u) + Cho phép công bố giao dịch thô trong <address> Error: A fatal internal error occurred, see debug.log for details @@ -4621,6 +4777,14 @@ https://www.transifex.com/projects/p/dash/ Failed to delete backup, error: %s Không xoá được backup, lỗi: %s + + Failed to load InstantSend data cache from + Thất bại trong việc tải dữ liệu cache của InstantSend từ + + + Failed to load sporks cache from + Thất bại việc tải dữ liệu sporks cache từ + Failed to parse host:port string Không diễn dịch được thông tin địa chỉ máy:cổng @@ -4657,6 +4821,10 @@ https://www.transifex.com/projects/p/dash/ Line: %d Dòng: %d + + Loading InstantSend data cache... + Đang tải dữ liệu cache của InstantSend... + Loading addresses... Nạp các địa chỉ... @@ -4669,6 +4837,10 @@ https://www.transifex.com/projects/p/dash/ Loading governance cache... Đang tải bộ đệm quản trị... + + Loading sporks cache... + Đang tải dữ liệu sporks cache... + Loading wallet... (%3.2f %%) Đang nạp ví... (%3.2f %%) @@ -4809,6 +4981,10 @@ https://www.transifex.com/projects/p/dash/ Transaction must have at least one recipient Transaction phải có ít nhất một người nhận + + Transaction too large + Giao dịch quá lớn + Trying to connect... Đang thử kết nối... @@ -4829,6 +5005,10 @@ https://www.transifex.com/projects/p/dash/ Wallet debugging/testing options: Wallet debugging/testing options: + + Wallet is not initialized + Ví chưa được khởi tạo + Wallet needed to be rewritten: restart %s to complete Wallet needed to be rewritten: restart %s to complete @@ -4845,6 +5025,10 @@ https://www.transifex.com/projects/p/dash/ Whether to operate in a blocks only mode (default: %u) Cho dù hoạt động trong chế độ chỉ có các khối (ngầm định: %u) + + You can not start a masternode in lite mode. + Bạn không thể khởi động một masternode ở chế độ nhẹ. + ZeroMQ notification options: Tuỳ chọn thông báo ZeroMQ: @@ -5119,7 +5303,7 @@ https://www.transifex.com/projects/p/dash/ Set the masternode private key - Đặt khoá riêng cho masternode + Thiết lập khoá riêng cho masternode Show all debugging options (usage: --help -help-debug) diff --git a/src/qt/locale/dash_zh_CN.ts b/src/qt/locale/dash_zh_CN.ts index 89ab56421aa6..3926070f37db 100644 --- a/src/qt/locale/dash_zh_CN.ts +++ b/src/qt/locale/dash_zh_CN.ts @@ -971,8 +971,8 @@ 匿名发送信息 - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>匿名发送基础知识</h3>匿名发送通过隐藏您的资金来源为您提供真正的财务隐私。您的钱包中所有的达世币都由不同的“输入”组成,您可以将其视为分开的离散硬币。<br>匿名发送使用创新的方法将您的输入与其他两个人的输入相结合,而过程中不会让您的达世币离开您的钱包。每时每刻,您仍然控制着您的钱。<hr><b>匿名发送的运作原理如下:</b><ol type="1"><li>匿名发送首先将您的交易分柝成多个标准面额的交易。这些标准面额分别为0.01 DASH,0.1 DASH,1 DASH和10 DASH --有点像您每天使用的纸币。</li><li>您的钱包然后发送请求到网络上有专门配置的软件节点,称为“主节点”。这些主节点会收到您希望混合一些资金的通知。没有可识别的信息发送到主节点,所以他们永远不会知道你是“谁”。<li>当另外两个人发送类似的消息时,表示希望混合相同的面额的话,混合会话就会开始。相关的主节点会混合这些输入,并指示所有三个用户的钱包将已经转换了输入的交易支付给自己。您的钱包直接支付给自己,但是付给不同的位址(称之为找零地址)。</li><li>为了完全掩盖您的资金来源,您的钱包必须以每个面额来重复此过程数次。每次这个过程完成后,都称之为一个“循环”。每个循环的匿名发送都会令确定您的资金来源的工作倍加困难。</li><li>这种混合过程发生在后台,而不需要您进行任何操作。当您想进行交易时,您的资金将已被匿名处理。不需再花额外的时间等待。</li></ol><hr>重要:<b>您的钱包只能拥有1000个“找零地址”。每次混合事件发生时,最多会使用9个找零地址。这意味着这1000个地址可以容许100次的混合事件。当其的中900个已经被使用后,您的钱包必须创建更多的地址。如果您启用了自动备份,则只能够这样做。<br>因此,禁用备份的用户也将禁用匿名发送。<hr>如欲了解更多信息请参阅<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">匿名发送文档</a>。 + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>匿名发送基础知识</h3>匿名发送通过隐藏您的资金来源为您提供真正的财务隐私。您的钱包中所有的达世币都由不同的“输入”组成,您可以将其视为分开的离散硬币。<br>匿名发送使用创新的方法将您的输入与其他两个人的输入相结合,而过程中不会让您的达世币离开您的钱包。每时每刻,您仍然控制着您的钱。<hr><b>匿名发送的运作原理如下:</b><ol type="1"><li>匿名发送首先将您的交易分柝成多个标准面额的交易。这些标准面额分别为0.001 DASH,0.01 DASH,0.1 DASH,1 DASH和10 DASH --有点像您每天使用的纸币。</li><li>您的钱包然后发送请求到网络上有专门配置的软件节点,称为“主节点”。这些主节点会收到您希望混合一些资金的通知。没有可识别的信息发送到主节点,所以他们永远不会知道你是“谁”。<li>当另外两个人发送类似的消息时,表示希望混合相同的面额的话,混合会话就会开始。相关的主节点会混合这些输入,并指示所有三个用户的钱包将已经转换了输入的交易支付给自己。您的钱包直接支付给自己,但是付给不同的位址(称之为找零地址)。</li><li>为了完全掩盖您的资金来源,您的钱包必须以每个面额来重复此过程数次。每次这个过程完成后,都称之为一个“循环”。每个循环的匿名发送都会令确定您的资金来源的工作倍加困难。</li><li>这种混合过程发生在后台,而不需要您进行任何操作。当您想进行交易时,您的资金将已被匿名处理。不需再花额外的时间等待。</li></ol><hr>重要:<b>您的钱包只能拥有1000个“找零地址”。每次混合事件发生时,最多会使用9个找零地址。这意味着这1000个地址可以容许100次的混合事件。当其的中900个已经被使用后,您的钱包必须创建更多的地址。如果您启用了自动备份,则只能够这样做。<br>因此,禁用备份的用户也将禁用匿名发送。<hr>如欲了解更多信息请参阅<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">匿名发送文档</a>。 @@ -1108,10 +1108,78 @@ Node Count: 节点数: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>注意: 本列表显示的是遗留的非确定性主节点列表,并仅在 DIP3 未完全激活时处于活动状态。在 SPORK15开启后,本列表将清空。</p></body></html> + + + DIP3 Masternodes + DIP3 主节点 + + + PoSe Score + PoSe 评分 + + + Registered + 已注册的 + + + Last Paid + 最近支付 + + + Next Payment + 下次支付 + + + Operator Reward + 运行者奖励 + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>注意: 本列表尚未激活,仅供参考。网络仍在以兼容模式运行,这意味着非确定性主节点列表仍然处于活动状态。只有在 SPORK15 开启后,本列表才会激活。另外,支付相关字段的值暂未使用,但依旧会逐块更新。请忽略此项直至 SPORK15 开启。</p></body></html> + Start alias 启动别名 + + Copy ProTx Hash + 复制 ProTx Hash + + + Copy Collateral Outpoint + 复制保证金输出点 + + + ENABLED + ENABLED + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + UNKNOWN + + + to %1 + 至 %1 + + + to UNKNOWN + 至 UNKNOWN + + + but not claimed + 但未认领 + + + NONE + NONE + Confirm masternode start 确认启动主节点 @@ -1176,6 +1244,10 @@ Sentinel 哨兵 + + Additional information for DIP3 Masternode %1 + DIP3 主节点 %1 的额外信息 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features 启动交易源地址控制功能(&C) + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + 显示匿名发送混币交易的系统弹出窗口 <br/> 如同其他所有交易类型一样。 + + + Show popups for PrivateSend transactions + 显示匿名发送交易的弹出窗口 + &Spend unconfirmed change 可以花还未确认的零钱(&S) @@ -1762,6 +1842,10 @@ https://www.transifex.com/projects/p/dash/ We are about to create a new automatic backup for you, however <span style='color:red;'> you should always make sure you have backups saved in some safe place</span>! 我们即将为您创建一个新的自动备份,但<span style='color:red;'>您应该始终确保您有另外的一些备份保存在安全的位置</span>! + + Note: You can turn this message off in options. + 注意:您可以在选项中关闭此消息。 + WARNING! Something went wrong on automatic backup 警告!自动备份出现问题 @@ -1792,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ 最近收到的匿名发送信息: - - N/A - 不可用 - PrivateSend was successfully reset. 匿名发送成功重置。 @@ -3535,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. 决定是否有一个仅限查看的地址参与这次交易. + + Whether or not this transaction was locked by InstantSend. + 无论此交易是否被即时发送锁定。 + User-defined intent/purpose of the transaction. 用户定义的该交易的意图/目的。 @@ -3550,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All 全部 + + Locked by InstantSend + 被即时发送锁定 + + + Not locked by InstantSend + 未被即时发送锁定 + Today 今天 @@ -3973,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup 删除钱包里的所有交易信息, 并且在下次启动时, 使用 -rescan 来从区块链中恢复 + + Enable publish raw transactions of attempted InstantSend double spend in <address> + 允许在 <address>中发布尝试即时支付双花的原始交易 + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + 允许在 <address>中发布尝试即时支付双花的交易哈希值 + Error loading %s: You can't enable HD on a already existing non-HD wallet 加载%s时出错:您不能够在非HD钱包上启用HD功能 @@ -4017,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) 输出调试信息(默认:%u,<category>是可选项) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + 重写最少数叉勺签名人以更改叉勺值。仅适用于 regtest 和 devnet。在主网或测试网络使用会被禁止。 + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + 同时使用 N 个独立主节点来混淆资金 (%u-%u, default: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) 使用独立的SOCK5 代理服务器, 来通过Tor 隐藏服务器与节点的连接 (默认: %s) @@ -4037,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex 你需要通过使用 -reindex-chainstate改变-txindex来重建数据库 + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + 您应当在设置中具体标注 masternodeblsprivkey。请阅读文档获得帮助。 + (default: %s) (默认:%s) @@ -4149,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) 设定 -paytxfee=<金额> 的金额无效:'%s' (至少要有%s) + + Invalid masternodeblsprivkey. Please see documenation. + 无效的 masternodeblsprivkey。请阅读文档。 + + + Invalid minimum number of spork signers specified with -minsporkkeys + 无效的最少数叉勺签名人以 -minsporkkeys 标识 + Keypool ran out, please call keypoolrefill first Keypool用完了,请先调用keypoolrefill @@ -4249,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) 设置密匙池大小至<n> (默认:%u) + + Set the masternode BLS private key + 设置主节点 BLS 私钥 + Set the number of threads to service RPC calls (default: %d) 设定处理RPC 服务请求的线程数(默认:%d) @@ -4313,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. 太多%f面额化资金,正在移除。 + + Too many %f denominations, skipping. + 太多 %f 面额,跳过。 + Tor control port password (default: empty) Tor 控制端口密码 (默认值:空白) @@ -4409,6 +4537,10 @@ https://www.transifex.com/projects/p/dash/ Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) 禁止所有达世币的附加功能(主节点,匿名发送,即时发送,预算案)(0-1,默认:%u) + + %s file contains all private keys from this wallet. Do not share it with anyone! + %s 文件包含此钱包中的所有私钥。不要与任何人分享! + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) 找出自己的 IP 地址(默认:监听并且无 -externalip 或 -proxy 时为 1) @@ -4433,6 +4565,10 @@ https://www.transifex.com/projects/p/dash/ Execute command when a wallet InstantSend transaction is successfully locked (%s in cmd is replaced by TxID) 当钱包有交易改变时要执行的指令(命令中的%s会被取代成交易识别码) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + 额外的交易储存在内存中用于致密区块的重建 (默认: %u) + Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this. 无法创建备份,文件已经存在!如果您在60秒内重新启动钱包,则可能发生这种情况。如果您觉得这样没问题的话,您可以继续。 @@ -4513,6 +4649,10 @@ https://www.transifex.com/projects/p/dash/ Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. 网络版本字符串的总长度 (%i) 超过最大长度 (%i) 了。请减少 uacomment 参数的数量或大小。 + + Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. + 交易索引无法在全节点中禁用。可以通过 -litemode 来切换或开启交易索引。 + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) 尝试保持上传带宽低于(MiB/24h),0=无限制(默认:%d) @@ -4545,6 +4685,10 @@ https://www.transifex.com/projects/p/dash/ Warning: Unknown block versions being mined! It's possible unknown rules are in effect 警告:未知的区块版本被挖出!未知规则可能已生效 + + You are starting in lite mode, all Dash-specific functionality is disabled. + 您启动了简化模式,所有达世币特有的功能已禁用。 + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain 您需要使用 -reindex 重新构建数据库以返回未修剪的模式。这将重新下载整个区块链 @@ -4589,6 +4733,14 @@ https://www.transifex.com/projects/p/dash/ Enable publish hash block in <address> 允许在<address>中发布哈希区块 + + Enable publish hash of governance objects (like proposals) in <address> + 允许在 <address>中发布管理对象哈希值(如提案) + + + Enable publish hash of governance votes in <address> + 允许在 <address>中发布管理投票哈希值 + Enable publish hash transaction (locked via InstantSend) in <address> 允许在<address>中发布哈希交易(通过即时发送来锁定) @@ -4609,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> 允许在<address>中发布原始交易 - - Enable transaction replacement in the memory pool (default: %u) - 在内存池中启用交易替换功能(默认:%u) - Error: A fatal internal error occurred, see debug.log for details 错误:发生了致命的内部错误,详情见 debug.log 文件 @@ -4629,6 +4777,14 @@ https://www.transifex.com/projects/p/dash/ Failed to delete backup, error: %s 无法删除备份,错误:%s + + Failed to load InstantSend data cache from + 从... 读取即时发送数据缓存失败 + + + Failed to load sporks cache from + 从... 读取叉勺缓存失败 + Failed to parse host:port string 无法解析host:port字符串 @@ -4665,6 +4821,10 @@ https://www.transifex.com/projects/p/dash/ Line: %d 行:%d + + Loading InstantSend data cache... + 正在读取即时支付数据缓存... + Loading addresses... 正在读取地址... @@ -4677,6 +4837,10 @@ https://www.transifex.com/projects/p/dash/ Loading governance cache... 正在加载治理缓存… + + Loading sporks cache... + 正在读取叉勺缓存... + Loading wallet... (%3.2f %%) 正在读取钱包...(%3.2f%%) @@ -4817,6 +4981,10 @@ https://www.transifex.com/projects/p/dash/ Transaction must have at least one recipient 交易必须包含至少一个接收人 + + Transaction too large + 交易过大 + Trying to connect... 尝试连接中... @@ -4837,6 +5005,10 @@ https://www.transifex.com/projects/p/dash/ Wallet debugging/testing options: 钱包调试/测试选项: + + Wallet is not initialized + 钱包未初始化 + Wallet needed to be rewritten: restart %s to complete 钱包需要被重写:请重新启动%s来完成 @@ -4853,6 +5025,10 @@ https://www.transifex.com/projects/p/dash/ Whether to operate in a blocks only mode (default: %u) 是否在区块模式下操作(默认:%u) + + You can not start a masternode in lite mode. + 您无法在简化模式中启动主节点。 + ZeroMQ notification options: ZeroMQ 通知选项: diff --git a/src/qt/locale/dash_zh_TW.ts b/src/qt/locale/dash_zh_TW.ts index 8402b903e5f2..e1b275940be1 100644 --- a/src/qt/locale/dash_zh_TW.ts +++ b/src/qt/locale/dash_zh_TW.ts @@ -971,8 +971,8 @@ 匿名發送資訊 - <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. - <h3>匿名發送基礎知識</h3> 匿名發送通過隱藏您的資金來源為您提供真正的財務隱私。您的錢包中所有的達世幣都由不同的“輸入”組成,您可以將其視為分開的離散硬幣。<br> 匿名發送使用創新的方法將您的輸入與其他兩個人的輸入相結合,而過程中不會讓您的達世幣離開您的錢包。每時每刻,您仍然控制著您的錢。<hr> <b>匿名發送的運作原理如下:</b><ol type="1"> <li>匿名發送首先將您的交易分柝成多個標準面額的交易。這些標準面額分別為0.01 DASH, 0.1 DASH, 1 DASH 和10 DASH --有點像您每天使用的紙幣。</li> <li>您的錢包然後發送請求到網絡上有專門配置的軟件節點,稱為“主節點”。這些主節點會收到您希望混合一些資金的通知。沒有可識別的信息發送到主節點,所以他們永遠不會知道你是"誰"。</li> <li>當另外兩個人發送類似的消息時,表示希望混合相同的面額的話,混合會話就會開始。相關的主節點會混合這些輸入,並指示所有三個用戶的錢包將已經轉換了輸入的交易支付給自己。你的錢包直接支付給自己,但是付給不同的位址 (稱之為找零位址)。</li> <li>為了完全掩蓋您的資金來源,您的錢包必須以每個面額來重複此過程數次。每次這個過程完成後,都稱之為一個 "循環"。每個循環的匿名發送都會令確定您的資金來源的工作倍加困難。</li> <li>這種混合過程發生在後台,而不需要您進行任何操作。當您想進行交易時,您的資金將已被匿名處理。不需再花額外的時間等待。</li> </ol> <hr><b>重要:</b>您的錢包只能擁有1000個"找零位址。" 每次混合事件發生時,最多會使用9個找零位址。這意味著這1000個位址可以容許100次的混合事件。當其的中900個已經被使用後,您的錢包必須創建更多的位址。如果您啟用了自動備份,則只能夠這樣做。<br>因此,禁用備份的用戶也將禁用匿名發送。<hr>如欲了解更多信息請參閱<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">匿名發送文檔</a>。 + <h3>PrivateSend Basics</h3> PrivateSend gives you true financial privacy by obscuring the origins of your funds. All the Dash in your wallet is comprised of different "inputs" which you can think of as separate, discrete coins.<br> PrivateSend uses an innovative process to mix your inputs with the inputs of two other people, without having your coins ever leave your wallet. You retain control of your money at all times.<hr> <b>The PrivateSend process works like this:</b><ol type="1"> <li>PrivateSend begins by breaking your transaction inputs down into standard denominations. These denominations are 0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH and 10 DASH -- sort of like the paper money you use every day.</li> <li>Your wallet then sends requests to specially configured software nodes on the network, called "masternodes." These masternodes are informed then that you are interested in mixing a certain denomination. No identifiable information is sent to the masternodes, so they never know "who" you are.</li> <li>When two other people send similar messages, indicating that they wish to mix the same denomination, a mixing session begins. The masternode mixes up the inputs and instructs all three users' wallets to pay the now-transformed input back to themselves. Your wallet pays that denomination directly to itself, but in a different address (called a change address).</li> <li>In order to fully obscure your funds, your wallet must repeat this process a number of times with each denomination. Each time the process is completed, it's called a "round." Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> <li>This mixing process happens in the background without any intervention on your part. When you wish to make a transaction, your funds will already be anonymized. No additional waiting is required.</li> </ol> <hr><b>IMPORTANT:</b> Your wallet only contains 1000 of these "change addresses." Every time a mixing event happens, up to 9 of your addresses are used up. This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. It can only do this, however, if you have automatic backups enabled.<br> Consequently, users who have backups disabled will also have PrivateSend disabled. <hr>For more information, see the <a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">PrivateSend documentation</a>. + <h3>匿名發送基礎知識</h3> 匿名發送通過隱藏您的資金來源為您提供真正的財務隱私。您的錢包中所有的達世幣都由不同的“輸入”組成,您可以將其視為分開的離散硬幣。<br> 匿名發送使用創新的方法將您的輸入與其他兩個人的輸入相結合,而過程中不會讓您的達世幣離開您的錢包。每時每刻,您仍然控制著您的錢。<hr> <b>匿名發送的運作原理如下:</b><ol type="1"> <li>匿名發送首先將您的交易分柝成多個標準面額的交易。這些標準面額分別為0.001 DASH, 0.01 DASH, 0.1 DASH, 1 DASH 和10 DASH --有點像您每天使用的紙幣。</li> <li>您的錢包然後發送請求到網絡上有專門配置的軟件節點,稱為“主節點”。這些主節點會收到您希望混合一些資金的通知。沒有可識別的信息發送到主節點,所以他們永遠不會知道你是"誰"。</li> <li>當另外兩個人發送類似的消息時,表示希望混合相同的面額的話,混合會話就會開始。相關的主節點會混合這些輸入,並指示所有三個用戶的錢包將已經轉換了輸入的交易支付給自己。你的錢包直接支付給自己,但是付給不同的位址 (稱之為找零位址)。</li> <li>為了完全掩蓋您的資金來源,您的錢包必須以每個面額來重複此過程數次。每次這個過程完成後,都稱之為一個 "循環"。每個循環的匿名發送都會令確定您的資金來源的工作倍加困難。</li> <li>這種混合過程發生在後台,而不需要您進行任何操作。當您想進行交易時,您的資金將已被匿名處理。不需再花額外的時間等待。</li> </ol> <hr><b>重要:</b>您的錢包只能擁有1000個"找零位址。" 每次混合事件發生時,最多會使用9個找零位址。這意味著這1000個位址可以容許100次的混合事件。當其的中900個已經被使用後,您的錢包必須創建更多的位址。如果您啟用了自動備份,則只能夠這樣做。<br>因此,禁用備份的用戶也將禁用匿名發送。<hr>如欲了解更多信息請參閱<a href="https://docs.dash.org/en/latest/wallets/dashcore/privatesend-instantsend.html">匿名發送文檔</a>。 @@ -1108,10 +1108,78 @@ Node Count: 節點數: + + <html><head/><body><p>Note: This list represents the legacy and non-deterministic masternode list. It is only active as long as DIP3 has not been fully activated. After SPORK15 activation, this list will be empty.</p></body></html> + <html><head/><body><p>注意: 此列表顯示遺留和非確定性的主節點列表。 這只有DIP3尚未完全激活時才會被激活。 在SPORK15激活後,此列表將變為空白。</p></body></html> + + + DIP3 Masternodes + DIP3 主節點 + + + PoSe Score + PoSe 評分 + + + Registered + 經己註冊 + + + Last Paid + 最後一次付款 + + + Next Payment + 下一次付款 + + + Operator Reward + 運營者獎勵 + + + <html><head/><body><p>Note: This list is not active yet and only for informational purposes. The network is still running in compatibility mode, which means that the non-deterministic masternode list is still active. Only after SPORK15 activation, this list will become the active one. Also, the values in the payment related fields are not used at the moment, but still updated for every block. Please ignore this until SPORK15 activation.</p></body></html> + <html><head/><body><p>注意: 此列表尚未激活,其資料僅供參考。網絡仍在兼容模式下運行,這意味著非確定性的主節點列表仍處於活動狀態。 只有在SPORK15激活後,此列表才會成為活動列表。此外,此時不會使用付款字段中相關的值,但仍會針對每個區塊進行更新。 在SPORK15激活之前請忽略這一點。</p></body></html> + Start alias 啟動別名 + + Copy ProTx Hash + 複製 ProTx 哈希 + + + Copy Collateral Outpoint + 複製抵押品出點 + + + ENABLED + 已啟用 + + + POSE_BANNED + POSE_BANNED + + + UNKNOWN + 未知 + + + to %1 + 到 %1 + + + to UNKNOWN + 到未知 + + + but not claimed + 但無被認領 + + + NONE + 沒有 + Confirm masternode start 確認啟動主節點 @@ -1176,6 +1244,10 @@ Sentinel 哨兵 + + Additional information for DIP3 Masternode %1 + 關於DIP3主節點%1 的附加信息 + ModalOverlay @@ -1381,6 +1453,14 @@ Enable coin &control features 開啟錢幣控制功能(&C) + + Show system popups for PrivateSend mixing transactions<br/>just like for all other transaction types. + 顯示匿名發送混合交易的系統彈出窗口 <br/>就像所有其他交易類型一樣。 + + + Show popups for PrivateSend transactions + 顯示匿名發送交易的彈出式窗口 + &Spend unconfirmed change 可以花還沒確認的零錢(&S) @@ -1796,10 +1876,6 @@ https://www.transifex.com/projects/p/dash/ 最近收到的匿名發送訊息: - - N/A - 不適用 - PrivateSend was successfully reset. 匿名發送成功重置。 @@ -3539,6 +3615,10 @@ https://www.transifex.com/projects/p/dash/ Whether or not a watch-only address is involved in this transaction. 決定是否有一個僅限查看的位址參與這次的交易 + + Whether or not this transaction was locked by InstantSend. + 這交易是否被即時到帳鎖定。 + User-defined intent/purpose of the transaction. 用戶定義的意圖/交易的目的。 @@ -3554,6 +3634,14 @@ https://www.transifex.com/projects/p/dash/ All 全部 + + Locked by InstantSend + 被即時到帳鎖定 + + + Not locked by InstantSend + 沒有被即時到帳鎖定 + Today 今天 @@ -3977,6 +4065,14 @@ https://www.transifex.com/projects/p/dash/ Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup 清掉錢包裡的所有交易資料,並且在下次啟動時,使用 -rescan 來從區塊鏈中復原回來。 + + Enable publish raw transactions of attempted InstantSend double spend in <address> + 在<address>中啟用嘗試發布雙重花費的即時到帳交易的原始交易 + + + Enable publish transaction hashes of attempted InstantSend double spend in <address> + 在<address>中啟用嘗試發布雙重花費的即時到帳交易的哈希值 + Error loading %s: You can't enable HD on a already existing non-HD wallet 加載%s時出錯: 您不能夠在非HD 錢包上啟用HD功能 @@ -4021,6 +4117,14 @@ https://www.transifex.com/projects/p/dash/ Output debugging information (default: %u, supplying <category> is optional) 輸出除錯資訊(預設值: %u, 不一定要指定 <category>) + + Overrides minimum spork signers to change spork value. Only useful for regtest and devnet. Using this on mainnet or testnet will ban you. + 覆蓋最小叉勺簽名來改變叉勺值。只對regtest和devnet有用。在mainnet或testnet上使用它的話將封鎖你。 + + + Use N separate masternodes in parallel to mix funds (%u-%u, default: %u) + 使用 N 個單獨的主節點來進行並聯混合資金 (%u-%u, 預設值: %u) + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) 使用另外的 SOCK5 代理伺服器,來透過 Tor 隱藏服務跟節點聯繫(預設值: %s) @@ -4041,6 +4145,10 @@ https://www.transifex.com/projects/p/dash/ You need to rebuild the database using -reindex-chainstate to change -txindex 改變 -txindex 參數後,必須要用 -reindex-chainstate 參數來重建資料庫 + + You should specify a masternodeblsprivkey in the configuration. Please see documentation for help. + 您應該在配置文件中指定一個主節點私鑰。請參閱文檔以獲得幫助。 + (default: %s) (預設值: %s) @@ -4153,6 +4261,14 @@ https://www.transifex.com/projects/p/dash/ Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) 設定 -paytxfee=<金額> 的金額無效: '%s' (至少要有 %s) + + Invalid masternodeblsprivkey. Please see documenation. + 無效的主節點私鑰。請參閱文檔。 + + + Invalid minimum number of spork signers specified with -minsporkkeys + 使用-minsporkkeys 指定的最低叉勺簽名者數目無效 + Keypool ran out, please call keypoolrefill first Keypool 用完了,請先調用 keypoolrefill  @@ -4253,6 +4369,10 @@ https://www.transifex.com/projects/p/dash/ Set key pool size to <n> (default: %u) 設定密鑰池大小為 <n> (預設值: %u) + + Set the masternode BLS private key + 設置主節點 BLS 私鑰 + Set the number of threads to service RPC calls (default: %d) 設定處理 RPC 服務請求的執行緒數目(預設值: %d) @@ -4317,6 +4437,10 @@ https://www.transifex.com/projects/p/dash/ Too many %f denominations, removing. 太多 %f 輸入金額,正在移除。 + + Too many %f denominations, skipping. + 太多 %f 輸入金額,正在移除。 + Tor control port password (default: empty) Tor控制端口密碼 (預設值: 空白) @@ -4413,6 +4537,10 @@ https://www.transifex.com/projects/p/dash/ Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) 禁止所有達世幣的附加功能 (主節點,匿名發送,即時到帳,預算案) (0-1,預設值: %u) + + %s file contains all private keys from this wallet. Do not share it with anyone! + %s 文件包含此錢包中的所有私鑰。 不要與任何人分享! + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 或代理伺服器時為 1) @@ -4437,6 +4565,10 @@ https://www.transifex.com/projects/p/dash/ Execute command when a wallet InstantSend transaction is successfully locked (%s in cmd is replaced by TxID) 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + 為壓緊區塊重建而在內存中保留的額外交易 (預設值: %u) + Failed to create backup, file already exists! This could happen if you restarted wallet in less than 60 seconds. You can continue if you are ok with this. 無法創建備份,文件已經存在! 如果您在60秒內重新啟動錢包,則可能發生這種情況。 如果你覺得這樣沒問題的話,你可以繼續。 @@ -4517,6 +4649,10 @@ https://www.transifex.com/projects/p/dash/ Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. 網絡版本字符串的總長度 (%i) 超過最大長度 (%i)。減少uacomments參數的數量或大小。 + + Transaction index can't be disabled in full mode. Either start with -litemode command line switch or enable transaction index. + 無法在完整模式下禁用事務索引。 要麼使用-litemode命令行選項,不然就啟用事務索引。 + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) 嘗試保持指定目標下的出站流量 (以每24小時多少MB計算), 0 = 沒有限制 (預設值: %d) @@ -4597,6 +4733,14 @@ https://www.transifex.com/projects/p/dash/ Enable publish hash block in <address> 在<address>啟用發布哈希區塊 + + Enable publish hash of governance objects (like proposals) in <address> + 在 <address>中啟用發布治理對象的哈希值(例如 提案) + + + Enable publish hash of governance votes in <address> + 在 <address>啟用發布治理投票的哈希值 + Enable publish hash transaction (locked via InstantSend) in <address> 在 <address> 中啟用發布哈希交易 (通過InstantSend來鎖定) @@ -4617,10 +4761,6 @@ https://www.transifex.com/projects/p/dash/ Enable publish raw transaction in <address> 在 <address> 中啟用發布原始交易 - - Enable transaction replacement in the memory pool (default: %u) - 在內存池中啟用交易替換功能 (預設值: %u) - Error: A fatal internal error occurred, see debug.log for details 錯誤:發生一個致命的內部錯誤,請到debug.log查看更多細節 @@ -4865,6 +5005,10 @@ https://www.transifex.com/projects/p/dash/ Wallet debugging/testing options: 錢包除錯與測試選項: + + Wallet is not initialized + 錢包尚未初始化 + Wallet needed to be rewritten: restart %s to complete 錢包需要重寫: 請重新啓動 %s 來完成 @@ -4881,6 +5025,10 @@ https://www.transifex.com/projects/p/dash/ Whether to operate in a blocks only mode (default: %u) 是否在區塊模式下操作 (預設值: %u) + + You can not start a masternode in lite mode. + 您無法在精簡模式下啟動主節點。 + ZeroMQ notification options: ZeroMQ 通知選項: diff --git a/src/qt/masternodelist.cpp b/src/qt/masternodelist.cpp index 6691d18d752f..5b1db353518e 100644 --- a/src/qt/masternodelist.cpp +++ b/src/qt/masternodelist.cpp @@ -167,17 +167,17 @@ void MasternodeList::updateDIP3List() QString operatorRewardStr; if (dmn->nOperatorReward) { - operatorRewardStr += QString::number(dmn->nOperatorReward / 100.0, 'f', 2) + "%"; + operatorRewardStr += QString::number(dmn->nOperatorReward / 100.0, 'f', 2) + "% "; if (dmn->pdmnState->scriptOperatorPayout != CScript()) { CTxDestination operatorDest; if (ExtractDestination(dmn->pdmnState->scriptOperatorPayout, operatorDest)) { - operatorRewardStr += tr(" to %1").arg(QString::fromStdString(CBitcoinAddress(operatorDest).ToString())); + operatorRewardStr += tr("to %1").arg(QString::fromStdString(CBitcoinAddress(operatorDest).ToString())); } else { - operatorRewardStr += tr(" to UNKNOWN"); + operatorRewardStr += tr("to UNKNOWN"); } } else { - operatorRewardStr += tr(" but not claimed"); + operatorRewardStr += tr("but not claimed"); } } else { operatorRewardStr = tr("NONE"); diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index c807f233b639..b94599028425 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -161,8 +161,8 @@ your funds will already be anonymized. No additional waiting is required. \ This means those 1000 addresses last for about 100 mixing events. When 900 of them are used, your wallet must create more addresses. \ It can only do this, however, if you have automatic backups enabled.
\ Consequently, users who have backups disabled will also have PrivateSend disabled.
\ -For more information, see the PrivateSend documentation. \ - ")); +For more information, see the PrivateSend documentation." + )); ui->aboutMessage->setWordWrap(true); ui->helpMessage->setVisible(false); ui->aboutLogo->setVisible(false);