core: fix typos in many comments and some strings

v2.8-utf8proc
Sebastien Helleu 2013-03-17 12:55:20 +01:00
parent 46677c79fc
commit 149c77decd
70 changed files with 228 additions and 217 deletions

View File

@ -219,7 +219,7 @@
** Werte: none, next, near_server (Standardwert: `none`)
* [[option_irc.look.nick_color_force]] *irc.look.nick_color_force*
** Beschreibung: `erzwingt für einen Nick eine spezielle Farbe. Die mittels Streuwertfunktion aus dem Nicknamen generierte Nickfarbe findet für diese Nicks keine Anwendung (Format:"Nick1:Farbe1;Nick2:Farbe2"). Bei der Schreibweise der Nicks wird sowohl nach Groß- und Kleinschreibung unterschieden und ebenso kann man die Nicks nur mit Kleinbuchstaben schreiben.`
** Beschreibung: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette (Standardwert: `""`)
@ -304,7 +304,7 @@
** Werte: on, off (Standardwert: `on`)
* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask*
** Beschreibung: `Verzögerung (in Minuten) um Join Mitteilungen rückwirkend anzuzeigen, falls diese mittels "irc_smart_filter" unterdrückt wurden. Sollte ein Nick während der vorgegeben Zeit etwas im Channel schreiben, dann wird seine Join Mitteilung angezeigt. Dies bezieht sich auf Nachrichten, eine Notice, Änderungen am Topic oder falls er den Nick wechselt (0 = deaktiviert: join-Mitteilungen bleiben verborgen)`
** Beschreibung: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** Typ: integer
** Werte: 0 .. 10080 (Standardwert: `30`)

View File

@ -207,40 +207,40 @@ infolists: zeigt Information über die Infolists an
/eval [-n] <expression>
[-n] <expression1> <operator> <expression2>
-n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben (debug Modus)
expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format ${variable} werden ersetzt (siehe unten)
operator: ein logischer oder vergleichender Operand:
- logische Operanden:
&& boolean "und"
|| boolean "oder"
- vergleichende Operanden:
== gleichl
!= nicht gleich
<= kleiner oder gleich
< kleiner
>= größer oder gleich
> größer
=~ stimmt mit regulärem Ausdruck überein
!~ stimmt NICHT mit regulärem Ausdruck überein
-n: display result without sending it to buffer (debug mode)
expression: expression to evaluate, variables with format ${variable} are replaced (see below)
operator: a logical or comparison operator:
- logical operators:
&& boolean "and"
|| boolean "or"
- comparison operators:
== equal
!= not equal
<= less or equal
< less
>= greater or equal
> greater
=~ is matching regex
!~ is NOT matching regex
Ein Ausdruck gilt als "wahr", sofern das Ergebnis nicht NULL, nicht leer und von "0" abweichend ist.
Der Vergleich findet zwischen zwei Integer statt, sofern die beiden Ausdrücke gültige Integer-Werte sind.
Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel:
An expression is considered as "true" if it is not NULL, not empty, and different from "0".
The comparison is made using integers if the two expressions are valid integers.
To force a string comparison, add double quotes around each expression, for example:
50 > 100 ==> 0
"50" > "100" ==> 1
Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität:
1. der Name einer Option (file.section.option)
2. der Name der lokalen Variablen für Buffer
3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette konvertiert), Standardmäßig wird für "window" und "buffer" das aktuelle Fenster/Buffer verwendet.
Das Format für hdata:
hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und fragt eine Variable nach der anderen ab (weitere hdata können folgen)
hdata(list).var1.var2...: startet hdata mittels einer Liste, zum Beispiel:
${buffer[gui_buffers].full_name}: der vollständige Name des ersten Buffers, in der verknüpften Liste aller Buffer
${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der verknüpften Liste aller Erweiterungen
Die vorhandenen Namen für hdata und Variablen sind in der "Anleitung für API Erweiterung", Bereich "weechat_hdata_get". beschrieben
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority :
1. the name of an option (file.section.option)
2. the name of a local variable in buffer
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata(list).var1.var2...: start with a hdata using a list, for example:
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
Beispiele:
Examples:
/eval -n ${weechat.look.scroll_amount} ==> 3
/eval -n ${window} ==> 0x2549aa0
/eval -n ${window.buffer} ==> 0x2549320

View File

@ -219,7 +219,7 @@
** values: none, next, near_server (default value: `none`)
* [[option_irc.look.nick_color_force]] *irc.look.nick_color_force*
** description: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); lookup for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
** description: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
** type: string
** values: any string (default value: `""`)
@ -304,7 +304,7 @@
** values: on, off (default value: `on`)
* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask*
** description: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick jas joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** description: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** type: integer
** values: 0 .. 10080 (default value: `30`)

View File

@ -229,7 +229,7 @@ To force a string comparison, add double quotes around each expression, for exam
50 > 100 ==> 0
"50" > "100" ==> 1
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of prioity :
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority :
1. the name of an option (file.section.option)
2. the name of a local variable in buffer
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.

View File

