mirror of https://github.com/PurpleI2P/i2pd.git
R4SAS
2 years ago
17 changed files with 744 additions and 398 deletions
@ -1,29 +1,29 @@ |
|||||||
`xgettext` command for extracting translation |
`xgettext` command for extracting translation |
||||||
--- |
--- |
||||||
|
|
||||||
``` |
``` |
||||||
xgettext --omit-header -ctr: -ktr -ktr:1,2 daemon/HTTPServer.cpp libi2pd_client/HTTPProxy.cpp |
xgettext --omit-header -ctr: -ktr -ktr:1,2 daemon/HTTPServer.cpp libi2pd_client/HTTPProxy.cpp |
||||||
``` |
``` |
||||||
|
|
||||||
Regex for transforming gettext translations to our format: |
Regex for transforming gettext translations to our format: |
||||||
--- |
--- |
||||||
|
|
||||||
``` |
``` |
||||||
in: msgid\ \"(.*)\"\nmsgid_plural\ \"(.*)\"\nmsgstr\[0\]\ \"(.*)\"\n(msgstr\[1\]\ \"(.*)\"\n)?(msgstr\[2\]\ \"(.*)\"\n)?(msgstr\[3\]\ \"(.*)\"\n)?(msgstr\[4\]\ \"(.*)\"\n)?(msgstr\[5\]\ \"(.*)\"\n)? |
in: msgid\ \"(.*)\"\nmsgid_plural\ \"(.*)\"\nmsgstr\[0\]\ \"(.*)\"\n(msgstr\[1\]\ \"(.*)\"\n)?(msgstr\[2\]\ \"(.*)\"\n)?(msgstr\[3\]\ \"(.*)\"\n)?(msgstr\[4\]\ \"(.*)\"\n)?(msgstr\[5\]\ \"(.*)\"\n)? |
||||||
out: #{"$2", {"$3", "$5", "$7", "$9", "$11"}},\n |
out: #{"$2", {"$3", "$5", "$7", "$9", "$11"}},\n |
||||||
``` |
``` |
||||||
|
|
||||||
``` |
``` |
||||||
in: msgid\ \"(.*)\"\nmsgstr\ \"(.*)\"\n |
in: msgid\ \"(.*)\"\nmsgstr\ \"(.*)\"\n |
||||||
out: {"$1", "$2"},\n |
out: {"$1", "$2"},\n |
||||||
``` |
``` |
||||||
|
|
||||||
``` |
``` |
||||||
in: ^#[:.](.*)$\n |
in: ^#[:.,](.*)$\n |
||||||
out: <to empty line> |
out: <to empty line> |
||||||
``` |
``` |
||||||
|
|
||||||
``` |
``` |
||||||
in: \n\n |
in: \n\n |
||||||
out: \n |
out: \n |
||||||
``` |
``` |
||||||
|
@ -0,0 +1,59 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2023, The PurpleI2P Project |
||||||
|
* |
||||||
|
* This file is part of Purple i2pd project and licensed under BSD3 |
||||||
|
* |
||||||
|
* See full license text in LICENSE file at top of project tree |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <map> |
||||||
|
#include <vector> |
||||||
|
#include <string> |
||||||
|
#include <memory> |
||||||
|
#include "I18N.h" |
||||||
|
|
||||||
|
// Polish localization file
|
||||||
|
|
||||||
|
namespace i2p |
||||||
|
{ |
||||||
|
namespace i18n |
||||||
|
{ |
||||||
|
namespace polish // language namespace
|
||||||
|
{ |
||||||
|
// language name in lowercase
|
||||||
|
static std::string language = "polish"; |
||||||
|
|
||||||
|
// See for language plural forms here:
|
||||||
|
// https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
|
||||||
|
static int plural (int n) { |
||||||
|
return (n == 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2); |
||||||
|
} |
||||||
|
|
||||||
|
static std::map<std::string, std::string> strings |
||||||
|
{ |
||||||
|
{"building", "Kompilowanie"}, |
||||||
|
{"failed", "nieudane"}, |
||||||
|
{"expiring", "wygasający"}, |
||||||
|
{"established", "ustanowiony"}, |
||||||
|
{"Main page", "Strona główna"}, |
||||||
|
{"Router commands", "Komendy routera"}, |
||||||
|
{"Tunnels", "Tunele"}, |
||||||
|
{"OK", "Ok"}, |
||||||
|
{"Uptime", "Czas pracy"}, |
||||||
|
{"Sent", "Wysłane"}, |
||||||
|
{"", ""}, |
||||||
|
}; |
||||||
|
|
||||||
|
static std::map<std::string, std::vector<std::string>> plurals |
||||||
|
{ |
||||||
|
{"", {"", "", ""}}, |
||||||
|
}; |
||||||
|
|
||||||
|
std::shared_ptr<const i2p::i18n::Locale> GetLocale() |
||||||
|
{ |
||||||
|
return std::make_shared<i2p::i18n::Locale>(language, strings, plurals, [] (int n)->int { return plural(n); }); |
||||||
|
} |
||||||
|
|
||||||
|
} // language
|
||||||
|
} // i18n
|
||||||
|
} // i2p
|
@ -0,0 +1,219 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2023, The PurpleI2P Project |
||||||
|
* |
||||||
|
* This file is part of Purple i2pd project and licensed under BSD3 |
||||||
|
* |
||||||
|
* See full license text in LICENSE file at top of project tree |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <map> |
||||||
|
#include <vector> |
||||||
|
#include <string> |
||||||
|
#include <memory> |
||||||
|
#include "I18N.h" |
||||||
|
|
||||||
|
// Portuguese localization file
|
||||||
|
|
||||||
|
namespace i2p |
||||||
|
{ |
||||||
|
namespace i18n |
||||||
|
{ |
||||||
|
namespace portuguese // language namespace
|
||||||
|
{ |
||||||
|
// language name in lowercase
|
||||||
|
static std::string language = "portuguese"; |
||||||
|
|
||||||
|
// See for language plural forms here:
|
||||||
|
// https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
|
||||||
|
static int plural (int n) { |
||||||
|
return n != 1 ? 1 : 0; |
||||||
|
} |
||||||
|
|
||||||
|
static std::map<std::string, std::string> strings |
||||||
|
{ |
||||||
|
{"%.2f KiB", "%.2f KiB"}, |
||||||
|
{"%.2f MiB", "%.2f MiB"}, |
||||||
|
{"%.2f GiB", "%.2f GiB"}, |
||||||
|
{"building", "construindo"}, |
||||||
|
{"failed", "falhou"}, |
||||||
|
{"expiring", "expirando"}, |
||||||
|
{"established", "estabelecido"}, |
||||||
|
{"unknown", "desconhecido"}, |
||||||
|
{"exploratory", "exploratório"}, |
||||||
|
{"Purple I2P Webconsole", "Webconsole Purple I2P"}, |
||||||
|
{"<b>i2pd</b> webconsole", "webconsole <b>i2pd</b>"}, |
||||||
|
{"Main page", "Página Principal"}, |
||||||
|
{"Router commands", "Comandos do Roteador"}, |
||||||
|
{"Local Destinations", "Destinos Locais"}, |
||||||
|
{"LeaseSets", "LeaseSets"}, |
||||||
|
{"Tunnels", "Túneis"}, |
||||||
|
{"Transit Tunnels", "Túneis de Trânsito"}, |
||||||
|
{"Transports", "Transportes"}, |
||||||
|
{"I2P tunnels", "Túneis I2P"}, |
||||||
|
{"SAM sessions", "Sessões do SAM"}, |
||||||
|
{"ERROR", "ERRO"}, |
||||||
|
{"OK", "OK"}, |
||||||
|
{"Testing", "Testando"}, |
||||||
|
{"Firewalled", "Sob Firewall"}, |
||||||
|
{"Unknown", "Desconhecido"}, |
||||||
|
{"Proxy", "Proxy"}, |
||||||
|
{"Mesh", "Malha"}, |
||||||
|
{"Clock skew", "Defasagem do Relógio"}, |
||||||
|
{"Offline", "Desligado"}, |
||||||
|
{"Symmetric NAT", "NAT Simétrico"}, |
||||||
|
{"Full cone NAT", "Full cone NAT"}, |
||||||
|
{"No Descriptors", "Sem Descritores"}, |
||||||
|
{"Uptime", "Tempo Ativo"}, |
||||||
|
{"Network status", "Estado da rede"}, |
||||||
|
{"Network status v6", "Estado da rede v6"}, |
||||||
|
{"Stopping in", "Parando em"}, |
||||||
|
{"Family", "Família"}, |
||||||
|
{"Tunnel creation success rate", "Taxa de sucesso na criação de túneis"}, |
||||||
|
{"Received", "Recebido"}, |
||||||
|
{"%.2f KiB/s", "%.2f KiB/s"}, |
||||||
|
{"Sent", "Enviado"}, |
||||||
|
{"Transit", "Trânsito"}, |
||||||
|
{"Data path", "Caminho dos dados"}, |
||||||
|
{"Hidden content. Press on text to see.", "Conteúdo oculto. Clique no texto para revelar."}, |
||||||
|
{"Router Ident", "Identidade do Roteador"}, |
||||||
|
{"Router Family", "Família do Roteador"}, |
||||||
|
{"Router Caps", "Limites do Roteador"}, |
||||||
|
{"Version", "Versão"}, |
||||||
|
{"Our external address", "Nosso endereço externo"}, |
||||||
|
{"supported", "suportado"}, |
||||||
|
{"Routers", "Roteadores"}, |
||||||
|
{"Floodfills", "Modo Inundação"}, |
||||||
|
{"Client Tunnels", "Túneis de Clientes"}, |
||||||
|
{"Services", "Serviços"}, |
||||||
|
{"Enabled", "Ativado"}, |
||||||
|
{"Disabled", "Desativado"}, |
||||||
|
{"Encrypted B33 address", "Endereço B33 criptografado"}, |
||||||
|
{"Address registration line", "Linha de cadastro de endereço"}, |
||||||
|
{"Domain", "Domínio"}, |
||||||
|
{"Generate", "Gerar"}, |
||||||
|
{"<b>Note:</b> result string can be used only for registering 2LD domains (example.i2p). For registering subdomains please use i2pd-tools.", "<b> Nota: </b>A string resultante só pode ser usada para registrar domínios 2LD (exemplo.i2p). Para registrar subdomínios por favor utilize o i2pd-tools."}, |
||||||
|
{"Address", "Endereço"}, |
||||||
|
{"Type", "Tipo"}, |
||||||
|
{"EncType", "Tipo de Criptografia"}, |
||||||
|
{"Inbound tunnels", "Túneis de Entrada"}, |
||||||
|
{"%dms", "%dms"}, |
||||||
|
{"Outbound tunnels", "Túneis de Saída"}, |
||||||
|
{"Tags", "Etiquetas"}, |
||||||
|
{"Incoming", "Entradas"}, |
||||||
|
{"Outgoing", "Saídas"}, |
||||||
|
{"Destination", "Destinos"}, |
||||||
|
{"Amount", "Quantidade"}, |
||||||
|
{"Incoming Tags", "Etiquetas de Entrada"}, |
||||||
|
{"Tags sessions", "Sessões de etiquetas"}, |
||||||
|
{"Status", "Estado"}, |
||||||
|
{"Local Destination", "Destinos Locais"}, |
||||||
|
{"Streams", "Fluxos"}, |
||||||
|
{"Close stream", "Fechar fluxo"}, |
||||||
|
{"I2CP session not found", "Sessão do I2CP não encontrada"}, |
||||||
|
{"I2CP is not enabled", "I2CP não está ativado"}, |
||||||
|
{"Invalid", "Inválido"}, |
||||||
|
{"Store type", "Tipo de armazenamento"}, |
||||||
|
{"Expires", "Expira em"}, |
||||||
|
{"Non Expired Leases", "Sessões não expiradas"}, |
||||||
|
{"Gateway", "Gateway"}, |
||||||
|
{"TunnelID", "TunnelID"}, |
||||||
|
{"EndDate", "Data final"}, |
||||||
|
{"floodfill mode is disabled", "Mode de inundação está desativado"}, |
||||||
|
{"Queue size", "Tamanho da fila"}, |
||||||
|
{"Run peer test", "Executar teste de peers"}, |
||||||
|
{"Reload tunnels configuration", "Recarregar a configuração dos túneis"}, |
||||||
|
{"Decline transit tunnels", "Negar túnel de trânsito"}, |
||||||
|
{"Accept transit tunnels", "Aceitar túnel de trânsito"}, |
||||||
|
{"Cancel graceful shutdown", "Cancelar desligamento gracioso"}, |
||||||
|
{"Start graceful shutdown", "Iniciar desligamento gracioso"}, |
||||||
|
{"Force shutdown", "Forçar desligamento"}, |
||||||
|
{"Reload external CSS styles", "Recarregar estilos CSS externos"}, |
||||||
|
{"<b>Note:</b> any action done here are not persistent and not changes your config files.", "<b> Nota: </b> Qualquer ação feita aqui não será permanente e não altera os seus arquivos de configuração."}, |
||||||
|
{"Logging level", "Nível de registro"}, |
||||||
|
{"Transit tunnels limit", "Limite nos túneis de trânsito"}, |
||||||
|
{"Change", "Mudar"}, |
||||||
|
{"Change language", "Trocar idioma"}, |
||||||
|
{"no transit tunnels currently built", "Nenhum túnel de trânsito construido no momento"}, |
||||||
|
{"SAM disabled", "SAM desativado"}, |
||||||
|
{"no sessions currently running", "Nenhuma sessão funcionando no momento"}, |
||||||
|
{"SAM session not found", "Nenhuma sessão do SAM encontrada"}, |
||||||
|
{"SAM Session", "Sessão do SAM"}, |
||||||
|
{"Server Tunnels", "Túneis de Servidor"}, |
||||||
|
{"Client Forwards", "Túneis de Cliente"}, |
||||||
|
{"Server Forwards", "Encaminhamentos de Servidor"}, |
||||||
|
{"Unknown page", "Página desconhecida"}, |
||||||
|
{"Invalid token", "Token Inválido"}, |
||||||
|
{"SUCCESS", "SUCESSO"}, |
||||||
|
{"Stream closed", "Fluxo fechado"}, |
||||||
|
{"Stream not found or already was closed", "Fluxo não encontrado ou já encerrado"}, |
||||||
|
{"Destination not found", "Destino não encontrado"}, |
||||||
|
{"StreamID can't be null", "StreamID não pode ser nulo"}, |
||||||
|
{"Return to destination page", "Retornar para à página de destino"}, |
||||||
|
{"You will be redirected in %d seconds", "Você será redirecionado em %d segundos"}, |
||||||
|
{"Transit tunnels count must not exceed %d", "A contagem de túneis de trânsito não deve exceder %d"}, |
||||||
|
{"Back to commands list", "Voltar para a lista de comandos"}, |
||||||
|
{"Register at reg.i2p", "Registrar na reg.i2p"}, |
||||||
|
{"Description", "Descrição"}, |
||||||
|
{"A bit information about service on domain", "Algumas informações sobre o serviço no domínio"}, |
||||||
|
{"Submit", "Enviar"}, |
||||||
|
{"Domain can't end with .b32.i2p", "O domínio não pode terminar com .b32.i2p"}, |
||||||
|
{"Domain must end with .i2p", "O domínio não pode terminar com .i2p"}, |
||||||
|
{"Such destination is not found", "Tal destino não foi encontrado"}, |
||||||
|
{"Unknown command", "Comando desconhecido"}, |
||||||
|
{"Command accepted", "Comando aceito"}, |
||||||
|
{"Proxy error", "Erro no proxy"}, |
||||||
|
{"Proxy info", "Informações do proxy"}, |
||||||
|
{"Proxy error: Host not found", "Erro no proxy: Host não encontrado"}, |
||||||
|
{"Remote host not found in router's addressbook", "O host remoto não foi encontrado no livro de endereços do roteador"}, |
||||||
|
{"You may try to find this host on jump services below", "Você pode tentar encontrar este host nos jump services abaixo"}, |
||||||
|
{"Invalid request", "Requisição inválida"}, |
||||||
|
{"Proxy unable to parse your request", "O proxy foi incapaz de processar a sua requisição"}, |
||||||
|
{"Addresshelper is not supported", "O Auxiliar de Endereços não é suportado"}, |
||||||
|
{"Host %s is <font color=red>already in router's addressbook</font>. <b>Be careful: source of this URL may be harmful!</b> Click here to update record: <a href=\"%s%s%s&update=true\">Continue</a>.", "O host %s já <font color=red>está no catálogo de endereços do roteador</font>. <b>Cuidado: a fonte desta URL pode ser perigosa!</b> Clique aqui para atualizar o registro: <a href=\"%s%s%s&update=true\">Continuar</a>."}, |
||||||
|
{"Addresshelper forced update rejected", "A atualização forçada do Auxiliar de Endereços foi rejeitada"}, |
||||||
|
{"To add host <b>%s</b> in router's addressbook, click here: <a href=\"%s%s%s\">Continue</a>.", "Para adicionar o host <b> %s </b> ao catálogo de endereços do roteador, clique aqui: <a href='%s%s%s'>Continuar </a>."}, |
||||||
|
{"Addresshelper request", "Requisição do Auxiliar de Endereços"}, |
||||||
|
{"Host %s added to router's addressbook from helper. Click here to proceed: <a href=\"%s\">Continue</a>.", "O host %s foi adicionado ao catálogo de endereços do roteador por um auxiliar. Clique aqui para proceder: <a href='%s'> Continuar </a>."}, |
||||||
|
{"Addresshelper adding", "Auxiliar de Endereço adicionando"}, |
||||||
|
{"Host %s is <font color=red>already in router's addressbook</font>. Click here to update record: <a href=\"%s%s%s&update=true\">Continue</a>.", "O host %s já <font color=red>está no catálogo de endereços do roteador </font>. Clique aqui para atualizar o registro: <a href=\"%s%s%s&update=true\">Continuar</a>."}, |
||||||
|
{"Addresshelper update", "Atualização do Auxiliar de Endereços"}, |
||||||
|
{"Invalid request URI", "A URI de requisição é inválida"}, |
||||||
|
{"Can't detect destination host from request", "Incapaz de detectar o host de destino da requisição"}, |
||||||
|
{"Outproxy failure", "Falha no outproxy"}, |
||||||
|
{"Bad outproxy settings", "Configurações ruins de outproxy"}, |
||||||
|
{"Host %s is not inside I2P network, but outproxy is not enabled", "O host %s não está dentro da rede I2P, mas o outproxy não está ativado"}, |
||||||
|
{"Unknown outproxy URL", "URL de outproxy desconhecida"}, |
||||||
|
{"Cannot resolve upstream proxy", "Não é possível resolver o proxy de entrada"}, |
||||||
|
{"Hostname is too long", "O hostname é muito longo"}, |
||||||
|
{"Cannot connect to upstream SOCKS proxy", "Não é possível se conectar ao proxy SOCKS de entrada"}, |
||||||
|
{"Cannot negotiate with SOCKS proxy", "Não é possível negociar com o proxy SOCKS"}, |
||||||
|
{"CONNECT error", "Erro de CONEXÃO"}, |
||||||
|
{"Failed to connect", "Falha ao conectar"}, |
||||||
|
{"SOCKS proxy error", "Erro no proxy SOCKS"}, |
||||||
|
{"Failed to send request to upstream", "Falha ao enviar requisição para o fluxo de entrada"}, |
||||||
|
{"No reply from SOCKS proxy", "Sem resposta do proxy SOCKS"}, |
||||||
|
{"Cannot connect", "Impossível conectar"}, |
||||||
|
{"HTTP out proxy not implemented", "proxy de saída HTTP não implementado"}, |
||||||
|
{"Cannot connect to upstream HTTP proxy", "Não é possível conectar ao proxy HTTP de entrada"}, |
||||||
|
{"Host is down", "Host está desligado"}, |
||||||
|
{"Can't create connection to requested host, it may be down. Please try again later.", "Não é possível se conectar ao host requisitado, talvez ele esteja for do ar. Por favor, tente novamente mais tarde."}, |
||||||
|
{"", ""}, |
||||||
|
}; |
||||||
|
|
||||||
|
static std::map<std::string, std::vector<std::string>> plurals |
||||||
|
{ |
||||||
|
{"%d days", {"%d Dia", "%d Dias"}}, |
||||||
|
{"%d hours", {"%d hora", "%d horas"}}, |
||||||
|
{"%d minutes", {"%d minuto", "%d minutos"}}, |
||||||
|
{"%d seconds", {"%d Segundo", "%d segundos"}}, |
||||||
|
{"", {"", ""}}, |
||||||
|
}; |
||||||
|
|
||||||
|
std::shared_ptr<const i2p::i18n::Locale> GetLocale() |
||||||
|
{ |
||||||
|
return std::make_shared<i2p::i18n::Locale>(language, strings, plurals, [] (int n)->int { return plural(n); }); |
||||||
|
} |
||||||
|
|
||||||
|
} // language
|
||||||
|
} // i18n
|
||||||
|
} // i2p
|
@ -0,0 +1,114 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2023, The PurpleI2P Project |
||||||
|
* |
||||||
|
* This file is part of Purple i2pd project and licensed under BSD3 |
||||||
|
* |
||||||
|
* See full license text in LICENSE file at top of project tree |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <map> |
||||||
|
#include <vector> |
||||||
|
#include <string> |
||||||
|
#include <memory> |
||||||
|
#include "I18N.h" |
||||||
|
|
||||||
|
// Turkish localization file
|
||||||
|
|
||||||
|
namespace i2p |
||||||
|
{ |
||||||
|
namespace i18n |
||||||
|
{ |
||||||
|
namespace turkish // language namespace
|
||||||
|
{ |
||||||
|
// language name in lowercase
|
||||||
|
static std::string language = "turkish"; |
||||||
|
|
||||||
|
// See for language plural forms here:
|
||||||
|
// https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
|
||||||
|
static int plural (int n) { |
||||||
|
return n != 1 ? 1 : 0; |
||||||
|
} |
||||||
|
|
||||||
|
static std::map<std::string, std::string> strings |
||||||
|
{ |
||||||
|
{"%.2f KiB", "%.2f KiB"}, |
||||||
|
{"%.2f MiB", "%.2f MiB"}, |
||||||
|
{"%.2f GiB", "%.2f GiB"}, |
||||||
|
{"building", "kuruluyor"}, |
||||||
|
{"failed", "başarısız"}, |
||||||
|
{"expiring", "süresi geçiyor"}, |
||||||
|
{"established", "kurulmuş"}, |
||||||
|
{"unknown", "bilinmeyen"}, |
||||||
|
{"Purple I2P Webconsole", "Mor I2P Webkonsolu"}, |
||||||
|
{"<b>i2pd</b> webconsole", "<b>i2pd</b> webkonsolu"}, |
||||||
|
{"Main page", "Ana sayfa"}, |
||||||
|
{"Router commands", "Router komutları"}, |
||||||
|
{"Local Destinations", "Yerel Hedefler"}, |
||||||
|
{"Tunnels", "Tüneller"}, |
||||||
|
{"Transit Tunnels", "Transit Tünelleri"}, |
||||||
|
{"Transports", "Taşıma"}, |
||||||
|
{"I2P tunnels", "I2P tünelleri"}, |
||||||
|
{"SAM sessions", "SAM oturumları"}, |
||||||
|
{"ERROR", "HATA"}, |
||||||
|
{"OK", "TAMAM"}, |
||||||
|
{"Testing", "Test ediliyor"}, |
||||||
|
{"Firewalled", "Güvenlik Duvarı Kısıtlaması"}, |
||||||
|
{"Unknown", "Bilinmeyen"}, |
||||||
|
{"Proxy", "Proxy"}, |
||||||
|
{"Clock skew", "Saat sorunu"}, |
||||||
|
{"Offline", "Çevrimdışı"}, |
||||||
|
{"Symmetric NAT", "Simetrik NAT"}, |
||||||
|
{"Full cone NAT", "Full cone NAT"}, |
||||||
|
{"No Descriptors", "Tanımlayıcı Yok"}, |
||||||
|
{"Uptime", "Bağlantı süresi"}, |
||||||
|
{"Network status", "Ağ durumu"}, |
||||||
|
{"Network status v6", "Ağ durumu v6"}, |
||||||
|
{"Family", "Aile"}, |
||||||
|
{"Tunnel creation success rate", "Tünel oluşturma başarı oranı"}, |
||||||
|
{"Received", "Alındı"}, |
||||||
|
{"%.2f KiB/s", "%.2f KiB/s"}, |
||||||
|
{"Sent", "Gönderildi"}, |
||||||
|
{"Transit", "Transit"}, |
||||||
|
{"Data path", "Veri yolu"}, |
||||||
|
{"Hidden content. Press on text to see.", "Gizlenmiş içerik. Görmek için yazıya tıklayınız."}, |
||||||
|
{"Router Family", "Router Familyası"}, |
||||||
|
{"Decline transit tunnels", "Transit tünellerini reddet"}, |
||||||
|
{"Accept transit tunnels", "Transit tünellerini kabul et"}, |
||||||
|
{"Cancel graceful shutdown", "Düzgün durdurmayı iptal Et"}, |
||||||
|
{"Start graceful shutdown", "Düzgün durdurmayı başlat"}, |
||||||
|
{"Force shutdown", "Durdurmaya zorla"}, |
||||||
|
{"Reload external CSS styles", "Harici CSS stilini yeniden yükle"}, |
||||||
|
{"<b>Note:</b> any action done here are not persistent and not changes your config files.", "<b>Not:</b> burada yapılan ayarların hiçbiri kalıcı değildir ve ayar dosyalarınızı değiştirmez."}, |
||||||
|
{"Logging level", "Kayıt tutma seviyesi"}, |
||||||
|
{"Transit tunnels limit", "Transit tünel limiti"}, |
||||||
|
{"Change", "Değiştir"}, |
||||||
|
{"Change language", "Dil değiştir"}, |
||||||
|
{"no transit tunnels currently built", "kurulmuş bir transit tüneli bulunmamakta"}, |
||||||
|
{"SAM disabled", "SAM devre dışı"}, |
||||||
|
{"no sessions currently running", "hiçbir oturum şu anda çalışmıyor"}, |
||||||
|
{"SAM session not found", "SAM oturumu bulunamadı"}, |
||||||
|
{"SAM Session", "SAM oturumu"}, |
||||||
|
{"Server Tunnels", "Sunucu Tünelleri"}, |
||||||
|
{"Unknown page", "Bilinmeyen sayfa"}, |
||||||
|
{"Invalid token", "Geçersiz token"}, |
||||||
|
{"SUCCESS", "BAŞARILI"}, |
||||||
|
{"", ""}, |
||||||
|
}; |
||||||
|
|
||||||
|
static std::map<std::string, std::vector<std::string>> plurals |
||||||
|
{ |
||||||
|
{"%d days", {"%d gün", "%d gün"}}, |
||||||
|
{"%d hours", {"%d saat", "%d saat"}}, |
||||||
|
{"%d minutes", {"%d dakika", "%d dakika"}}, |
||||||
|
{"%d seconds", {"%d saniye", "%d saniye"}}, |
||||||
|
{"", {"", ""}}, |
||||||
|
}; |
||||||
|
|
||||||
|
std::shared_ptr<const i2p::i18n::Locale> GetLocale() |
||||||
|
{ |
||||||
|
return std::make_shared<i2p::i18n::Locale>(language, strings, plurals, [] (int n)->int { return plural(n); }); |
||||||
|
} |
||||||
|
|
||||||
|
} // language
|
||||||
|
} // i18n
|
||||||
|
} // i2p
|
Loading…
Reference in new issue