mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #4862
3998a937
Enhance help text for print_ring. (Tadeas Moravec)3900fb77
Enhance help text for incoming_transfers. (Tadeas Moravec)
This commit is contained in:
commit
eba668c6ad
@ -1409,7 +1409,7 @@ bool simple_wallet::print_ring(const std::vector<std::string> &args)
|
||||
crypto::hash txid;
|
||||
if (args.size() != 1)
|
||||
{
|
||||
fail_msg_writer() << tr("usage: print_ring <key_image|txid>");
|
||||
fail_msg_writer() << tr("usage: print_ring <key_image> | <txid>");
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -2348,7 +2348,9 @@ simple_wallet::simple_wallet()
|
||||
m_cmd_binder.set_handler("incoming_transfers",
|
||||
boost::bind(&simple_wallet::show_incoming_transfers, this, _1),
|
||||
tr("incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]"),
|
||||
tr("Show the incoming transfers, all or filtered by availability and address index."));
|
||||
tr("Show the incoming transfers, all or filtered by availability and address index.\n\n"
|
||||
"Output format:\n"
|
||||
"Amount, Spent(\"T\"|\"F\"), \"locked\"|\"unlocked\", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image] "));
|
||||
m_cmd_binder.set_handler("payments",
|
||||
boost::bind(&simple_wallet::show_payments, this, _1),
|
||||
tr("payments <PID_1> [<PID_2> ... <PID_N>]"),
|
||||
@ -2656,7 +2658,9 @@ simple_wallet::simple_wallet()
|
||||
m_cmd_binder.set_handler("print_ring",
|
||||
boost::bind(&simple_wallet::print_ring, this, _1),
|
||||
tr("print_ring <key_image> | <txid>"),
|
||||
tr("Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)"));
|
||||
tr("Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)\n\n"
|
||||
"Output format:\n"
|
||||
"Key Image, \"absolute\", list of rings"));
|
||||
m_cmd_binder.set_handler("set_ring",
|
||||
boost::bind(&simple_wallet::set_ring, this, _1),
|
||||
tr("set_ring <filename> | ( <key_image> absolute|relative <index> [<index>...] )"),
|
||||
@ -4440,7 +4444,7 @@ bool simple_wallet::show_incoming_transfers(const std::vector<std::string>& args
|
||||
{
|
||||
if (args.size() > 3)
|
||||
{
|
||||
fail_msg_writer() << tr("usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]");
|
||||
fail_msg_writer() << tr("usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]");
|
||||
return true;
|
||||
}
|
||||
auto local_args = args;
|
||||
@ -4482,7 +4486,7 @@ bool simple_wallet::show_incoming_transfers(const std::vector<std::string>& args
|
||||
|
||||
if (local_args.size() > 0)
|
||||
{
|
||||
fail_msg_writer() << tr("usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]");
|
||||
fail_msg_writer() << tr("usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1196,7 +1196,7 @@ This transaction will unlock on block %llu, in approximately %s days (assuming 2
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="1356"/>
|
||||
<source>usage: print_ring <key_image|txid></source>
|
||||
<source>usage: print_ring <key_image> | <txid></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -1453,7 +1453,10 @@ This transaction will unlock on block %llu, in approximately %s days (assuming 2
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="2247"/>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.</source>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.
|
||||
|
||||
Output format:
|
||||
Amount, Spent("T"|"F"), "locked"|"unlocked", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -1976,7 +1979,10 @@ Pending or Failed: "failed"|"pending", "o
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="2534"/>
|
||||
<source>Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)</source>
|
||||
<source>Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)
|
||||
|
||||
Output format:
|
||||
Key Image, "absolute", list of rings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -2826,7 +2832,7 @@ your wallet again (your wallet keys are NOT at risk in any case).
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="4317"/>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="4359"/>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]</source>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1541,8 +1541,11 @@ Cette transaction sera déverrouillée au bloc %llu, dans approximativement %s j
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="2247"/>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.</source>
|
||||
<translation>Afficher les transferts entrants, tous ou filtrés par disponibilité et index d'adresse.</translation>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.
|
||||
|
||||
Output format:
|
||||
Amount, Spent("T"|"F"), "locked"|"unlocked", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image]</source>
|
||||
<translation type="unfinished">Afficher les transferts entrants, tous ou filtrés par disponibilité et index d'adresse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="2250"/>
|
||||
@ -2271,8 +2274,8 @@ votre portefeuille à nouveau (mais les clés de votre portefeuille ne risquent
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="4317"/>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="4359"/>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]</source>
|
||||
<translation>usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]</translation>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</source>
|
||||
<translation>usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="4378"/>
|
||||
@ -2984,8 +2987,11 @@ subaddress-lookahead <major>:<minor>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="2534"/>
|
||||
<source>Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)</source>
|
||||
<translation>Afficher le(s) cercle(s) utilisé(s) pour dépenser une image de clé ou une transaction (si la taille de cercle est > 1)</translation>
|
||||
<source>Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)
|
||||
|
||||
Output format:
|
||||
Key Image, "absolute", list of rings</source>
|
||||
<translation type="unfinished">Afficher le(s) cercle(s) utilisé(s) pour dépenser une image de clé ou une transaction (si la taille de cercle est > 1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="2537"/>
|
||||
|
@ -1364,8 +1364,11 @@ Questa transazione verrà sbloccata al blocco %llu, in approssimativamente %s gi
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="1586"/>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.</source>
|
||||
<translation>Mostra i trasferimenti in entrata, tutti o filtrati per disponibilità ed indice di indirizzo.</translation>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.
|
||||
|
||||
Output format:
|
||||
Amount, Spent("T"|"F"), "locked"|"unlocked", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image]</source>
|
||||
<translation type="unfinished">Mostra i trasferimenti in entrata, tutti o filtrati per disponibilità ed indice di indirizzo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="1589"/>
|
||||
@ -2191,7 +2194,7 @@ your wallet again (your wallet keys are NOT at risk in any case).
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3339"/>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3381"/>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]</source>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1461,7 +1461,10 @@ This transaction will unlock on block %llu, in approximately %s days (assuming 2
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="1586"/>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.</source>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.
|
||||
|
||||
Output format:
|
||||
Amount, Spent("T"|"F"), "locked"|"unlocked", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -2279,7 +2282,7 @@ your wallet again (your wallet keys are NOT at risk in any case).
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3339"/>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3381"/>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]</source>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1469,8 +1469,11 @@ Denna transaktion låses upp vid block %llu, om ungefär %s dagar (förutsatt en
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="1586"/>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.</source>
|
||||
<translation>Visa inkommande överföringar: alla eller filtrerade efter tillgänglighet och adressindex.</translation>
|
||||
<source>Show the incoming transfers, all or filtered by availability and address index.
|
||||
|
||||
Output format:
|
||||
Amount, Spent("T"|"F"), "locked"|"unlocked", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image]</source>
|
||||
<translation type="unfinished">Visa inkommande överföringar: alla eller filtrerade efter tillgänglighet och adressindex.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="1589"/>
|
||||
@ -2351,8 +2354,8 @@ din plånbok igen (din plånboks nycklar är dock INTE hotade i vilket fall som
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3339"/>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3381"/>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N>]</source>
|
||||
<translation>användning: incoming_transfers [available|unavailable] [verbose] [index=<N>]</translation>
|
||||
<source>usage: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</source>
|
||||
<translation>användning: incoming_transfers [available|unavailable] [verbose] [index=<N1>[,<N2>[,...]]]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/simplewallet/simplewallet.cpp" line="3400"/>
|
||||
|
Loading…
Reference in New Issue
Block a user