@ -235,7 +235,7 @@ Des variables sont remplacées dans l'expression, en utilisant le format ${varia
3. le nom d'un hdata/variable (la valeur est automatiquement convertie en chaîne), par défaut "window" et "buffer" pointent vers la fenêtre et le tampon courants.
Le format du hdata peut être le suivant :
hdata.var1.var2...: démarrer avec un hdata (le pointeur doit être connu), et demander les variables l'une après l'autre (d'autres hdata peuvent être suivis)
hdata(list).var1.var2...: démarrer avec un hdata en utlisant une liste, par exemple :
hdata(list).var1.var2...: démarrer avec un hdata en utilisant une liste, par exemple :
${buffer[gui_buffers].full_name}: nom complet du premier tampon dans la liste chaînée des tampons
${plugin[weechat_plugins].name}: nom de la première extension dans la liste chaînée des extensions
Pour le nom du hdata et des variables, voir la "Référence API extension", fonction "weechat_hdata_get".

View File

@ -219,7 +219,7 @@
** valori: none, next, near_server (valore predefinito: `none`)
* [[option_irc.look.nick_color_force]] *irc.look.nick_color_force*
** descrizione: `forza colore per alcuni nick: l'hash calcolato con il nick per trovare il colore non verrà usato per questi nick (il formato è: "nick1:color1;nick2:color2"); la ricerca dei nick è prima sensibile alle maiuscole, poi con le minuscole, per cui è possibile usare solo le minuscole per i nick in questa opzione`
** descrizione: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
** tipo: stringa
** valori: qualsiasi stringa (valore predefinito: `""`)
@ -304,7 +304,7 @@
** valori: on, off (valore predefinito: `on`)
* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask*
** descrizione: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick jas joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** descrizione: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** tipo: intero
** valori: 0 .. 10080 (valore predefinito: `30`)

View File

@ -229,7 +229,7 @@ To force a string comparison, add double quotes around each expression, for exam
50 > 100 ==> 0
"50" > "100" ==> 1
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of prioity :
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority :
1. the name of an option (file.section.option)
2. the name of a local variable in buffer
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.

View File

@ -219,7 +219,7 @@
** 値: none, next, near_server (デフォルト値: `none`)
* [[option_irc.look.nick_color_force]] *irc.look.nick_color_force*
** 説明: `ニックネーム色を強制するニックネーム: ニックネームから計算されるハッシュを元にした色を利用しない (フォーマット: "nick1:color1;nick2:color2"); オプションで指定された通りのニックネーム、これを小文字化したニックネームの順で検索を行う。そのため、このオプションのニックネーム部分には小文字を使うと良い。`
** 説明: `force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)
@ -304,7 +304,7 @@
** 値: on, off (デフォルト値: `on`)
* [[option_irc.look.smart_filter_join_unmask]] *irc.look.smart_filter_join_unmask*
** 説明: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick jas joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** 説明: `delay for unmasking a join message that was filtered with tag "irc_smart_filter" (in minutes): if a nick has joined max N minutes ago and then says something on channel (message, notice or update on topic), the join is unmasked, as well as nick changes after this join (0 = disable: never unmask a join)`
** タイプ: 整数
** 値: 0 .. 10080 (デフォルト値: `30`)

View File

@ -207,40 +207,40 @@ infolists: display infos about infolists
/eval [-n] <expression>
[-n] <expression1> <operator> <expression2>
-n: 結果をバッファに送信せずに表示 (デバッグモード)
expression: 評価する式、フォーマット、${variable} 型のフォーマットの変数は置換されます (以下を参照)
operator: 論理演算子や比較演算子:
- 論理演算子:
&& ブール演算の "and"
|| ブール演算の "or"
- 比較演算子:
== 等しい
!= 等しくない
<= 以下
< より少ない
>= 以上
> より大きい
=~ 正規表現にマッチ
!~ 正規表現にマッチしない
-n: display result without sending it to buffer (debug mode)
expression: expression to evaluate, variables with format ${variable} are replaced (see below)
operator: a logical or comparison operator:
- logical operators:
&& boolean "and"
|| boolean "or"
- comparison operators:
== equal
!= not equal
<= less or equal
< less
>= greater or equal
> greater
=~ is matching regex
!~ is NOT matching regex
式が NULL でない場合、空でない場合、"0" でない場合、式は "真" と評価されます。
両方の式が有効な整数である場合、比較は整数を使って行われます。
文字列比較を強制するには、それぞれの式をダブルクォートで囲みます、例えば:
An expression is considered as "true" if it is not NULL, not empty, and different from "0".
The comparison is made using integers if the two expressions are valid integers.
To force a string comparison, add double quotes around each expression, for example:
50 > 100 ==> 0
"50" > "100" ==> 1
式中の ${variable} 型のフォーマットの変数は置換さます。変数は以下の優先順位に従います。
1. オプションの名前 (file.section.option)
2. バッファのローカル変数の名前
3. hdata の名前/変数 (値は自動的に文字列に変換されます)、デフォルトでは "window" と "buffer" は現在のウィンドウ/バッファを指します。
hdata のフォーマットは以下の 1 つです:
hdata.var1.var2...: hdata (ポインタは既知) で始まり、1 個ずつ変数を続ける (他の hdata を続けることも可能)
hdata(list).var1.var2...: リストを使って hdata を始める、例:
${buffer[gui_buffers].full_name}: バッファリストにリンクされた最初のバッファのフルネーム
${plugin[weechat_plugins].name}: プラグインリストにリンクされた最初のプラグインの名前
hdata と変数の名前については、"プラグイン API リファレンス" の "weechat_hdata_get" 関数を参照してください。
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority :
1. the name of an option (file.section.option)
2. the name of a local variable in buffer
3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
Format for hdata can be one of following:
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
hdata(list).var1.var2...: start with a hdata using a list, for example:
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
:
Examples:
/eval -n ${weechat.look.scroll_amount} ==> 3
/eval -n ${window} ==> 0x2549aa0
/eval -n ${window.buffer} ==> 0x2549320

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-16 17:49+0100\n"
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1258,7 +1258,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -5946,8 +5946,8 @@ msgstr "zobrazit mezeru pokud mód přezdívkz není (částečný)op/voice"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"vynutit barvu u některých přezdívek: hash spočítaný z přezdívky pro nalezení "
@ -6126,7 +6126,7 @@ msgstr "povolit chytrý filter pro \"join\" zprávy"
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
@ -1287,6 +1287,7 @@ msgstr "wertet einen Ausdruck aus und gibt das Resultat im Buffer aus"
msgid "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
msgstr "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
#, fuzzy
msgid ""
" -n: display result without sending it to buffer (debug mode)\n"
"expression: expression to evaluate, variables with format ${variable} are "
@ -1315,7 +1316,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -6522,10 +6523,11 @@ msgstr ""
"es wird ein Leerzeichen anstelle eines Nickmodus verwendet, falls kein "
"Nickmodus ((half)op/voice [@%+]) vorhanden ist"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"erzwingt für einen Nick eine spezielle Farbe. Die mittels Streuwertfunktion "
@ -6752,9 +6754,10 @@ msgstr ""
msgid "enable smart filter for \"join\" messages"
msgstr "aktiviert einen intelligenten Filter für \"join\" Nachrichten"
#, fuzzy
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1292,7 +1292,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -6164,10 +6164,11 @@ msgstr ""
"mostrar un espacio si el modo de usuario esta activado pero el usuario no "
"tiene modo (no es op, voz, ...)"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"fuerza color para algunos apodos: hash calculado con el apodo para encontrar "
@ -6371,7 +6372,7 @@ msgstr "habilitar el filtro inteligente para mensajes \"join\""
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"PO-Revision-Date: 2013-03-16 17:49+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 12:46+0100\n"
"Last-Translator: Sebastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@ -1287,7 +1287,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -1355,7 +1355,7 @@ msgstr ""
" hdata.var1.var2...: démarrer avec un hdata (le pointeur doit être connu), "
"et demander les variables l'une après l'autre (d'autres hdata peuvent être "
"suivis)\n"
" hdata(list).var1.var2...: démarrer avec un hdata en utlisant une liste, "
" hdata(list).var1.var2...: démarrer avec un hdata en utilisant une liste, "
"par exemple :\n"
" ${buffer[gui_buffers].full_name}: nom complet du premier tampon dans la "
"liste chaînée des tampons\n"
@ -6347,8 +6347,8 @@ msgstr ""
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"force la couleur pour certains pseudos: le hash calculé avec le pseudo pour "
@ -6569,7 +6569,7 @@ msgstr "activer le filtre intelligent pour les messages \"join\""
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-16 17:50+0100\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1188,7 +1188,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -5501,8 +5501,8 @@ msgstr "szóköz megjelenítése, ha a mód nem (fél)operátor/voice"
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
@ -5659,7 +5659,7 @@ msgstr "új üzenetet tartalmazó ablak színe"
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Marco Paolone <marcopaolone@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1279,7 +1279,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -6166,10 +6166,11 @@ msgid ""
"voice, ...)"
msgstr "mostra spazio se il nick non è in modalità (half)op/voice"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"forza colore per alcuni nick: l'hash calcolato con il nick per trovare il "
@ -6386,7 +6387,7 @@ msgstr "abilita filtro smart per i messaggi \"join\" (entrata)"
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/WeeChat>\n"
@ -1235,6 +1235,7 @@ msgstr "式を評価して結果をバッファに送信"
msgid "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
msgstr "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
#, fuzzy
msgid ""
" -n: display result without sending it to buffer (debug mode)\n"
"expression: expression to evaluate, variables with format ${variable} are "
@ -1263,7 +1264,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -6128,10 +6129,11 @@ msgstr ""
"ニックネームモードが有効でニックネームモードを持っていない (オペレータでな"
"い、voice 権がない) 場合にはこれを空白で表示する"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"ニックネーム色を強制するニックネーム: ニックネームから計算されるハッシュを元"
@ -6332,7 +6334,7 @@ msgstr "\"join\" メッセージのスマートフィルタを有効化"
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -29,7 +29,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"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
#, c-format
@ -1264,6 +1265,7 @@ msgstr "przetwarza wyrażenie i wysyła wynik do buforu"
msgid "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
msgstr "[-n] <wyrażenie> || [-n] <wyrażenie1> <operator> <wyrażenie2>"
#, fuzzy
msgid ""
" -n: display result without sending it to buffer (debug mode)\n"
"expression: expression to evaluate, variables with format ${variable} are "
@ -1292,7 +1294,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -6251,10 +6253,11 @@ msgstr ""
"wyświetl spację jeśli wyświetlanie atrybutów dla nicków jest włączone, ale "
"nick nie ma atrybutu (brak opa, voice, ...)"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"wymusza kolory dla niektórych nicków: hash połączony z nickiem w celu "
@ -6463,7 +6466,7 @@ msgstr "włącza mądre filtrowanie dla wiadomości \"join\""
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-17 08:20+0100\n"
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1325,7 +1325,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -5683,8 +5683,8 @@ msgstr "mostra espaço se o modo do apelido não é (half)op/voice"
#, fuzzy
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
"forçar cor para alguns apelidos: hash computado com apelido para encontar "
@ -5841,7 +5841,7 @@ msgstr ""
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-03-16 17:50+0100\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -29,7 +29,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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Poedit-Bookmarks: -1,-1,608,-1,-1,-1,-1,-1,-1,-1\n"
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
@ -1208,7 +1209,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -5522,8 +5523,8 @@ msgstr "оставлять пробел, если ник не op/voice"
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
@ -5680,7 +5681,7 @@ msgstr "цвет текущего окна с сообщениями"
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.1-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2013-03-16 16:35+0100\n"
"POT-Creation-Date: 2013-03-17 12:45+0100\n"
"PO-Revision-Date: 2013-02-14 18:20+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1063,7 +1063,7 @@ msgid ""
" \"50\" > \"100\" ==> 1\n"
"\n"
"Some variables are replaced in expression, using the format ${variable}, "
"variable can be, by order of prioity :\n"
"variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically converted to string), "
@ -4784,8 +4784,8 @@ msgstr ""
msgid ""
"force color for some nicks: hash computed with nickname to find color will "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); "
"lookup for nicks is with exact case then lower case, so it's possible to use "
"not be used for these nicks (format is: \"nick1:color1;nick2:color2\"); look "
"up for nicks is with exact case then lower case, so it's possible to use "
"only lower case for nicks in this option"
msgstr ""
@ -4935,7 +4935,7 @@ msgstr ""
msgid ""
"delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N minutes ago "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N minutes ago "
"and then says something on channel (message, notice or update on topic), the "
"join is unmasked, as well as nick changes after this join (0 = disable: "
"never unmask a join)"

View File

@ -1926,7 +1926,7 @@ command_help_list_plugin_commands (struct t_weechat_plugin *plugin,
snprintf (str_format, sizeof (str_format),
" %%-%ds", max_length);
/* auto compute number of colums, max size is 90% of chat width */
/* auto compute number of columns, max size is 90% of chat width */
cols = ((gui_current_window->win_chat_width * 90) / 100) / (max_length + 1);
if (cols == 0)
cols = 1;
@ -5118,7 +5118,7 @@ COMMAND_CALLBACK(upgrade)
exec_args[3] = strdup (weechat_home);
execvp (exec_args[0], exec_args);
/* this code should not be reached if execvp is ok */
/* this code should not be reached if execvp is OK */
string_iconv_fprintf (stderr, "\n\n*****\n");
string_iconv_fprintf (stderr,
_("***** Error: exec failed (program: \"%s\"), exiting WeeChat"),
@ -6113,7 +6113,7 @@ command_init ()
" 50 > 100 ==> 0\n"
" \"50\" > \"100\" ==> 1\n\n"
"Some variables are replaced in expression, using the "
"format ${variable}, variable can be, by order of prioity :\n"
"format ${variable}, variable can be, by order of priority :\n"
" 1. the name of an option (file.section.option)\n"
" 2. the name of a local variable in buffer\n"
" 3. a hdata name/variable (the value is automatically "

View File

@ -44,7 +44,7 @@ struct t_config_option;
struct t_config_file
{
struct t_weechat_plugin *plugin; /* plugin which created this cfg */
char *name; /* name (exemple: "weechat") */
char *name; /* name (example: "weechat") */
char *filename; /* filename (without path) */
/* (example: "weechat.conf") */
FILE *file; /* file pointer */
@ -123,7 +123,7 @@ struct t_config_option
void *value; /* value */
int null_value_allowed; /* null value allowed ? */
int (*callback_check_value) /* called to check value before */
(void *data, /* assiging new value */
(void *data, /* assigning new value */
struct t_config_option *option,
const char *value);
void *callback_check_value_data; /* data sent to check callback */

View File

@ -64,7 +64,7 @@ int debug_dump_active = 0;
void
debug_dump (int crash)
{
/* prevent reentrance */
/* prevent reentrancy */
if (debug_dump_active)
exit (EXIT_FAILURE);
@ -473,7 +473,7 @@ debug_infolists ()
gui_chat_printf (NULL, "");
gui_chat_printf (NULL, "%d infolists in memory (%s)", count,
(count == 0) ?
"this is ok!" :
"this is OK!" :
"WARNING: this is probably a memory leak in WeeChat or "
"plugins/scripts!");

View File

@ -518,7 +518,7 @@ eval_expression_internal (const char *expr, struct t_hashtable *pointers,
}
pos++;
}
/* closing parenthese not found */
/* closing parenthesis not found */
if (pos[0] != ')')
goto end;
sub_expr = string_strndup (expr2 + 1, pos - expr2 - 1);

View File

@ -522,7 +522,7 @@ hook_command_build_completion (struct t_hook_command *hook_command)
}
/*
* build strings with concatentaion of items from different templates
* build strings with concatenation of items from different templates
* for each argument: these strings will be used when completing argument
* if we can't find which template to use (for example for first argument)
*/
@ -546,7 +546,7 @@ hook_command_build_completion (struct t_hook_command *hook_command)
hook_command->cplt_template_args_concat[i] = malloc (length);
if (hook_command->cplt_template_args_concat[i])
{
/* concatene items with "|" as separator */
/* concatenate items with "|" as separator */
weelist_remove_all (list);
hook_command->cplt_template_args_concat[i][0] = '\0';
for (j = 0; j < hook_command->cplt_num_templates; j++)
@ -1476,7 +1476,7 @@ hook_process_child (struct t_hook *hook_process)
if (HOOK_PROCESS(hook_process, options))
{
/*
* count number of arguments given in the hashable options,
* count number of arguments given in the hashtable options,
* keys are: "arg1", "arg2", ...
*/
while (1)
@ -1539,7 +1539,7 @@ hook_process_child (struct t_hook *hook_process)
execvp (exec_args[0], exec_args);
}
/* should not be executed if execvp was ok */
/* should not be executed if execvp was OK */
if (exec_args)
string_free_split (exec_args);
fprintf (stderr, "Error with command '%s'\n",

View File

@ -157,8 +157,8 @@ struct t_hook_command
char ***cplt_template_args; /* arguments for each template */
/* concatenation of arg N for each template */
int cplt_template_num_args_concat; /* number of concatened arguments */
char **cplt_template_args_concat; /* concatened arguments */
int cplt_template_num_args_concat; /* number of concatenated arguments */
char **cplt_template_args_concat; /* concatenated arguments */
};
/* hook command run */

View File

@ -236,7 +236,7 @@ network_pass_httpproxy (struct t_proxy *proxy, int sock, const char *address,
if (CONFIG_STRING(proxy->options[PROXY_OPTION_USERNAME])
&& CONFIG_STRING(proxy->options[PROXY_OPTION_USERNAME])[0])
{
/* authentification */
/* authentication */
snprintf (authbuf, sizeof (authbuf), "%s:%s",
CONFIG_STRING(proxy->options[PROXY_OPTION_USERNAME]),
(CONFIG_STRING(proxy->options[PROXY_OPTION_PASSWORD])) ?
@ -249,7 +249,7 @@ network_pass_httpproxy (struct t_proxy *proxy, int sock, const char *address,
}
else
{
/* no authentification */
/* no authentication */
length = snprintf (buffer, sizeof (buffer),
"CONNECT %s:%d HTTP/1.0\r\n\r\n", address, port);
}
@ -264,7 +264,7 @@ network_pass_httpproxy (struct t_proxy *proxy, int sock, const char *address,
if (memcmp (buffer, "HTTP/", 5) || memcmp (buffer + 9, "200", 3))
return 0;
/* connection ok */
/* connection OK */
return 1;
}
@ -309,7 +309,7 @@ network_resolve (const char *hostname, char *ip, int *version)
freeaddrinfo (res);
/* resolution ok */
/* resolution OK */
return 1;
}
@ -350,7 +350,7 @@ network_pass_socks4proxy (struct t_proxy *proxy, int sock, const char *address,
if (network_recv_with_retry (sock, buffer, sizeof (buffer), 0) < 2)
return 0;
/* connection ok */
/* connection OK */
if ((buffer[0] == 0) && (buffer[1] == 90))
return 1;
@ -511,7 +511,7 @@ network_pass_socks5proxy (struct t_proxy *proxy, int sock, const char *address,
return 0;
}
/* connection ok */
/* connection OK */
return 1;
}
@ -579,7 +579,7 @@ network_connect (int sock, const struct sockaddr *addr, socklen_t addrlen)
/* for non-blocking sockets, the connect() may fail with EINPROGRESS,
* if this happens, we wait for writability on socket and check
* the option SO_ERROR, which is 0 if connect is ok (see man connect)
* the option SO_ERROR, which is 0 if connect is OK (see man connect)
*/
while (1)
{
@ -962,7 +962,7 @@ network_connect_child (struct t_hook *hook_connect)
status_str[0] = '0' + WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND;
/* try all IP addresses found, stop when connection is ok */
/* try all IP addresses found, stop when connection is OK */
sock = -1;
for (i = 0; i < num_hosts; i++)
{
@ -1327,7 +1327,7 @@ network_connect_child_read_cb (void *arg_hook_connect, int fd)
{
if (buffer[0] - '0' == WEECHAT_HOOK_CONNECT_OK)
{
/* connection ok, read IP address */
/* connection OK, read IP address */
buf_size[5] = '\0';
num_read = read (HOOK_CONNECT(hook_connect, child_read),
buf_size, 5);

View File

@ -1491,7 +1491,7 @@ string_split_command (const char *command, char separator)
buffer[str_idx] = '\0';
str_idx = -1;
p = buffer;
/* strip white spaces a the begining of the line */
/* strip white spaces a the beginning of the line */
while (*p == ' ') p++;
if (p && p[0])
array[arr_idx++] = strdup (p);

View File

@ -82,7 +82,7 @@ version_get_git ()
}
/*
* Returns the WeeCht version + the git version (between brackets, and only if
* Returns the WeeChat version + the git version (between brackets, and only if
* it is not empty).
*
* Examples:

View File

@ -262,7 +262,7 @@ weechat_parse_args (int argc, char *argv[])
{
/*
* Electric-fence is not working fine when gnutls loads
* certificates and valgrind reports many memory errors with gnutls.
* certificates and Valgrind reports many memory errors with gnutls.
* This option disables the init/deinit of gnutls,
* it must NOT be used for other purposes!
*/
@ -482,7 +482,7 @@ main (int argc, char *argv[])
hdata_init (); /* initialize hdata */
hook_init (); /* initialize hooks */
debug_init (); /* hook signals for debug */
gui_main_pre_init (&argc, &argv); /* pre-initiliaze interface */
gui_main_pre_init (&argc, &argv); /* pre-initialize interface */
command_init (); /* initialize WeeChat commands */
completion_init (); /* add core completion hooks */
gui_key_init (); /* init keys */

View File

@ -464,7 +464,7 @@ gui_chat_display_word (struct t_gui_window *window,
length_align = gui_line_get_align (window->buffer, line, 0, 0);
if ((window->win_chat_cursor_x == 0)
&& (*lines_displayed > 0)
/* FIXME: modify arbitraty value for non aligning messages on time/nick? */
/* FIXME: modify arbitrary value for non aligning messages on time/nick? */
&& (length_align < (window->win_chat_width - 5)))
{
if (!simulate)
@ -1108,7 +1108,7 @@ gui_chat_display_line (struct t_gui_window *window, struct t_gui_line *line,
if ((window->win_chat_cursor_x + word_length_with_spaces > gui_chat_get_real_width (window))
&& (word_length <= gui_chat_get_real_width (window) - line_align))
{
/* spaces + word too long for current line but ok for next line */
/* spaces + word too long for current line but OK for next line */
gui_chat_display_new_line (window, num_lines, count,
&lines_displayed, simulate);
/* apply styles before jumping to start of word */

View File

@ -551,7 +551,7 @@ gui_key_read_cb (void *data, int fd)
{
if (accept_paste)
{
/* user is ok for pasting text, let's paste! */
/* user is OK for pasting text, let's paste! */
gui_key_paste_accept ();
}
else if (cancel_paste)

View File

@ -346,7 +346,7 @@ gui_main_loop ()
while (!weechat_quit)
{
/* reload config, if SIGHUP reveived */
/* reload config, if SIGHUP received */
if (gui_reload_config)
{
gui_reload_config = 0;

View File

@ -2245,7 +2245,7 @@ gui_window_set_title (const char *title)
{
printf ("\033&f0k%dD%s", (int)(strlen(title) + 1), title);
}
/* the following term supports the xterm excapes */
/* the following terminals support the xterm escape codes */
else if ((strncmp (envterm, "xterm", 5) == 0)
|| (strncmp (envterm, "rxvt", 4) == 0)
|| (strcmp (envterm, "Eterm") == 0)
@ -2272,7 +2272,7 @@ gui_window_set_title (const char *title)
{
printf ("\033&f0k%dD%s", (int)strlen("Terminal"), "Terminal");
}
/* the following term supports the xterm excapes */
/* the following terminals support the xterm escape codes */
else if ((strncmp (envterm, "xterm", 5) == 0)
|| (strncmp (envterm, "rxvt", 4) == 0)
|| (strcmp (envterm, "Eterm") == 0)

View File

@ -245,7 +245,7 @@ gui_bar_get_min_height (struct t_gui_bar *bar)
}
/*
* Checks if "add_size" is ok for bar.
* Checks if "add_size" is OK for bar.
*
* Returns:
* 1: new size is OK
@ -287,7 +287,7 @@ gui_bar_check_size_add (struct t_gui_bar *bar, int add_size)
}
}
/* new size ok */
/* new size OK */
return 1;
}

View File

@ -1871,7 +1871,7 @@ gui_buffer_search_by_partial_name (const char *plugin, const char *name)
if (!name || !name[0])
return gui_current_window->buffer;
/* 0: mathces beginning of buffer name, 1: in the middle, 2: the end */
/* 0: matches beginning of buffer name, 1: in the middle, 2: the end */
buffer_partial_match[0] = NULL;
buffer_partial_match[1] = NULL;
buffer_partial_match[2] = NULL;
@ -2416,7 +2416,7 @@ gui_buffer_move_to_number (struct t_gui_buffer *buffer, int number)
if (number < 1)
number = 1;
/* buffer number is already ok ? */
/* buffer number is already OK ? */
if (number == buffer->number)
return;

View File

@ -494,7 +494,7 @@ gui_completion_get_matching_template (struct t_gui_completion *completion,
* template, for example with these templates (command /set):
* %(config_options) %(config_option_values)
* diff %(config_options)|%*
* if first argument is "diff", the match is ok (second template)
* if first argument is "diff", the match is OK (second template)
* if first argument is not "diff", we will fallback on the first
* template containing "%" (here first template)
*/
@ -1068,7 +1068,7 @@ gui_completion_complete (struct t_gui_completion *completion)
}
/*
* if we was on last completion in list, then recomplete, starting from
* if we was on last completion in list, then complete again, starting from
* first matching item
*/
if (completion->word_found && (completion->position >= 0))

View File

@ -41,7 +41,7 @@ struct t_gui_completion
char *base_command; /* cmd with arg to complete (can be NULL) */
int base_command_arg_index; /* # arg to complete (if context=cmd arg) */
char *base_word; /* word to complete (when Tab was pressed) */
int base_word_pos; /* beggining of base word */
int base_word_pos; /* beginning of base word */
int position; /* position where Tab was pressed */
char *args; /* command line args (including base word) */
int direction; /* +1=search next word, -1=previous word */

View File

@ -30,7 +30,7 @@ struct t_gui_focus_info
struct t_gui_line *chat_line; /* line in chat area */
int chat_line_x; /* x in line */
char *chat_word; /* word at (x,y) */
char *chat_bol; /* beginnong of line until (x,y) */
char *chat_bol; /* beginning of line until (x,y) */
char *chat_eol; /* (x,y) until end of line */
struct t_gui_bar_window *bar_window; /* bar window found */
char *bar_item; /* bar item found */

View File

@ -46,7 +46,7 @@ struct t_gui_hotlist *gui_hotlist = NULL;
struct t_gui_hotlist *last_gui_hotlist = NULL;
struct t_gui_buffer *gui_hotlist_initial_buffer = NULL;
int gui_add_hotlist = 1; /* 0 is for temporarly disable */
int gui_add_hotlist = 1; /* 0 is for temporarily disable */
/* hotlist add for all buffers */
@ -308,7 +308,7 @@ gui_hotlist_add (struct t_gui_buffer *buffer,
if (priority > GUI_HOTLIST_MAX)
priority = GUI_HOTLIST_MAX;
/* check if priority is ok according to buffer notify level value */
/* check if priority is OK according to buffer notify level value */
if (!gui_hotlist_check_buffer_notify (buffer, priority))
return NULL;

View File

@ -1124,7 +1124,7 @@ gui_line_add (struct t_gui_buffer *buffer, time_t date,
WEECHAT_HOOK_SIGNAL_POINTER, buffer);
}
/* add mixed line, if buffer is attched to at least one other buffer */
/* add mixed line, if buffer is attached to at least one other buffer */
if (buffer->mixed_lines)
{
gui_line_mixed_add (buffer->mixed_lines, new_line->data);

View File

@ -395,7 +395,7 @@ weechat_aspell_check_word (struct t_gui_buffer *buffer,
buffer_type = weechat_buffer_get_string (buffer, "localvar_type");
if (buffer_type && (strcmp (buffer_type, "private") == 0))
{
/* check seld nick */
/* check self nick */
buffer_nick = weechat_buffer_get_string (buffer, "localvar_nick");
if (buffer_nick && (weechat_strcasecmp (buffer_nick, word) == 0))
return 1;
@ -664,7 +664,7 @@ weechat_aspell_modifier_cb (void *data, const char *modifier,
if (weechat_aspell_string_is_url (ptr_string))
{
/*
* word is an URL, then it is ok, and search for next space
* word is an URL, then it is OK, and search for next space
* (will be end of word)
*/
word_ok = 1;

View File

@ -154,7 +154,7 @@ fifo_create ()
/* create FIFO pipe, writable for user only */
if (mkfifo (fifo_filename, 0600) == 0)
{
/* open FIFO pipe in read-only, non blockingmode */
/* open FIFO pipe in read-only, non-blocking mode */
if ((fifo_fd = open (fifo_filename,
O_RDONLY | O_NONBLOCK)) != -1)
{

View File

@ -131,7 +131,7 @@ weechat_guile_api_scm_to_string (SCM str,
}
/*
* Frees all alloacated strings in "guile_strings".
* Frees all allocated strings in "guile_strings".
*/
void

View File

@ -969,7 +969,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
plugin_script_display_short_list (weechat_guile_plugin,
guile_scripts);
/* init ok */
/* init OK */
return WEECHAT_RC_OK;
}

View File

@ -350,7 +350,7 @@ irc_channel_new (struct t_irc_server *server, int channel_type,
"irc_channel_opened" : "irc_pv_opened",
WEECHAT_HOOK_SIGNAL_POINTER, new_buffer);
/* all is ok, return address of new channel */
/* all is OK, return address of new channel */
return new_channel;
}

View File

@ -42,7 +42,7 @@ struct t_irc_channel_speaking
struct t_irc_channel
{
int type; /* channel type */
char *name; /* name of channel (exemple: "#abc") */
char *name; /* name of channel (example: "#abc") */
char *topic; /* topic of channel (host for pv) */
char *modes; /* channel modes */
int limit; /* user limit (0 is limit not set) */

View File

@ -783,7 +783,7 @@ irc_command_connect_one_server (struct t_irc_server *server,
server->reconnect_join = (server->channels) ? 1 : 0;
}
/* connect ok */
/* connect OK */
return 1;
}
@ -1483,7 +1483,7 @@ irc_command_disconnect_one_server (struct t_irc_server *server,
/* ask refresh for "away" item */
weechat_bar_item_update ("away");
/* disconnect ok */
/* disconnect OK */
return 1;
}
@ -3719,7 +3719,7 @@ irc_command_reconnect_one_server (struct t_irc_server *server,
server->reconnect_join = (server->channels) ? 1 : 0;
}
/* reconnect ok */
/* reconnect OK */
return 1;
}

View File

@ -2120,7 +2120,7 @@ irc_config_init ()
"nick_color_force", "string",
N_("force color for some nicks: hash computed with nickname "
"to find color will not be used for these nicks (format is: "
"\"nick1:color1;nick2:color2\"); lookup for nicks is with "
"\"nick1:color1;nick2:color2\"); look up for nicks is with "
"exact case then lower case, so it's possible to use only lower "
"case for nicks in this option"),
NULL, 0, 0, "", NULL, 0, NULL, NULL,
@ -2350,7 +2350,7 @@ irc_config_init ()
irc_config_file, ptr_section,
"smart_filter_join_unmask", "integer",
N_("delay for unmasking a join message that was filtered with tag "
"\"irc_smart_filter\" (in minutes): if a nick jas joined max N "
"\"irc_smart_filter\" (in minutes): if a nick has joined max N "
"minutes ago and then says something on channel (message, notice or "
"update on topic), the join is unmasked, as well as nick changes "
"after this join (0 = disable: never unmask a join)"),

View File

@ -540,7 +540,7 @@ irc_info_get_infolist_cb (void *data, const char *infolist_name,
}
else
{
/* build list with notify list of all servers matchin arguments */
/* build list with notify list of all servers matching arguments */
for (ptr_server = irc_servers; ptr_server;
ptr_server = ptr_server->next_server)
{

View File

@ -163,7 +163,7 @@ irc_mode_channel_update (struct t_irc_server *server,
{
case 'A': /* always argument */
case 'B': /* always argument */
case 'C': /* argumment if set */
case 'C': /* argument if set */
ptr_arg = (current_arg < argc) ?
argv[current_arg] : NULL;
break;
@ -334,7 +334,7 @@ irc_mode_channel_set (struct t_irc_server *server,
ptr_arg = (current_arg < argc) ?
argv[current_arg] : NULL;
break;
case 'C': /* argumment if set */
case 'C': /* argument if set */
ptr_arg = ((set_flag == '+') && (current_arg < argc)) ?
argv[current_arg] : NULL;
break;

View File

@ -671,7 +671,7 @@ irc_nick_new (struct t_irc_server *server, struct t_irc_channel *channel,
/* add nick to buffer nicklist */
irc_nick_nicklist_add (server, channel, new_nick);
/* all is ok, return address of new nick */
/* all is OK, return address of new nick */
return new_nick;
}
@ -801,7 +801,7 @@ irc_nick_free_all (struct t_irc_server *server, struct t_irc_channel *channel)
irc_nick_free (server, channel, channel->nicks);
}
/* sould be zero, but prevent any bug :D */
/* should be zero, but prevent any bug :D */
channel->nicks_count = 0;
}

View File

@ -2061,7 +2061,7 @@ IRC_PROTOCOL_CALLBACK(001)
date, nick, address, host, command,
ignored, argc, argv, argv_eol);
/* connection to IRC server is ok! */
/* connection to IRC server is OK! */
server->is_connected = 1;
server->reconnect_delay = 0;
if (server->hook_timer_connection)
@ -3802,7 +3802,7 @@ IRC_PROTOCOL_CALLBACK(353)
/*
* for a channel without buffer, prepare a string that will be built
* with nicks and colors (argc-args is the number of nicks)
* with nicks and colors (argc - args is the number of nicks)
*/
if (!ptr_channel)
{

View File

@ -56,7 +56,7 @@ struct t_irc_redirect
/* redirected */
int assigned_to_command; /* 1 if assigned to a command */
time_t start_time; /* time when command is sent to server */
/* (this is begining of this redirect) */
/* (this is beginning of this redirect) */
struct t_hashtable *cmd_start; /* command(s) starting redirection */
/* (can be NULL or empty) */
struct t_hashtable *cmd_stop; /* command(s) stopping redirection */

View File

@ -2650,7 +2650,7 @@ irc_server_timer_connection_cb (void *data, int remaining_calls)
/*
* Callback for SASL authentication timer: it is called if there is a timeout
* with SASL authentication (if SASL authentication is ok or failed, then hook
* with SASL authentication (if SASL authentication is OK or failed, then hook
* timer is removed before this callback is called).
*/

View File

@ -173,7 +173,7 @@ struct t_irc_server
char *isupport; /* copy of message 005 (ISUPPORT) */
char *prefix_modes; /* prefix modes from msg 005 (eg "ohv") */
char *prefix_chars; /* prefix chars from msg 005 (eg "@%+") */
int nick_max_length; /* max lenth of nick (from msg 005) */
int nick_max_length; /* max length of nick (from msg 005) */
int casemapping; /* casemapping from msg 005 */
char *chantypes; /* chantypes from msg 005 (eg "&#") */
char *chanmodes; /* chanmodes from msg 005 */

View File

@ -860,7 +860,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
plugin_script_display_short_list (weechat_lua_plugin,
lua_scripts);
/* init ok */
/* init OK */
return WEECHAT_RC_OK;
}

View File

@ -990,7 +990,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
weechat_hook_signal ("quit", &weechat_perl_signal_quit_upgrade_cb, NULL);
weechat_hook_signal ("upgrade", &weechat_perl_signal_quit_upgrade_cb, NULL);
/* init ok */
/* init OK */
return WEECHAT_RC_OK;
}
@ -1007,7 +1007,7 @@ weechat_plugin_end (struct t_weechat_plugin *plugin)
perl_quiet = 0;
#ifndef MULTIPLICITY
/* free perl intepreter */
/* free perl interpreter */
if (perl_main)
{
perl_destruct (perl_main);

View File

@ -1297,7 +1297,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
plugin_script_display_short_list (weechat_python_plugin,
python_scripts);
/* init ok */
/* init OK */
return WEECHAT_RC_OK;
}

View File

@ -1391,7 +1391,7 @@ relay_irc_recv (struct t_relay_client *client, const char *data)
goto end;
}
/* check if connection to server is ok */
/* check if connection to server is OK */
infolist_server = weechat_infolist_get ("irc_server", NULL,
client->protocol_args);
if (infolist_server)

View File

@ -29,7 +29,7 @@ struct t_relay_irc_data
{
char *address; /* client address (used when sending */
/* data to client) */
int password_ok; /* password received and ok? */
int password_ok; /* password received and OK? */
char *nick; /* nick for client */
int user_received; /* command "USER" received */
int connected; /* 1 if client is connected as IRC */

View File

@ -174,7 +174,7 @@ relay_client_handshake_timer_cb (void *data, int remaining_calls)
if (rc == GNUTLS_E_SUCCESS)
{
/* handshake ok, set status to "connected" */
/* handshake OK, set status to "connected" */
weechat_unhook (client->hook_timer_handshake);
client->hook_timer_handshake = NULL;
relay_client_set_status (client, RELAY_STATUS_CONNECTED);

View File

@ -148,7 +148,7 @@ relay_weechat_protocol_is_sync (struct t_relay_client *ptr_client,
return ((*ptr_flags) & flags) ? 1 : 0;
/*
* buffer not found at all in hashtable (neither name, neitner "*")
* buffer not found at all in hashtable (neither name, neither "*")
* => it is NOT synchronized
*/
return 0;

View File

@ -35,7 +35,7 @@ enum t_relay_weechat_compression
struct t_relay_weechat_data
{
int password_ok; /* password received and ok? */
int password_ok; /* password received and OK? */
int compression; /* compression type */
int nicklist_diff; /* (TEMPORARY) nicklist diff enabled?*/

View File

@ -1174,7 +1174,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
plugin_script_display_short_list (weechat_ruby_plugin,
ruby_scripts);
/* init ok */
/* init OK */
return WEECHAT_RC_OK;
}

View File

@ -1361,7 +1361,7 @@ script_action_run ()
ptr_script = ptr_script->next_script)
{
/*
* if script is intalled, with new version available,
* if script is installed, with new version available,
* and not held, then upgrade it
*/
if ((ptr_script->status & SCRIPT_STATUS_INSTALLED)

View File

@ -339,7 +339,7 @@ weechat_tcl_load (const char *filename)
"parsing file \"%s\": %s"),
weechat_prefix ("error"), TCL_PLUGIN_NAME, filename,
Tcl_GetStringFromObj (Tcl_GetObjResult (interp), &i));
/* this ok, maybe "register" was called, so not return */
/* this OK, maybe "register" was called, so not return */
/* return 0; */
}
@ -817,7 +817,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
plugin_script_display_short_list (weechat_tcl_plugin,
tcl_scripts);
/* init ok */
/* init OK */
return WEECHAT_RC_OK;
}

View File

@ -83,7 +83,7 @@ xfer_dcc_send_file_child (struct t_xfer *xfer)
recv (xfer->sock, (char *) &ack, 4, 0);
xfer->ack = ntohl (ack);
/* DCC send ok? */
/* DCC send OK? */
if ((xfer->pos >= xfer->size)
&& (xfer->ack >= xfer->size))
{
@ -161,8 +161,8 @@ xfer_dcc_send_file_child (struct t_xfer *xfer)
}
/*
* if send if ok since 2 seconds or more, and that no ack was received,
* then consider it's ok
* if send if OK since 2 seconds or more, and that no ACK was received,
* then consider it's OK
*/
if ((sent_ok != 0) && (new_time > sent_ok + 2))
{

View File

@ -324,7 +324,7 @@ xfer_close (struct t_xfer *xfer, enum t_xfer_status status)
}
}
/* remove empty file if received file failed and nothing was transfered */
/* remove empty file if received file failed and nothing was transferred */
if (((xfer->status == XFER_STATUS_FAILED)
|| (xfer->status == XFER_STATUS_ABORTED))
&& XFER_IS_FILE(xfer->type)

View File

@ -56,7 +56,7 @@ enum t_xfer_status
XFER_STATUS_ACTIVE, /* sending/receiving data */
XFER_STATUS_DONE, /* transfer done */
XFER_STATUS_FAILED, /* transfer failed */
XFER_STATUS_ABORTED, /* transfer aborded by user */
XFER_STATUS_ABORTED, /* transfer aborted by user */
/* number of xfer status */
XFER_NUM_STATUS,
};
@ -65,7 +65,7 @@ enum t_xfer_status
enum t_xfer_error
{
XFER_NO_ERROR = 0, /* no error to report, all ok! */
XFER_NO_ERROR = 0, /* no error to report, all OK! */
/* errors for sender: */
XFER_ERROR_READ_LOCAL, /* unable to read local file */
XFER_ERROR_SEND_BLOCK, /* unable to send block to receiver */
@ -79,10 +79,10 @@ enum t_xfer_error
XFER_NUM_ERRORS,
};
/* xfer blocksize */
/* xfer block size */
#define XFER_BLOCKSIZE_MIN 1024 /* min blocksize */
#define XFER_BLOCKSIZE_MAX 102400 /* max blocksize */
#define XFER_BLOCKSIZE_MIN 1024 /* min block size */
#define XFER_BLOCKSIZE_MAX 102400 /* max block size */
/* separator in filenames */
@ -140,7 +140,7 @@ struct t_xfer
int child_read; /* to read into child pipe */
int child_write; /* to write into child pipe */
struct t_hook *hook_fd; /* hook for socket or child pipe */
struct t_hook *hook_timer; /* timeout for recever accept */
struct t_hook *hook_timer; /* timeout for receiver accept */
char *unterminated_message; /* beginning of a message */
int file; /* local file (read or write) */
char *local_filename; /* local filename (with path) */