core: update translations

v2.8-utf8proc
Sébastien Helleu 2018-08-15 12:36:01 +02:00
parent cb8b60028b
commit 50bedd10b6
19 changed files with 567 additions and 541 deletions

View File

@ -20,66 +20,67 @@
default -yes
monitor [<filter>]
list: zeigt eine Liste aller Trigger (ohne Angabe von Argumente wird diese Liste standardmäßig ausgegeben)
listfull: zeigt eine detaillierte Liste, mit zusätzlichen Informationen, aller Trigger an
listdefault: zeigt die standardmäßig genutzen Trigger an
add: fügt einen Trigger hinzu
addoff: fügt einen Trigger hinzu (deaktiviert)
addreplace: fügt oder ersetzt einen schon existierenden Trigger
name: Name des Trigger
hook: signal, hsignal, modifier, print, command, command_run, timer, config, focus
arguments: Argumente für den Hook, abhängig vom genutzten Hook (getrennt durch Semikolon):
signal: Name(en) des signals (erforderlich)
hsignal: Name(en) des hsignal (erforderlich)
modifier: Name(en) des modifier (erforderlich)
list: list triggers (without argument, this list is displayed)
listfull: list triggers with detailed info for each trigger
listdefault: list default triggers
add: add a trigger
addoff: add a trigger (disabled)
addreplace: add or replace an existing trigger
name: name of trigger
hook: signal, hsignal, modifier, line, print, command, command_run, timer, config, focus
arguments: arguments for the hook, depending on hook (separated by semicolons):
signal: name(s) of signal (required)
hsignal: name(s) of hsignal (required)
modifier: name(s) of modifier (required)
line: buffer type ("formatted", "free" or "*"), list of buffer masks, tags
print: buffer, tags, message, strip colors
command: Befehl (erforderlich), Beschreibung, Argumente, Beschreibung der Argumente, Vervollständigung
command_run: Befehl(e) (erforderlich)
timer: Intervall (erforderlich), Anpassung an Sekunden (erforderlich), maximale Anzahl an Aufrufen
config: Name der Einstellung (erforderlich)
focus: Name(n) für sichtbaren Bereich (erforderlich) (z.B. "chat" für Chatbereich)
conditions: evaluierte Bedingungen für den Trigger
regex: einer oder mehrere reguläre Ausdrücke um Zeichenketten in Variablen zu ersetzen
command: Befehl welcher ausgeführt werden soll (mehrere Befehle müssen durch ";" voneinander getrennt werden)
return_code: Rückgabewert für Callback (ok (standard), ok_eat, error)
post_action: Aktion welche nach der Abarbeitung des Triggers ausgeführt werden soll (none (Standardwert), disable, delete)
addinput: erstellt einen Trigger mit einer standardmäßigen Mustervorlage
input: kopiert den kompletten Trigger-Befehl in die Eingabezeile
output: schickt den Trigger-Befehl als Text in den Buffer
recreate: wie "input", allerdings wird die Einstellung "addreplace" anstelle von "add" genutzt
set: definiert, innerhalb eines Triggers, eine Einstellung neu
option: Name einer Einstellung: name, hook, arguments, conditions, regex, command, return_code
(um Hilfe über eine Einstellung zu erhalten: /help trigger.trigger.<name>.<option>)
value: neuer Wert für Einstellung
rename: benennt einen Trigger um
copy: kopiert einen Trigger
enable: aktiviert Trigger (ohne Angabe von Argumenten: aktiviert alle Trigger)
disable: deaktiviert Trigger (ohne Angabe von Argumenten: deaktiviert alle Trigger)
toggle: de-/aktiviert Trigger (ohne Angabe von Argumenten: de-/aktiviert alle Trigger)
restart: startet Trigger neu (Hook(s) werden neu erstellt)
show: zeigt detaillierte Informationen zu einem Trigger (inklusive einer kleinen Statistik)
del: entfernt einen Trigger
-all: führt eine Aktion aus, die alle Trigger beinhaltet
restore: stellt Trigger mit Standardwerten wieder her (funktioniert nur bei vorgegebenen Triggern)
default: stellt die standardmäßigen Trigger wieder her
monitor: öffnet den Trigger Monitor-Buffer, mit optionaler Filterfunktion:
Filter: zeigt Hooks/Trigger an (ein Hook muss mit "@" beginnen, zum Beispiel "@signal"), mehrere Filter können durch Kommata voneinander getrennt werden; Platzhalter "*" kann im Namen des Trigger verwendet werden
command: command (required), description, arguments, description of arguments, completion
command_run: command(s) (required)
timer: interval (required), align on second, max calls
config: name(s) of option (required)
focus: name(s) of area (required)
conditions: evaluated conditions for the trigger
regex: one or more regular expressions to replace strings in variables
command: command to execute (many commands can be separated by ";")
return_code: return code in callback (ok (default), ok_eat, error)
post_action: action to take after execution (none (default), disable, delete)
addinput: set input with default arguments to create a trigger
input: set input with the command used to create the trigger
output: send the command to create the trigger on the buffer
recreate: same as "input", with option "addreplace" instead of "add"
set: set an option in a trigger
option: name of option: name, hook, arguments, conditions, regex, command, return_code
(for help on option, you can type: /help trigger.trigger.<name>.<option>)
value: new value for the option
rename: rename a trigger
copy: copy a trigger
enable: enable trigger(s) (without arguments: enable triggers globally)
disable: disable trigger(s) (without arguments: disable triggers globally)
toggle: toggle trigger(s) (without arguments: toggle triggers globally)
restart: restart trigger(s) (recreate the hooks)
show: show detailed info on a trigger (with some stats)
del: delete a trigger
-all: do action on all triggers
restore: restore trigger(s) with the default values (works only for default triggers)
default: delete all triggers and restore default ones
monitor: open the trigger monitor buffer, with optional filter:
filter: filter hooks/triggers to display (a hook must start with "@", for example "@signal"), many filters can be separated by commas; wildcard "*" is allowed in each trigger name
Wenn ein Trigger-Callback aufgerufen wird, dann wird folgende Befehlskette ausgeführt:
1. Überprüfung von Bedingungen; falls unwahr, beenden
2. ersetze Text mittels erweitertem regulärer POSIX Ausdruck (sofern im Trigger definiert)
3. ein oder mehrere Befehle werden ausgeführt (sofern im Trigger definiert)
4. Beendigung mit einem Rückgabewert (ausgenommen sind modifiers und focus)
5. Aktion welche nach der Abarbeitung des Triggers ausgeführt werden soll
When a trigger callback is called, following actions are performed, in this order:
1. check conditions; if false, exit
2. replace text using POSIX extended regular expression(s) (if defined in trigger)
3. execute command(s) (if defined in trigger)
4. exit with a return code (except for modifier, line and focus)
5. perform post action
Beispiele (die standardmäßig, eingebauten Trigger kann man sich mit "/trigger listdefault" anzeigen lassen):
fügt einer Nachricht die Textattribute *fett*, _unterstrichen_ und /kursiv/ hinzu:
Examples (you can also look at default triggers with /trigger listdefault):
add text attributes *bold*, _underline_ and /italic/ (only in user messages):
/trigger add effects modifier weechat_print "${tg_tag_nick}" "==\*(\S+)\*==*${color:bold}${re:1}${color:-bold}*== ==_(\S+)_==_${color:underline}${re:1}${color:-underline}_== ==/(\S+)/==/${color:italic}${re:1}${color:-italic}/"
verbirgt die Nicklist auf kleineren Terminals:
hide nicklist bar on small terminals:
/trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist"
/trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist"
speichert die Konfiguration jede Stunde ab:
silently save config each hour:
/trigger add cfgsave timer 3600000;0;0 "" "" "/mute /save"
öffnet den Trigger Monitor und zeigt ausschließlich modifier und Trigger an, die mit "resize" im Namen beginnen:
open trigger monitor and show only modifiers and triggers whose name starts with "resize":
/trigger monitor @modifier,resize*
----

