1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-17 08:34:46 +02:00

Compare commits

..

13 Commits

Author SHA1 Message Date
Sébastien Helleu 6494deb29c Version 1.9.1 2017-09-23 13:08:45 +02:00
Sébastien Helleu 05a9875f81 relay: fix send of "PART" command in backlog (irc protocol)
(cherry picked from commit cf51849ac5)
2017-09-23 12:57:42 +02:00
Sébastien Helleu f30d556e25 buflist: fix crash in auto-scroll of bar when the buflist item is not the first item in the bar
(cherry picked from commit f851246ff6)
2017-09-23 12:41:53 +02:00
Sébastien Helleu f105c6f0b5 logger: call strftime before replacing buffer local variables 2017-09-23 11:38:17 +02:00
Sébastien Helleu 1206a7bbe4 Version 1.9 2017-06-25 10:20:52 +02:00
Sébastien Helleu 77d1175026 doc: update Polish auto-generated files 2017-06-24 15:00:44 +02:00
Krzysztof Korościk 49b70911b0 doc: updated polish translation 2017-06-24 12:18:42 +02:00
Krzysztof Korościk 3976fa33a1 po: updated polish translation 2017-06-24 12:01:27 +02:00
Sébastien Helleu 6a8d2e5044 doc: update German auto-generated files 2017-06-24 06:55:35 +02:00
Nils Görs a78d97e2d9 core: update German translations 2017-06-24 00:57:25 +02:00
Sébastien Helleu 1318f1b72e doc: update German auto-generated files 2017-06-23 15:51:33 +02:00
Nils Görs ceb5351eb8 core: update German translations 2017-06-23 15:48:58 +02:00
Sébastien Helleu b3dd47edd8 buflist: add variable ${format_name} in bar item evaluation and option buflist.format.name (issue #1020) 2017-06-23 12:00:34 +02:00
39 changed files with 404 additions and 477 deletions
+11 -1
View File
@@ -15,8 +15,17 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
(file _ReleaseNotes.adoc_ in sources).
[[v1.9.1]]
== Version 1.9.1 (2017-09-23)
Bug fixes::
* buflist: fix crash in auto-scroll of bar when the buflist item is not the first item in the bar
* logger: call strftime before replacing buffer local variables
* relay: fix send of "PART" command in backlog (irc protocol)
[[v1.9]]
== Version 1.9 (under dev)
== Version 1.9 (2017-06-25)
New features::
@@ -31,6 +40,7 @@ Improvements::
* core: allow index for hdata arrays in evaluation of expressions
* buflist: display a warning when the script "buffers.pl" is loaded
* buflist: add support of char "~" in option buflist.look.sort for case insensitive comparison
* buflist: add variable `${format_name}` in bar item evaluation and option buflist.format.name (issue #1020)
* buflist: add variables `${current_buffer}` and `${merged}` (booleans "0" / "1") in bar item evaluation
* relay: add option "start" in command /relay
* trigger: add "irc_server" and "irc_channel" pointers in data for IRC signal/modifier hooks
+10
View File
@@ -17,6 +17,16 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
(file _ChangeLog.adoc_ in sources).
[[v1.9.1]]
== Version 1.9.1 (2017-09-23)
Bug fix and maintenance release.
[[v1.9]]
== Version 1.9 (2017-06-25)
No release note.
[[v1.8]]
== Version 1.8 (2017-05-13)
+2 -1
View File
@@ -34,9 +34,10 @@ Die folgenden Variablen können in den obigen Optionen genutzt werden:
- ${number}: eingerückte Nummer, zum Beispiel " 1", falls die Anzahl der Buffer zwischen 10 und 99 liegt
- ${number_displayed}: "1" falls Nummer angezeigt wird, ansonsten "0"
- ${indent}: Einrückung für Name (Channel und private Buffer werden eingerückt) (evaluiert aus Option buflist.format.indent)
- ${format_nick_prefix}: Nick-Präfix mit entsprechender Farbe für einen Channel (evaluiert aus Option buflist.format.nick_prefix)
- ${format_nick_prefix}: Nick-Präfix mit entsprechender Farbe für einen Channel (evaluiert aus Option buflist.format.nick_prefix)
- ${color_nick_prefix}: Farbe für den Nick-Präfix von einem Channel (wird nur genutzt wenn die Option buflist.look.nick_prefix aktiviert ist)
- ${nick_prefix}: der Nick-Präfix für einen Channel (wird nur genutzt falls die Option buflist.look.nick_prefix aktiviert ist)
- ${format_name}: der formatierte Name (evaluiert aus Option buflist.format.name)
- ${name}: der Kurzname (falls einer gesetzt ist), Ersatzweise wird auf den Originalnamen zurückgegriffen
- ${color_hotlist}: die Farbe mit der höchsten Priorität für den entsprechenden Buffer (evaluiert aus Option buflist.format.hotlist_xxx wobei xxx der entsprechende Level ist)
- ${format_hotlist}: die formatierte Hotlist (evaluiert aus Option buflist.format.hotlist)
+7 -1
View File
@@ -6,7 +6,7 @@
** Beschreibung: pass:none[Format für eine Zeile mit einem Buffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
** Standardwert: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"+`
** Standardwert: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
** Beschreibung: pass:none[Format für die Zeile mit dem ausgewählten Buffer (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
@@ -68,6 +68,12 @@
** Werte: beliebige Zeichenkette
** Standardwert: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
* [[option_buflist.format.name]] *buflist.format.name*
** Beschreibung: pass:none[Format für den Namen eines Buffers (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
** Standardwert: `+"${name}"+`
* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
** Beschreibung: pass:none[Format des Nick-Präfix für einen Channel (Hinweis: Inhalt wird evaluiert, siehe /help buflist)]
** Typ: Zeichenkette
@@ -37,6 +37,7 @@ The following variables can be used in these options:
- ${format_nick_prefix}: colored nick prefix for a channel (evaluation of option buflist.format.nick_prefix)
- ${color_nick_prefix}: color of nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${nick_prefix}: nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${format_name}: formatted name (evaluation of option buflist.format.name)
- ${name}: the short name (if set), with a fallback on the name
- ${color_hotlist}: the color depending on the highest hotlist level for the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the level)
- ${format_hotlist}: the formatted hotlist (evaluation of option buflist.format.hotlist)
+7 -1
View File
@@ -6,7 +6,7 @@
** description: pass:none[format of each line with a buffer (note: content is evaluated, see /help buflist)]
** type: string
** values: any string
** default value: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"+`
** default value: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
** description: pass:none[format for the line with current buffer (note: content is evaluated, see /help buflist)]
@@ -68,6 +68,12 @@
** values: any string
** default value: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
* [[option_buflist.format.name]] *buflist.format.name*
** description: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
** type: string
** values: any string
** default value: `+"${name}"+`
* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
** description: pass:none[format for nick prefix on a channel (note: content is evaluated, see /help buflist)]
** type: string
@@ -37,6 +37,7 @@ Les variables suivantes peuvent être utilisées dans ces options :
- ${format_nick_prefix} : le préfixe du pseudo en couleur pour un canal (évaluation de l'option buflist.format.nick_prefix)
- ${color_nick_prefix} : la couleur du préfixe du pseudo pour un canal (défini seulement si l'option buflist.look.nick_prefix est activée)
- ${nick_prefix} : le préfixe du pseudo pour un canal (défini seulement si l'option buflist.look.nick_prefix est activée)
- ${format_name} : le nom formaté (évaluation de l'option buflist.format.name)
- ${name} : le nom court (si défini), sinon le nom
- ${color_hotlist} : la couleur qui dépend du niveau de hotlist le plus élevé pour le tampon (évaluation de l'option buflist.format.hotlist_xxx où xxx est le niveau)
- ${format_hotlist} : la hotlist formatée (évaluation de l'option buflist.format.hotlist)
+7 -1
View File
@@ -6,7 +6,7 @@
** description: pass:none[format pour chaque ligne avec un tampon (note : le contenu est évalué, voir /help buflist)]
** type: chaîne
** valeurs: toute chaîne
** valeur par défaut: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"+`
** valeur par défaut: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
** description: pass:none[format pour la ligne avec le tampon courant (note : le contenu est évalué, voir /help buflist)]
@@ -68,6 +68,12 @@
** valeurs: toute chaîne
** valeur par défaut: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
* [[option_buflist.format.name]] *buflist.format.name*
** description: pass:none[format pour le nom du tampon (note : le contenu est évalué, voir /help buflist)]
** type: chaîne
** valeurs: toute chaîne
** valeur par défaut: `+"${name}"+`
* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
** description: pass:none[format pour un préfixe de pseudo sur un canal (note : le contenu est évalué, voir /help buflist)]
** type: chaîne
@@ -37,6 +37,7 @@ The following variables can be used in these options:
- ${format_nick_prefix}: colored nick prefix for a channel (evaluation of option buflist.format.nick_prefix)
- ${color_nick_prefix}: color of nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${nick_prefix}: nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${format_name}: formatted name (evaluation of option buflist.format.name)
- ${name}: the short name (if set), with a fallback on the name
- ${color_hotlist}: the color depending on the highest hotlist level for the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the level)
- ${format_hotlist}: the formatted hotlist (evaluation of option buflist.format.hotlist)
+7 -1
View File
@@ -6,7 +6,7 @@
** descrizione: pass:none[format of each line with a buffer (note: content is evaluated, see /help buflist)]
** tipo: stringa
** valori: qualsiasi stringa
** valore predefinito: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"+`
** valore predefinito: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
** descrizione: pass:none[format for the line with current buffer (note: content is evaluated, see /help buflist)]
@@ -68,6 +68,12 @@
** valori: qualsiasi stringa
** valore predefinito: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
* [[option_buflist.format.name]] *buflist.format.name*
** descrizione: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
** tipo: stringa
** valori: qualsiasi stringa
** valore predefinito: `+"${name}"+`
* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
** descrizione: pass:none[format for nick prefix on a channel (note: content is evaluated, see /help buflist)]
** tipo: stringa
+28 -27
View File
@@ -9,38 +9,39 @@
/buflist bar
refresh
bar: "buflist" バーを追加します
refresh: 強制的に "buflist" バー要素の内容を最新の状態に更新します
bar: add the "buflist" bar
refresh: force the refresh of the "buflist" bar item
各バッファエントリは文字列評価 (書式は /help eval を参照してください) を使って表示されます、以下のオプションで指定します:
- buflist.look.display_conditions: バッファをリスト内に表示する条件
- buflist.format.buffer: 現在のバッファ以外のバッファを表示する書式
- buflist.format.buffer_current: 現在のバッファを表示する書式
The lines with buffers are displayed using string evaluation (see /help eval for the format), with these options:
- buflist.look.display_conditions: conditions to display a buffer in the list
- buflist.format.buffer: format for a buffer which is not current buffer
- buflist.format.buffer_current: format for the current buffer
以下は上記オプションで使用可能な変数です:
- バッファデータ (完全なリストは API リファレンスの hdata "buffer" を参照してください)、例:
The following variables can be used in these options:
- buffer data (see hdata "buffer" in API doc for a complete list), for example:
- ${buffer.number}
- ${buffer.name}
- ${buffer.full_name}
- ${buffer.short_name}
- ${buffer.nicklist_nicks_count}
- irc_server: IRC サーバデータ、IRC バッファのみで定義 (API リファレンスの hdata "irc_server" を参照してください)
- irc_channel: IRC チャンネルデータ、IRC チャンネルバッファのみで定義 (API リファレンスの hdata "irc_channel" を参照してください)
- buflist プラグインが利便性向上の目的で追加した変数:
- ${format_buffer}: buflist.format.buffer オプションの評価結果; 例えば単に背景色を変えるなどの目的で、この変数を buflist.format.buffer_current オプションの中で使うことも可能です。
- ${current_buffer}: ブール値 ("0" または "1")、対象のバッファが現在のバッファの場合に "1"; 次のように条件中で使うことができます: ${if:${current_buffer}?...:...}
- ${merged}: ブール値 ("0" または "1")、対象のバッファが他のバッファとマージされていた場合に "1"; 次のように条件中で使うことができます: ${if:${merged}?...:...}
- ${format_number}: 区切り文字を付けたインデント済み番号 (buflist.format.number オプションの評価結果)
- ${number}: インデント済み番号、例えば 10 から 99 番のバッファがある場合に " 1"
- ${number_displayed}: 番号が表示される場合に "1"、それ以外の場合に "0"
- ${indent}: 名前用のインデント (チャンネルとプライベートバッファがインデントされます)
- ${format_nick_prefix}: チャンネルにおける色付きニックネームプレフィックス (buflist.format.nick_prefix オプションの評価結果)
- ${color_nick_prefix}: チャンネルにおけるニックネームプレフィックスの色 (buflist.look.nick_prefix オプションが有効化された場合のみ設定されます)
- ${nick_prefix}: チャンネルにおけるニックネームプレフィックス (buflist.look.nick_prefix オプションが有効化された場合のみ設定されます)
- ${name}: 短縮名 (設定済みの場合)、未設定の場合には名前
- ${color_hotlist}: 対象バッファのホットリストレベルの最大値に対応する色 (buflist.format.hotlist_xxx オプションの評価結果、xxx がレベル)
- ${format_hotlist}: 評価後のホットリスト (buflist.format.hotlist オプションの評価結果)
- ${hotlist}: 評価前のホットリスト
- ${hotlist_priority}: "none"、"low"、"message"、"private"、"highlight"
- ${format_lag}: IRC サーババッファの遅延時間、遅延がない場合は空 (buflist.format.lag オプションの評価結果)
- irc_server: IRC server data, defined only on an IRC buffer (see hdata "irc_server" in API doc)
- irc_channel: IRC channel data, defined only on an IRC channel buffer (see hdata "irc_channel" in API doc)
- extra variables added by buflist for convenience:
- ${format_buffer}: the evaluated value of option buflist.format.buffer; this can be used in option buflist.format.buffer_current to just change the background color for example
- ${current_buffer}: a boolean ("0" or "1"), "1" if this is the current buffer; it can be used in a condition: ${if:${current_buffer}?...:...}
- ${merged}: a boolean ("0" or "1"), "1" if the buffer is merged with at least another buffer; it can be used in a condition: ${if:${merged}?...:...}
- ${format_number}: indented number with separator (evaluation of option buflist.format.number)
- ${number}: indented number, for example " 1" if there are between 10 and 99 buffers
- ${number_displayed}: "1" if the number is displayed, otherwise "0"
- ${indent}: indentation for name (channel and private buffers are indented) (evaluation of option buflist.format.indent)
- ${format_nick_prefix}: colored nick prefix for a channel (evaluation of option buflist.format.nick_prefix)
- ${color_nick_prefix}: color of nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${nick_prefix}: nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${format_name}: formatted name (evaluation of option buflist.format.name)
- ${name}: the short name (if set), with a fallback on the name
- ${color_hotlist}: the color depending on the highest hotlist level for the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the level)
- ${format_hotlist}: the formatted hotlist (evaluation of option buflist.format.hotlist)
- ${hotlist}: the raw hotlist
- ${hotlist_priority}: "none", "low", "message", "private" or "highlight"
- ${format_lag}: the lag for an IRC server buffer, empty if there's no lag (evaluation of option buflist.format.lag)
----
+7 -1
View File
@@ -6,7 +6,7 @@
** 説明: pass:none[各バッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
** タイプ: 文字列
** 値: 未制約文字列
** デフォルト値: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"+`
** デフォルト値: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
** 説明: pass:none[現在のバッファの表示書式 (注意: 値は評価されます、/help eval を参照してください)]
@@ -68,6 +68,12 @@
** 値: 未制約文字列
** デフォルト値: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
* [[option_buflist.format.name]] *buflist.format.name*
** 説明: pass:none[format for buffer name (note: content is evaluated, see /help buflist)]
** タイプ: 文字列
** 値: 未制約文字列
** デフォルト値: `+"${name}"+`
* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
** 説明: pass:none[チャンネルにおけるニックネームプレフィックス書式 (注意: 値は評価されます、/help buflist を参照してください)]
** タイプ: 文字列
+28 -27
View File
@@ -9,38 +9,39 @@
/buflist bar
refresh
bar: add the "buflist" bar
refresh: force the refresh of the "buflist" bar item
bar: dodaje pasek "buflist"
refresh: wymusza odświeżenie elementu paska "buflist"
The lines with buffers are displayed using string evaluation (see /help eval for the format), with these options:
- buflist.look.display_conditions: conditions to display a buffer in the list
- buflist.format.buffer: format for a buffer which is not current buffer
- buflist.format.buffer_current: format for the current buffer
Linie z buforami są wyświetlane za pomocą przetwarzania ciągów (zobacz /help eval żeby poznać format), za pomocą tych opcji:
- buflist.look.display_conditions: warunki wyświetlnia buforu na liście
- buflist.format.buffer: format dla buforu nie będącego obecnym buforem
- buflist.format.buffer_current: format format dla obecnego buforu
The following variables can be used in these options:
- buffer data (see hdata "buffer" in API doc for a complete list), for example:
Następujące zmienne mogą być użyte w powyższych opcjach:
- dane buforu (zobacz hdata "buffer" w dokumentacji API dla pełnej listy zmiennych), na przykład:
- ${buffer.number}
- ${buffer.name}
- ${buffer.full_name}
- ${buffer.short_name}
- ${buffer.nicklist_nicks_count}
- irc_server: IRC server data, defined only on an IRC buffer (see hdata "irc_server" in API doc)
- irc_channel: IRC channel data, defined only on an IRC channel buffer (see hdata "irc_channel" in API doc)
- extra variables added by buflist for convenience:
- ${format_buffer}: the evaluated value of option buflist.format.buffer; this can be used in option buflist.format.buffer_current to just change the background color for example
- ${current_buffer}: a boolean ("0" or "1"), "1" if this is the current buffer; it can be used in a condition: ${if:${current_buffer}?...:...}
- ${merged}: a boolean ("0" or "1"), "1" if the buffer is merged with at least another buffer; it can be used in a condition: ${if:${merged}?...:...}
- ${format_number}: indented number with separator (evaluation of option buflist.format.number)
- ${number}: indented number, for example " 1" if there are between 10 and 99 buffers
- ${number_displayed}: "1" if the number is displayed, otherwise "0"
- ${indent}: indentation for name (channel and private buffers are indented) (evaluation of option buflist.format.indent)
- ${format_nick_prefix}: colored nick prefix for a channel (evaluation of option buflist.format.nick_prefix)
- ${color_nick_prefix}: color of nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${nick_prefix}: nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled)
- ${name}: the short name (if set), with a fallback on the name
- ${color_hotlist}: the color depending on the highest hotlist level for the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the level)
- ${format_hotlist}: the formatted hotlist (evaluation of option buflist.format.hotlist)
- ${hotlist}: the raw hotlist
- ${hotlist_priority}: "none", "low", "message", "private" or "highlight"
- ${format_lag}: the lag for an IRC server buffer, empty if there's no lag (evaluation of option buflist.format.lag)
- irc_server: dane serwera IRC, zdefiniowane tylko w buforze IRC (zobacz hdata "irc_server" w dokumentacji API)
- irc_channel: dane kanału IRC, zdefiniowane tylko w buforze kanału IRC (zobacz hdata "irc_channel" w dokumentacji API)
- dodatkowe zmienne dodane dla wygody przez listę buforów:
- ${format_buffer}: przetworzona watość opcji buflist.format.buffer; może to zostać użyte w opcji buflist.format.buffer_current na przykład do zmiany koloru tła
- ${current_buffer}: boolowskie ("0" lub "1"), "1" jeśli jest to obecny bufor; może zostać użyte w warunku: ${if: ${current_buffer}?...:...}
- ${merged}: boolowskie ("0" lub "1"), "1" jeśli bufor jest połączony z przynajmniej jednym innym buforem; może zostać użyte w warunku: ${if:${merged}?...:...}
- ${format_number}: wyrównany numer z separatorem (przetworzona opcja buflist.format.number)
- ${number}: wyrównany numer, na przykład " 1" jeśli buforów jest między 10 a 99
- ${number_displayed}: "1" jeśłi numer jest wyświetlany, w przeciwnym wypadku "0"
- ${indent}: wyrównanie dla nazwy (kanały i bufory prywatne są wyrównywane) (przetworzona opcja buflist.format.indent)
- ${format_nick_prefix}: kolorowy prefiks nicka dla kanału (przetworzona opcja buflist.format.nick_prefix)
- ${color_nick_prefix}: kolor prefiksu nicka dla kanału (ustawiany, jeśli opcja buflist.look.nick_prefix jest włączona)
- ${nick_prefix}: prefix nicka dla kanału (ustawiany, jeśli opcja buflist.look.nick_prefix jest włączona)
- ${format_name}: zformatowana nazwa (przetworzona opcja buflist.format.name)
- ${name}: skrócona nazwa (jeśli ustawiona inaczej zwraca pełną nazwę)
- ${color_hotlist}: kolor zależący od najwyższego poziomu hotlity dla bufora (przetworzona opcja buflist.format.hotlist_xxx, gdziexxx to poziom)
- ${format_hotlist}: zformatowana hotlista (przetworzenie opcji buflist.format.hotlist)
- ${hotlist}: niesformatowana hotlista
- ${hotlist_priority}: "none", "low", "message", "private" lub "highlight"
- ${format_lag}: opóźnienie buforu serwera IRC, puste jeśli nie ma opóźnienia (przetworzona opcja buflist.format.lag)
----
+10 -4
View File
@@ -6,7 +6,7 @@
** opis: pass:none[format każdej linii w buforze (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}"+`
** domyślna wartość: `+"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"+`
* [[option_buflist.format.buffer_current]] *buflist.format.buffer_current*
** opis: pass:none[format linii z obecnym buforem (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
@@ -39,7 +39,7 @@
** domyślna wartość: `+"${color:brown}"+`
* [[option_buflist.format.hotlist_none]] *buflist.format.hotlist_none*
** opis: pass:none[format dla bufora niw znajdującego się na hotliście (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
** opis: pass:none[format dla bufora nie znajdującego się na hotliście (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+"${color:default}"+`
@@ -68,6 +68,12 @@
** wartości: dowolny ciąg
** domyślna wartość: `+" ${color:green}[${color:brown}${lag}${color:green}]"+`
* [[option_buflist.format.name]] *buflist.format.name*
** opis: pass:none[format dla nazwy bufora (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+"${name}"+`
* [[option_buflist.format.nick_prefix]] *buflist.format.nick_prefix*
** opis: pass:none[format dla prefiksu nicka na kanale (uwaga: zawartość jest przetwarzana, zobacz /help buflist)]
** typ: ciąg
@@ -81,7 +87,7 @@
** domyślna wartość: `+"${color:green}${number}${if:${number_displayed}?.: }"+`
* [[option_buflist.look.auto_scroll]] *buflist.look.auto_scroll*
** opis: pass:none[automatically scroll the buflist bar to always see the current buffer (this works only with a bar on the left/right position with a "vertical" filling); this value is the percent number of lines displayed before the current buffer when scrolling (-1 = disable scroll); for example 50 means that after a scroll, the current buffer is at the middle of bar, 0 means on top of bar, 100 means at bottom of bar]
** opis: pass:none[automatycznie przewiń litę kanałów, żeby zawsze wyświetlała obecny bufor (działa tylko, kiedy lita kanałów ma pozycję lewo/prawo z uzupełnianiem "vertical"); ta wartość określa procentowo ilość linii wyświetlanych przed obecnym buforem podczas przewijania (-1 = wyłącz przewijanie); na przykład 50 oznacza, że po przewinięciu obecny bufor jest na środku listy, 0 oznacza górę listy, 100 dół listy]
** typ: liczba
** wartości: -1 .. 100
** domyślna wartość: `+50+`
@@ -135,7 +141,7 @@
** domyślna wartość: `+""+`
* [[option_buflist.look.sort]] *buflist.look.sort*
** opis: pass:none[comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case insensitive comparison; example: "-~short_name" for case insensitive and reverse sort on buffer short name]
** opis: pass:none[oddzielona przecinkami lista pól do sortowania buforów; każde pole to zmienna hdata bufora ("var"), zmienna hdata serwera IRC ("irc_server.var") lub zmienna hdata kanału IRC ("irc_channel.var"); znak "-" użyty przed nazwą pola odwraca kolejność, znak "~" może zostać użyty do porównań niewrażliwych na wielkość liter; przykład: "-~short_name" dla sortowania odwrotnego, niewrażliwego na wielkość liter po skróconej nazwie bufora]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+"number,-active"+`
+33 -33
View File
@@ -7,52 +7,52 @@
----
/relay list|listfull|listrelay
add <name> <port>
del|start|restart|stop <name>
add <nazwa> <port>
del|start|restart|stop <nazwa>
raw
sslcertkey
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)
start: listen on port
restart: close the server socket and listen again on port (clients remain connected)
stop: close the server socket (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
list: wyświetla klienty pośrednika (tylko aktywne)
listfull: wyświetla klienty pośrednika (wszystkie)
listrelay: wyświetla pośredników (nazwa i port)
add: dodaje relay (nasłuchuje na porcie)
del: usuwa relay (klienty zostają połączone)
start: nasłuchuje na portcie
restart: zamyka porta serwera i otwiera go ponownie nasłuchując na nim (klienty zostają połączone)
stop: zamyka gniazdo serwera (klienty zostają połączone)
nazwa: nazwa pośrednika (format poniżej)
port: port używany przez pośrednika
raw: otwiera bufor z nieprzetworzonymi danymi pośrednika
sslcertkey: ustawia certyfikat SSL/hasło używając ścieżki w opcji 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)
Nazwa pośrednika to: [ipv4.][ipv6.][ssl.]<protokół.nazwa>
ipv4: wymusza użycie IPv4
ipv6: wymusza użycie IPv6
ssl: włącza SSL
protokół.nazwa: protokół i nazwa do przekazywania:
- protokół "irc": nazwą jest serwer do współdzielenia (opcjonalne, jeśli nie podane, nazwa serwera musi być wysłana przez klienta w komendzie "PASS", format: "PASS serwer:hasło")
- protokół "weechat" (nazwa nie jest używana)
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: https://weechat.org/download/
Protokół "irc" pozwala dowolnemu klientowi IRC (włączajac w to WeeChat) połączyć się na ustawionym porcie.
Protokół "weechat" pozwala na połączenie się zdalnym interfejsem, lista dostępna pod adresem: https://weechat.org/download/
Without argument, this command opens buffer with list of relay clients.
Bez argumentu komenda otwiera bufor z listą klientów.
Examples:
irc proxy, for server "freenode":
Przykłady:
pośrednik irc dla serwera "freenode":
/relay add irc.freenode 8000
irc proxy, for server "freenode", with SSL:
pośrednik irc dla serwera "freenode", z SSL:
/relay add ssl.irc.freenode 8001
irc proxy, for all servers (client will choose), with SSL:
pośrednik irc dla wszystkich serwerów (klient wybiera) z SSL:
/relay add ssl.irc 8002
weechat protocol:
protokół weechat:
/relay add weechat 9000
weechat protocol with SSL:
protokół weechat z SSL:
/relay add ssl.weechat 9001
weechat protocol with SSL, using only IPv4:
protokół weechat z SSL, używający tylko IPv4:
/relay add ipv4.ssl.weechat 9001
weechat protocol with SSL, using only IPv6:
protokół weechat z SSL, używający tylko IPv6:
/relay add ipv6.ssl.weechat 9001
weechat protocol with SSL, using IPv4 + IPv6:
protokół weechat z SSL, używający IPv4 + IPv6:
/relay add ipv4.ipv6.ssl.weechat 9001
----
+1 -2
View File
@@ -74,9 +74,8 @@ $HOME/.weechat/charset.conf::
$HOME/.weechat/exec.conf::
plik konfiguracyjny wtyczki _exec_
// TRANSLATION MISSING
$HOME/.weechat/fifo.conf::
configuration file for _fifo_ plugin
plik konfiguracyjny wtyczki _fifo_
$HOME/.weechat/irc.conf::
plik konfiguracyjny wtyczki _irc_
+3 -6
View File
@@ -480,12 +480,9 @@ Lista funkcji w API skryptów:
| wyświetlanie |
prefix +
color +
// TRANSLATION MISSING
print (for python: prnt) +
// TRANSLATION MISSING
print_date_tags (for python: prnt_date_tags) +
// TRANSLATION MISSING
print_y (for python: prnt_y) +
print (dla pythona: prnt) +
print_date_tags (dla pythona: prnt_date_tags) +
print_y (dla pythona: prnt_y) +
log_print
| hooks |
+15 -28
View File
@@ -1565,14 +1565,10 @@ Można ją zapisać za pomocą skryptu _buffer_autoset.py_: można go zaintalowa
| kbd:[Alt+PgDn] | Przewiń w dół kilka linii w historii bufora. | `/window scroll_down`
| kbd:[Alt+Home] | Przewiń na górę bufora. | `/window scroll_top`
| kbd:[Alt+End] | Przewiń na dół bufora. | `/window scroll_bottom`
// TRANSLATION MISSING
| kbd:[F1] | Scroll up one page in buflist. | `/bar scroll buflist * -100%`
// TRANSLATION MISSING
| kbd:[F2] | Scroll down one page in buflist. | `/bar scroll buflist * +100%`
// TRANSLATION MISSING
| kbd:[Alt+F1] | Go to the beginning of buflist. | `/bar scroll buflist * b`
// TRANSLATION MISSING
| kbd:[Alt+F2] | Go to the end of buflist. | `/bar scroll buflist * e`
| kbd:[F1] | Przewiń do góry jedną stronę na liście buforów. | `/bar scroll buflist * -100%`
| kbd:[F2] | Przewiń w dół jedną stronę na liście buforów. | `/bar scroll buflist * +100%`
| kbd:[Alt+F1] | Idź na początek listy buforów. | `/bar scroll buflist * b`
| kbd:[Alt+F2] | Idź na koniec listy buforów. | `/bar scroll buflist * e`
| kbd:[Alt+←] +
kbd:[Alt+↑] +
kbd:[Ctrl+p] +
@@ -1698,18 +1694,12 @@ Te skróty używane są w kontekście myszy, w momencie wystąpienia zdarzenia m
| ⇓ | - | chat (bufor skryptów) | Przejdź 5 linii w dół w buforze skryptów. | `/script down 5`
| kbd:[Ctrl+⇑] | - | chat | Przewiń poziomo w lewo. | `/window scroll_horiz -window ${_window_number} -10%`
| kbd:[Ctrl+⇓] | - | chat | Przewiń poziomo w prawo. | `/window scroll_horiz -window ${_window_number} +10%`
// TRANSLATION MISSING
| ◾◽◽ | up / left | buflist | Move buffer to a lower number. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| ◽◽ | down / right | buflist | Move buffer to a higher number. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| ◾◽◽ | - | buflist | Switch to buffer (previously visited buffer if the buffer is the current one). | Signal `buflist_mouse`.
// TRANSLATION MISSING
| ◽◽◾ | - | buflist | Switch to next visited buffer if the buffer is the current one. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| kbd:[Ctrl+⇑] | - | buflist | Switch to previous buffer. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| kbd:[Ctrl+⇓] | - | buflist | Switch to next buffer. | Signal `buflist_mouse`.
| ◾◽◽ | góra / lewo | buflist | Przenieś bufor na niższy numer. | Sygnał `buflist_mouse`.
| ◾◽◽ | dół / prawo | buflist | Przenieś bufor na wyższy numer. | Sygnał `buflist_mouse`.
| ◾◽◽ | - | buflist | Przełącz na bufor (poprzednio odwiedzony bufor, jeśli jest to obecny bufor). | Sygnał `buflist_mouse`.
| ◽◽ | - | buflist | Przełącz na następny odwiedzony bufor, jeśli jest to obecny bufor. | Sygnał `buflist_mouse`.
| kbd:[Ctrl+⇑] | - | buflist | Przełącz na poprzedni bufor. | Sygnał `buflist_mouse`.
| kbd:[Ctrl+⇓] | - | buflist | Przełącz na następny bufor. | Sygnał `buflist_mouse`.
| ◾◽◽ | góra | lista nicków | Przewiń w górę jedna stronę listy nicków. | `/bar scroll nicklist ${_window_number} -100%`
| ◾◽◽ | dół | lista nicków | Przewiń w dół jedna stronę listy nicków. | `/bar scroll nicklist ${_window_number} +100%`
| ◾◽◽ | góra (długo) | lista nicków | Idź na początek listy nicków. | `/bar scroll nicklist ${_window_number} b`
@@ -2587,10 +2577,9 @@ Ustaw proxy dla TOR:
/set irc.server.freenode-tor.proxy "tor"
----
// TRANSLATION MISSING
Ustaw uwierzytelnianie SASL z użyciem ECDSA-NIST256P-CHALLENGE (see the chapter
<<irc_sasl_ecdsa_nist256p_challenge,SASL ECDSA-NIST256P-CHALLENGE>> to generate
a private key):
Ustaw uwierzytelnianie SASL z użyciem ECDSA-NIST256P-CHALLENGE (zobacz rozdział
<<irc_sasl_ecdsa_nist256p_challenge,SASL ECDSA-NIST256P-CHALLENGE>> żeby dowiedzieć
się jak wygenerować klucz prywatny):
----
/set irc.server.freenode-tor.sasl_mechanism ecdsa-nist256p-challenge
@@ -3528,10 +3517,8 @@ są dodawane do tablicy hashy:
[width="100%",cols="3m,2,14",options="header"]
|===
| Zmienna | Typ | Opis
// TRANSLATION MISSING
| irc_server | pointer | Pointer to IRC server (variables in hdata of type "irc_server" can be used, like `${irc_server.name}`).
// TRANSLATION MISSING
| irc_channel | pointer | Pointer to IRC channel (variables in hdata of type "irc_channel" can be used, like `${irc_channel.name}`).
| irc_server | wskaźnik | Wskaźnik na serwer IRC (można użyć zmiennych hdata typu "irc_server" jak `${irc_server.name}`).
| irc_channel | wskaźnik | Wskaźnik na kanał IRC (można użyć zmiennych hdata typu "irc_channel" jak `${irc_channel.name}`).
| server | ciąg | Nazwa serwera (przykład: "freenode").
| tags | ciąg | Tagi w wiadomości (rzadko używane).
| message_without_tags | ciąg | Wiadomość bez tagów.
+8 -20
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-05-13 22:06+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: cs\n"
@@ -4963,6 +4963,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5102,6 +5104,10 @@ msgid ""
"help buflist)"
msgstr "příkaz spuštěný při startu WeeChat, před načtením pluginů"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr "příkaz spuštěný při startu WeeChat, před načtením pluginů"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -11711,21 +11717,3 @@ msgstr "%s%s: vypršel časový limit \"%s\" pro %s"
#, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: nemohu se připojit\" neočekávaná chyba (%d)"
#~ msgid "commands defined by plugins"
#~ msgstr "příkazy definované pluginy"
#~ msgid "weechat commands"
#~ msgstr "příkazy weechat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "příkazy (weechat a pluginů)"
#~ msgid "control debug for core/plugins"
#~ msgstr "spřáva ladění pro jádro/pluginy"
#~ msgid "text color for nicks in chat window"
#~ msgstr "barva textu přezdívky v okně rozhovoru"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s: odstraňuji starou fifo rouru \"%s\""
+12 -3
View File
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-06-15 09:30+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-24 00:57+0200\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <kde-i18n-de@kde.org>\n"
"Language: de\n"
@@ -5859,6 +5859,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5915,11 +5917,13 @@ msgstr ""
" - ${indent}: Einrückung für Name (Channel und private Buffer werden "
"eingerückt) (evaluiert aus Option buflist.format.indent)\n"
" - ${format_nick_prefix}: Nick-Präfix mit entsprechender Farbe für einen "
"Channel (evaluiert aus Option buflist.format.nick_prefix)\n"
"Channel (evaluiert aus Option buflist.format.nick_prefix)\n"
" - ${color_nick_prefix}: Farbe für den Nick-Präfix von einem Channel "
"(wird nur genutzt wenn die Option buflist.look.nick_prefix aktiviert ist)\n"
" - ${nick_prefix}: der Nick-Präfix für einen Channel (wird nur genutzt "
"falls die Option buflist.look.nick_prefix aktiviert ist)\n"
" - ${format_name}: der formatierte Name (evaluiert aus Option buflist."
"format.name)\n"
" - ${name}: der Kurzname (falls einer gesetzt ist), Ersatzweise wird auf "
"den Originalnamen zurückgegriffen\n"
" - ${color_hotlist}: die Farbe mit der höchsten Priorität für den "
@@ -6105,6 +6109,11 @@ msgstr ""
"Format für die Anzeige der Verzögerungsanzeige für IRC Serverbuffer "
"(Hinweis: Inhalt wird evaluiert, siehe /help buflist)"
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"Format für den Namen eines Buffers (Hinweis: Inhalt wird evaluiert, siehe /"
"help buflist)"
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
"buflist)"
+8 -20
View File
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-01-06 22:01+0100\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: es\n"
@@ -5177,6 +5177,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5316,6 +5318,10 @@ msgid ""
"help buflist)"
msgstr "comando ejecutado cuando WeeChat inicia, antes de cargar los plugins"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr "comando ejecutado cuando WeeChat inicia, antes de cargar los plugins"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -11977,21 +11983,3 @@ msgstr "%s%s: tiempo de espera máximo para \"%s\" con %s"
#, fuzzy, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: no es posible conectarse al transmisor"
#~ msgid "commands defined by plugins"
#~ msgstr "comandos definidos por plugins"
#~ msgid "weechat commands"
#~ msgstr "comandos de weechat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "comandos (weechat y plugins)"
#~ msgid "control debug for core/plugins"
#~ msgstr "controla los mensajes de depuración para el núcleo/plugins"
#~ msgid "text color for nicks in chat window"
#~ msgstr "color para los apodos en la ventana de conversación"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s: removiendo vieja tubería fifo \"%s\""
+11 -45
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-06-13 21:17+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@@ -5729,6 +5729,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5788,6 +5790,8 @@ msgstr ""
"(défini seulement si l'option buflist.look.nick_prefix est activée)\n"
" - ${nick_prefix} : le préfixe du pseudo pour un canal (défini seulement "
"si l'option buflist.look.nick_prefix est activée)\n"
" - ${format_name} : le nom formaté (évaluation de l'option buflist.format."
"name)\n"
" - ${name} : le nom court (si défini), sinon le nom\n"
" - ${color_hotlist} : la couleur qui dépend du niveau de hotlist le plus "
"élevé pour le tampon (évaluation de l'option buflist.format.hotlist_xxx où "
@@ -5969,6 +5973,11 @@ msgstr ""
"format pour le lag sur un tampon de serveur IRC (note : le contenu est "
"évalué, voir /help buflist)"
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"format pour le nom du tampon (note : le contenu est évalué, voir /help "
"buflist)"
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
"buflist)"
@@ -13200,46 +13209,3 @@ msgstr "%s%s : délai d'attente dépassé pour \"%s\" avec %s"
#, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s : impossible de se connecter : erreur inattendue (%d)"
#~ msgid ""
#~ "URL for file with list of scripts; by default HTTPS is forced, see option "
#~ "script.scripts.url_force_https"
#~ msgstr ""
#~ "URL pour le fichier avec la liste des scripts ; par défaut HTTPS est "
#~ "forcé, voir l'option script.scripts.url_force_https"
#~ msgid ""
#~ "force use of HTTPS for downloads (index and scripts); you should disable "
#~ "this option only if you have problems with the downloads"
#~ msgstr ""
#~ "forcer l'utilisation de HTTPS pour les téléchargements (index et "
#~ "scripts) ; vous ne devriez désactiver cette option que si vous avez des "
#~ "problèmes avec les téléchargements"
#~ msgid ""
#~ "jump to previous/next visited buffer if you click with left/right mouse "
#~ "button on line with current buffer"
#~ msgstr ""
#~ "sauter au tampon visité avant/après si vous cliquez avec le bouton gauche/"
#~ "droit de la souris sur la ligne avec le tampon courant"
#~ msgid "\"days\" (optional: just return the number of days)"
#~ msgstr "\"days\" (optionnel : retourner juste le nombre de jours)"
#~ msgid "commands defined by plugins"
#~ msgstr "commandes définies par les extensions"
#~ msgid "weechat commands"
#~ msgstr "commandes weechat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "commandes (weechat et extensions)"
#~ msgid "control debug for core/plugins"
#~ msgstr "contrôle du debug pour le cœur/les extensions"
#~ msgid "text color for nicks in chat window"
#~ msgstr "couleur du texte pour les pseudos dans la fenêtre de discussion"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s : suppression du vieux tube \"%s\""
+8 -22
View File
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-01-06 22:03+0100\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: hu\n"
@@ -4501,6 +4501,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -4638,6 +4640,10 @@ msgid ""
"help buflist)"
msgstr "felhasználónév az IRC szerveren"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr "felhasználónév az IRC szerveren"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -11005,23 +11011,3 @@ msgstr "%s hiányzó argumentum a(z) \"%s\" opciónak\n"
#, fuzzy, c-format
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 "commands defined by plugins"
#~ msgstr " (nem található bővítőmodul)\n"
#, fuzzy
#~ msgid "weechat commands"
#~ msgstr "%s belső parancsok:\n"
#, fuzzy
#~ msgid "commands (weechat and plugins)"
#~ msgstr " (nem található bővítőmodul)\n"
#, fuzzy
#~ msgid "text color for nicks in chat window"
#~ msgstr "idő színe a beszédablakban"
#, fuzzy
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s nincs elég memória az információs pult üzenethez\n"
+10 -20
View File
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-01-06 22:04+0100\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: it\n"
@@ -5315,6 +5315,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5476,6 +5478,12 @@ msgstr ""
"password per il server (nota: il contenuto viene valutato, consultare /help "
"eval)"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"nome utente per il server proxy (nota: il contenuto viene valutato, "
"consultare /help eval)"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -12190,21 +12198,3 @@ msgstr "%s%s: timeout per \"%s\" con %s"
#, fuzzy, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: impossibile connettersi al mittente"
#~ msgid "commands defined by plugins"
#~ msgstr "comandi definiti dai plugin"
#~ msgid "weechat commands"
#~ msgstr "comandi di weechat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "comandi (weechat e plugin)"
#~ msgid "control debug for core/plugins"
#~ msgstr "attiva debug per core/plugin"
#~ msgid "text color for nicks in chat window"
#~ msgstr "colore del testo per i nick nella finestra di chat"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s: rimozione della pipe fifo %s precedente"
+11 -34
View File
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-06-15 09:00+0900\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/weechat/tree/master/"
"translation/ja_JP>\n"
@@ -5417,6 +5417,7 @@ msgstr ""
msgid "bar item with list of buffers"
msgstr "バッファのリストを表示するバー要素"
#, fuzzy
msgid ""
" bar: add the \"buflist\" bar\n"
"refresh: force the refresh of the \"buflist\" bar item\n"
@@ -5464,6 +5465,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5699,6 +5702,12 @@ msgstr ""
"IRC サーババッファの遅延時間の表示書式 (注意: 値は評価されます、/help eval を"
"参照してください)"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"ホットリストにないバッファの表示書式 (注意: 値は評価されます、/help eval を参"
"照してください)"
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
"buflist)"
@@ -12693,35 +12702,3 @@ msgstr "%s%s: \"%s\" のタイムアウト %s"
#, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: 接続できません: 未定義のエラー (%d)"
#~ msgid ""
#~ "URL for file with list of scripts; by default HTTPS is forced, see option "
#~ "script.scripts.url_force_https"
#~ msgstr ""
#~ "スクリプトのリストを含むファイルの URL; デフォルトは強制的に HTTPS を使"
#~ "用、オプション script.scripts.url_force_https を参照"
#~ msgid ""
#~ "force use of HTTPS for downloads (index and scripts); you should disable "
#~ "this option only if you have problems with the downloads"
#~ msgstr ""
#~ "ダウンロード (インデックスおよびスクリプト) の際に HTTPS を使うことを強制"
#~ "する; ダウンロードに問題がある場合のみこのオプションを無効化してください"
#~ msgid "commands defined by plugins"
#~ msgstr "プラグインの定義するコマンド"
#~ msgid "weechat commands"
#~ msgstr "weechat コマンド"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "コマンド (weechat とプラグイン)"
#~ msgid "control debug for core/plugins"
#~ msgstr "core やプラグインのデバッグ管理"
#~ msgid "text color for nicks in chat window"
#~ msgstr "チャットウィンドウ内のニックネームのテキスト色"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s: 古い fifo パイプ \"%s\" の削除中"
+39 -45
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-04-08 14:49+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: pl\n"
@@ -5543,11 +5543,14 @@ msgid ""
"script buffers.pl (/script remove buffers.pl) or disable/unload the buflist "
"plugin; see WeeChat release notes for more information"
msgstr ""
"%sbuflist: uwaga: skrypt buffers.pl jest załadowany i dodaje on element z listą "
"buforów podobną do tej z wtyczki buflist; powinieneś odinstalować sktypt buffers.pl "
"(/script remove buffers.pl) lub wyłączyć/wyładować wtyczkę buflist; więcej "
"informacji można znaleźć w informacjach o nowej wersji WeeChat"
msgid "bar item with list of buffers"
msgstr "element paska z listą buforów"
#, fuzzy
msgid ""
" bar: add the \"buflist\" bar\n"
"refresh: force the refresh of the \"buflist\" bar item\n"
@@ -5595,6 +5598,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5607,6 +5612,7 @@ msgid ""
" - ${format_lag}: the lag for an IRC server buffer, empty if there's no "
"lag (evaluation of option buflist.format.lag)"
msgstr ""
" bar: dodaje pasek \"buflist\"\n"
"refresh: wymusza odświeżenie elementu paska \"buflist\"\n"
"\n"
"Linie z buforami są wyświetlane za pomocą przetwarzania ciągów (zobacz /help "
@@ -5631,10 +5637,17 @@ msgstr ""
" - ${format_buffer}: przetworzona watość opcji buflist.format.buffer; "
"może to zostać użyte w opcji buflist.format.buffer_current na przykład do "
"zmiany koloru tła\n"
" - ${current_buffer}: boolowskie (\"0\" lub \"1\"), \"1\" jeśli jest to "
"obecny bufor; może zostać użyte w warunku: ${if: ${current_buffer}?...:...}\n"
" - ${merged}: boolowskie (\"0\" lub \"1\"), \"1\" jeśli bufor jest połączony "
"z przynajmniej jednym innym buforem; może zostać użyte w warunku: ${if:"
"${merged}?...:...}\n"
" - ${format_number}: wyrównany numer z separatorem (przetworzona opcja "
"buflist.format.number)\n"
" - ${number}: wyrównany numer, na przykład \" 1\" jeśli buforów jest "
"między 10 a 99\n"
" - ${number_displayed}: \"1\" jeśłi numer jest wyświetlany, w przeciwnym "
"wypadku \"0\"\n"
" - ${indent}: wyrównanie dla nazwy (kanały i bufory prywatne są "
"wyrównywane) (przetworzona opcja buflist.format.indent)\n"
" - ${format_nick_prefix}: kolorowy prefiks nicka dla kanału (przetworzona "
@@ -5643,12 +5656,16 @@ msgstr ""
"jeśli opcja buflist.look.nick_prefix jest włączona)\n"
" - ${nick_prefix}: prefix nicka dla kanału (ustawiany, jeśli opcja "
"buflist.look.nick_prefix jest włączona)\n"
" - ${format_name}: zformatowana nazwa (przetworzona opcja buflist.format."
"name)\n"
" - ${name}: skrócona nazwa (jeśli ustawiona inaczej zwraca pełną nazwę)\n"
" - ${color_hotlist}: kolor zależący od najwyższego poziomu hotlity dla "
"bufora (przetworzona opcja buflist.format.hotlist_xxx, gdziexxx to poziom)\n"
" - ${format_hotlist}: zformatowana hotlista (przetworzenie opcji buflist."
"format.hotlist)\n"
" - ${hotlist}: niesformatowana hotlista\n"
" - ${hotlist_priority}: \"none\", \"low\", \"message\", \"private\" lub "
"\"highlight\"\n"
" - ${format_lag}: opóźnienie buforu serwera IRC, puste jeśli nie ma "
"opóźnienia (przetworzona opcja buflist.format.lag)"
@@ -5664,6 +5681,11 @@ msgid ""
"that after a scroll, the current buffer is at the middle of bar, 0 means on "
"top of bar, 100 means at bottom of bar"
msgstr ""
"automatycznie przewiń litę kanałów, żeby zawsze wyświetlała obecny bufor (działa "
"tylko, kiedy lita kanałów ma pozycję lewo/prawo z uzupełnianiem \"vertical\"); "
"ta wartość określa procentowo ilość linii wyświetlanych przed obecnym buforem "
"podczas przewijania (-1 = wyłącz przewijanie); na przykład 50 oznacza, że po "
"przewinięciu obecny bufor jest na środku listy, 0 oznacza górę listy, 100 dół listy"
msgid ""
"conditions to display a buffer (note: content is evaluated, see /help "
@@ -5722,7 +5744,6 @@ msgstr ""
"ustawione są jakieś zmienne używane do formatowania wymagające odpowiedniego "
"odświeżania"
#, fuzzy
msgid ""
"comma-separated list of fields to sort buffers; each field is a hdata "
"variable of buffer (\"var\"), a hdata variable of IRC server (\"irc_server."
@@ -5734,7 +5755,9 @@ msgstr ""
"oddzielona przecinkami lista pól do sortowania buforów; każde pole to "
"zmienna hdata bufora (\"var\"), zmienna hdata serwera IRC (\"irc_server.var"
"\") lub zmienna hdata kanału IRC (\"irc_channel.var\"); znak \"-\" użyty "
"przed nazwą pola odwraca kolejność"
"przed nazwą pola odwraca kolejność, znak \"~\" może zostać użyty do porównań "
"niewrażliwych na wielkość liter; przykład: \"-~short_name\" dla sortowania "
" odwrotnego, niewrażliwego na wielkość liter po skróconej nazwie bufora"
msgid ""
"format of each line with a buffer (note: content is evaluated, see /help "
@@ -5786,7 +5809,7 @@ msgid ""
"format for a buffer not in hotlist (note: content is evaluated, see /help "
"buflist)"
msgstr ""
"format dla bufora niw znajdującego się na hotliście (uwaga: zawartość jest "
"format dla bufora nie znajdującego się na hotliście (uwaga: zawartość jest "
"przetwarzana, zobacz /help buflist)"
msgid ""
@@ -5810,6 +5833,10 @@ msgstr ""
"format dla opóźnienia dla buforu serwera IRC (uwaga: zawartość jest "
"przetwarzana, zobacz /help buflist)"
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"format dla nazwy bufora (uwaga: zawartość jest przetwarzana, zobacz /help buflist)"
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
"buflist)"
@@ -10921,15 +10948,13 @@ msgstr "%s%s: relay \"%s\" nie został znaleziony"
msgid "relay control"
msgstr "zarządzanie przesyłaniem"
#, fuzzy
msgid ""
"list|listfull|listrelay || add <name> <port> || del|start|restart|stop "
"<name> || raw || sslcertkey"
msgstr ""
"list|listfull|listrelay || add <nazwa> <port> || del|stop|restart <nazwa> || "
"raw || sslcertkey"
"list|listfull|listrelay || add <nazwa> <port> || del|start|restart|stop "
"<nazwa> || raw || sslcertkey"
#, fuzzy
msgid ""
" list: list relay clients (only active relays)\n"
" listfull: list relay clients (verbose, all relays)\n"
@@ -10986,13 +11011,14 @@ msgstr ""
" listrelay: wyświetla pośredników (nazwa i port)\n"
" add: dodaje relay (nasłuchuje na porcie)\n"
" del: usuwa relay (klienty zostają połączone)\n"
" stop: zamyka gniazdo serwera (klienty zostają połączone)\n"
" start: nasłuchuje na portcie\n"
" restart: zamyka porta serwera i otwiera go ponownie nasłuchując na nim "
"(klienty zostają połączone)\n"
" nazwa: nazwa pośrednika (format poniżej)\n"
" stop: zamyka gniazdo serwera (klienty zostają połączone)\n"
" nazwa: nazwa pośrednika (format poniżej)\n"
" port: port używany przez pośrednika\n"
" raw: otwiera bufor z nieprzetworzonymi danymi pośrednika\n"
" kluczSSL: ustawia certyfikat SSL/hasło używając ścieżki w opcji relay."
" sslcertkey: ustawia certyfikat SSL/hasło używając ścieżki w opcji relay."
"network.ssl_cert_key\n"
"\n"
"Nazwa pośrednika to: [ipv4.][ipv6.][ssl.]<protokół.nazwa>\n"
@@ -12904,35 +12930,3 @@ msgstr "%s%s: przekroczono czas na \"%s\" z %s"
#, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: nie można połączyć: niespodziewany błąd (%d)"
#~ msgid ""
#~ "URL for file with list of scripts; by default HTTPS is forced, see option "
#~ "script.scripts.url_force_https"
#~ msgstr ""
#~ "adres pliku z listą skryptów; domyśłnie wymuszany jest protokół HTTPS, "
#~ "zobacz opcje script.scripts.url_force_https"
#~ msgid ""
#~ "force use of HTTPS for downloads (index and scripts); you should disable "
#~ "this option only if you have problems with the downloads"
#~ msgstr ""
#~ "wymusza użycie HTTPS do pobierania (listy i skryptów); powinieneś "
#~ "wyłączyć tą opcję tylko jeśli występują problemy z pobieraniem"
#~ msgid "commands defined by plugins"
#~ msgstr "komendy zdefiniowane przez wtyczki"
#~ msgid "weechat commands"
#~ msgstr "komendy WeeChat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "komendy (weechata i wtyczek)"
#~ msgid "control debug for core/plugins"
#~ msgstr "kontrola debugu dla rdzenia/wtyczek"
#~ msgid "text color for nicks in chat window"
#~ msgstr "kolor nicków w oknie rozmowy"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s: usuwam stary strumień fifo \"%s\""
+10 -34
View File
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-04-08 14:50+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n"
"Language-Team: Portuguese <>\n"
"Language: pt\n"
@@ -5571,6 +5571,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5725,6 +5727,12 @@ msgid ""
msgstr ""
"palavra-passe para o servidor (nota: o conteúdo é avaliado, ver /help eval)"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"nome de utilizador para usar no servidor (nota: o conteúdo é avaliado, ver /"
"help eval)"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -12823,35 +12831,3 @@ msgstr "%s%s: tempo limite de \"%s\" com %s"
#, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: não foi possível conectar: erro inesperado (%d)"
#~ msgid ""
#~ "URL for file with list of scripts; by default HTTPS is forced, see option "
#~ "script.scripts.url_force_https"
#~ msgstr ""
#~ "URL do ficheiro com a lista de scripts; por omissão é forçado HTTPS, ver "
#~ "a opção script.scripts.url_force_https"
#~ msgid ""
#~ "force use of HTTPS for downloads (index and scripts); you should disable "
#~ "this option only if you have problems with the downloads"
#~ msgstr ""
#~ "forçar uso de HTTPS para transferir (índice e scripts); deve desativar "
#~ "esta opção apenas se tem problemas com as transferências"
#~ msgid "commands defined by plugins"
#~ msgstr "comandos definidos por plugins"
#~ msgid "weechat commands"
#~ msgstr "comandos do weechat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "comandos (weechat e plugins)"
#~ msgid "control debug for core/plugins"
#~ msgstr "controlar depuração do core/plugins"
#~ msgid "text color for nicks in chat window"
#~ msgstr "cor do texto dos nicks na janela de chat"
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s: a remover o pipe fifo antigo \"%s\""
+10 -17
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Eduardo Elias <camponez@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: pt_BR\n"
@@ -5117,6 +5117,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -5278,6 +5280,12 @@ msgstr ""
"comando executado quando o WeeChat inicia, antes do carregamento dos plugins "
"(nota: conteúdo é avaliado, veja /help eval)"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
"comando executado quando o WeeChat inicia, antes do carregamento dos plugins "
"(nota: conteúdo é avaliado, veja /help eval)"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -11478,18 +11486,3 @@ msgstr "%s%s: tempo esgotado para \"%s\" com %s"
#, fuzzy, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s%s: não foi possível conectar ao remetente"
#~ msgid "commands defined by plugins"
#~ msgstr "comandos definidos por plugins"
#~ msgid "weechat commands"
#~ msgstr "comandos do weechat"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "comandos (weechat e plugins)"
#~ msgid "control debug for core/plugins"
#~ msgstr "controlar depuração para core/plugins"
#~ msgid "text color for nicks in chat window"
#~ msgstr "cor do texto para apelidos na janela de conversa"
+8 -22
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-01-06 22:06+0100\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: ru\n"
@@ -4539,6 +4539,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -4676,6 +4678,10 @@ msgid ""
"help buflist)"
msgstr "ник, используемый на IRC сервере"
#, fuzzy
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr "ник, используемый на IRC сервере"
#, fuzzy
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
@@ -11037,23 +11043,3 @@ msgstr "%s нет аргумента для параметра \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr "%s DCC: не могу соединиться с отправителем\n"
#, fuzzy
#~ msgid "commands defined by plugins"
#~ msgstr " (нет pluginа)\n"
#, fuzzy
#~ msgid "weechat commands"
#~ msgstr "Внутренние команды %s:\n"
#, fuzzy
#~ msgid "commands (weechat and plugins)"
#~ msgstr " (нет pluginа)\n"
#, fuzzy
#~ msgid "text color for nicks in chat window"
#~ msgstr "цвет времени в окне чата"
#, fuzzy
#~ msgid "%s: removing old fifo pipe \"%s\""
#~ msgstr "%s недостаточно памяти для сообщения в строке информации\n"
+7 -11
View File
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"PO-Revision-Date: 2017-01-06 22:07+0100\n"
"POT-Creation-Date: 2017-06-23 11:57+0200\n"
"PO-Revision-Date: 2017-06-23 11:58+0200\n"
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: tr\n"
@@ -4104,6 +4104,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -4231,6 +4233,9 @@ msgid ""
"help buflist)"
msgstr ""
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
"buflist)"
@@ -10019,12 +10024,3 @@ msgstr ""
#, c-format
msgid "%s%s: unable to connect: unexpected error (%d)"
msgstr ""
#~ msgid "weechat commands"
#~ msgstr "weechat komutları"
#~ msgid "commands (weechat and plugins)"
#~ msgstr "komutlar (weechat ve eklentiler)"
#~ msgid "text color for nicks in chat window"
#~ msgstr "sohbet penceresindeki rumuzlar için metin rengi"
+6 -1
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2017-06-13 21:16+0200\n"
"POT-Creation-Date: 2017-06-23 11:57+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"
@@ -4089,6 +4089,8 @@ msgid ""
"the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel (set only if the option "
"buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option buflist.format."
"name)\n"
" - ${name}: the short name (if set), with a fallback on the name\n"
" - ${color_hotlist}: the color depending on the highest hotlist level for "
"the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the "
@@ -4216,6 +4218,9 @@ msgid ""
"help buflist)"
msgstr ""
msgid "format for buffer name (note: content is evaluated, see /help buflist)"
msgstr ""
msgid ""
"format for nick prefix on a channel (note: content is evaluated, see /help "
"buflist)"
+10 -1
View File
@@ -104,8 +104,11 @@ buflist_bar_item_bar_can_scroll (struct t_gui_bar *bar)
if (!items_subcount || (items_subcount[0] <= 0))
return 0;
items_name = weechat_hdata_pointer (buflist_hdata_bar, bar, "items_name");
if (!items_name || (strcmp (items_name[0][0], BUFLIST_BAR_ITEM_NAME) != 0))
if (!items_name || !items_name[0] || !items_name[0][0]
|| (strcmp (items_name[0][0], BUFLIST_BAR_ITEM_NAME) != 0))
{
return 0;
}
/* OK, bar can be scrolled! */
return 1;
@@ -316,8 +319,10 @@ buflist_bar_item_buflist_cb (const void *pointer, void *data,
ptr_name = weechat_hdata_string (buflist_hdata_buffer,
ptr_buffer, "short_name");
if (!ptr_name)
{
ptr_name = weechat_hdata_string (buflist_hdata_buffer,
ptr_buffer, "name");
}
if (*buflist[0])
{
@@ -440,6 +445,10 @@ buflist_bar_item_buflist_cb (const void *pointer, void *data,
"indent", ptr_format_indent);
weechat_hashtable_set (buflist_hashtable_extra_vars,
"name", ptr_name);
weechat_hashtable_set (buflist_hashtable_extra_vars,
"format_name",
weechat_config_string (
buflist_config_format_name));
/* hotlist */
ptr_hotlist_format = weechat_config_string (
+2
View File
@@ -120,6 +120,8 @@ buflist_command_init ()
"(set only if the option buflist.look.nick_prefix is enabled)\n"
" - ${nick_prefix}: nick prefix for a channel "
"(set only if the option buflist.look.nick_prefix is enabled)\n"
" - ${format_name}: formatted name (evaluation of option "
"buflist.format.name)\n"
" - ${name}: the short name (if set), with a fallback on the "
"name\n"
" - ${color_hotlist}: the color depending on the highest "
+12 -1
View File
@@ -53,6 +53,7 @@ struct t_config_option *buflist_config_format_hotlist_level_none;
struct t_config_option *buflist_config_format_hotlist_separator;
struct t_config_option *buflist_config_format_indent;
struct t_config_option *buflist_config_format_lag;
struct t_config_option *buflist_config_format_name;
struct t_config_option *buflist_config_format_nick_prefix;
struct t_config_option *buflist_config_format_number;
@@ -463,7 +464,8 @@ buflist_config_init ()
N_("format of each line with a buffer "
"(note: content is evaluated, see /help buflist)"),
NULL, 0, 0,
"${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}",
"${format_number}${indent}${format_nick_prefix}${color_hotlist}"
"${format_name}",
NULL, 0,
NULL, NULL, NULL,
&buflist_config_change_buflist, NULL, NULL,
@@ -562,6 +564,15 @@ buflist_config_init ()
NULL, NULL, NULL,
&buflist_config_change_buflist, NULL, NULL,
NULL, NULL, NULL);
buflist_config_format_name = weechat_config_new_option (
buflist_config_file, ptr_section,
"name", "string",
N_("format for buffer name "
"(note: content is evaluated, see /help buflist)"),
NULL, 0, 0, "${name}", NULL, 0,
NULL, NULL, NULL,
&buflist_config_change_buflist, NULL, NULL,
NULL, NULL, NULL);
buflist_config_format_nick_prefix = weechat_config_new_option (
buflist_config_file, ptr_section,
"nick_prefix", "string",
+1
View File
@@ -51,6 +51,7 @@ extern struct t_config_option *buflist_config_format_hotlist_level_none;
extern struct t_config_option *buflist_config_format_hotlist_separator;
extern struct t_config_option *buflist_config_format_indent;
extern struct t_config_option *buflist_config_format_lag;
extern struct t_config_option *buflist_config_format_name;
extern struct t_config_option *buflist_config_format_nick_prefix;
extern struct t_config_option *buflist_config_format_number;
+43 -43
View File
@@ -295,71 +295,71 @@ logger_get_mask_for_buffer (struct t_gui_buffer *buffer)
char *
logger_get_mask_expanded (struct t_gui_buffer *buffer, const char *mask)
{
char *mask2, *mask_decoded, *mask_decoded2, *mask_decoded3, *mask_decoded4;
char *mask_decoded5;
char *mask2, *mask3, *mask4, *mask5, *mask6, *mask7;
const char *dir_separator;
int length;
time_t seconds;
struct tm *date_tmp;
mask2 = NULL;
mask_decoded = NULL;
mask_decoded2 = NULL;
mask_decoded3 = NULL;
mask_decoded4 = NULL;
mask_decoded5 = NULL;
mask3 = NULL;
mask4 = NULL;
mask5 = NULL;
mask6 = NULL;
mask7 = NULL;
dir_separator = weechat_info_get ("dir_separator", "");
if (!dir_separator)
return NULL;
/* replace date/time specifiers in mask */
length = strlen (mask) + 256 + 1;
mask2 = malloc (length);
if (!mask2)
goto end;
seconds = time (NULL);
date_tmp = localtime (&seconds);
mask2[0] = '\0';
if (strftime (mask2, length - 1, mask, date_tmp) == 0)
mask2[0] = '\0';
/*
* we first replace directory separator (commonly '/') by \01 because
* buffer mask can contain this char, and will be replaced by replacement
* char ('_' by default)
*/
mask2 = weechat_string_replace (mask, dir_separator, "\01");
if (!mask2)
mask3 = weechat_string_replace (mask2, dir_separator, "\01");
if (!mask3)
goto end;
mask_decoded = weechat_buffer_string_replace_local_var (buffer, mask2);
if (!mask_decoded)
mask4 = weechat_buffer_string_replace_local_var (buffer, mask3);
if (!mask4)
goto end;
mask_decoded2 = weechat_string_replace (mask_decoded,
dir_separator,
weechat_config_string (logger_config_file_replacement_char));
if (!mask_decoded2)
mask5 = weechat_string_replace (mask4,
dir_separator,
weechat_config_string (logger_config_file_replacement_char));
if (!mask5)
goto end;
#ifdef __CYGWIN__
mask_decoded3 = weechat_string_replace (mask_decoded2, "\\",
weechat_config_string (logger_config_file_replacement_char));
mask6 = weechat_string_replace (mask5, "\\",
weechat_config_string (logger_config_file_replacement_char));
#else
mask_decoded3 = strdup (mask_decoded2);
mask6 = strdup (mask5);
#endif /* __CYGWIN__ */
if (!mask_decoded3)
if (!mask6)
goto end;
/* restore directory separator */
mask_decoded4 = weechat_string_replace (mask_decoded3,
"\01", dir_separator);
if (!mask_decoded4)
mask7 = weechat_string_replace (mask6,
"\01", dir_separator);
if (!mask7)
goto end;
/* replace date/time specifiers in mask */
length = strlen (mask_decoded4) + 256 + 1;
mask_decoded5 = malloc (length);
if (!mask_decoded5)
goto end;
seconds = time (NULL);
date_tmp = localtime (&seconds);
mask_decoded5[0] = '\0';
strftime (mask_decoded5, length - 1, mask_decoded4, date_tmp);
/* convert to lower case? */
if (weechat_config_boolean (logger_config_file_name_lower_case))
weechat_string_tolower (mask_decoded5);
weechat_string_tolower (mask7);
if (weechat_logger_plugin->debug)
{
@@ -368,22 +368,22 @@ logger_get_mask_expanded (struct t_gui_buffer *buffer, const char *mask)
"decoded mask = \"%s\"",
LOGGER_PLUGIN_NAME,
weechat_buffer_get_string (buffer, "name"),
mask, mask_decoded5);
mask, mask7);
}
end:
if (mask2)
free (mask2);
if (mask_decoded)
free (mask_decoded);
if (mask_decoded2)
free (mask_decoded2);
if (mask_decoded3)
free (mask_decoded3);
if (mask_decoded4)
free (mask_decoded4);
if (mask3)
free (mask3);
if (mask4)
free (mask4);
if (mask5)
free (mask5);
if (mask6)
free (mask6);
return mask_decoded5;
return mask7;
}
/*
+1
View File
@@ -906,6 +906,7 @@ relay_irc_send_channel_backlog (struct t_relay_client *client,
(ptr_host) ? "!" : "",
(ptr_host) ? ptr_host : "",
channel);
break;
case RELAY_IRC_CMD_QUIT:
relay_irc_sendf (client,
"%s:%s%s%s QUIT",
+3 -3
View File
@@ -32,9 +32,9 @@
# devel-patch the patch version of devel (e.g. 2 for version 1.4.2)
#
WEECHAT_STABLE=1.8
WEECHAT_DEVEL=1.9
WEECHAT_DEVEL_FULL=1.9-rc2
WEECHAT_STABLE=1.9.1
WEECHAT_DEVEL=1.9.1
WEECHAT_DEVEL_FULL=1.9.1
if [ $# -lt 1 ]; then
echo >&2 "Syntax: $0 stable|devel|devel-full|devel-major|devel-minor|devel-patch"
+5 -1
View File
@@ -23,7 +23,7 @@
#
%define name weechat
%define version 1.8
%define version 1.9.1
%define release 1
Name: %{name}
@@ -77,6 +77,10 @@ rm -rf $RPM_BUILD_ROOT
%{_prefix}/share/icons/hicolor/32x32/apps/weechat.png
%changelog
* Sat Sep 23 2017 Sébastien Helleu <flashcode@flashtux.org> 1.9.1-1
- Released version 1.9.1
* Sun Jun 25 2017 Sébastien Helleu <flashcode@flashtux.org> 1.9-1
- Released version 1.9
* Sat May 13 2017 Sébastien Helleu <flashcode@flashtux.org> 1.8-1
- Released version 1.8
* Sat Apr 22 2017 Sébastien Helleu <flashcode@flashtux.org> 1.7.1-1