1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 05:05:41 +02:00

relay: don't remove relay from config when the binding fails (closes #225), add options "stop" and "restart" in command /relay

This commit is contained in:
Sébastien Helleu
2014-11-02 11:16:39 +01:00
parent a2c7420262
commit e85ae88b25
21 changed files with 587 additions and 276 deletions
+2
View File
@@ -32,6 +32,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* irc: display own nick changes in server buffer (closes #188)
* irc: disable creation of temporary servers by default with command /connect,
new option irc.look.temporary_servers
* relay: add options "stop" and "restart" in command /relay
* relay: add option relay.network.ssl_priorities (closes #234)
* relay: add host in sender for IRC backlog PRIVMSG messages sent to clients
* trigger: evaluate and replace regex groups at same time, new format for regex
@@ -55,6 +56,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* irc: fix translation of CTCP PING reply (closes #137)
* lua: add detection of Lua 5.2
* python: fix Python detection with Homebrew (closes #217)
* relay: don't remove relay from config when the binding fails (closes #225)
* relay: use comma separator in option relay.irc.backlog_tags, check the value
of option when it is changed with /set
* relay: remove "::ffff:" from IPv4-mapped IPv6 client address (closes #111)
+34 -26
View File
@@ -3,44 +3,52 @@
----
/relay list|listfull|listrelay
add [ipv4.][ipv6.][ssl.]<protocol.name> <port>
del [ipv4.][ipv6.][ssl.]<protocol.name>
add <name> <port>
del|stop|restart <name>
raw
sslcertkey
list: Auflistung der Relay-Clients (nur aktive Relays)
listfull: detaillierte Auflistung der Relay-Clients (alle Relays)
listrelay: Auflistung der Relays (Name und Port)
add: fügt ein Relay, für ein Protokoll + Name, hinzu
del: entfernt Relay für ein Protokoll + Name
ipv4: erzwingt die Nutzung von IPv4
ipv6: erzwingt die Nutzung von IPv6
ssl: aktiviert SSL
protocol.name: Protokoll und Name des Relay:
- Protokoll "irc": Name des Servers welcher geteilt werden soll (optional). Wird kein Name angegeben, dann muss der Client den Servernamen mittels Befehl "PASS" anfordern. Format: "PASS Server:Passwort")
- Protokoll "weechat" (Name wird nicht unterstützt)
port: Port den das Relay nutzen soll
raw: öffnet Buffer mit RAW-Relay Daten
sslcertkey: setzt SSL Zertifikat/Schlüssel mittels Eintrag in Option relay.network.ssl_cert_key
list: list relay clients (only active relays)
listfull: list relay clients (verbose, all relays)
listrelay: list relays (name and port)
add: add a relay (listen on a port)
del: remove a relay (clients remain connected)
stop: close the server socket (clients remain connected)
restart: close the server socket and listen again on port (clients remain connected)
name: relay name (see format below)
port: port used for relay
raw: open buffer with raw Relay data
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
Ohne Angabe von Argumenten werden alle Relay-Clients in einem neuen Buffer dargestellt.
Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
ipv4: force use of IPv4
ipv6: force use of IPv6
ssl: enable SSL
protocol.name: protocol and name to relay:
- protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
- protocol "weechat" (name is not used)
Beispiele:
IRC Proxy für Server "freenode":
The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
The "weechat" protocol allows a remote interface to connect on the port, see the list here: http://weechat.org/download/
Without argument, this command opens buffer with list of relay clients.
Examples:
irc proxy, for server "freenode":
/relay add irc.freenode 8000
IRC Proxy, für Server "freenode", mit SSL:
irc proxy, for server "freenode", with SSL:
/relay add ssl.irc.freenode 8001
IRC Proxy für alle Server (Client wählt aus), mit SSL:
irc proxy, for all servers (client will choose), with SSL:
/relay add ssl.irc 8002
WeeChat Protokoll:
weechat protocol:
/relay add weechat 9000
WeeChat Protokoll, mit SSL:
weechat protocol with SSL:
/relay add ssl.weechat 9001
WeeChat Protokoll, mit SSL, nur IPv4 nutzen:
weechat protocol with SSL, using only IPv4:
/relay add ipv4.ssl.weechat 9001
WeeChat Protokoll, mit SSL, nur IPv6 nutzen:
weechat protocol with SSL, using only IPv6:
/relay add ipv6.ssl.weechat 9001
WeeChat Protokoll, mit SSL, mit IPv4 + IPv6:
weechat protocol with SSL, using IPv4 + IPv6:
/relay add ipv4.ipv6.ssl.weechat 9001
----
+15 -7
View File
@@ -3,25 +3,33 @@
----
/relay list|listfull|listrelay
add [ipv4.][ipv6.][ssl.]<protocol.name> <port>
del [ipv4.][ipv6.][ssl.]<protocol.name>
add <name> <port>
del|stop|restart <name>
raw
sslcertkey
list: list relay clients (only active relays)
listfull: list relay clients (verbose, all relays)
listrelay: list relays (name and port)
add: add relay for a protocol + name
del: remove relay for a protocol + name
add: add a relay (listen on a port)
del: remove a relay (clients remain connected)
stop: close the server socket (clients remain connected)
restart: close the server socket and listen again on port (clients remain connected)
name: relay name (see format below)
port: port used for relay
raw: open buffer with raw Relay data
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
ipv4: force use of IPv4
ipv6: force use of IPv6
ssl: enable SSL
protocol.name: protocol and name to relay:
- protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
- protocol "weechat" (name is not used)
port: port used for relay
raw: open buffer with raw Relay data
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
The "weechat" protocol allows a remote interface to connect on the port, see the list here: http://weechat.org/download/
Without argument, this command opens buffer with list of relay clients.
+18 -10
View File
@@ -3,25 +3,33 @@
----
/relay list|listfull|listrelay
add [ipv4.][ipv6.][ssl.]<protocole.nom> <port>
del [ipv4.][ipv6.][ssl.]<protocole.nom>
add <nom> <port>
del|stop|restart <nom>
raw
sslcertkey
list : lister les clients pour le relai
listfull : lister les clients pour le relai (verbeux)
listrelay : lister les relais (nom et port)
add : ajouter un relai pour un protocole + nom
del : supprimer un relai pour un protocole + nom
list : lister les clients pour le relai
listfull : lister les clients pour le relai (verbeux)
listrelay : lister les relais (nom et port)
add : ajouter un relai (écouter sur un port)
del : supprimer un relai (les clients restent connectés)
stop : fermer le socket serveur (les clients restent connectés)
restart : fermer le socket serveur et écouter à nouveau sur le port (les clients restent connectés)
nom : nom du relai (voir le format ci-dessous)
port : port utilisé pour le relai
raw : ouvrir le tampon avec les données brutes Relay
sslcertkey : définir le certificat/clé SSL en utilisant le chemin de l'option relay.network.ssl_cert_key
Le nom du relai est : [ipv4.][ipv6.][ssl.]<protocole.nom>
ipv4 : forcer l'utilisation d'IPv4
ipv6 : forcer l'utilisation d'IPv6
ssl : activer SSL
protocole.nom : protocole et nom à relayer :
- protocole "irc" : le nom est le serveur à partager (optionnel, si non donné, le nom de serveur doit être envoyé par le client dans la commande "PASS", avec le format : "PASS serveur:motdepasse")
- protocole "weechat" (le nom n'est pas utilisé)
port : port utilisé pour le relai
raw : ouvrir le tampon avec les données brutes Relay
sslcertkey : définir le certificat/clé SSL en utilisant le chemin de l'option relay.network.ssl_cert_key
Le protocole "irc" permet à n'importe quel client IRC (incluant WeeChat lui-même) de se connecter sur le port.
Le protocole "weechat" permet à une interface distante de se connecter sur le port, voir la liste ici : http://weechat.org/download/
Sans paramètre, cette commande ouvre le tampon avec la liste des clients pour le relai.
+35 -27
View File
@@ -3,44 +3,52 @@
----
/relay list|listfull|listrelay
add [ipv4.][ipv6.][ssl.]<protocollo.nome> <porta>
del [ipv4.][ipv6.][ssl.]<protocollo.nome>
add <name> <port>
del|stop|restart <name>
raw
sslcertkey
list: elenca i client relay (solo quelli attivi)
listfull: elenca i client relay (dettagliato, tutti i relay)
listrelay: elenca i relay (nome e porta)
add: aggiunge relay per un protocollo + nome
del: rimuove relay per un protocollo + nome
ipv4: forza l'uso del protocollo IPv4
ipv6: forza l'uso del protocollo IPv6
ssl: abilita SSL
protocollo.nome: protocollo e nome con cui effettuare il relay
- protocollo "irc": il nome è il server da condividere
(opzionale,
se non fornito, il nome del server deve essere inviato dal client nel comando "PASS", con il formato: "PASS server:password")
- protocollo "weechat" (il nome non viene usato)
porta: porta usata per il relay
raw: apre il buffer con dati raw Relay
sslcertkey: imposta chiave/certificato SSl usando un path nell'opzione relay.network.ssl_cert_key
list: list relay clients (only active relays)
listfull: list relay clients (verbose, all relays)
listrelay: list relays (name and port)
add: add a relay (listen on a port)
del: remove a relay (clients remain connected)
stop: close the server socket (clients remain connected)
restart: close the server socket and listen again on port (clients remain connected)
name: relay name (see format below)
port: port used for relay
raw: open buffer with raw Relay data
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
Senza argomento, il comando apre i buffer con l'elenco dei client relay.
Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
ipv4: force use of IPv4
ipv6: force use of IPv6
ssl: enable SSL
protocol.name: protocol and name to relay:
- protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
- protocol "weechat" (name is not used)
Esempi:
proxy irc, per il server "freenode":
The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
The "weechat" protocol allows a remote interface to connect on the port, see the list here: http://weechat.org/download/
Without argument, this command opens buffer with list of relay clients.
Examples:
irc proxy, for server "freenode":
/relay add irc.freenode 8000
irc proxy, per il server "freenode", con SSL:
irc proxy, for server "freenode", with SSL:
/relay add ssl.irc.freenode 8001
protocollo weechat:
irc proxy, for all servers (client will choose), with SSL:
/relay add ssl.irc 8002
weechat protocol:
/relay add weechat 9000
protocollo weechat con SSL:
weechat protocol with SSL:
/relay add ssl.weechat 9001
protocollo weechat con SSL, usando solo IPv4:
weechat protocol with SSL, using only IPv4:
/relay add ipv4.ssl.weechat 9001
protocollo weechat con SSL, usando solo IPv6:
weechat protocol with SSL, using only IPv6:
/relay add ipv6.ssl.weechat 9001
protocollo weechat con SSL, usando IPv4 + IPv6:
weechat protocol with SSL, using IPv4 + IPv6:
/relay add ipv4.ipv6.ssl.weechat 9001
----
+34 -26
View File
@@ -3,44 +3,52 @@
----
/relay list|listfull|listrelay
add [ipv4.][ipv6.][ssl.]<protocol.name> <port>
del [ipv4.][ipv6.][ssl.]<protocol.name>
add <name> <port>
del|stop|restart <name>
raw
sslcertkey
list: リレーするクライアントをリストアップ (アクティブなもののみ)
listfull: リレーするクライアントをリストアップ (詳細、全てのリレー)
listrelay: リレーをリストアップ (名前とポート番号)
add: プロトコル + 名前のリレーを追加
del: プロトコル + 名前のリレーを削除
ipv4: IPv4 を強制的に利用
ipv6: IPv6 を強制的に利用
ssl: SSL を有効化
protocol.name: リレーするプロトコルと名前:
- protocol "irc": name は共有するサーバ名 (任意指定、指定しない場合、サーバ名は "PASS" コマンドでクライアントが送信するものと同じでなければいけません、"PASS" コマンドのフォーマットは "PASS server:password")
- protocol "weechat" (name は使われません)
port: リレーに使うポート番号
raw: 生 Relay データバッファを開く
sslcertkey: オプション relay.network.ssl_cert_key のパスを使って SSL 証明書/鍵を設定
list: list relay clients (only active relays)
listfull: list relay clients (verbose, all relays)
listrelay: list relays (name and port)
add: add a relay (listen on a port)
del: remove a relay (clients remain connected)
stop: close the server socket (clients remain connected)
restart: close the server socket and listen again on port (clients remain connected)
name: relay name (see format below)
port: port used for relay
raw: open buffer with raw Relay data
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
引数無しの場合、リレークライアントのリストを含むバッファを開く
Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
ipv4: force use of IPv4
ipv6: force use of IPv6
ssl: enable SSL
protocol.name: protocol and name to relay:
- protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
- protocol "weechat" (name is not used)
例:
サーバ "freenode" に対する irc プロキシを設定:
The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
The "weechat" protocol allows a remote interface to connect on the port, see the list here: http://weechat.org/download/
Without argument, this command opens buffer with list of relay clients.
Examples:
irc proxy, for server "freenode":
/relay add irc.freenode 8000
サーバ "freenode" に対する SSL を有効化した irc プロキシを設定:
irc proxy, for server "freenode", with SSL:
/relay add ssl.irc.freenode 8001
SSL を有効化してすべてのサーバに対する irc プロキシを設定 (クライアントがサーバを選ぶ):
irc proxy, for all servers (client will choose), with SSL:
/relay add ssl.irc 8002
weechat プロトコル:
weechat protocol:
/relay add weechat 9000
SSL を有効化した weechat プロトコル:
weechat protocol with SSL:
/relay add ssl.weechat 9001
SSL を有効にした weechat プロトコル、IPv4 だけを利用:
weechat protocol with SSL, using only IPv4:
/relay add ipv4.ssl.weechat 9001
SSL を有効にした weechat プロトコル、IPv6 だけを利用:
weechat protocol with SSL, using only IPv6:
/relay add ipv6.ssl.weechat 9001
SSL を有効にした weechat プロトコル、IPv4 IPv6 を利用:
weechat protocol with SSL, using IPv4 + IPv6:
/relay add ipv4.ipv6.ssl.weechat 9001
----
+35 -27
View File
@@ -3,44 +3,52 @@
----
/relay list|listfull|listrelay
add [ipv4.][ipv6.][ssl.]<protokół.nazwa> <port>
del [ipv4.][ipv6.][ssl.]<protokół.nazwa>
add <name> <port>
del|stop|restart <name>
raw
kluczSSL
sslcertkey
list: wyświetla klienty relay (tylko aktywne)
listfull: wyświetla klienty relay (wszystkie)
listrelay: wyświetla relaye (nazwa i port)
add: dodaje relay dla protokołu + nazwa
del: usuwa relay dla protokołu + nazwa
ipv4: wymusza użycie IPv4
ipv6: wymusza użycie IPv6
ssl: włącza SSL
protokół.nazwa: protokół i nazwa dla relay:
- protokół "irc": nazwą jest dzielony serwer (opcjonalnie, jeśli nie zostanie podana, nazwa serwera musi zostać wysłanaprzez klienta w komendzie"PASS", w formacie: "PASS serwer:hasło")
- protokół "weechat" (nazwa nie jest używana)
port: port używany przez relay
raw: otwiera bufor z nieprzetworzonymi danymi Relay
kluczSSL: ustawia certyfikat SSL/hasło używając ścieżki w opcji relay.network.ssl_cert_key
list: list relay clients (only active relays)
listfull: list relay clients (verbose, all relays)
listrelay: list relays (name and port)
add: add a relay (listen on a port)
del: remove a relay (clients remain connected)
stop: close the server socket (clients remain connected)
restart: close the server socket and listen again on port (clients remain connected)
name: relay name (see format below)
port: port used for relay
raw: open buffer with raw Relay data
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
Bez argumentu komenda otwiera bufor z listą klientów relay.
Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
ipv4: force use of IPv4
ipv6: force use of IPv6
ssl: enable SSL
protocol.name: protocol and name to relay:
- protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
- protocol "weechat" (name is not used)
Przykłady:
pośrednik irc dla serwera "freenode":
The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
The "weechat" protocol allows a remote interface to connect on the port, see the list here: http://weechat.org/download/
Without argument, this command opens buffer with list of relay clients.
Examples:
irc proxy, for server "freenode":
/relay add irc.freenode 8000
pośrednik irc dla serwera "freenode", z SSL:
irc proxy, for server "freenode", with SSL:
/relay add ssl.irc.freenode 8001
pośrednik irc dla wszystkich serwerów (klient wybiera) z SSL:
irc proxy, for all servers (client will choose), with SSL:
/relay add ssl.irc 8002
protokół weechat:
weechat protocol:
/relay add weechat 9000
protokół weechat z SSL:
weechat protocol with SSL:
/relay add ssl.weechat 9001
protokół weechat z SSL, używający tylko IPv4:
weechat protocol with SSL, using only IPv4:
/relay add ipv4.ssl.weechat 9001
protokół weechat z SSL, używający tylko IPv6:
weechat protocol with SSL, using only IPv6:
/relay add ipv6.ssl.weechat 9001
protokół weechat z SSL, używający IPv4 + IPv6:
weechat protocol with SSL, using IPv4 + IPv6:
/relay add ipv4.ipv6.ssl.weechat 9001
----
+24 -9
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:58+0100\n"
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -9126,6 +9126,10 @@ msgstr "Klienti pro přenos:"
msgid "Listening on ports:"
msgstr "Poslouchám na portech:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " port %s%d%s, přesměrování: %s%s.%s%s, spuštěno v: %s"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " port %s%d%s, přesměrování: %s%s.%s%s, spuštěno v: %s"
@@ -9150,8 +9154,8 @@ msgstr "ovládání přesměrování"
#, fuzzy
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add <protocol.name> <port> || del <protocol.name> "
"|| raw"
@@ -9161,8 +9165,18 @@ msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -9171,10 +9185,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+26 -9
View File
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 21:20+0100\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
@@ -10227,6 +10227,10 @@ msgstr "keine Verbindung zum Client für Relay"
msgid "Listening on ports:"
msgstr "Lausche an Ports:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " Port %s%d%s, Relay: %s%s%s, %s, gestartet am: %s"
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " Port %s%d%s, Relay: %s%s%s, %s, gestartet am: %s"
@@ -10249,19 +10253,31 @@ msgstr "%s%s: Relay \"%s\" nicht gefunden"
msgid "relay control"
msgstr "Relay-Kontrolle"
#, fuzzy
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
#, fuzzy
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -10270,10 +10286,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+24 -9
View File
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:58+0100\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -9408,6 +9408,10 @@ msgstr "Ningún cliente conectado para retransmitir"
msgid "Listening on ports:"
msgstr "Escuchando en los puertos:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " puerto %s%d%s, repetidor: %s%s%s, %s, iniciado en: %s"
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " puerto %s%d%s, repetidor: %s%s%s, %s, iniciado en: %s"
@@ -9432,8 +9436,8 @@ msgstr "control de retransmisión"
#, fuzzy
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add <protocolo.nombre> <puerto> || del <protocolo."
"nombre> || raw || sslcertkey"
@@ -9443,8 +9447,18 @@ msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -9453,10 +9467,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+47 -21
View File
File diff suppressed because it is too large Load Diff
+24 -9
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:58+0100\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -8514,6 +8514,10 @@ msgstr "Nincs szerver.\n"
msgid "Listening on ports:"
msgstr "Aliaszok listája:\n"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr "%s%s%s távol: %s\n"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr "%s%s%s távol: %s\n"
@@ -8538,16 +8542,26 @@ msgid "relay control"
msgstr ""
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -8556,10 +8570,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+26 -9
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:58+0100\n"
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -9565,6 +9565,10 @@ msgstr "Nessun client connesso per il relay"
msgid "Listening on ports:"
msgstr "In ascolto sulle porte:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " porta %s%d%s, relay: %s%s%s, %s, avviato il: %s"
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " porta %s%d%s, relay: %s%s%s, %s, avviato il: %s"
@@ -9587,19 +9591,31 @@ msgstr "%s%s: relay \"%s\" non trovato"
msgid "relay control"
msgstr "controllo relay"
#, fuzzy
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocollo.nome> <porta> "
"|| del [ipv4.][ipv6.][ssl.]<protocollo.nome> || raw || sslcertkey"
#, fuzzy
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -9608,10 +9624,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+26 -9
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:58+0100\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/weechat/tree/translation_ja>\n"
@@ -9618,6 +9618,10 @@ msgstr "リレーするクライアントはありません"
msgid "Listening on ports:"
msgstr "リッスンポート:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " ポート %s%d%s、リレー: %s%s%s, %s、開始日時: %s"
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " ポート %s%d%s、リレー: %s%s%s, %s、開始日時: %s"
@@ -9640,19 +9644,31 @@ msgstr "%s%s: リレー \"%s\" が見つかりません"
msgid "relay control"
msgstr "リレー管理"
#, fuzzy
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
#, fuzzy
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -9661,10 +9677,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+26 -9
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:58+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -9803,6 +9803,10 @@ msgstr "Brak klientów do przekazywania"
msgid "Listening on ports:"
msgstr "Nasłuchuję na portach:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " port %s%d%s, relay:%s%s%s, %s, rozpoczęto: %s"
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " port %s%d%s, relay:%s%s%s, %s, rozpoczęto: %s"
@@ -9825,19 +9829,31 @@ msgstr "%s%s: relay \"%s\" nie został znaleziony"
msgid "relay control"
msgstr "zarządzanie przesyłaniem"
#, fuzzy
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protokół.nazwa> <port> "
"|| del [ipv4.][ipv6.][ssl.]<protokół.nazwa> || raw || kluczSSL"
#, fuzzy
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -9846,10 +9862,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+24 -9
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:59+0100\n"
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -8787,6 +8787,10 @@ msgstr "Clientes para relay:"
msgid "Listening on ports:"
msgstr "Escutando nas portas:"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr " porta %s%d%s, relay: %s%s.%s%s, iniciado em: %s"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr " porta %s%d%s, relay: %s%s.%s%s, iniciado em: %s"
@@ -8810,16 +8814,26 @@ msgid "relay control"
msgstr ""
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -8828,10 +8842,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+24 -9
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-11-01 11:59+0100\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -8542,6 +8542,10 @@ msgstr "Нет сервера.\n"
msgid "Listening on ports:"
msgstr "Список сокращений:\n"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr "%s%s%s отсутствует: %s\n"
#, fuzzy, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr "%s%s%s отсутствует: %s\n"
@@ -8566,16 +8570,26 @@ msgid "relay control"
msgstr ""
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -8584,10 +8598,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+24 -9
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-07-25 07:50+0200\n"
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -7665,6 +7665,10 @@ msgstr ""
msgid "Listening on ports:"
msgstr ""
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr ""
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr ""
@@ -7688,16 +7692,26 @@ msgid "relay control"
msgstr ""
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -7706,10 +7720,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
+24 -9
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-11-01 20:32+0100\n"
"POT-Creation-Date: 2014-11-02 11:09+0100\n"
"PO-Revision-Date: 2014-08-16 10:27+0200\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -7605,6 +7605,10 @@ msgstr ""
msgid "Listening on ports:"
msgstr ""
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
msgstr ""
#, c-format
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
msgstr ""
@@ -7628,16 +7632,26 @@ msgid "relay control"
msgstr ""
msgid ""
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protocol.name> <port> || "
"del [ipv4.][ipv6.][ssl.]<protocol.name> || raw || sslcertkey"
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
"raw || sslcertkey"
msgstr ""
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
" listrelay: list relays (name and port)\n"
" add: add relay for a protocol + name\n"
" del: remove relay for a protocol + name\n"
" add: add a relay (listen on a port)\n"
" del: remove a relay (clients remain connected)\n"
" stop: close the server socket (clients remain connected)\n"
" restart: close the server socket and listen again on port (clients "
"remain connected)\n"
" name: relay name (see format below)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>\n"
" ipv4: force use of IPv4\n"
" ipv6: force use of IPv6\n"
" ssl: enable SSL\n"
@@ -7646,10 +7660,11 @@ msgid ""
"if not given, the server name must be sent by client in command \"PASS\", "
"with format: \"PASS server:password\")\n"
" - protocol \"weechat\" (name is not used)\n"
" port: port used for relay\n"
" raw: open buffer with raw Relay data\n"
" sslcertkey: set SSL certificate/key using path in option relay.network."
"ssl_cert_key\n"
"\n"
"The \"irc\" protocol allows any IRC client (including WeeChat itself) to "
"connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on the port, "
"see the list here: http://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay clients.\n"
"\n"
File diff suppressed because it is too large Load Diff
+1 -9
View File
@@ -546,15 +546,7 @@ relay_server_new (const char *protocol_string, enum t_relay_protocol protocol,
new_server->start_time = 0;
new_server->last_client_disconnect = 0;
if (!relay_server_create_socket (new_server))
{
if (new_server->protocol_string)
free (new_server->protocol_string);
if (new_server->protocol_args)
free (new_server->protocol_args);
free (new_server);
return NULL;
}
relay_server_create_socket (new_server);
new_server->prev_server = NULL;
new_server->next_server = relay_servers;