View File

@ -27,11 +27,12 @@ listdefault: list default triggers
addoff: add a trigger (disabled)
addreplace: add or replace an existing trigger
name: name of trigger
hook: signal, hsignal, modifier, print, command, command_run, timer, config, focus
hook: signal, hsignal, modifier, line, print, command, command_run, timer, config, focus
arguments: arguments for the hook, depending on hook (separated by semicolons):
signal: name(s) of signal (required)
hsignal: name(s) of hsignal (required)
modifier: name(s) of modifier (required)
line: buffer type ("formatted", "free" or "*"), list of buffer masks, tags
print: buffer, tags, message, strip colors
command: command (required), description, arguments, description of arguments, completion
command_run: command(s) (required)
@ -69,7 +70,7 @@ When a trigger callback is called, following actions are performed, in this orde
1. check conditions; if false, exit
2. replace text using POSIX extended regular expression(s) (if defined in trigger)
3. execute command(s) (if defined in trigger)
4. exit with a return code (except for modifiers and focus)
4. exit with a return code (except for modifier, line and focus)
5. perform post action
Examples (you can also look at default triggers with /trigger listdefault):

View File

@ -27,11 +27,12 @@ listdefault : lister les triggers par défaut
addoff : ajouter un trigger (désactivé)
addreplace : ajouter ou remplacer un trigger existant
nom : nom du trigger
hook : signal, hsignal, modifier, print, command, command_run, timer, config, focus
hook : signal, hsignal, modifier, line, print, command, command_run, timer, config, focus
paramètres : paramètres pour le hook, dépendant du hook (séparés par des points-virgules) :
signal : nom(s) de signal (obligatoire)
hsignal : nom(s) de signal (obligatoire)
modifier : nom(s) de modificateur (obligatoire)
line : type de tampon ("formatted", "free" ou "*"), liste de masques de tampons, étiquettes
print : tampon, étiquettes, message, suppression des couleurs (0/1)
command : commande (obligatoire), description, paramètres, description des paramètres, complétion
command_run : commande(s) (obligatoire)
@ -69,7 +70,7 @@ Lorsqu'une fonction de rappel de trigger est appelée, les actions suivantes son
1. vérifier les conditions ; si faux, sortir
2. remplacer le texte en utilisant une/des expression(s)s régulière(s)s POSIX étendue(s)s (si définie(s) dans le trigger)
3. exécuter le(s) commande(s) (si définie(s) dans le trigger)
4. sortir avec le code retour (sauf pour les modificateurs et focus)
4. sortir avec le code retour (sauf pour les modificateurs, line et focus)
5. effectuer l'action "post"
Exemples (vous pouvez aussi regarder les triggers par défaut avec /trigger listdefault) :

View File

@ -27,11 +27,12 @@ listdefault: list default triggers
addoff: add a trigger (disabled)
addreplace: add or replace an existing trigger
name: name of trigger
hook: signal, hsignal, modifier, print, command, command_run, timer, config, focus
hook: signal, hsignal, modifier, line, print, command, command_run, timer, config, focus
arguments: arguments for the hook, depending on hook (separated by semicolons):
signal: name(s) of signal (required)
hsignal: name(s) of hsignal (required)
modifier: name(s) of modifier (required)
line: buffer type ("formatted", "free" or "*"), list of buffer masks, tags
print: buffer, tags, message, strip colors
command: command (required), description, arguments, description of arguments, completion
command_run: command(s) (required)
@ -69,7 +70,7 @@ When a trigger callback is called, following actions are performed, in this orde
1. check conditions; if false, exit
2. replace text using POSIX extended regular expression(s) (if defined in trigger)
3. execute command(s) (if defined in trigger)
4. exit with a return code (except for modifiers and focus)
4. exit with a return code (except for modifier, line and focus)
5. perform post action
Examples (you can also look at default triggers with /trigger listdefault):

View File

