pull/2179/head
Idan Geraffi 2024-02-21 15:33:39 +02:00
parent 9f27580f14
commit 588ef22bc0
4 changed files with 5 additions and 5 deletions

View File

@ -1482,7 +1482,7 @@ Algumas opções usam ``K`` e ``M`` para convenientemente representar
transparente (maiúsculas e minúsculas), portanto podem ser usados
`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

View File

@ -1836,7 +1836,7 @@ URI, и это не то, что обычно вы ожидаете.
регистра. Другими словами, ``k`` и ``m`` могут быть использованы также как
``K`` и ``M`` соответственно.
URI, MAGNET-ССЫЛКА, TORRENT-ФАЙЛ, METALINK-ФАЙЛ
URI, MAGNET-ССЫЛКА, TORRENT-ФАЙЛ, METALINK-ФАЙЛ, ARIA2_CONTROL_FILE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Вы можете перечислить несколько URI в командной строке. Пока вы не указали

View File

@ -64,12 +64,12 @@
#include "download_handlers.h"
#include "SimpleRandomizer.h"
#ifdef ENABLE_BITTORRENT
# include "bittorrent_helper.h"
# include "BtConstants.h"
# include "ValueBaseBencodeParser.h"
#endif // ENABLE_BITTORRENT
#ifdef ENABLE_CONTROL_FILE
# include "TorrentAttribute.h"
# include "bittorrent_helper.h"
# include "DefaultBtProgressInfoFile.h"
#endif // ENABLE_CONTROL_FILE

View File

@ -85,7 +85,7 @@ void showUsage(const std::string& keyword,
const std::shared_ptr<OptionParser>& oparser, const Console& out)
{
out->printf(_("Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE |"
" METALINK_FILE | CONTROL_FILE]..."));
" METALINK_FILE | ARIA2_CONTROL_FILE]..."));
out->printf("\n");
if (keyword.empty()) {
// Very short version of usage.
@ -139,7 +139,7 @@ void showUsage(const std::string& keyword,
}
}
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(
_(" You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z "
"option, all\n"