mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-09 13:54:16 +00:00
Merge branch 'openssl' of https://github.com/PurpleI2P/i2pd into openssl
This commit is contained in:
commit
6be4d508f3
@ -138,18 +138,18 @@ namespace http {
|
|||||||
int num;
|
int num;
|
||||||
|
|
||||||
if ((num = seconds / 86400) > 0) {
|
if ((num = seconds / 86400) > 0) {
|
||||||
s << num << " " << tr("days", num) << ", ";
|
s << num << " " << tr("day", "days", num) << ", ";
|
||||||
seconds -= num * 86400;
|
seconds -= num * 86400;
|
||||||
}
|
}
|
||||||
if ((num = seconds / 3600) > 0) {
|
if ((num = seconds / 3600) > 0) {
|
||||||
s << num << " " << tr("hours", num) << ", ";
|
s << num << " " << tr("hour", "hours", num) << ", ";
|
||||||
seconds -= num * 3600;
|
seconds -= num * 3600;
|
||||||
}
|
}
|
||||||
if ((num = seconds / 60) > 0) {
|
if ((num = seconds / 60) > 0) {
|
||||||
s << num << " " << tr("minutes", num) << ", ";
|
s << num << " " << tr("minute", "minutes", num) << ", ";
|
||||||
seconds -= num * 60;
|
seconds -= num * 60;
|
||||||
}
|
}
|
||||||
s << seconds << " " << tr("seconds", seconds);
|
s << seconds << " " << tr("second", "seconds", seconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ShowTraffic (std::stringstream& s, uint64_t bytes)
|
static void ShowTraffic (std::stringstream& s, uint64_t bytes)
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "I18N.h"
|
#include "I18N.h"
|
||||||
|
|
||||||
// English localization file
|
// English localization file
|
||||||
|
// This is an example translation file without strings in it.
|
||||||
|
|
||||||
namespace i2p
|
namespace i2p
|
||||||
{
|
{
|
||||||
@ -33,10 +34,6 @@ namespace english // language
|
|||||||
|
|
||||||
static std::map<std::string, std::vector<std::string>> plurals
|
static std::map<std::string, std::vector<std::string>> plurals
|
||||||
{
|
{
|
||||||
{"days", {"day", "days"}},
|
|
||||||
{"hours", {"hour", "hours"}},
|
|
||||||
{"minutes", {"minute", "minutes"}},
|
|
||||||
{"seconds", {"second", "seconds"}},
|
|
||||||
{"", {"", ""}},
|
{"", {"", ""}},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
724
i18n/English.po
Normal file
724
i18n/English.po
Normal file
@ -0,0 +1,724 @@
|
|||||||
|
# i2pd
|
||||||
|
# Copyright (C) 2021 PurpleI2P team
|
||||||
|
# This file is distributed under the same license as the i2pd package.
|
||||||
|
# R4SAS <r4sas@i2pmail.org>, 2021.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: i2pd\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://github.com/PurpleI2P/i2pd/issues\n"
|
||||||
|
"POT-Creation-Date: 2021-06-15 17:40\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 3.0\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-KeywordsList: ;tr\n"
|
||||||
|
"X-Poedit-SearchPath-0: daemon/HTTPServer.cpp\n"
|
||||||
|
"X-Poedit-SearchPath-1: libi2pd_client/HTTPProxy.cpp\n"
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:85
|
||||||
|
msgid "Disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:86
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:141
|
||||||
|
msgid "days"
|
||||||
|
msgid_plural "days"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
#: daemon/HTTPServer.cpp:145
|
||||||
|
msgid "hours"
|
||||||
|
msgid_plural "hours"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
#: daemon/HTTPServer.cpp:149
|
||||||
|
msgid "minutes"
|
||||||
|
msgid_plural "minutes"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:152
|
||||||
|
msgid "seconds"
|
||||||
|
msgid_plural "seconds"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:160 daemon/HTTPServer.cpp:188
|
||||||
|
msgid "KiB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:162
|
||||||
|
msgid "MiB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:164
|
||||||
|
msgid "GiB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:181
|
||||||
|
msgid "building"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:182
|
||||||
|
msgid "failed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:183
|
||||||
|
msgid "expiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:184
|
||||||
|
msgid "established"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:185
|
||||||
|
msgid "unknown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:187
|
||||||
|
msgid "exploratory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:223
|
||||||
|
msgid "<b>i2pd</b> webconsole"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:226
|
||||||
|
msgid "Main page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:227 daemon/HTTPServer.cpp:683
|
||||||
|
msgid "Router commands"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:228
|
||||||
|
msgid "Local destinations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:230 daemon/HTTPServer.cpp:382
|
||||||
|
#: daemon/HTTPServer.cpp:463 daemon/HTTPServer.cpp:469
|
||||||
|
#: daemon/HTTPServer.cpp:599 daemon/HTTPServer.cpp:642
|
||||||
|
#: daemon/HTTPServer.cpp:646
|
||||||
|
msgid "LeaseSets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:232 daemon/HTTPServer.cpp:652
|
||||||
|
msgid "Tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:233 daemon/HTTPServer.cpp:727
|
||||||
|
#: daemon/HTTPServer.cpp:743
|
||||||
|
msgid "Transit tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:234 daemon/HTTPServer.cpp:792
|
||||||
|
msgid "Transports"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:235
|
||||||
|
msgid "I2P tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:237 daemon/HTTPServer.cpp:854
|
||||||
|
#: daemon/HTTPServer.cpp:864
|
||||||
|
msgid "SAM sessions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:253 daemon/HTTPServer.cpp:1254
|
||||||
|
#: daemon/HTTPServer.cpp:1257 daemon/HTTPServer.cpp:1260
|
||||||
|
#: daemon/HTTPServer.cpp:1274 daemon/HTTPServer.cpp:1319
|
||||||
|
#: daemon/HTTPServer.cpp:1322 daemon/HTTPServer.cpp:1325
|
||||||
|
msgid "ERROR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:260
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:261
|
||||||
|
msgid "Testing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:262
|
||||||
|
msgid "Firewalled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:263 daemon/HTTPServer.cpp:284
|
||||||
|
#: daemon/HTTPServer.cpp:370
|
||||||
|
msgid "Unknown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:264 daemon/HTTPServer.cpp:394
|
||||||
|
#: daemon/HTTPServer.cpp:395 daemon/HTTPServer.cpp:922
|
||||||
|
#: daemon/HTTPServer.cpp:931
|
||||||
|
msgid "Proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:265
|
||||||
|
msgid "Mesh"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:268
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:272
|
||||||
|
msgid "Clock skew"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:275
|
||||||
|
msgid "Offline"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:278
|
||||||
|
msgid "Symmetric NAT"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:290
|
||||||
|
msgid "Uptime"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:293
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:298
|
||||||
|
msgid "Network status v6"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:304 daemon/HTTPServer.cpp:311
|
||||||
|
msgid "Stopping in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:318
|
||||||
|
msgid "Family"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:319
|
||||||
|
msgid "Tunnel creation success rate"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:320
|
||||||
|
msgid "Received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:322 daemon/HTTPServer.cpp:325
|
||||||
|
#: daemon/HTTPServer.cpp:328
|
||||||
|
msgid "KiB/s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:323
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:326
|
||||||
|
msgid "Transit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:329
|
||||||
|
msgid "Data path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:332
|
||||||
|
msgid "Hidden content. Press on text to see."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:335
|
||||||
|
msgid "Router Ident"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:337
|
||||||
|
msgid "Router Family"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:338
|
||||||
|
msgid "Router Caps"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:339
|
||||||
|
msgid "Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:340
|
||||||
|
msgid "Our external address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:348
|
||||||
|
msgid "supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:380
|
||||||
|
msgid "Routers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:381
|
||||||
|
msgid "Floodfills"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:388 daemon/HTTPServer.cpp:908
|
||||||
|
msgid "Client Tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:389
|
||||||
|
msgid "Transit Tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:393
|
||||||
|
msgid "Services"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:407 daemon/HTTPServer.cpp:419
|
||||||
|
msgid "Local Destinations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:442
|
||||||
|
msgid "Encrypted B33 address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:451
|
||||||
|
msgid "Address registration line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:456
|
||||||
|
msgid "Domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:457
|
||||||
|
msgid "Generate"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:458
|
||||||
|
msgid ""
|
||||||
|
"<b>Note:</b> result string can be used only for registering 2LD domains "
|
||||||
|
"(example.i2p). For registering subdomains please use i2pd-tools."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:464
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:464
|
||||||
|
msgid "Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:464
|
||||||
|
msgid "EncType"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:474 daemon/HTTPServer.cpp:657
|
||||||
|
msgid "Inbound tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:479 daemon/HTTPServer.cpp:489
|
||||||
|
#: daemon/HTTPServer.cpp:662 daemon/HTTPServer.cpp:672
|
||||||
|
#: Means milliseconds
|
||||||
|
msgid "ms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:484 daemon/HTTPServer.cpp:667
|
||||||
|
msgid "Outbound tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:496
|
||||||
|
msgid "Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:496
|
||||||
|
msgid "Incoming"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:503 daemon/HTTPServer.cpp:506
|
||||||
|
msgid "Outgoing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:504 daemon/HTTPServer.cpp:520
|
||||||
|
msgid "Destination"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:504
|
||||||
|
msgid "Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:511
|
||||||
|
msgid "Incoming Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:519 daemon/HTTPServer.cpp:522
|
||||||
|
msgid "Tags sessions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:520
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:529 daemon/HTTPServer.cpp:584
|
||||||
|
msgid "Local Destination"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:538 daemon/HTTPServer.cpp:887
|
||||||
|
msgid "Streams"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:560
|
||||||
|
msgid "Close stream"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:589
|
||||||
|
msgid "I2CP session not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:592
|
||||||
|
msgid "I2CP is not enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:618
|
||||||
|
msgid "Invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:621
|
||||||
|
msgid "Store type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:622
|
||||||
|
msgid "Expires"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:627
|
||||||
|
msgid "Non Expired Leases"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:630
|
||||||
|
msgid "Gateway"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:631
|
||||||
|
msgid "TunnelID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:632
|
||||||
|
msgid "EndDate"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:642
|
||||||
|
msgid "not floodfill"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:653
|
||||||
|
msgid "Queue size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:684
|
||||||
|
msgid "Run peer test"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:687
|
||||||
|
msgid "Decline transit tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:689
|
||||||
|
msgid "Accept transit tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:692 daemon/HTTPServer.cpp:697
|
||||||
|
msgid "Cancel graceful shutdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:694 daemon/HTTPServer.cpp:699
|
||||||
|
msgid "Start graceful shutdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:701
|
||||||
|
msgid "Force shutdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:704
|
||||||
|
msgid ""
|
||||||
|
"<b>Note:</b> any action done here are not persistent and not changes your "
|
||||||
|
"config files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:706
|
||||||
|
msgid "Logging level"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:714
|
||||||
|
msgid "Transit tunnels limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:719
|
||||||
|
msgid "Change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:743
|
||||||
|
msgid "no transit tunnels currently built"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:848 daemon/HTTPServer.cpp:871
|
||||||
|
msgid "SAM disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:864
|
||||||
|
msgid "no sessions currently running"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:877
|
||||||
|
msgid "SAM session not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:882
|
||||||
|
msgid "SAM Session"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:939
|
||||||
|
msgid "Server Tunnels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:955
|
||||||
|
msgid "Client Forwards"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:969
|
||||||
|
msgid "Server Forwards"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1175
|
||||||
|
msgid "Unknown page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1194
|
||||||
|
msgid "Invalid token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1252 daemon/HTTPServer.cpp:1309
|
||||||
|
#: daemon/HTTPServer.cpp:1337
|
||||||
|
msgid "SUCCESS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1252
|
||||||
|
msgid "Stream closed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1254
|
||||||
|
msgid "Stream not found or already was closed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1257
|
||||||
|
msgid "Destination not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1260
|
||||||
|
msgid "StreamID can't be null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1262 daemon/HTTPServer.cpp:1327
|
||||||
|
msgid "Return to destination page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1263 daemon/HTTPServer.cpp:1276
|
||||||
|
msgid "You will be redirected back in 5 seconds"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1274
|
||||||
|
msgid "Transit tunnels count must not exceed 65535"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1275 daemon/HTTPServer.cpp:1338
|
||||||
|
msgid "Back to commands list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1311
|
||||||
|
msgid "Register at reg.i2p"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1312
|
||||||
|
msgid "Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1312
|
||||||
|
msgid "A bit information about service on domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1313
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1319
|
||||||
|
msgid "Domain can't end with .b32.i2p"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1322
|
||||||
|
msgid "Domain must end with .i2p"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1325
|
||||||
|
msgid "Such destination is not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1333
|
||||||
|
msgid "Unknown command"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1337
|
||||||
|
msgid "Command accepted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: daemon/HTTPServer.cpp:1339
|
||||||
|
msgid "You will be redirected in 5 seconds"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:157
|
||||||
|
msgid "Proxy error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:165
|
||||||
|
msgid "Proxy info"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:173
|
||||||
|
msgid "Proxy error: Host not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:174
|
||||||
|
msgid "Remote host not found in router's addressbook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:175
|
||||||
|
msgid "You may try to find this host on jump services below"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:273 libi2pd_client/HTTPProxy.cpp:288
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:365
|
||||||
|
msgid "Invalid request"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:273
|
||||||
|
msgid "Proxy unable to parse your request"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:288
|
||||||
|
msgid "addresshelper is not supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:297 libi2pd_client/HTTPProxy.cpp:306
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:385
|
||||||
|
msgid "Host"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:297
|
||||||
|
msgid "added to router's addressbook from helper"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:298 libi2pd_client/HTTPProxy.cpp:307
|
||||||
|
msgid "Click"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:298 libi2pd_client/HTTPProxy.cpp:308
|
||||||
|
msgid "here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:298
|
||||||
|
msgid "to proceed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:299 libi2pd_client/HTTPProxy.cpp:309
|
||||||
|
msgid "Addresshelper found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:306
|
||||||
|
msgid "already in router's addressbook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:308
|
||||||
|
msgid "to update record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:322
|
||||||
|
msgid "Invalid Request"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:322
|
||||||
|
msgid "invalid request uri"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:365
|
||||||
|
msgid "Can't detect destination host from request"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:382 libi2pd_client/HTTPProxy.cpp:386
|
||||||
|
msgid "Outproxy failure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:382
|
||||||
|
msgid "bad outproxy settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:385
|
||||||
|
msgid "not inside I2P network, but outproxy is not enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:474
|
||||||
|
msgid "unknown outproxy url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:480
|
||||||
|
msgid "cannot resolve upstream proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:488
|
||||||
|
msgid "hostname too long"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:515
|
||||||
|
msgid "cannot connect to upstream socks proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:521
|
||||||
|
msgid "Cannot negotiate with socks proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:563
|
||||||
|
msgid "CONNECT error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:563
|
||||||
|
msgid "Failed to Connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:574 libi2pd_client/HTTPProxy.cpp:600
|
||||||
|
msgid "socks proxy error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:582
|
||||||
|
msgid "failed to send request to upstream"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:603
|
||||||
|
msgid "No Reply From socks proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:610
|
||||||
|
msgid "cannot connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:610
|
||||||
|
msgid "http out proxy not implemented"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:611
|
||||||
|
msgid "cannot connect to upstream http proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:644
|
||||||
|
msgid "Host is down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libi2pd_client/HTTPProxy.cpp:644
|
||||||
|
msgid ""
|
||||||
|
"Can't create connection to requested host, it may be down. Please try again "
|
||||||
|
"later."
|
||||||
|
msgstr ""
|
@ -32,9 +32,9 @@ namespace i18n
|
|||||||
return i2p::context.GetLanguage ()->GetString (arg);
|
return i2p::context.GetLanguage ()->GetString (arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::string translate (const std::string& arg, const int& n)
|
inline std::string translate (const std::string& arg, const std::string& arg2, const int& n)
|
||||||
{
|
{
|
||||||
return i2p::context.GetLanguage ()->GetPlural (arg, n);
|
return i2p::context.GetLanguage ()->GetPlural (arg, arg2, n);
|
||||||
}
|
}
|
||||||
} // i18n
|
} // i18n
|
||||||
} // i2p
|
} // i2p
|
||||||
|
@ -35,12 +35,12 @@ namespace i18n
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string GetPlural (const std::string& arg, const int& n) const
|
std::string GetPlural (const std::string& arg, const std::string& arg2, const int& n) const
|
||||||
{
|
{
|
||||||
const auto it = m_Plurals.find(arg);
|
const auto it = m_Plurals.find(arg2);
|
||||||
if (it == m_Plurals.end())
|
if (it == m_Plurals.end()) // not found, fallback to english
|
||||||
{
|
{
|
||||||
return arg;
|
return n == 1 ? arg : arg2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -61,7 +61,7 @@ namespace turkmen // language
|
|||||||
{"failed to send request to upstream", "öý eýesi proksi üçin haýyş iberip bilmedi"},
|
{"failed to send request to upstream", "öý eýesi proksi üçin haýyş iberip bilmedi"},
|
||||||
{"No Reply From socks proxy", "Jorap proksi serwerinden hiç hili jogap ýok"},
|
{"No Reply From socks proxy", "Jorap proksi serwerinden hiç hili jogap ýok"},
|
||||||
{"cannot connect", "birikdirip bilmedi"},
|
{"cannot connect", "birikdirip bilmedi"},
|
||||||
{"http out proxy not implemented", "daşarky http proksi serwerini goldamak amala aşyrylmaýar"},
|
{"http out proxy not implemented", "daşarky HTTP proksi serwerini goldamak amala aşyrylmaýar"},
|
||||||
{"cannot connect to upstream http proxy", "ýokary akym HTTP proksi serwerine birigip bilmedi"},
|
{"cannot connect to upstream http proxy", "ýokary akym HTTP proksi serwerine birigip bilmedi"},
|
||||||
{"Host is down", "Salgy elýeterli däl"},
|
{"Host is down", "Salgy elýeterli däl"},
|
||||||
{"Can't create connection to requested host, it may be down. Please try again later.",
|
{"Can't create connection to requested host, it may be down. Please try again later.",
|
||||||
@ -89,7 +89,7 @@ namespace turkmen // language
|
|||||||
{"Local destinations", "Ýerli ýerler"},
|
{"Local destinations", "Ýerli ýerler"},
|
||||||
{"LeaseSets", "Lizset"},
|
{"LeaseSets", "Lizset"},
|
||||||
{"Tunnels", "Tuneller"},
|
{"Tunnels", "Tuneller"},
|
||||||
{"Transit tunnels", "Tranzit Tunels"},
|
{"Transit tunnels", "Tranzit tunels"},
|
||||||
{"Transports", "Daşamak"},
|
{"Transports", "Daşamak"},
|
||||||
{"I2P tunnels", "I2P tuneller"},
|
{"I2P tunnels", "I2P tuneller"},
|
||||||
{"SAM sessions", "SAM Sessiýasy"},
|
{"SAM sessions", "SAM Sessiýasy"},
|
||||||
@ -108,7 +108,7 @@ namespace turkmen // language
|
|||||||
{"Uptime", "Onlaýn onlaýn sözlügi"},
|
{"Uptime", "Onlaýn onlaýn sözlügi"},
|
||||||
{"Network status", "Tor ýagdaýy"},
|
{"Network status", "Tor ýagdaýy"},
|
||||||
{"Network status v6", "Tor ýagdaýy v6"},
|
{"Network status v6", "Tor ýagdaýy v6"},
|
||||||
{"Stopping in", "soň duruň"},
|
{"Stopping in", "Soň duruň"},
|
||||||
{"Family", "Maşgala"},
|
{"Family", "Maşgala"},
|
||||||
{"Tunnel creation success rate", "Gurlan teneller üstünlikli gurlan teneller"},
|
{"Tunnel creation success rate", "Gurlan teneller üstünlikli gurlan teneller"},
|
||||||
{"Received", "Alnan"},
|
{"Received", "Alnan"},
|
||||||
@ -122,10 +122,9 @@ namespace turkmen // language
|
|||||||
{"Router Caps", "Baýdaklar marşruteri"},
|
{"Router Caps", "Baýdaklar marşruteri"},
|
||||||
{"Version", "Wersiýasy"},
|
{"Version", "Wersiýasy"},
|
||||||
{"Our external address", "Daşarky salgymyz"},
|
{"Our external address", "Daşarky salgymyz"},
|
||||||
{"supported", "Goldanýar"},
|
{"supported", "goldanýar"},
|
||||||
{"Routers", "Marşrutizatorlar"},
|
{"Routers", "Marşrutizatorlar"},
|
||||||
{"Floodfills", "Fludfillar"},
|
{"Floodfills", "Fludfillar"},
|
||||||
{"LeaseSets", "Lizsetllar"},
|
|
||||||
{"Client Tunnels", "Müşderi tunelleri"},
|
{"Client Tunnels", "Müşderi tunelleri"},
|
||||||
{"Transit Tunnels", "Tranzit Tunelleri"},
|
{"Transit Tunnels", "Tranzit Tunelleri"},
|
||||||
{"Services", "Hyzmatlar"},
|
{"Services", "Hyzmatlar"},
|
||||||
@ -150,7 +149,7 @@ namespace turkmen // language
|
|||||||
{"Destination", "Maksat"},
|
{"Destination", "Maksat"},
|
||||||
{"Amount", "Sany"},
|
{"Amount", "Sany"},
|
||||||
{"Incoming Tags", "Gelýän bellikler"},
|
{"Incoming Tags", "Gelýän bellikler"},
|
||||||
{"Tags sessions", "Sapaklar Tag."},
|
{"Tags sessions", "Sapaklar bellikler"},
|
||||||
{"Status", "Ýagdaýy"},
|
{"Status", "Ýagdaýy"},
|
||||||
// ShowLocalDestination
|
// ShowLocalDestination
|
||||||
{"Local Destination", "Ýerli maksat"},
|
{"Local Destination", "Ýerli maksat"},
|
||||||
@ -178,7 +177,7 @@ namespace turkmen // language
|
|||||||
{"Start graceful shutdown", "Tekiz durmak"},
|
{"Start graceful shutdown", "Tekiz durmak"},
|
||||||
{"Force shutdown", "Mejbury duralga"},
|
{"Force shutdown", "Mejbury duralga"},
|
||||||
{"<b>Note:</b> any action done here are not persistent and not changes your config files.",
|
{"<b>Note:</b> any action done here are not persistent and not changes your config files.",
|
||||||
"<b>Bellik:</b> Bu ýerde öndürilen islendik çäre hemişelik däl we konfigurasiýa faýllaryňyzy üýtgetmeýär.."},
|
"<b>Bellik:</b> Bu ýerde öndürilen islendik çäre hemişelik däl we konfigurasiýa faýllaryňyzy üýtgetmeýär."},
|
||||||
{"Logging level", "Giriş derejesi"},
|
{"Logging level", "Giriş derejesi"},
|
||||||
{"Transit tunnels limit", "Tranzit tunelleriniň çägi"},
|
{"Transit tunnels limit", "Tranzit tunelleriniň çägi"},
|
||||||
{"Change", "Üýtgetmek"},
|
{"Change", "Üýtgetmek"},
|
||||||
@ -217,7 +216,7 @@ namespace turkmen // language
|
|||||||
{"Description", "Beýany"},
|
{"Description", "Beýany"},
|
||||||
{"A bit information about service on domain", "Domendäki hyzmat barada käbir maglumatlar"},
|
{"A bit information about service on domain", "Domendäki hyzmat barada käbir maglumatlar"},
|
||||||
{"Submit", "Iber"},
|
{"Submit", "Iber"},
|
||||||
{"Domain can't end with .b32.i2p", "Domain .b32.i2p bilen gutaryp bilmez."},
|
{"Domain can't end with .b32.i2p", "Domain .b32.i2p bilen gutaryp bilmez"},
|
||||||
{"Domain must end with .i2p", "Domeni .i2p bilen gutarmaly"},
|
{"Domain must end with .i2p", "Domeni .i2p bilen gutarmaly"},
|
||||||
{"Such destination is not found", "Bu barmaly ýer tapylmady"},
|
{"Such destination is not found", "Bu barmaly ýer tapylmady"},
|
||||||
{"", ""},
|
{"", ""},
|
||||||
|
@ -86,17 +86,17 @@ namespace ukrainian // language
|
|||||||
// ShowPageHead
|
// ShowPageHead
|
||||||
{"Main page", "Головна"},
|
{"Main page", "Головна"},
|
||||||
{"Router commands", "Команди роутера"},
|
{"Router commands", "Команди роутера"},
|
||||||
{"Local destinations", "Локальні признач."},
|
{"Local destinations", "Локальні призначення"},
|
||||||
{"LeaseSets", "Лізсети"},
|
{"LeaseSets", "Лізсети"},
|
||||||
{"Tunnels", "Тунелі"},
|
{"Tunnels", "Тунелі"},
|
||||||
{"Transit tunnels", "Транзит. тунелі"},
|
{"Transit tunnels", "Транзитні тунелі"},
|
||||||
{"Transports", "Транспорти"},
|
{"Transports", "Транспорти"},
|
||||||
{"I2P tunnels", "I2P тунелі"},
|
{"I2P tunnels", "I2P тунелі"},
|
||||||
{"SAM sessions", "SAM сесії"},
|
{"SAM sessions", "SAM сесії"},
|
||||||
// Network Status
|
// Network Status
|
||||||
{"OK", "OK"},
|
{"OK", "OK"},
|
||||||
{"Testing", "Тестування"},
|
{"Testing", "Тестування"},
|
||||||
{"Firewalled", "Файрвол"},
|
{"Firewalled", "Заблоковано ззовні"},
|
||||||
{"Unknown", "Невідомо"},
|
{"Unknown", "Невідомо"},
|
||||||
{"Proxy", "Проксі"},
|
{"Proxy", "Проксі"},
|
||||||
{"Mesh", "MESH-мережа"},
|
{"Mesh", "MESH-мережа"},
|
||||||
@ -125,7 +125,6 @@ namespace ukrainian // language
|
|||||||
{"supported", "підтримується"},
|
{"supported", "підтримується"},
|
||||||
{"Routers", "Роутери"},
|
{"Routers", "Роутери"},
|
||||||
{"Floodfills", "Флудфіли"},
|
{"Floodfills", "Флудфіли"},
|
||||||
{"LeaseSets", "Лізсети"},
|
|
||||||
{"Client Tunnels", "Клієнтські Тунелі"},
|
{"Client Tunnels", "Клієнтські Тунелі"},
|
||||||
{"Transit Tunnels", "Транзитні Тунелі"},
|
{"Transit Tunnels", "Транзитні Тунелі"},
|
||||||
{"Services", "Сервіси"},
|
{"Services", "Сервіси"},
|
||||||
@ -153,7 +152,7 @@ namespace ukrainian // language
|
|||||||
{"Tags sessions", "Сесії тегів"},
|
{"Tags sessions", "Сесії тегів"},
|
||||||
{"Status", "Статус"},
|
{"Status", "Статус"},
|
||||||
// ShowLocalDestination
|
// ShowLocalDestination
|
||||||
{"Local Destination", "Локальне Призначення"},
|
{"Local Destination", "Локальні Призначення"},
|
||||||
{"Streams", "Потоки"},
|
{"Streams", "Потоки"},
|
||||||
{"Close stream", "Закрити потік"},
|
{"Close stream", "Закрити потік"},
|
||||||
// ShowI2CPLocalDestination
|
// ShowI2CPLocalDestination
|
||||||
@ -197,7 +196,7 @@ namespace ukrainian // language
|
|||||||
{"Unknown page", "Невідома сторінка"},
|
{"Unknown page", "Невідома сторінка"},
|
||||||
// HandleCommand, ShowError
|
// HandleCommand, ShowError
|
||||||
{"Invalid token", "Невірний токен"},
|
{"Invalid token", "Невірний токен"},
|
||||||
{"SUCCESS", "ВДАЛО"},
|
{"SUCCESS", "УСПІШНО"},
|
||||||
{"ERROR", "ПОМИЛКА"},
|
{"ERROR", "ПОМИЛКА"},
|
||||||
{"Unknown command", "Невідома команда"},
|
{"Unknown command", "Невідома команда"},
|
||||||
{"Command accepted", "Команда прийнята"},
|
{"Command accepted", "Команда прийнята"},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user