@ -20,66 +20,67 @@
default -yes
monitor [<filter>]
list: トリガをリストアップ (引数なしの場合、このリストを表示します)
listfull: 各トリガに関する詳細な情報を付けてトリガをリストアップ
listdefault: デフォルトトリガをリストアップ
add: トリガを追加
addoff: トリガを追加 (無効状態で)
addreplace: 追加または存在するトリガを置換
name: トリガの名前
hook: signal、hsignal、modifier、print、command、command_run、timer、config、focus
arguments: フックの引数、フックの種類に依存 (セミコロンで区切る):
signal: シグナルの名前 (必須)
hsignal: hsignal の名前 (必須)
modifier: modifier の名前 (必須)
print: バッファ、タグ、メッセージ、色の削除
command: コマンド (必須)、説明、引数、引数の説明、補完
command_run: コマンド (必須)
timer: インターバル (必須)、秒の調節、最大呼び出し回数
config: オプションの名前 (必須)
focus: エリアの名前 (必須)
conditions: トリガの実行条件
regex: 変数内の文字列を置換する 1 つ以上の正規表現
command: 実行するコマンド (複数のコマンドは ";" で区切ってください)
return_code: コールバック内のリターンコード (ok (デフォルト)、ok_eat、error)
post_action: トリガ実行後の処遇 (none (デフォルト、何もしない)、disable (無効化)、delete (削除))
addinput: 入力にトリガを作る際のデフォルト引数を設定
input: 入力にトリガを作る際に使われるコマンドを設定
output: バッファでトリガを作る際のコマンドを送信
recreate: "add" の代わりに "addreplace" オプションを使うことを除いて "input" と同じ
set: トリガにオプションを設定
option: オプションの名前: name、hook、arguments、conditions、regex、command、return_code
(オプションに関するヘルプを見るには: /help trigger.trigger.<name>.<option>)
value: オプションの新しい値
rename: トリガの名前を変更
copy: トリガをコピー
enable: トリガを有効化 (引数なしの場合: 大域的にトリガを有効化)
disable: トリガを無効化 (引数なしの場合: 大域的にトリガを無効化)
toggle: トリガの有効無効を切り替え (引数なしの場合: 大域的にトリガの有効無効を切り替え)
restart: トリガの再開 (フックを再作成)
show: トリガに関する情報を表示 (状態を含めて)
del: トリガを削除
-all: 全てのトリガに関するアクションを実行
restore: デフォルトの値でトリガを復元 (これができるのはデフォルトトリガに限ります)
default: 全てのトリガを削除してデフォルトのトリガを復元
monitor: 任意でフィルタを付けてトリガ監視バッファを開く:
filter: フックおよびトリガをフィルタして表示 (フックは必ず "@" で始めてください、たとえば "@signal")、複数のフィルタをかける場合はそれぞれをコンマで区切ってください; 各トリガ名にワイルドカード "*" を使うことができます。
list: list triggers (without argument, this list is displayed)
listfull: list triggers with detailed info for each trigger
listdefault: list default triggers
add: add a trigger
addoff: add a trigger (disabled)
addreplace: add or replace an existing trigger
name: name of trigger
hook: signal, hsignal, modifier, line, print, command, command_run, timer, config, focus
arguments: arguments for the hook, depending on hook (separated by semicolons):
signal: name(s) of signal (required)
hsignal: name(s) of hsignal (required)
modifier: name(s) of modifier (required)
line: buffer type ("formatted", "free" or "*"), list of buffer masks, tags
print: buffer, tags, message, strip colors
command: command (required), description, arguments, description of arguments, completion
command_run: command(s) (required)
timer: interval (required), align on second, max calls
config: name(s) of option (required)
focus: name(s) of area (required)
conditions: evaluated conditions for the trigger
regex: one or more regular expressions to replace strings in variables
command: command to execute (many commands can be separated by ";")
return_code: return code in callback (ok (default), ok_eat, error)
post_action: action to take after execution (none (default), disable, delete)
addinput: set input with default arguments to create a trigger
input: set input with the command used to create the trigger
output: send the command to create the trigger on the buffer
recreate: same as "input", with option "addreplace" instead of "add"
set: set an option in a trigger
option: name of option: name, hook, arguments, conditions, regex, command, return_code
(for help on option, you can type: /help trigger.trigger.<name>.<option>)
value: new value for the option
rename: rename a trigger
copy: copy a trigger
enable: enable trigger(s) (without arguments: enable triggers globally)
disable: disable trigger(s) (without arguments: disable triggers globally)
toggle: toggle trigger(s) (without arguments: toggle triggers globally)
restart: restart trigger(s) (recreate the hooks)
show: show detailed info on a trigger (with some stats)
del: delete a trigger
-all: do action on all triggers
restore: restore trigger(s) with the default values (works only for default triggers)
default: delete all triggers and restore default ones
monitor: open the trigger monitor buffer, with optional filter:
filter: filter hooks/triggers to display (a hook must start with "@", for example "@signal"), many filters can be separated by commas; wildcard "*" is allowed in each trigger name
トリガコールバックを呼び出す際には、以下の順番通りにアクションを実行します:
1. 条件を確認; 偽の場合、終了
2. POSIX 拡張正規表現を使ってテキストを置換 (トリガに定義されている場合)
3. コマンドを実行 (トリガに定義されている場合)
4. リターンコードを返して終了 (modifier と focus を除く)
5. トリガ実行後の処遇を適用
When a trigger callback is called, following actions are performed, in this order:
1. check conditions; if false, exit
2. replace text using POSIX extended regular expression(s) (if defined in trigger)
3. execute command(s) (if defined in trigger)
4. exit with a return code (except for modifier, line and focus)
5. perform post action
例 (/trigger listdefault でデフォルトトリガを見ることができます):
テキスト属性 *太字*、_下線_、/イタリック/ を追加 (ユーザメッセージのみ):
Examples (you can also look at default triggers with /trigger listdefault):
add text attributes *bold*, _underline_ and /italic/ (only in user messages):
/trigger add effects modifier weechat_print "${tg_tag_nick}" "==\*(\S+)\*==*${color:bold}${re:1}${color:-bold}*== ==_(\S+)_==_${color:underline}${re:1}${color:-underline}_== ==/(\S+)/==/${color:italic}${re:1}${color:-italic}/"
狭い端末ではニックネームリストバーを隠す:
hide nicklist bar on small terminals:
/trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist"
/trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist"
設定を 1 時間毎に黙々と保存:
silently save config each hour:
/trigger add cfgsave timer 3600000;0;0 "" "" "/mute /save"
トリガモニタを開き、修飾子と名前が "resize" から始まるトリガだけを表示:
open trigger monitor and show only modifiers and triggers whose name starts with "resize":
/trigger monitor @modifier,resize*
----

View File

