mirror of https://github.com/aria2/aria2
Beautify
parent
9f27580f14
commit
588ef22bc0
|
@ -1482,7 +1482,7 @@ Algumas opções usam ``K`` e ``M`` para convenientemente representar
|
||||||
transparente (maiúsculas e minúsculas), portanto podem ser usados
|
transparente (maiúsculas e minúsculas), portanto podem ser usados
|
||||||
`k`` ou ``K`` e ``m`` ou ``M``.
|
`k`` ou ``K`` e ``m`` ou ``M``.
|
||||||
|
|
||||||
URI, MAGNET, TORRENT_FILE, METALINK_FILE, CONTROL_FILE
|
URI, MAGNET, TORRENT_FILE, METALINK_FILE, ARIA2_CONTROL_FILE
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Podemos especificar múltiplas URIs em uma linha de comando. A menos que seja
|
Podemos especificar múltiplas URIs em uma linha de comando. A menos que seja
|
||||||
|
|
|
@ -1836,7 +1836,7 @@ URI, и это не то, что обычно вы ожидаете.
|
||||||
регистра. Другими словами, ``k`` и ``m`` могут быть использованы также как
|
регистра. Другими словами, ``k`` и ``m`` могут быть использованы также как
|
||||||
``K`` и ``M`` соответственно.
|
``K`` и ``M`` соответственно.
|
||||||
|
|
||||||
URI, MAGNET-ССЫЛКА, TORRENT-ФАЙЛ, METALINK-ФАЙЛ
|
URI, MAGNET-ССЫЛКА, TORRENT-ФАЙЛ, METALINK-ФАЙЛ, ARIA2_CONTROL_FILE
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Вы можете перечислить несколько URI в командной строке. Пока вы не указали
|
Вы можете перечислить несколько URI в командной строке. Пока вы не указали
|
||||||
|
|
|
@ -64,12 +64,12 @@
|
||||||
#include "download_handlers.h"
|
#include "download_handlers.h"
|
||||||
#include "SimpleRandomizer.h"
|
#include "SimpleRandomizer.h"
|
||||||
#ifdef ENABLE_BITTORRENT
|
#ifdef ENABLE_BITTORRENT
|
||||||
|
# include "bittorrent_helper.h"
|
||||||
# include "BtConstants.h"
|
# include "BtConstants.h"
|
||||||
# include "ValueBaseBencodeParser.h"
|
# include "ValueBaseBencodeParser.h"
|
||||||
#endif // ENABLE_BITTORRENT
|
#endif // ENABLE_BITTORRENT
|
||||||
#ifdef ENABLE_CONTROL_FILE
|
#ifdef ENABLE_CONTROL_FILE
|
||||||
# include "TorrentAttribute.h"
|
# include "TorrentAttribute.h"
|
||||||
# include "bittorrent_helper.h"
|
|
||||||
# include "DefaultBtProgressInfoFile.h"
|
# include "DefaultBtProgressInfoFile.h"
|
||||||
#endif // ENABLE_CONTROL_FILE
|
#endif // ENABLE_CONTROL_FILE
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ void showUsage(const std::string& keyword,
|
||||||
const std::shared_ptr<OptionParser>& oparser, const Console& out)
|
const std::shared_ptr<OptionParser>& oparser, const Console& out)
|
||||||
{
|
{
|
||||||
out->printf(_("Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE |"
|
out->printf(_("Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE |"
|
||||||
" METALINK_FILE | CONTROL_FILE]..."));
|
" METALINK_FILE | ARIA2_CONTROL_FILE]..."));
|
||||||
out->printf("\n");
|
out->printf("\n");
|
||||||
if (keyword.empty()) {
|
if (keyword.empty()) {
|
||||||
// Very short version of usage.
|
// Very short version of usage.
|
||||||
|
@ -139,7 +139,7 @@ void showUsage(const std::string& keyword,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (keyword == strHelpTag(TAG_BASIC)) {
|
if (keyword == strHelpTag(TAG_BASIC)) {
|
||||||
out->printf("URI, MAGNET, TORRENT_FILE, METALINK_FILE, CONTROL_FILE:\n");
|
out->printf("URI, MAGNET, TORRENT_FILE, METALINK_FILE, ARIA2_CONTROL_FILE:\n");
|
||||||
out->printf(
|
out->printf(
|
||||||
_(" You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z "
|
_(" You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z "
|
||||||
"option, all\n"
|
"option, all\n"
|
||||||
|
|
Loading…
Reference in New Issue