@ -20,66 +20,67 @@
default -yes
monitor [<filtr>]
list: lista triggerów (jeśli nie podano argumentu, wyświetli się ta lista)
listfull: lista triggerów ze szczegółowymi informacjami
listdefault: lista domyślnych triggerów
add: dodaje trigger
addoff: dodaje trigger (wyłączony)
addreplace: dodaje lub zastępuje istniejący trigger
nazwa: nazwa triggera
hook: signal, hsignal, modifier, print, command, command_run, timer, config, focus
argumenty: argumenty dla uchwytu, w zależności od jego typu (oddzielone średnikami):
signal: nazwa(-y) signal (wymagane)
hsignal: nazwa(-y) hsignal (wymagane)
modifier: nazwa(-y) modifier (wymagane)
print: bufor, tagi, wiadomość, pomiń kolory
command: komenda (wymagane), opis, argumenty, opis argumentów, dopełnienie
command_run: komenda(-y) (wymagane)
timer: interwał (wymagane), wyrównanie sekund, ilość wywołań
config: nazwa(-y) opcji (wymagane)
focus: nazwa(-y) obszarów (wymagane)
warunki: przetwarzane warunki dla triggera
regex: jedno lub więcej wyrażeń regularnych do zastępowania ciągów w zmiennych
komenda: komenda do wykonania (wiele komend można oddzielić ";")
zwracany_kod: kod zwracany w callbacku (ok (domyślne), ok_eat, error)
post_action: akcja do wykonania po zakończeniu (none (domylślne), disable, delete)
addinput: ustawia wejście z domyślnymi argumentami do stworzenia triggera
input: ustawia wejście z komendą użytą do stworzenia triggera
output: wysyła komendę do stworzenia triggera do buforu
recreate: tak samo jak "input", z opcją "addreplace" zamiast "add"
set: ustawia opcje triggera
opcja: nazwa opcji: name, hook, arguments, conditions, regex, command, return_code
(aby uzyskać pomoc na temat opcji możesz wpisać: /help trigger.trigger.<nazwa>.<opcja>)
wartość: nowa wartość dla opcji
rename: zmienia nazwę triggera
copy: kopiuje trigger
enable: włącza trigger(y) (bez argumentów: włącza triggery globalnie)
disable: wyłącza trigger(y) (bez argumentów: wyłącza triggery globalnie)
toggle: zmienia stan triggera(-ów) (bez argumentów: zmienia stan triggerów globalnie)
restart: restartuje trigger(y) (tworzy na nowo uchwyty)
show: pokazuje szczegółowe informacje o triggerze (z niektórymi statystykami)
del: usuwa trigger
-all: wykonaj akcję na wszystkich triggerach
restore: przywraca trigger(y) z domyślnymi wartościami (działa tylko dla domyślnych triggerów)
default: przywraca domyślne triggery
monitor: otwiera bufor monitorowania triggerów, z opcjonalnym filtrem:
filtr: filtruje uchwyty/triggery do wyświetlenia (uchwyt musi się zaczynać od "@", na przykład "@signal"), wiele filtrów może być oddzielonych przecinkiem; dzika karta "*" jest dozwolona w nazwie każdego triggera
list: list triggers (without argument, this list is displayed)
listfull: list triggers with detailed info for each trigger
listdefault: list default triggers
add: add a trigger
addoff: add a trigger (disabled)
addreplace: add or replace an existing trigger
name: name of trigger
hook: signal, hsignal, modifier, line, print, command, command_run, timer, config, focus
arguments: arguments for the hook, depending on hook (separated by semicolons):
signal: name(s) of signal (required)
hsignal: name(s) of hsignal (required)
modifier: name(s) of modifier (required)
line: buffer type ("formatted", "free" or "*"), list of buffer masks, tags
print: buffer, tags, message, strip colors
command: command (required), description, arguments, description of arguments, completion
command_run: command(s) (required)
timer: interval (required), align on second, max calls
config: name(s) of option (required)
focus: name(s) of area (required)
conditions: evaluated conditions for the trigger
regex: one or more regular expressions to replace strings in variables
command: command to execute (many commands can be separated by ";")
return_code: return code in callback (ok (default), ok_eat, error)
post_action: action to take after execution (none (default), disable, delete)
addinput: set input with default arguments to create a trigger
input: set input with the command used to create the trigger
output: send the command to create the trigger on the buffer
recreate: same as "input", with option "addreplace" instead of "add"
set: set an option in a trigger
option: name of option: name, hook, arguments, conditions, regex, command, return_code
(for help on option, you can type: /help trigger.trigger.<name>.<option>)
value: new value for the option
rename: rename a trigger
copy: copy a trigger
enable: enable trigger(s) (without arguments: enable triggers globally)
disable: disable trigger(s) (without arguments: disable triggers globally)
toggle: toggle trigger(s) (without arguments: toggle triggers globally)
restart: restart trigger(s) (recreate the hooks)
show: show detailed info on a trigger (with some stats)
del: delete a trigger
-all: do action on all triggers
restore: restore trigger(s) with the default values (works only for default triggers)
default: delete all triggers and restore default ones
monitor: open the trigger monitor buffer, with optional filter:
filter: filter hooks/triggers to display (a hook must start with "@", for example "@signal"), many filters can be separated by commas; wildcard "*" is allowed in each trigger name
Kiedy callback triggera jest wywoływany, wykonywane są następujące akcje, w kolejności:
1. sprawdzenie warunków; jeśli nie są spełnione, wyjście
2. zastąpienie tekstu za pomocą rozszerzonych wyrażeń regularnych POSIX (jeśli zdefiniowane)
3. wykonanie komend(y) (jeśli zdefiniowane)
4. wyjście z kodem wyjścia (poza modifiers i focus)
5. wykonanie akcji kończącej
When a trigger callback is called, following actions are performed, in this order:
1. check conditions; if false, exit
2. replace text using POSIX extended regular expression(s) (if defined in trigger)
3. execute command(s) (if defined in trigger)
4. exit with a return code (except for modifier, line and focus)
5. perform post action
Przykłady (możesz też spojrzeć na domyślne triggery za pomocą /trigger listdefault):
dodaje atrybuty tekstu *bold*, _underline_ i /italic/ (tylko w wiadomościach użytkowników):
Examples (you can also look at default triggers with /trigger listdefault):
add text attributes *bold*, _underline_ and /italic/ (only in user messages):
/trigger add effects modifier weechat_print "${tg_tag_nick}" "==\*(\S+)\*==*${color:bold}${re:1}${color:-bold}*== ==_(\S+)_==_${color:underline}${re:1}${color:-underline}_== ==/(\S+)/==/${color:italic}${re:1}${color:-italic}/"
ukrywa pasek z nickami na małych terminalach:
hide nicklist bar on small terminals:
/trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist"
/trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist"
cichy zapis plików konfiguracyjnych co każdą godzinę:
silently save config each hour:
/trigger add cfgsave timer 3600000;0;0 "" "" "/mute /save"
otwiera monitor triggerów i pokazuje tylko modifiers i triggery, których nazwa zaczyna się od "resize":
open trigger monitor and show only modifiers and triggers whose name starts with "resize":
/trigger monitor @modifier,resize*
----

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:36+0200\n"
"Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -126,6 +126,23 @@ msgstr "Typ"
msgid "Constants"
msgstr "Konstanty"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sChyba: příkaz \"%s\" již existuje pro plugin \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Konec příkazu '%s', vypršel časový limit (%.lfs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Detekován posun systémových hodin (%+ld sekund), znovu inicializuji časovače"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4079,23 +4096,6 @@ msgstr "Složky:"
msgid "default"
msgstr "výchozí"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sChyba: příkaz \"%s\" již existuje pro plugin \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Detekován posun systémových hodin (%+ld sekund), znovu inicializuji časovače"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Konec příkazu '%s', vypršel časový limit (%.lfs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr "%sChyba odesílání signálu %d na pid %d: %s"
@ -4624,9 +4624,6 @@ msgstr "Odesílám hsignal: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Provádím příkaz: \"%s\" na bufferu \"%s\""
msgid "Not enough memory for new line"
msgstr "Nedostatek paměti pro nový řádek"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Ladění zapnuto pro myš (%s)"
@ -11917,13 +11914,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -11975,7 +11974,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -12580,6 +12579,9 @@ msgstr "%s%s: vypršel časový limit \"%s\" pro %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: nemohu se připojit\" neočekávaná chyba (%d)"
#~ msgid "Not enough memory for new line"
#~ msgstr "Nedostatek paměti pro nový řádek"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-06-14 23:03+0200\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <kde-i18n-de@kde.org>\n"
@ -130,6 +130,26 @@ msgstr "Type"
msgid "Constants"
msgstr "Konstanten"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
"%sFehler: ein anderer Befehl \"%s\" existiert bereits für die Erweiterung "
"\"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
"%sFehler: bad file descriptor (%d) wurde in Funktion \"hook_fd\" genutzt"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Befehl '%s' beendet, Zeit ist verstrichen (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Die Systemzeit ist nicht korrekt (%+ld Sekunden), reinitialisiere alle Uhren"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4906,26 +4926,6 @@ msgstr "Verzeichnisse:"
msgid "default"
msgstr "voreingestellt"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
"%sFehler: ein anderer Befehl \"%s\" existiert bereits für die Erweiterung "
"\"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Die Systemzeit ist nicht korrekt (%+ld Sekunden), reinitialisiere alle Uhren"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
"%sFehler: bad file descriptor (%d) wurde in Funktion \"hook_fd\" genutzt"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Befehl '%s' beendet, Zeit ist verstrichen (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr "%sFehler beim Versenden des Signals %d an pid %d: %s"
@ -5508,9 +5508,6 @@ msgstr "sende hsignal: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "auszuführender Befehl: \"%s\" in Buffer \"%s\""
msgid "Not enough memory for new line"
msgstr "Nicht genügend Speicher für eine neue Zeile"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Debug-Modus (%s) für Maus aktiviert"
@ -13851,6 +13848,7 @@ msgstr ""
"<name>|-all [<name>...] || show <name> || del <name>|-all [<name>...] || "
"restore <name> [<name>...] || default -yes || monitor [<filter>]"
#, fuzzy
msgid ""
" list: list triggers (without argument, this list is displayed)\n"
" listfull: list triggers with detailed info for each trigger\n"
@ -13859,13 +13857,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -13917,7 +13917,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -14646,6 +14646,9 @@ msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr ""
"%s%s: Verbindung konnte nicht hergestellt werden: unerwarteter Fehler (%d)"
#~ msgid "Not enough memory for new line"
#~ msgstr "Nicht genügend Speicher für eine neue Zeile"
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "
#~ "buflist)"

View File

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:36+0200\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -132,6 +132,24 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Constantes"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sError: el comando \"%s\" ya existe en el plugin \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sError: mal descriptor de archivo (%d) usado en hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fin del comando '%s', tiempo de espera alcanzado (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Desviación detectada en el reloj del sistema (%+ld segundos), reiniciando "
"todos los temporizadores"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4273,24 +4291,6 @@ msgstr ""
msgid "default"
msgstr "predeterminado: "
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sError: el comando \"%s\" ya existe en el plugin \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Desviación detectada en el reloj del sistema (%+ld segundos), reiniciando "
"todos los temporizadores"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sError: mal descriptor de archivo (%d) usado en hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fin del comando '%s', tiempo de espera alcanzado (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -4819,9 +4819,6 @@ msgstr "Enviando señal-h: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Ejecutando el comando: \"%s\""
msgid "Not enough memory for new line"
msgstr "No hay suficiente memoria para una línea nueva"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Depurado para el modo cursor activado (%s)"
@ -12192,13 +12189,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -12250,7 +12249,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -12859,6 +12858,9 @@ msgstr "%s%s: tiempo de espera máximo para \"%s\" con %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: no es posible conectarse al transmisor"
#~ msgid "Not enough memory for new line"
#~ msgstr "No hay suficiente memoria para una línea nueva"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"PO-Revision-Date: 2018-06-14 22:03+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-08-15 12:34+0200\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@ -124,6 +124,25 @@ msgstr "Type"
msgid "Constants"
msgstr "Constantes"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
"%sErreur : une autre commande \"%s\" existe déjà pour l'extension \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErreur : mauvais descripteur de fichier (%d) utilisé dans hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fin de la commande '%s', temps maximum atteint (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Décalage de l'horloge système détecté (%+ld secondes), réinitialisation de "
"tous les minuteurs"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4784,25 +4803,6 @@ msgstr "Répertoires :"
msgid "default"
msgstr "défaut"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
"%sErreur : une autre commande \"%s\" existe déjà pour l'extension \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Décalage de l'horloge système détecté (%+ld secondes), réinitialisation de "
"tous les minuteurs"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErreur : mauvais descripteur de fichier (%d) utilisé dans hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fin de la commande '%s', temps maximum atteint (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr "%sErreur d'envoi du signal %d au pid %d : %s"
@ -5382,9 +5382,6 @@ msgstr "Envoi du hsignal : \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Lancement de la commande : \"%s\" sur le tampon \"%s\""
msgid "Not enough memory for new line"
msgstr "Pas assez de mémoire pour une nouvelle ligne"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Debug activé pour la souris (%s)"
@ -13567,13 +13564,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -13625,7 +13624,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -13655,13 +13654,15 @@ msgstr ""
" addoff : ajouter un trigger (désactivé)\n"
" addreplace : ajouter ou remplacer un trigger existant\n"
" nom : nom du trigger\n"
" hook : signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook : signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" paramètres : paramètres pour le hook, dépendant du hook (séparés par des "
"points-virgules) :\n"
" signal : nom(s) de signal (obligatoire)\n"
" hsignal : nom(s) de signal (obligatoire)\n"
" modifier : nom(s) de modificateur (obligatoire)\n"
" line : type de tampon (\"formatted\", \"free\" ou \"*\"), "
"liste de masques de tampons, étiquettes\n"
" print : tampon, étiquettes, message, suppression des couleurs "
"(0/1)\n"
" command : commande (obligatoire), description, paramètres, "
@ -13720,7 +13721,8 @@ msgstr ""
" 2. remplacer le texte en utilisant une/des expression(s)s régulière(s)s "
"POSIX étendue(s)s (si définie(s) dans le trigger)\n"
" 3. exécuter le(s) commande(s) (si définie(s) dans le trigger)\n"
" 4. sortir avec le code retour (sauf pour les modificateurs et focus)\n"
" 4. sortir avec le code retour (sauf pour les modificateurs, line et "
"focus)\n"
" 5. effectuer l'action \"post\"\n"
"\n"
"Exemples (vous pouvez aussi regarder les triggers par défaut avec /trigger "
@ -14356,6 +14358,9 @@ msgstr "%s%s : délai d'attente dépassé pour \"%s\" avec %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s : impossible de se connecter : erreur inattendue (%d)"
#~ msgid "Not enough memory for new line"
#~ msgstr "Pas assez de mémoire pour une nouvelle ligne"
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "
#~ "buflist)"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:36+0200\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -133,6 +133,22 @@ msgstr ""
msgid "Constants"
msgstr ""
#, fuzzy, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%s az ignore már létezik\n"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, fuzzy, c-format
msgid ""
@ -3650,22 +3666,6 @@ msgstr ""
msgid "default"
msgstr " . alapérték: %d\n"
#, fuzzy, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%s az ignore már létezik\n"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -4187,10 +4187,6 @@ msgstr ""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "%s belső parancsok:\n"
#, fuzzy
msgid "Not enough memory for new line"
msgstr "Nincs elég memória az új sorhoz\n"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr ""
@ -11198,13 +11194,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -11256,7 +11254,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -11864,6 +11862,10 @@ msgstr "%s hiányzó argumentum a(z) \"%s\" opciónak\n"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s DCC: nem sikerült kapcsolódni a küldőhöz\n"
#, fuzzy
#~ msgid "Not enough memory for new line"
#~ msgstr "Nincs elég memória az új sorhoz\n"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:36+0200\n"
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -130,6 +130,24 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Costanti"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sErrore: un altro comando \"%s\" esiste già per il plugin \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErrore: descrittore file errato (%d) usato in hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fine comando '%s', timeout raggiunto (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Rilevato ritardo nell'orologio di sistema (%+ld secondi), reset di tutti i "
"timer"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4387,24 +4405,6 @@ msgstr "Directory:"
msgid "default"
msgstr "predefinito"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sErrore: un altro comando \"%s\" esiste già per il plugin \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Rilevato ritardo nell'orologio di sistema (%+ld secondi), reset di tutti i "
"timer"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErrore: descrittore file errato (%d) usato in hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fine comando '%s', timeout raggiunto (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -4948,9 +4948,6 @@ msgstr "Invio hsignal: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Esecuzione comando: \"%s\""
msgid "Not enough memory for new line"
msgstr "Memoria non sufficiente per una nuova riga"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Debug abilitato per il mouse (%s)"
@ -12411,13 +12408,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -12469,7 +12468,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -13072,6 +13071,9 @@ msgstr "%s%s: timeout per \"%s\" con %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: impossibile connettersi al mittente"
#~ msgid "Not enough memory for new line"
#~ msgstr "Memoria non sufficiente per una nuova riga"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-07-12 09:00+0900\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/weechat/tree/master/"
@ -122,6 +122,26 @@ msgstr "タイプ"
msgid "Constants"
msgstr "定数"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
"%1$sエラー: プラグイン \"%3$s\" で他のコマンド \"%2$s\" は既に定義されていま"
"す"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sエラー: hook_fd で不正なファイルディスクリプタ (%d) が使われました"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "コマンド '%s' の終了、タイムアウトになりました (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"システムクロックスキューを検出しました (%+ld 秒)、全てのタイマーを再初期化し"
"ています"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4572,26 +4592,6 @@ msgstr "ディレクトリ:"
msgid "default"
msgstr "デフォルト"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
"%1$sエラー: プラグイン \"%3$s\" で他のコマンド \"%2$s\" は既に定義されていま"
"す"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"システムクロックスキューを検出しました (%+ld 秒)、全てのタイマーを再初期化し"
"ています"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sエラー: hook_fd で不正なファイルディスクリプタ (%d) が使われました"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "コマンド '%s' の終了、タイムアウトになりました (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr "%sシグナル %d を pid %d に送信中にエラー: %s"
@ -5139,9 +5139,6 @@ msgstr "hsignal 送信中: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "バッファ \"%2$s\" でコマンドを実行中: \"%1$s\""
msgid "Not enough memory for new line"
msgstr "新しい行に使うメモリが足りません"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "マウス (%s) のデバッグを有効化"
@ -13067,6 +13064,7 @@ msgstr ""
"<name>|-all [<name>...] || show <name> || del <name>|-all [<name>...] || "
"restore <name> [<name>...] || default -yes || monitor [<filter>]"
#, fuzzy
msgid ""
" list: list triggers (without argument, this list is displayed)\n"
" listfull: list triggers with detailed info for each trigger\n"
@ -13075,13 +13073,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -13133,7 +13133,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -13813,6 +13813,9 @@ msgstr "%s%s: \"%s\" のタイムアウト %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: 接続できません: 未定義のエラー (%d)"
#~ msgid "Not enough memory for new line"
#~ msgstr "新しい行に使うメモリが足りません"
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "
#~ "buflist)"

134
po/pl.po
View File

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-07-09 00:51+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n"
"Language-Team: Polish <soltys1@gmail.com>\n"
@ -30,8 +30,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10"
" || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 2.0\n"
msgid "any string"
@ -126,6 +126,24 @@ msgstr "Typ"
msgid "Constants"
msgstr "Stałe"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sBłąd: istnieje juz inna komenda \"%s\" dla wtyczki \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sBłąd: zły deskryptor pliku (%d) użyty w hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Kończenie komendy '%s', przekroczono dopuszczalny czas (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Wykryto odchylenie zegara systemowego (%+ld sekund), ponownie inicjuje "
"wszystkie timery"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -1203,11 +1221,10 @@ msgstr ""
"list || add [-free] [-switch] <nazwa> || clear [<numer>|<nazwa>|-merged|-all "
"[<numer>|<nazwa>...]] || move <numer>|-|+ || swap <numer1>|<nazwa1> "
"[<numer2>|<nazwa2>] || cycle <numer>|<nazwa> [<numer>|<nazwa>...] || merge "
"<numer>|<nazwa> || unmerge [<numer>|-all] || hide [<numer>|<nazwa>|-all [<"
"numer>|"
"<nazwa>...]] || unhide [<numer>|<nazwa>|-all [<numer>|<nazwa>...]] || "
"renumber [<numer1> [<numer2> [<start>]]] || close [<n1>[-<n2>]|<nazwa>] || "
"notify <poziom> || localvar || set <opcja> [<value>] || get <opcja> || "
"<numer>|<nazwa> || unmerge [<numer>|-all] || hide [<numer>|<nazwa>|-all "
"[<numer>|<nazwa>...]] || unhide [<numer>|<nazwa>|-all [<numer>|<nazwa>...]] "
"|| renumber [<numer1> [<numer2> [<start>]]] || close [<n1>[-<n2>]|<nazwa>] "
"|| notify <poziom> || localvar || set <opcja> [<value>] || get <opcja> || "
"<numer>|-|+|<nazwa>"
msgid ""
@ -1680,8 +1697,8 @@ msgstr ""
" =* pasuje do maski (dzika karta \"*\" dozwolona)\n"
" !* NIE pasuje do maski (dzika karta \"*\" dozwolona)\n"
"\n"
"Wyrażenie jest uznawane za „prawdziwe” jeśli nie jest NULL, nie jest "
"puste, oraz różni się od \"0\".\n"
"Wyrażenie jest uznawane za „prawdziwe” jeśli nie jest NULL, nie jest puste, "
"oraz różni się od \"0\".\n"
"Porównania dokonuje się z użyciem liczb całkowitych jeśli oba wyrażenia są "
"liczbami całkowitymi, w jednym z następujących formatów:\n"
" - liczby całkowite (przykłady: 5, -7)\n"
@ -1702,13 +1719,13 @@ msgstr ""
" lub maksymalna ilość znaków wyświetlanych na ekranie (format: \"cutscr:"
"max,suffix,string\" lub \"cutscr:+max,suffix,string\")\n"
" 5. odwrócony ciąg (format: \"rev:xxx\")\n"
" 6. kolor (format \"color:xxx\", zobacz „Opis API wtyczek”, funkcja"
" \"color\")\n"
" 6. kolor (format \"color:xxx\", zobacz „Opis API wtyczek”, funkcja \"color"
"\")\n"
" 7. informacja (format: \"info:nazwa,argumenty\", argumenty są opcjonalne)\n"
" 8. obecna data/czas (format: \"date\" lub \"date:format\")\n"
" 9. zmienna środowiskowa (format: \"env:XXX\")\n"
" 10. wyrażenie warunkowe (format: \"if:condition?value_if_true:value_if_false"
"\")\n"
" 10. wyrażenie warunkowe (format: \"if:condition?value_if_true:"
"value_if_false\")\n"
" 11. opcja (format: plik.sekcja.opcja)\n"
" 12. zmienna lokalna w buforze\n"
" 13. nazwa hdatay/zmiennej (wartość jest automatycznie konwertowana na ciąg "
@ -1869,9 +1886,8 @@ msgstr ""
" - wielkość znaków nie ma znaczenia dla wyrażeń, jeśli zaczynają się "
"od \"(?-i)\" wielkość znaków ma znaczenie\n"
"\n"
"Domyślny skrót klawiszowy alt+'=' włącza/wyłącza filtrowanie globalnie i"
" alt+'-' "
"włącza/wyłącza filtrowanie w obecnym buforze.\n"
"Domyślny skrót klawiszowy alt+'=' włącza/wyłącza filtrowanie globalnie i alt"
"+'-' włącza/wyłącza filtrowanie w obecnym buforze.\n"
"\n"
"Najczęściej używane tagi:\n"
" no_filter, no_highlight, no_log, log0..log9 (poziom logowania),\n"
@ -3684,9 +3700,9 @@ msgid ""
"display messages count, other number = display max N messages count (from "
"the highest to lowest priority)"
msgstr ""
"maksymalna ilość wiadomości do wyświetlenia w hotliście dla bufora: 0 = nigdy "
"nie wyświetlaj, inna liczba = wyświetlaj maksymalnie N ilości wiadomości (od "
"najwyższego do najniższego priorytetu)"
"maksymalna ilość wiadomości do wyświetlenia w hotliście dla bufora: 0 = "
"nigdy nie wyświetlaj, inna liczba = wyświetlaj maksymalnie N ilości "
"wiadomości (od najwyższego do najniższego priorytetu)"
msgid ""
"display messages count if number of messages is greater or equal to this "
@ -4687,24 +4703,6 @@ msgstr "Katalogi:"
msgid "default"
msgstr "domyślny"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sBłąd: istnieje juz inna komenda \"%s\" dla wtyczki \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Wykryto odchylenie zegara systemowego (%+ld sekund), ponownie inicjuje "
"wszystkie timery"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sBłąd: zły deskryptor pliku (%d) użyty w hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Kończenie komendy '%s', przekroczono dopuszczalny czas (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr "%sBłąd wysyłania sygnału %d do pid %d: %s"
@ -5263,9 +5261,6 @@ msgstr "Wyślij hsignal: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Wykonuję komendę: \"%s\" w buforze \"%s\""
msgid "Not enough memory for new line"
msgstr "Za mało pamięci na nowy wiersz"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Debugowanie włączone dla myszy (%s)"
@ -5903,13 +5898,11 @@ msgid ""
"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:"
"[${number}]}\""
msgstr ""
"format każdej linii w buforze (uwaga: zawartość jest przetwarzana, zobacz "
"/help buflist); przykład: standardowy format dla elementu paska „buflist” i"
" tylko "
"numer bufora w nawiasach kwadratowych dla pozostałych elementów („buflist2” i"
" „buflist3”): "
"\"${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix"
"}${color_hotlist}${format_name}:"
"format każdej linii w buforze (uwaga: zawartość jest przetwarzana, zobacz /"
"help buflist); przykład: standardowy format dla elementu paska „buflist” i "
"tylko numer bufora w nawiasach kwadratowych dla pozostałych elementów "
"(„buflist2” i „buflist3”): \"${if:${bar_item.name}==buflist?"
"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:"
"[${number}]}\""
msgid ""
@ -7819,8 +7812,8 @@ msgstr ""
"Bez argumentu, wysyłane są \"ls\" i \"list\".\n"
"\n"
"Opcje wspierane przez WeeChat to: account-notify, away-notify, cap-notify, "
"chghost, extended-join, invite-notify, multi-prefix, server-time, "
" userhost-in-names.\n"
"chghost, extended-join, invite-notify, multi-prefix, server-time, userhost-"
"in-names.\n"
"\n"
"Opcje automatycznie włączane na serwerach można ustawić za pomocą opcji irc."
"server_default.capabilities (albo dla konkretnego serwera, opcja irc.server."
@ -8649,8 +8642,8 @@ msgid ""
msgstr ""
"list|listfull [<nazwa>] || add <nazwa> <host>[/<port>] [-temp] [-"
"<opcja>[=<wartość>]] [-no<opcja>]|| copy|rename <nazwa> <nowa_nazwa> || "
"reorder <nazwa> [<nazwa>...] || open <nazwa>|-all [<nazwa>...] || del|"
"keep <nazwa> || deloutq|jump|raw"
"reorder <nazwa> [<nazwa>...] || open <nazwa>|-all [<nazwa>...] || del|keep "
"<nazwa> || deloutq|jump|raw"
msgid ""
" list: list servers (without argument, this list is displayed)\n"
@ -8691,10 +8684,9 @@ msgstr ""
"listfull: wyświetla listę serwerów ze szczegółowymi informacjami dla każdego "
"serwera\n"
" add: tworzy nowy serwer\n"
" nazwa: nazwa serwera, do użytku wewnętrznego i wyświetlania; ta nazwa jest "
"używana do połączenia z serwerem (/connect nazwa) i do ustawiania opcji"
" serwera: "
"irc.server.nazwa.xxx\n"
" nazwa: nazwa serwera, do użytku wewnętrznego i wyświetlania; ta nazwa "
"jest używana do połączenia z serwerem (/connect nazwa) i do ustawiania opcji "
"serwera: irc.server.nazwa.xxx\n"
"host: nazwa albo adres IP serwera, z opcjonalnym numerem portu (domyślnie: "
"6667), wiele adresów należy rozdzielić przecinkiem\n"
" -temp: tworzy serwer tymczasowy (nie zapisany)\n"
@ -12340,10 +12332,9 @@ msgid ""
"protocols: irc, weechat; statuses: connecting, waiting_auth, connected, "
"auth_failed, disconnected)"
msgstr ""
"protokół, status (oba są opcjonalne, dla każdego argumentu „*” oznacza"
" wszystko; "
"protokoły: irc, weechat; statusy: connecting, waiting_auth, connected, "
"auth_failed, disconnected)"
"protokół, status (oba są opcjonalne, dla każdego argumentu „*” oznacza "
"wszystko; protokoły: irc, weechat; statusy: connecting, waiting_auth, "
"connected, auth_failed, disconnected)"
msgid "list of relay clients"
msgstr "lista zdalnych klientów"
@ -13273,6 +13264,7 @@ msgstr ""
"[<nazwa>...] || show <nazwa> || del <nazwa>|-all [<nazwa>...] || restore "
"<nazwa> [<nazwa>...] || default -yes || monitor [<filtr>]"
#, fuzzy
msgid ""
" list: list triggers (without argument, this list is displayed)\n"
" listfull: list triggers with detailed info for each trigger\n"
@ -13281,13 +13273,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -13339,7 +13333,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -13891,12 +13885,11 @@ msgid ""
"xfer.network.fast_send set to off); on the other hand, disabling send of "
"acks may prevent a freeze if the acks are not sent immediately to the sender"
msgstr ""
"wysyła ack podczas odbierania plików; jeśli wyłączone przesyłanie może się"
" zawiesić "
"jeśli nadawca czeka na ack (na przykład WeeChat wysyłający plik z opcją "
"xfer.network.fast_send ustawioną na off); z drugiej strony, wyłączenie tej"
" opcji może "
"zapobiec zawieszeniu jeśli ack nie zostaną wysłane od razu do nadawcy"
"wysyła ack podczas odbierania plików; jeśli wyłączone przesyłanie może się "
"zawiesić jeśli nadawca czeka na ack (na przykład WeeChat wysyłający plik z "
"opcją xfer.network.fast_send ustawioną na off); z drugiej strony, wyłączenie "
"tej opcji może zapobiec zawieszeniu jeśli ack nie zostaną wysłane od razu do "
"nadawcy"
msgid ""
"speed limit for sending files, in kilo-bytes by second (0 means no limit)"
@ -14038,6 +14031,9 @@ msgstr "%s%s: przekroczono czas na \"%s\" z %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: nie można połączyć: niespodziewany błąd (%d)"
#~ msgid "Not enough memory for new line"
#~ msgstr "Za mało pamięci na nowy wiersz"
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "
#~ "buflist)"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:36+0200\n"
"Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n"
"Language-Team: Portuguese <>\n"
@ -125,6 +125,24 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Constantes"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sErro: outro comando \"%s\" já existe para o plugin \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErro: descritor de ficheiro incorreto (%d) usado em hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fim do comando '%s', tempo limite atingido (%.1fs)"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Detetada discrepância no relógio do sistema (%+ld segundos), a reinicializar "
"todos os temporizadores"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -4636,24 +4654,6 @@ msgstr "Diretórios:"
msgid "default"
msgstr "predefinição"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sErro: outro comando \"%s\" já existe para o plugin \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Detetada discrepância no relógio do sistema (%+ld segundos), a reinicializar "
"todos os temporizadores"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErro: descritor de ficheiro incorreto (%d) usado em hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr "Fim do comando '%s', tempo limite atingido (%.1fs)"
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr "%sErro ao enviar o sinal %d ao pid %d: %s"
@ -5218,9 +5218,6 @@ msgstr "A enviar o hsignal: \"%s\""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "A executar o comando: \"%s\" no buffer \"%s\""
msgid "Not enough memory for new line"
msgstr "Memória insuficiente para nova linha"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Depuração ativada para o rato (%s)"
@ -12966,6 +12963,7 @@ msgstr ""
"[<nome>...] || restore <nome> [<nome>...] || default -yes || monitor "
"[<filtro>]"
#, fuzzy
msgid ""
" list: list triggers (without argument, this list is displayed)\n"
" listfull: list triggers with detailed info for each trigger\n"
@ -12974,13 +12972,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -13032,7 +13032,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -13733,6 +13733,9 @@ msgstr "%s%s: tempo limite de \"%s\" com %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: não foi possível conectar: erro inesperado (%d)"
#~ msgid "Not enough memory for new line"
#~ msgstr "Memória insuficiente para nova linha"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:37+0200\n"
"Last-Translator: Eduardo Elias <camponez@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -136,6 +136,24 @@ msgstr ""
msgid "Constants"
msgstr ""
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sErro: outro comando \"%s\" já existe para o plugin \"%s\""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErro: descritor de arquivo ruim (%d) usado em hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Distroção no relógio do sistema detectada (%+ld segundos), reinicializando "
"todos os contadores de tempo"
# Common conventions used here:
# hotlist -> lista de atividade
# input -> entrada
@ -4270,24 +4288,6 @@ msgstr ""
msgid "default"
msgstr "valor padrão"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%sErro: outro comando \"%s\" já existe para o plugin \"%s\""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
"Distroção no relógio do sistema detectada (%+ld segundos), reinicializando "
"todos os contadores de tempo"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr "%sErro: descritor de arquivo ruim (%d) usado em hook_fd"
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -4803,9 +4803,6 @@ msgstr ""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Executando comando: \"%s\""
msgid "Not enough memory for new line"
msgstr "Memória insuficiente para nova linha"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr "Depuração habilitada para mouse (%s)"
@ -11661,13 +11658,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -11719,7 +11718,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -12322,6 +12321,9 @@ msgstr "%s%s: tempo esgotado para \"%s\" com %s"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: não foi possível conectar ao remetente"
#~ msgid "Not enough memory for new line"
#~ msgstr "Memória insuficiente para nova linha"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2018-03-31 15:37+0200\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -141,6 +141,22 @@ msgstr ""
msgid "Constants"
msgstr ""
#, fuzzy, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%s игнорирование уже существует\n"
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, fuzzy, c-format
msgid ""
@ -3679,22 +3695,6 @@ msgstr ""
msgid "default"
msgstr " . значение по умолчанию: %d\n"
#, fuzzy, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr "%s игнорирование уже существует\n"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -4226,10 +4226,6 @@ msgstr ""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr "Внутренние команды %s:\n"
#, fuzzy
msgid "Not enough memory for new line"
msgstr "Недостаточно памяти для новой строчки\n"
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr ""
@ -11233,13 +11229,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -11291,7 +11289,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"
@ -11896,6 +11894,10 @@ msgstr "%s нет аргумента для параметра \"%s\"\n"
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s DCC: не могу соединиться с отправителем\n"
#, fuzzy
#~ msgid "Not enough memory for new line"
#~ msgstr "Недостаточно памяти для новой строчки\n"
#, fuzzy
#~ msgid ""
#~ "format of each line with a buffer (note: content is evaluated, see /help "

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\n"
"PO-Revision-Date: 2017-06-26 23:33+0200\n"
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -119,6 +119,22 @@ msgstr "Tür"
msgid "Constants"
msgstr ""
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -3305,22 +3321,6 @@ msgstr ""
msgid "default"
msgstr "varsayılan"
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -3815,9 +3815,6 @@ msgstr ""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr ""
msgid "Not enough memory for new line"
msgstr ""
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr ""
@ -10234,13 +10231,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -10292,7 +10291,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2018-06-14 22:01+0200\n"
"POT-Creation-Date: 2018-08-15 12:31+0200\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"
@ -117,6 +117,22 @@ msgstr ""
msgid "Constants"
msgstr ""
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
msgid ""
@ -3295,22 +3311,6 @@ msgstr ""
msgid "default"
msgstr ""
#, c-format
msgid "%sError: another command \"%s\" already exists for plugin \"%s\""
msgstr ""
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#, c-format
msgid "%sError: bad file descriptor (%d) used in hook_fd"
msgstr ""
#, c-format
msgid "End of command '%s', timeout reached (%.1fs)"
msgstr ""
#, c-format
msgid "%sError sending signal %d to pid %d: %s"
msgstr ""
@ -3805,9 +3805,6 @@ msgstr ""
msgid "Executing command: \"%s\" on buffer \"%s\""
msgstr ""
msgid "Not enough memory for new line"
msgstr ""
#, c-format
msgid "Debug enabled for mouse (%s)"
msgstr ""
@ -10086,13 +10083,15 @@ msgid ""
" addoff: add a trigger (disabled)\n"
" addreplace: add or replace an existing trigger\n"
" name: name of trigger\n"
" hook: signal, hsignal, modifier, print, command, command_run, timer, "
"config, focus\n"
" hook: signal, hsignal, modifier, line, print, command, command_run, "
"timer, config, focus\n"
" arguments: arguments for the hook, depending on hook (separated by "
"semicolons):\n"
" signal: name(s) of signal (required)\n"
" hsignal: name(s) of hsignal (required)\n"
" modifier: name(s) of modifier (required)\n"
" line: buffer type (\"formatted\", \"free\" or \"*\"), list of "
"buffer masks, tags\n"
" print: buffer, tags, message, strip colors\n"
" command: command (required), description, arguments, "
"description of arguments, completion\n"
@ -10144,7 +10143,7 @@ msgid ""
" 2. replace text using POSIX extended regular expression(s) (if defined in "
"trigger)\n"
" 3. execute command(s) (if defined in trigger)\n"
" 4. exit with a return code (except for modifiers and focus)\n"
" 4. exit with a return code (except for modifier, line and focus)\n"
" 5. perform post action\n"
"\n"
"Examples (you can also look at default triggers with /trigger listdefault):\n"