core: add "POSIX extended" in description of options/commands/functions using regular expressions

v2.8-utf8proc
Sebastien Helleu 2014-01-09 17:21:19 +01:00
parent 7e540dc5fb
commit 73eb2564f3
50 changed files with 732 additions and 672 deletions

View File

@ -199,23 +199,23 @@ nick: Nick oder Maske (darf mit einem "*" als Platzhalter beginnen oder enden)
add [re:]<nick> [<server> [<channel>]]
del <number>|-all
list: zeigt alle Ignorierungen an
add: fügt eine Ignorierung hinzu
nick: Nick oder Hostname (dies kann ein regulärer Ausdruck sein, sofern "re:" angegeben wird oder eine Maske mittels "*" genutzt wird um ein oder mehrere Zeichen zu ersetzen)
del: entfernt eine Ignorierung
number: Nummer der Ignorierung die entfernt werden soll (nutze "list" um den entsprechenden Eintrag zu finden)
-all: entfernt alle Einträge
server: interner Name des Server auf welchem die Ignorierung statt finden soll
channel: Name des Channel, in dem die Ignorierung statt finden soll
list: list all ignores
add: add an ignore
nick: nick or hostname (can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace one or more chars)
del: delete an ignore
number: number of ignore to delete (look at list to find it)
-all: delete all ignores
server: internal server name where ignore is working
channel: channel name where ignore is working
Hinweis: Um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden.
Note: the regular expression can start with "(?-i)" to become case sensitive.
Beispiele:
ignoriert den Nick "toto" global:
Examples:
ignore nick "toto" everywhere:
/ignore add toto
ignoriert den Host "toto@domain.com" auf dem freenode Server:
ignore host "toto@domain.com" on freenode server:
/ignore add toto@domain.com freenode
ignoriert den Host "toto*@*.domain.com" im Chat freenode/#weechat:
ignore host "toto*@*.domain.com" on freenode/#weechat:
/ignore add toto*@*.domain.com freenode #weechat
----
@ -319,16 +319,16 @@ server_mask: die aufzulistenden Server sollen diesem Muster entsprechen
----
/list [<channel>[,<channel>...]] [<server>] [-re <regex>]
channel: aufzulistender Channel
server: Servername
regexp: regulärer Ausdruck der auf die Ausgabe angewendet werden soll (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden)
channel: channel to list
server: server name
regex: POSIX extended regular expression used to filter results (case insensitive, can start by "(?-i)" to become case sensitive)
Beispiele:
listet alle Channels des Servers auf (dies kann bei großen Netzwerken sehr lange dauern):
Examples:
list all channels on server (can be very slow on large networks):
/list
listet den Channel #weechat auf:
list channel #weechat:
/list #weechat
listet alle Channels auf die mit "#weechat" beginnen (dies kann bei großen Netzwerken sehr lange dauern):
list all channels beginning with "#weechat" (can be very slow on large networks):
/list -re #weechat.*
----

View File

@ -79,7 +79,7 @@
** Werte: 0 .. 65535 (Standardwert: `256`)
* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips*
** Beschreibung: `regulärer Ausdruck für IP Adressen die auf das Relay zugreifen dürfen (zwischen Groß- und Kleinschreibung wird dabei nicht unterschieden. Um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden) . Sollte IPv6 aktiviert sein und es wird eine IPv4 Verbindung aufgebaut, werden die IPv6 Adressen nach IPv4 gewandelt (siehe: "::ffff:127.0.0.1"), Beispiele: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** Beschreibung: `POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive); if IPv6 is enabled and that connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "::ffff:127.0.0.1"), example: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette (Standardwert: `""`)
@ -114,7 +114,7 @@
** Werte: beliebige Zeichenkette (Standardwert: `"%h/ssl/relay.pem"`)
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
** Beschreibung: `erlaubt regulären Ausdruck für Origins in WebSockets (Groß- und Kleinschreibung wird ignoriert, um Groß- und Kleinschreibung zu nutzen muss "(?-i)" dem Origin vorangestellt werden), Beispiele: "^http://(www\.)?example\.(com|org)"`
** Beschreibung: `POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette (Standardwert: `""`)

View File

@ -8,24 +8,24 @@
missing
default -yes
list: zeigt alle rmodifier an
listdefault: zeigt die Standardeinstellung für rmodifier an
add: einen rmodifier hinzufügen
name: Name des rmodifier
modifiers: durch Kommata getrennte Liste der modifier
groups: Aktion auf Gruppen (groups) anwenden, die durch reguläre Ausdrücke abgefragt werden (innerhalb der runden Klammern): durch Kommata getrennte Liste der Gruppen (von 1 bis 9). Optional kann nach der Nummer für die Gruppe ein "*" gesetzt werden um diese Gruppe auszublenden
regex: regulärer Ausdruck (zwischen Groß- und Kleinschreibung wird nicht unterschieden. Um zwischen Groß- und Kleinschreibung zu unterscheiden muss zu Beginn "(?-i)" genutzt werden)
del: löscht einen rmodifier Eintrag
-all: löscht alle rmodifiers Einträge
missing: fügt fehlende rmodifiers hinzu
default: setzt die rmodifier auf seine Standardwerte zurück
list: list all rmodifiers
listdefault: list default rmodifiers
add: add a rmodifier
name: name of rmodifier
modifiers: comma separated list of modifiers
groups: action on groups captured in regular expression (inside parentheses): comma separated list of groups (from 1 to 9) with optional "*" after number to hide the group
regex: POSIX extended regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
del: delete a rmodifier
-all: delete all rmodifiers
missing: add missing rmodifiers
default: restore default rmodifiers
Beispiele:
verbirgt die Eingabe nach dem Befehl /passwort:
/rmodifier add passwort input_text_display 1,2* ^(/passwort +)(.*)
lösche rmodifier "passwort":
/rmodifier del passwort
lösche alle rmodifiers:
Examples:
hide everything typed after a command /password:
/rmodifier add password input_text_display 1,2* ^(/password +)(.*)
delete rmodifier "password":
/rmodifier del password
delete all rmodifiers:
/rmodifier del -all
----

View File

@ -220,43 +220,43 @@ infolists: zeigt Information über die Infolists an
/eval [-n] <expression>
[-n] -c <expression1> <operator> <expression2>
-n: zeigt das Ergebnis lokal an, ohne das dieses in den Buffer gesendet wird (debug Modus)
-c: Auswertung als Bedingung: nutzt Operatoren und runde Klammern, Rückgabewert als Boolean-Wert ("0" oder "1")
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:
== gleich
!= ungleich
<= 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)
-c: evaluate as condition: use operators and parentheses, return a boolean value ("0" or "1")
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 POSIX extended regex
!~ is NOT matching POSIX extended regex
Ein Ausdruck gilt als "wahr", sofern das Ergebnis nicht NULL, nicht leer und von "0" abweichend ist.
Der Vergleich findet zwischen zwei Integer Werten 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. eine Farbe (Format: color:xxx)
2. eine Info (Format: "info:name,arguments", Argumente sind optional)
3. der Name einer Option (Format: file.section.option)
4. der Name einer lokalen Variablen eines Buffer
5. 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 kann wie folgt lauten:
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. a color (format: "color:xxx")
2. an info (format: "info:name,arguments", arguments are optional)
3. an option (format: "file.section.option")
4. a local variable in buffer
5. 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 ${info:version} ==> 0.4.3
/eval -n ${weechat.look.scroll_amount} ==> 3
/eval -n ${window} ==> 0x2549aa0
@ -282,52 +282,52 @@ Beispiele:
add <name> <buffer>[,<buffer>...] <tags> <regex>
del <name>|-all
list: alle Filter auflisten
enable: Filter wird aktiviert (Filter werden standardmäßig aktiviert)
disable: Filter deaktivieren
toggle: Filter umschalten
name: Name des Filters
add: Filter hinzufügen
del: Filter entfernen
-all: entfernt alle Filter
buffer: durch Kommata getrennte Liste von Buffer in denen der Filter aktiv sein soll:
- ist der vollständige Name eines Buffer inklusive seiner Erweiterung (Beispiel: "irc.freenode.#weechat")
- "*" anwenden auf alle Buffer
- beginnt ein Name mit '!' wird für diesen Buffer kein Filter genutzt
- ein Name darf mit '*' beginnen oder enden um mehrere Buffer auszuwählen
tags: durch Kommata getrennte Liste von Schlagwörtern. Zum Beispiel: "irc_join,irc_part,irc_quit"
- logisch "und": wird "+" zwischen den Tags verwendet (zum Beispiel: "nick_toto+irc_action")
- Tags können mit '*' beginnen oder enden
regex: regulärer Ausdruck um in einer Zeile zu suchen
- das Präfix (z.B. Nick) wird mittels '\t' von der Nachricht getrennt. Sonderzeichen wie '|' müssen mit einer Escapesequenz : '\|' eingebunden werden)
- wird ein regulärer Ausdruck mit '!' eingeleitet dann wird das übereinstimmende Ergebnis umgekehrt (nutze '\!' um mit '!' zu beginnen)
- es werden zwei reguläre Ausdrücke erstellt: Der erste für den Präfix und der zweite für die eigentliche Nachricht
- reguläre Ausdrücke unterscheiden nicht zwischen Groß- und Kleinschreibung. Um zwischen Groß- und Kleinschreibung zu unterscheiden müssen diese mit "(?-i)" eingeleitet werden.
list: list all filters
enable: enable filters (filters are enabled by default)
disable: disable filters
toggle: toggle filters
name: filter name
add: add a filter
del: delete a filter
-all: delete all filters
buffer: comma separated list of buffers where filter is active:
- this is full name including plugin (example: "irc.freenode.#weechat")
- "*" means all buffers
- a name starting with '!' is excluded
- name can start or end with '*' to match many buffers
tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit"
- logical "and": use "+" between tags (for example: "nick_toto+irc_action")
- tags can start or end with '*'
regex: POSIX extended regular expression to search in line
- use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|'
- if regex starts with '!', then matching result is reversed (use '\!' to start with '!')
- two regular expressions are created: one for prefix and one for message
- regex are case insensitive, they can start by "(?-i)" to become case sensitive
Mit der Tastenvoreinstellung alt+'=' kann die Filterfunktion (de-)aktiviert werden.
The default key alt+'=' toggles filtering on/off.
Die am häufigsten gebrauchten Schlagwörter lauten:
no_filter, no_highlight, no_log, log0..log9 (log Level),
Tags most commonly used:
no_filter, no_highlight, no_log, log0..log9 (log level),
notify_none, notify_message, notify_private, notify_highlight,
nick_xxx (xxx ist durch den Nicknamen zu ersetzen), prefix_nick_ccc (ccc ist die Farbe mit der der Nick dargestellt wird),
irc_xxx (xxx ist durch einen IRC-Befehl/-Nummer zu ersetzen, siehe /server raw oder /debug tags)
nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick),
irc_xxx (xxx is command name or number, see /server raw or /debug tags),
irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info.
Mittels "/debug tags" kann man sich die Tags jeder einzelnen Zeile darstellen zu lassen.
To see tags for lines in buffers: /debug tags
Beispiele:
aktiviert einen einfachen IRC Filter für join/part/quit/nick Nachrichten für alle Buffer:
Examples:
use IRC smart filter on all buffers:
/filter add irc_smart * irc_smart_filter *
aktiviert einen einfachen IRC Filter für join/part/quit/nick Nachrichten der für alle Buffer genutzt wird, außer Buffer die "#weechat" im Namen tragen:
use IRC smart filter on all buffers except those with "#weechat" in name:
/filter add irc_smart *,!*#weechat* irc_smart_filter *
filtert alle IRC join/part/quit Nachrichten:
filter all IRC join/part/quit messages:
/filter add joinquit * irc_join,irc_part,irc_quit *
filtert Nicks wenn diese den Channel betreten oder durch den Befehl "/names" angezeigt werden:
filter nicks displayed when joining channels or with /names:
/filter add nicks * irc_366 *
filtert Nick "toto" im IRC Channel #weechat:
filter nick "toto" on IRC channel #weechat:
/filter add toto irc.freenode.#weechat nick_toto *
filtert IRC join/action Nachrichten von Nick "toto":
filter IRC join/action messages from nick "toto":
/filter add toto * nick_toto+irc_join,nick_toto+irc_action *
filtert Zeilen die "weechat sucks" im IRC Channel #weechat enthalten:
filter lines containing "weechat sucks" on IRC channel #weechat:
/filter add sucks irc.freenode.#weechat * weechat sucks
----

View File

@ -434,7 +434,7 @@
** Werte: on, off (Standardwert: `off`)
* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
** Beschreibung: `standardmäßige Textsuche im Buffer: falls aktiviert wird mittels regulären Ausdrücken gesucht, andernfalls findet eine genaue Textsuche statt`
** Beschreibung: `default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string`
** Typ: boolesch
** Werte: on, off (Standardwert: `off`)
@ -539,7 +539,7 @@
** Werte: beliebige Zeichenkette (Standardwert: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
** Beschreibung: `Suchmuster (regulärer Ausdruck) welches genutzt werden soll, um zu überprüfen ob eine Nachricht ein Highlight enthält oder nicht. Mindestens eine Zeichenkette muss dabei auf das Suchmuster passen (alphanumerisch, "-", "_" oder "|"). Das Suchmuster unterscheidet dabei nicht zwischen Groß-und Kleinschreibung (um zwischen Groß-und Kleinschreibung zu unterscheiden muss am Wortanfang "(?-i)" genutzt werden). Beispiele: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** Beschreibung: `POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette (Standardwert: `""`)

View File

@ -201,7 +201,7 @@ nick: nick or mask (can start or end with "*" as wildcard)
list: list all ignores
add: add an ignore
nick: nick or hostname (can be regular expression if "re:" is given or a mask using "*" to replace one or more chars)
nick: nick or hostname (can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace one or more chars)
del: delete an ignore
number: number of ignore to delete (look at list to find it)
-all: delete all ignores
@ -321,7 +321,7 @@ server_mask: list of servers must match this mask
channel: channel to list
server: server name
regex: regular expression used to filter results (case insensitive, can start by "(?-i)" to become case sensitive)
regex: POSIX extended regular expression used to filter results (case insensitive, can start by "(?-i)" to become case sensitive)
Examples:
list all channels on server (can be very slow on large networks):

View File

@ -79,7 +79,7 @@
** values: 0 .. 65535 (default value: `256`)
* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips*
** description: `regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive); if IPv6 is enabled and that connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "::ffff:127.0.0.1"), example: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** description: `POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive); if IPv6 is enabled and that connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "::ffff:127.0.0.1"), example: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** type: string
** values: any string (default value: `""`)
@ -114,7 +114,7 @@
** values: any string (default value: `"%h/ssl/relay.pem"`)
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
** description: `regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** description: `POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** type: string
** values: any string (default value: `""`)

View File

@ -14,7 +14,7 @@ listdefault: list default rmodifiers
name: name of rmodifier
modifiers: comma separated list of modifiers
groups: action on groups captured in regular expression (inside parentheses): comma separated list of groups (from 1 to 9) with optional "*" after number to hide the group
regex: regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
regex: POSIX extended regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
del: delete a rmodifier
-all: delete all rmodifiers
missing: add missing rmodifiers

View File

@ -234,8 +234,8 @@ expression: expression to evaluate, variables with format ${variable} are replac
< less
>= greater or equal
> greater
=~ is matching regex
!~ is NOT matching regex
=~ is matching POSIX extended regex
!~ is NOT matching POSIX extended regex
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.
@ -298,7 +298,7 @@ disable: disable filters
tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit"
- logical "and": use "+" between tags (for example: "nick_toto+irc_action")
- tags can start or end with '*'
regex: regular expression to search in line
regex: POSIX extended regular expression to search in line
- use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|'
- if regex starts with '!', then matching result is reversed (use '\!' to start with '!')
- two regular expressions are created: one for prefix and one for message

View File

@ -434,7 +434,7 @@
** values: on, off (default value: `off`)
* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
** description: `default text search in buffer: if enabled, search regular expression, otherwise search simple string`
** description: `default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string`
** type: boolean
** values: on, off (default value: `off`)
@ -539,7 +539,7 @@
** values: any string (default value: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
** description: `regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** description: `POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** type: string
** values: any string (default value: `""`)

View File

@ -1048,7 +1048,7 @@ const char *weechat_string_regex_flags (const char *regex, int default_flags, in
Arguments:
* 'regex': regular expression
* 'regex': POSIX extended regular expression
* 'default_flags': combination of following values (see `man regcomp`):
** REG_EXTENDED
** REG_ICASE
@ -1088,8 +1088,9 @@ This function is not available in scripting API.
_WeeChat ≥ 0.3.7._
Compile a regular expression using optional flags at beginning of string (for
format of flags, see <<_weechat_string_regex_flags,weechat_string_regex_flags>>).
Compile a POSIX extended regular expression using optional flags at beginning
of string (for format of flags, see
<<_weechat_string_regex_flags,weechat_string_regex_flags>>).
Prototype:
@ -1101,7 +1102,7 @@ int weechat_string_regcomp (void *preg, const char *regex, int default_flags)
Arguments:
* 'preg': pointer to 'regex_t' structure
* 'regex': regular expression
* 'regex': POSIX extended regular expression
* 'default_flags': combination of following values (see `man regcomp`):
** REG_EXTENDED
** REG_ICASE
@ -1170,7 +1171,8 @@ highlight = weechat.string_has_highlight("my test string", "test,word2") # 1
_WeeChat ≥ 0.3.4._
Check if a string has one or more highlights, using a regular expression.
Check if a string has one or more highlights, using a POSIX extended regular
expression. +
For at least one match of regular expression on string, it must be surrounded
by word chars (alphanumeric character, "-", "_" or "|").
@ -1184,7 +1186,7 @@ int weechat_string_has_highlight_regex (const char *string, const char *regex);
Arguments:
* 'string': string
* 'regex': regular expression
* 'regex': POSIX extended regular expression
Return value:
@ -9991,7 +9993,7 @@ Arguments:
** 'input': input text
** 'text_search_input': input saved before text search
** 'highlight_words': list of words to highlight
** 'highlight_regex': regular expression for highlight
** 'highlight_regex': POSIX extended regular expression for highlight
** 'highlight_tags_restrict': restrict highlights to messages with these tags
** 'highlight_tags': force highlight on messages with these tags
** 'hotlist_max_level_nicks': max hotlist level for some nicks
@ -10164,7 +10166,7 @@ Properties:
Comma separated list of words to remove from highlighted words on buffer
| highlight_regex | any string |
Regular expression for highlight
POSIX extended regular expression for highlight
| highlight_tags_restrict | comma separated list of tags |
Restrict highlights to messages with these tags in this buffer

View File

@ -201,7 +201,7 @@ pseudo: pseudo ou masque (peut démarrer ou se terminer par "*" comme joker)
list: lister tous les ignores
add: ajouter un ignore
pseudo: pseudo ou hôte (peut être une expression régulière si "re:" est donné ou un masque avec "*" pour remplacer un ou plusieurs caractères)
pseudo: pseudo ou hôte (peut être une expression régulière POSIX étendue si "re:" est donné ou un masque avec "*" pour remplacer un ou plusieurs caractères)
del: supprimer un ignore
numéro: numéro du ignore à supprimer (voir la liste des ignore pour le trouver)
-all: supprimer tous les ignores
@ -321,7 +321,7 @@ masque_serveur: liste des serveurs correspondant au masque
canal: canal à lister
serveur: nom du serveur
regex: expression régulière utilisée pour filtrer les résultats (insensible à la casse, peut commencer par "(?-i)" pour devenir sensible à la casse)
regex: expression régulière POSIX étendue utilisée pour filtrer les résultats (insensible à la casse, peut commencer par "(?-i)" pour devenir sensible à la casse)
Exemples:
lister tous les canaux du serveur (peut être très lent pour les grands réseaux):

View File

@ -79,7 +79,7 @@
** valeurs: 0 .. 65535 (valeur par défaut: `256`)
* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips*
** description: `expression régulière avec les IPs autorisées pour le relai (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre sensible à la casse); si l'IPv6 est activé et qu'une connexion est faite en IPv4, il y aura une adresse IPv4 encapsulée dans une IPv6 (comme: "::ffff:127.0.0.1"), exemple: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** description: `expression régulière POSIX étendue avec les IPs autorisées pour le relai (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre sensible à la casse); si l'IPv6 est activé et qu'une connexion est faite en IPv4, il y aura une adresse IPv4 encapsulée dans une IPv6 (comme: "::ffff:127.0.0.1"), exemple: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** type: chaîne
** valeurs: toute chaîne (valeur par défaut: `""`)
@ -114,7 +114,7 @@
** valeurs: toute chaîne (valeur par défaut: `"%h/ssl/relay.pem"`)
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
** description: `expression régulière avec les origines autorisées dans les websockets (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre insensible à la casse), exemple: "^http://(www\.)?example\.(com|org)"`
** description: `expression régulière POSIX étendue avec les origines autorisées dans les websockets (insensible à la casse, utilisez "(?-i)" en début de chaîne pour la rendre insensible à la casse), exemple: "^http://(www\.)?example\.(com|org)"`
** type: chaîne
** valeurs: toute chaîne (valeur par défaut: `""`)

View File

@ -14,7 +14,7 @@ listdefault: lister les rmodifiers par défaut
name: nom du rmodifier
modifiers: liste de modifiers (séparés par une virgule)
groupes: action sur les groupes capturés dans l'expression régulière (entre parenthèses): liste de groupes (séparés par une virgule) (de 1 à 9) avec en option "*" après le nombre pour cacher le groupe
regex: expression régulière (insensible à la casse, peut commencer par "(?-i)" pour devenir sensible à la casse)
regex: expression régulière POSIX étendue (insensible à la casse, peut commencer par "(?-i)" pour devenir sensible à la casse)
del: supprimer un rmodifier
-all: supprimer tous les rmodifiers
missing: ajouter les rmodifiers manquants

View File

@ -234,8 +234,8 @@ expression: expression à évaluer, les variables avec le format ${variable} son
< inférieur
>= supérieur ou égal
> supérieur
=~ correspond à l'expression régulière
!~ ne correspond PAS à l'expression régulière
=~ correspond à l'expression régulière POSIX étendue
!~ ne correspond PAS à l'expression régulière POSIX étendue
Une expression est considérée comme "vraie" si elle est non NULL, non vide, et différente de "0".
La comparaison est faite en utilisant des entiers si les deux expressions sont des entiers valides.
@ -298,7 +298,7 @@ Exemples:
étiquettes: liste d'étiquettes, séparées par des virgules, par exemple: "irc_join,irc_part,irc_quit"
- "et" logique: utilisez "+" entre les étiquettes (par exemple: "nick_toto+irc_action")
- les étiquettes peuvent commencer ou se terminer par '*'
regex: expression régulière à rechercher dans la ligne
regex: expression régulière POSIX étendue à rechercher dans la ligne
- utiliser '\t' pour séparer le préfixe du message, les caractères spéciaux comme '|' doivent être échappés: '\|'
- si l'expression régulière commence par '!' alors le résultat est inversé (utiliser '\!' pour démarrer par '!')
- deux expressions régulières sont créées: une pour le préfixe et une pour le message

View File

@ -434,7 +434,7 @@
** valeurs: on, off (valeur par défaut: `off`)
* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
** description: `recherche par défaut dans le tampon: si activé, rechercher une expression régulière, sinon rechercher du texte simple`
** description: `recherche par défaut dans le tampon: si activé, rechercher une expression régulière POSIX étendue, sinon rechercher du texte simple`
** type: booléen
** valeurs: on, off (valeur par défaut: `off`)
@ -539,7 +539,7 @@
** valeurs: toute chaîne (valeur par défaut: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
** description: `expression régulière utilisée pour vérifier si un message a un "highlight" ou non, au moins une correspondance dans la chaîne doit être entourée de caractères de mot (alphanumérique, "-", "_" ou "|"), l'expression régulière est insensible à la casse (utilisez "(?-i)" au début pour la rendre sensible à la casse), exemples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** description: `expression régulière POSIX étendue utilisée pour vérifier si un message a un "highlight" ou non, au moins une correspondance dans la chaîne doit être entourée de caractères de mot (alphanumérique, "-", "_" ou "|"), l'expression régulière est insensible à la casse (utilisez "(?-i)" au début pour la rendre sensible à la casse), exemples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** type: chaîne
** valeurs: toute chaîne (valeur par défaut: `""`)

View File

@ -1060,7 +1060,7 @@ const char *weechat_string_regex_flags (const char *regex, int default_flags, in
Paramètres :
* 'regex' : expression régulière
* 'regex' : expression régulière POSIX étendue
* 'default_flags' : combinaison des valeurs suivantes (voir `man regcomp`) :
** REG_EXTENDED
** REG_ICASE
@ -1117,7 +1117,7 @@ int weechat_string_regcomp (void *preg, const char *regex, int default_flags)
Paramètres :
* 'preg' : pointeur vers la structure 'regex_t'
* 'regex' : expression régulière
* 'regex' : expression régulière POSIX étendue
* 'default_flags' : combinaison des valeurs suivantes (voir `man regcomp`) :
** REG_EXTENDED
** REG_ICASE
@ -1188,7 +1188,7 @@ highlight = weechat.string_has_highlight("my test string", "test,word2") # 1
_WeeChat ≥ 0.3.4._
Vérifie si une chaîne a un ou plusieurs "highlights", en utilisant une
expression régulière.
expression régulière POSIX étendue. +
Pour au moins une correspondance dans la chaîne, elle doit être entourée de
caractères de mot (caractère alphanumérique, "-", "_" ou "|").
@ -1202,7 +1202,7 @@ int weechat_string_has_highlight_regex (const char *string, const char *regex);
Paramètres :
* 'string' : chaîne
* 'regex' : expression régulière
* 'regex' : expression régulière POSIX étendue
Valeur de retour :
@ -10164,7 +10164,7 @@ Paramètres :
** 'input' : texte saisi
** 'text_search_input' : texte saisi sauvegardé avant la recherche de texte
** 'highlight_words' : liste des mots pour le highlight
** 'highlight_regex' : expression régulière pour le highlight
** 'highlight_regex' : expression régulière POSIX étendue pour le highlight
** 'highlight_tags_restrict' : restreindre les highlights aux messages
comportant ces étiquettes
** 'highlight_tags' : forcer le highlight pour les messages avec ces étiquettes
@ -10347,7 +10347,7 @@ Propriétés :
tampon
| highlight_regex | toute chaîne |
Expression régulière pour le highlight
Expression régulière POSIX étendue pour le highlight
| highlight_tags_restrict | liste d'étiquettes séparées par des virgules |
Restreindre les highlights aux messages avec ces étiquettes dans ce tampon

View File

@ -199,24 +199,24 @@ nick: nick or mask (can start or end with "*" as wildcard)
add [re:]<nick> [<server> [<canale>]]
del <numero>|-all
list: elenca tutti gli ignore
add: aggiungi un ignore
nick: nick oppure nome host (può essere un'espressione regolare se viene passato il parametro "re:" oppure usando un mask "*" per sostituire uno o più caratteri)
del: elimina un ignore
numero: numero di ignore da eliminare (nella lista)
-all: elimina tutti gli ignore
server: nome interno del server dove l'ignore è attivo
canale: nome del canale dove l'ignore è attivo
list: list all ignores
add: add an ignore
nick: nick or hostname (can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace one or more chars)
del: delete an ignore
number: number of ignore to delete (look at list to find it)
-all: delete all ignores
server: internal server name where ignore is working
channel: channel name where ignore is working
Nota: l'espressione regolare può iniziare con "(?-i)" per diventare sensibile alle maiuscole.
Note: the regular expression can start with "(?-i)" to become case sensitive.
Esempi:
ignora nick "tizio" su tutti gli host/canali:
/ignore add tizio
ignora l'host "tizio@dominio.com" sul server freenode:
/ignore add tizio@dominio.com freenode
ignora l'host "tizio*@*.dominio.com" su freenode/#weechat:
/ignore add tizio*@*.dominio.com freenode #weechat
Examples:
ignore nick "toto" everywhere:
/ignore add toto
ignore host "toto@domain.com" on freenode server:
/ignore add toto@domain.com freenode
ignore host "toto*@*.domain.com" on freenode/#weechat:
/ignore add toto*@*.domain.com freenode #weechat
----
[[command_irc_info]]
@ -319,16 +319,16 @@ mask_server: elenco dei server che devono corrispondere a questa mask
----
/list [<canale>[,<canale>...]] [<server>] [-re <regexp>]
canale: canale da elencare
server: nome del server
regex: espressione regolare usata per filtrare i risultati (non sensibile alle maiuscole, può iniziare con "(?-i)" per renderla sensibile alle maiuscole)
channel: channel to list
server: server name
regex: POSIX extended regular expression used to filter results (case insensitive, can start by "(?-i)" to become case sensitive)
Esempi:
elenca tutti i canali sul server (può essere molto lento su grandi network):
Examples:
list all channels on server (can be very slow on large networks):
/list
elenca il canale #weechat:
/list #weechat.*
elenca tutti i canali che iniziano con "#weechat" (può essere molto lento su grandi network):
list channel #weechat:
/list #weechat
list all channels beginning with "#weechat" (can be very slow on large networks):
/list -re #weechat.*
----

View File

@ -79,7 +79,7 @@
** valori: 0 .. 65535 (valore predefinito: `256`)
* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips*
** descrizione: `espressione regolare con gli indirizzi IP a cui è consentito usare il relay, (non sensibile alle maiuscole, usare "(?-i)" all'inizio per renderla sensibile alle maiuscole); se IPv6 è abilitato e la connessione viene creata usando IPv4, sarà un indirizzo IPv6 mappato su IPv4 (come: ":ffff:127.0.0.1",come: "::ffff:127.0.0.1"), esempio: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** descrizione: `POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive); if IPv6 is enabled and that connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "::ffff:127.0.0.1"), example: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** tipo: stringa
** valori: qualsiasi stringa (valore predefinito: `""`)
@ -114,7 +114,7 @@
** valori: qualsiasi stringa (valore predefinito: `"%h/ssl/relay.pem"`)
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
** descrizione: `regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** descrizione: `POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** tipo: stringa
** valori: qualsiasi stringa (valore predefinito: `""`)

View File

@ -14,7 +14,7 @@ listdefault: list default rmodifiers
name: name of rmodifier
modifiers: comma separated list of modifiers
groups: action on groups captured in regular expression (inside parentheses): comma separated list of groups (from 1 to 9) with optional "*" after number to hide the group
regex: regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
regex: POSIX extended regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
del: delete a rmodifier
-all: delete all rmodifiers
missing: add missing rmodifiers

View File

@ -234,8 +234,8 @@ expression: expression to evaluate, variables with format ${variable} are replac
< less
>= greater or equal
> greater
=~ is matching regex
!~ is NOT matching regex
=~ is matching POSIX extended regex
!~ is NOT matching POSIX extended regex
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.
@ -298,7 +298,7 @@ disable: disable filters
tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit"
- logical "and": use "+" between tags (for example: "nick_toto+irc_action")
- tags can start or end with '*'
regex: regular expression to search in line
regex: POSIX extended regular expression to search in line
- use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|'
- if regex starts with '!', then matching result is reversed (use '\!' to start with '!')
- two regular expressions are created: one for prefix and one for message

View File

@ -434,7 +434,7 @@
** valori: on, off (valore predefinito: `off`)
* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
** descrizione: `default text search in buffer: if enabled, search regular expression, otherwise search simple string`
** descrizione: `default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string`
** tipo: bool
** valori: on, off (valore predefinito: `off`)
@ -539,7 +539,7 @@
** valori: qualsiasi stringa (valore predefinito: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
** descrizione: `espressione regolare usata per verificare se un messaggio contiene una notifica oppure no, almeno una corrispondenza nella stringa deve essere racchiusa da caratteri :(alfanumerici, "-", "_" or "|"), l'espressione regolare non è sensibile alle maiuscole (usare "(?-i)" all'inizio per renderla sensibile alle maiuscole), ad esempio: "flashcode|flashy", "(?-i)Flashcode|flashy"`
** descrizione: `POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** tipo: stringa
** valori: qualsiasi stringa (valore predefinito: `""`)

View File

@ -1067,7 +1067,8 @@ const char *weechat_string_regex_flags (const char *regex, int default_flags, in
Argomenti:
* 'regex': espressione regolare
// TRANSLATION MISSING
* 'regex': POSIX extended regular expression
* 'default_flags': combinazione dei seguenti valori (consultare `man regcomp`):
** REG_EXTENDED
** REG_ICASE
@ -1112,8 +1113,9 @@ Questa funzione non è disponibile nelle API per lo scripting.
_WeeChat ≥ 0.3.7._
Compila un'espressione regolare usando flag opzionali all'inizio della stringa
(per il formato delle flag consultare
// TRANSLATION MISSING
Compile a POSIX extended regular expression using optional flags at beginning
of string (for format of flags, see
<<_weechat_string_regex_flags,weechat_string_regex_flags>>).
Prototipo:
@ -1127,7 +1129,7 @@ Argomenti:
// TRANSLATION MISSING
* 'preg': pointer to 'regex_t' structure
* 'regex': regular expression
* 'regex': POSIX extended regular expression
* 'default_flags': combination of following values (see `man regcomp`):
** REG_EXTENDED
** REG_ICASE
@ -1199,7 +1201,8 @@ highlight = weechat.string_has_highlight("my test string", "test,word2") # 1
_WeeChat ≥ 0.3.4._
// TRANSLATION MISSING
Check if a string has one or more highlights, using a regular expression.
Check if a string has one or more highlights, using a POSIX extended regular
expression. +
For at least one match of regular expression on string, it must be surrounded
by word chars (alphanumeric character, "-", "_" or "|").
@ -1213,7 +1216,8 @@ int weechat_string_has_highlight_regex (const char *string, const char *regex);
Argomenti:
* 'string': stringa
* 'regex': espressione regolare
// TRANSLATION MISSING
* 'regex': POSIX extended regular expression
Valore restituito:
@ -10203,7 +10207,8 @@ Argomenti:
** 'input': testo in ingresso
** 'text_search_input': input salvato prima della ricerca nel testo
** 'highlight_words': elenco di parole da evidenziare
** 'highlight_regex': espressione regolare per l'evento
// TRANSLATION MISSING
** 'highlight_regex': POSIX extended regular expression for highlight
// TRANSLATION MISSING
** 'highlight_tags_restrict': restrict highlights to messages with these tags
// TRANSLATION MISSING
@ -10391,8 +10396,9 @@ Properties:
Elenco di parole separate da virgole da rimuovere dalle
parole evidenziate nel buffer
// TRANSLATION MISSING
| highlight_regex | qualsiasi stringa |
Espressione regolare per l'evento
POSIX extended regular expression for highlight
// TRANSLATION MISSING
| highlight_tags_restrict | elenco separato da virgole di tag |

View File

@ -199,23 +199,23 @@ nick: ニックネームまたはマスク (ワイルドカード "*" を最初
add [re:]<nick> [<server> [<channel>]]
del <number>|-all
list: 無視エントリをリストアップ
add: 無視エントリを追加
nick: ニックネーム又はホスト名 ("re:" で正規表現を使える、"*" は一つ以上の文字にマッチ)
del: 無視エントリの削除
number: 削除する無視エントリ番号 (番号はリストを参照)
-all: 全ての無視エントリを削除
server: 無視設定を有効にする内部サーバ名
channel: 無視設定を有効にするチャンネル名
list: list all ignores
add: add an ignore
nick: nick or hostname (can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace one or more chars)
del: delete an ignore
number: number of ignore to delete (look at list to find it)
-all: delete all ignores
server: internal server name where ignore is working
channel: channel name where ignore is working
注意: 正規表現で大文字小文字を区別するには "(?-i)" を最初につけてください。
Note: the regular expression can start with "(?-i)" to become case sensitive.
:
全てのサーバ上のニックネーム "toto" を無視:
Examples:
ignore nick "toto" everywhere:
/ignore add toto
freenode サーバ上のホスト名 "toto@domain.com" を無視:
ignore host "toto@domain.com" on freenode server:
/ignore add toto@domain.com freenode
freenode サーバの #weechat チャンネル上のホスト名 "toto*@*.domain.com" を無視:
ignore host "toto*@*.domain.com" on freenode/#weechat:
/ignore add toto*@*.domain.com freenode #weechat
----
@ -319,16 +319,16 @@ server_mask: このマスクにマッチするサーバのリスト
----
/list [<channel>[,<channel>...]] [<server>] [-re <regex>]
channel: リストアップするチャンネル名
server: サーバ名
regex: 結果をフィルタする正規表現 (大文字小文字は区別しない、"(?-i)" で始めれば区別する)
channel: channel to list
server: server name
regex: POSIX extended regular expression used to filter results (case insensitive, can start by "(?-i)" to become case sensitive)
:
サーバ上の全てのチャンネルをリストアップ (大きなネットワークでは非常に遅い):
Examples:
list all channels on server (can be very slow on large networks):
/list
#weechat チャンネルをリストアップ:
list channel #weechat:
/list #weechat
"#weechat" で始まる全てのチャンネルをリストアップ (大きなネットワークでは非常に遅い):
list all channels beginning with "#weechat" (can be very slow on large networks):
/list -re #weechat.*
----

View File

@ -79,7 +79,7 @@
** 値: 0 .. 65535 (デフォルト値: `256`)
* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips*
** 説明: `リレーの利用をを許可する IP アドレスの正規表現 (大文字小文字の区別無し、最初に "(?-i)" をつければ区別有り); IPv6 が有効で IPv4 を使って接続している場合、IPv6 アドレスを IPv4 にマッピングしたもの (例: "::ffff:127.0.0.1") が使われます、例: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** 説明: `POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive); if IPv6 is enabled and that connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "::ffff:127.0.0.1"), example: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)
@ -114,7 +114,7 @@
** 値: 未制約文字列 (デフォルト値: `"%h/ssl/relay.pem"`)
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
** 説明: `ウェブソケットに使うことを許可する origin の正規表現 (大文字小文字を区別しない、"(?-i)" を先頭に置くと大文字小文字を区別する)、例: "^http://(www\.)?example\.(com|org)"`
** 説明: `POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)

View File

@ -8,24 +8,24 @@
missing
default -yes
list: 全ての rmodifier をリストアップ
listdefault: デフォルトの rmodifier をリストアップ
add: rmodifier を追加
name: rmodifier の名前
modifiers: rmodifier のコンマ区切りリスト
groups: 正規表現にマッチするグループに対するアクション (括弧内): グループ (1 から 9) のコンマ区切りリスト、グループを隠すには番号の後ろに任意で "*" をつける
regex: 正規表現 (大文字小文字の区別無し、"(?-i)" で始めれば区別有り)
del: rmodifier を削除
-all: 全ての rmodifier を削除
missing: 見つからない rmodifier を追加
default: デフォルトの rmodifier に戻す
list: list all rmodifiers
listdefault: list default rmodifiers
add: add a rmodifier
name: name of rmodifier
modifiers: comma separated list of modifiers
groups: action on groups captured in regular expression (inside parentheses): comma separated list of groups (from 1 to 9) with optional "*" after number to hide the group
regex: POSIX extended regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
del: delete a rmodifier
-all: delete all rmodifiers
missing: add missing rmodifiers
default: restore default rmodifiers
:
コマンド /password に続く入力は全て隠す:
Examples:
hide everything typed after a command /password:
/rmodifier add password input_text_display 1,2* ^(/password +)(.*)
rmodifier "password" を削除:
delete rmodifier "password":
/rmodifier del password
全ての rmodifiers を削除:
delete all rmodifiers:
/rmodifier del -all
----

View File

@ -234,8 +234,8 @@ expression: expression to evaluate, variables with format ${variable} are replac
< less
>= greater or equal
> greater
=~ is matching regex
!~ is NOT matching regex
=~ is matching POSIX extended regex
!~ is NOT matching POSIX extended regex
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.
@ -298,7 +298,7 @@ disable: disable filters
tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit"
- logical "and": use "+" between tags (for example: "nick_toto+irc_action")
- tags can start or end with '*'
regex: regular expression to search in line
regex: POSIX extended regular expression to search in line
- use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|'
- if regex starts with '!', then matching result is reversed (use '\!' to start with '!')
- two regular expressions are created: one for prefix and one for message

View File

@ -434,7 +434,7 @@
** 値: on, off (デフォルト値: `off`)
* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
** 説明: `default text search in buffer: if enabled, search regular expression, otherwise search simple string`
** 説明: `default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string`
** タイプ: ブール
** 値: on, off (デフォルト値: `off`)
@ -539,7 +539,7 @@
** 値: 未制約文字列 (デフォルト値: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
** 説明: `メッセージがハイライトされるかを判断する正規表現、一回以上マッチすればハイライトされる (英数字、"-"、"_"、"|")、正規表現は大文字小文字を区別しない (最初に "(?-i)" がある場合は区別する)、例: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** 説明: `POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)

View File

@ -199,23 +199,23 @@ nick: nick lub maska (może zaczynać się lub kończyć "*")
add [re:]<nick> [<serwer> [<kanał>]]
del <numer>|-all
list: wyświetla wszystkie ignory
add: dodaje nową osobę do ignorowania
nick: nick lub host (jeśli dodamy "re:" można użyć wyrażenie regularne lub maska używając "*", aby zastąpić jeden lub więcej znaków)
del: usuwa wpis o ignorowanej osobie
numer: numer wpisu do usunięcia (znajduję się na liście)
-all: usuwa wszystkie wpisy z listy ignorowanych
serwer: wewnętrzna nazwa serwera, na którym dana osoba ma być ignorowana
kanał: nazwa kanału, na którym dana osoba ma być ignorowana
list: list all ignores
add: add an ignore
nick: nick or hostname (can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace one or more chars)
del: delete an ignore
number: number of ignore to delete (look at list to find it)
-all: delete all ignores
server: internal server name where ignore is working
channel: channel name where ignore is working
Uwaga: wyrażenie regularne może zaczynać się od "(?-i)" jeśli wielkość znaków ma mieć znaczenie.
Note: the regular expression can start with "(?-i)" to become case sensitive.
Przykłady:
ignoruje wszędzie nick "toto":
Examples:
ignore nick "toto" everywhere:
/ignore add toto
ignoruje host "toto@domain.com" na serwerze freenode:
ignore host "toto@domain.com" on freenode server:
/ignore add toto@domain.com freenode
ignoruje host "toto*@*.domain.com" na freenode/#weechat:
ignore host "toto*@*.domain.com" on freenode/#weechat:
/ignore add toto*@*.domain.com freenode #weechat
----
@ -319,16 +319,16 @@ maska: lista serwerów musi pasować do maski
----
/list [<kanał>[,<kanał>...]] [<serwer>] [-re <regex>]
kanał: kanał do listowania
serwer: nazwa serwera
regexp: wyrażenie regularne użyte do filtrowania wyników (wielkość znaków nie ma znaczenia, jeśli poprzedzone "(?-i)" to wielkość znaków ma znaczenie)
channel: channel to list
server: server name
regex: POSIX extended regular expression used to filter results (case insensitive, can start by "(?-i)" to become case sensitive)
Przykłady:
wyświetla wszystkie kanały na serwerze (może być bardzo wolny w dużych sieciach):
Examples:
list all channels on server (can be very slow on large networks):
/list
wyświetla kanał #weechat:
list channel #weechat:
/list #weechat
wyświetla wszystkie kanały zaczynające się od "#weechat" (może być bardzo wolny w dużych sieciach):
list all channels beginning with "#weechat" (can be very slow on large networks):
/list -re #weechat.*
----

View File

@ -79,7 +79,7 @@
** wartości: 0 .. 65535 (domyślna wartość: `256`)
* [[option_relay.network.allowed_ips]] *relay.network.allowed_ips*
** opis: `dla wtyczki relay dozwolone są wyrażenia regularne zawierające adresy IP (wielkość znaków nie ma znaczenia, użyj "(?-i)" na początku, aby wielkość znaków miała znaczenie); jeśli obsługa IPv6 jest włączona a połączenie jest z użyciem IPv4, zostanie ono zmapowane na adres IPv6 (jak: "::ffff:127.0.0.1"), przykład: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** opis: `POSIX extended regular expression with IPs allowed to use relay (case insensitive, use "(?-i)" at beginning to make it case sensitive); if IPv6 is enabled and that connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "::ffff:127.0.0.1"), example: "^((::ffff:)?123.45.67.89|192.160.*)$"`
** typ: ciąg
** wartości: dowolny ciąg (domyślna wartość: `""`)
@ -114,7 +114,7 @@
** wartości: dowolny ciąg (domyślna wartość: `"%h/ssl/relay.pem"`)
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
** opis: `wyrażenie regularne ze źródłami dozwolonymi dla gniazd webowych (nie wrażliwe na wielkość znaków, umieszczenie "(?-i)" na początku sprawi, że wielość znaków będzie miała znaczenie), przykład: "^http://(www\.)?przykład\.(com|org)"`
** opis: `POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"`
** typ: ciąg
** wartości: dowolny ciąg (domyślna wartość: `""`)

View File

@ -8,24 +8,24 @@
missing
default -yes
list: lista wszystkich rmodifierów
listdefault: lista domyślnych rmodifierów
add: dodaje rmodifier
nazwa: nazwa rmodifiera
modyfikatory: oddzielona przecinkiem lista modyfikatorów
grupy: akcja na grupach przechwyconych w wyrażeniu regularnym (wewnątrz nawiasów): oddzielona przecinkami lista grup (od 1 do 9) z opcjonalnym znakiem "*" po numerze, aby ukryć grupę
regex: wyrażenie regularne (wielkość znaków nie ma znaczenia, jeśli poprzedzone "(?-i)" wielkość znaków ma znaczenie)
del: usuwa rmodifier
-all: usuwa wszystkie rmodifiery
missing: dodaje brakujące rmodifiery
default: przywraca domyślne rmodifiery
list: list all rmodifiers
listdefault: list default rmodifiers
add: add a rmodifier
name: name of rmodifier
modifiers: comma separated list of modifiers
groups: action on groups captured in regular expression (inside parentheses): comma separated list of groups (from 1 to 9) with optional "*" after number to hide the group
regex: POSIX extended regular expression (case insensitive, can start by "(?-i)" to become case sensitive)
del: delete a rmodifier
-all: delete all rmodifiers
missing: add missing rmodifiers
default: restore default rmodifiers
Przykłady:
ukrywa wszystko wpisane za komendą /password:
Examples:
hide everything typed after a command /password:
/rmodifier add password input_text_display 1,2* ^(/password +)(.*)
usuwa rmodifier "hasło":
/rmodifier del hasło
kasuje wszystkie rmodifiery:
delete rmodifier "password":
/rmodifier del password
delete all rmodifiers:
/rmodifier del -all
----

View File

@ -220,43 +220,43 @@ infolists: wyświetla informacje o infolistach
/eval [-n] <wyrażenie>
[-n] -c <wyrażenie1> <operator> <wyrażenie2>
-n: wyświetla wynik bez wysyłania go do buforu (tryb debugowania)
-c: przetwarza jako warunek: użyj operatorów i nawiasów, zwraca wartość logiczną ("0" lub "1")
wyrażenie: wyrażenie do przetworzenia, zmienne o formacie ${zmienna} są zastępowane (zobacz niżej)
operator: operator logiczny lub porównania:
- operatory logiczne:
&& boolowskie "i"
|| boolowskie "lub"
- operatory porównania:
== równy
!= różny
<= mniejszy lub równy
< mniejszy
>= większy lub równy
> większy
=~ pasuje do wyrażenia regularnego
!~ NIE pasuje do wyrażenia regularnego
-n: display result without sending it to buffer (debug mode)
-c: evaluate as condition: use operators and parentheses, return a boolean value ("0" or "1")
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 POSIX extended regex
!~ is NOT matching POSIX extended regex
Wyrażenie jest uznawane za "prawdziwe" jeśli nie jest NULL, nie jest puste, oraz różni się od "0".
Porównania dokonuje się z użyciem liczb całkowitych jeśli oba wyrażenia są liczbami całkowitymi.
W celu wymuszenia porównywania ciągów, należy umieścić każde wyrażenie w cudzysłowie, na przykład:
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
Niektóre zmienne w wyrażeniach są zamieniane, poprzez zastosowanie formatu ${zmienna}, według priorytetu zmienną może być:
1. kolor (format color:xxx)
2. informacja (format: "info:nazwa,argumenty", argumenty są opcjonalne)
3. nazwa opcji (format: plik.sekcja.opcja)
4. zmienna lokalna w buforze
5. nazwa hdatay/zmiennej (wartość jest automatycznie konwertowana na ciąg znaków), domyślnie "window" i "buffer" wskazują na aktualne okno/bufor.
Format dla hdata może być jednym z poniższych:
hdata.zmienna1.zmienna2...: inicjuje hdata (wskaźnik musi być znany), następnie wypytuje zmienne jedna po drugiej (inne hdata mogą być następne)
hdata[list].zmienna1.zmienna2...: inicjuje hdata z wykorzystaniem listy, na przykład:
${buffer[gui_buffers].full_name}: pełna nazwa buforu w połączonej liście buforów
${plugin[weechat_plugins].name}: nazwa pierwszej wtyczki w połączonej liście wtyczek
Nazwy hdata i zmiennych, można znaleźć w "Opisie API wtyczek", fukcja "weechat_hdata_get".
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority :
1. a color (format: "color:xxx")
2. an info (format: "info:name,arguments", arguments are optional)
3. an option (format: "file.section.option")
4. a local variable in buffer
5. 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".
Przykłady:
Examples:
/eval -n ${info:version} ==> 0.4.3
/eval -n ${weechat.look.scroll_amount} ==> 3
/eval -n ${window} ==> 0x2549aa0
@ -282,52 +282,52 @@ Przykłady:
add <nazwa> <bufor>[,<bufor>...] <tagi> <regex>
del <nazwa>|-all
list: wyświetla wszystkie filtry
enable: włącza filtry (filtry są domyślnie włączone)
disable: wyłącza filtry
toggle: przełącza filtry
nazwa: nazwa filtru
add: dodaje filtr
del: usuwa filtr
-all: usuwa wszystkie filtry
bufor: oddzielona przecinkami lisa buforów, dla których filtr jest aktywny:
- jest to pełna nazwa zawierająca wtyczkę (przykład: "irc.freenode.#weechat")
- "*" oznacza wszystkie bufory
- nazwa zaczynająca się od '!' jest wykluczana
- nazwa może zaczynać się lub kończyć '*', aby dopasować wiele buforów
tagi: lista tagów oddzielona przecinkiem, np: "irc_join,irc_part,irc_quit"
- logiczne "i": użyj "+" pomiędzy tagami (na przykład: "nick_toto+irc_action")
- tagi mogą zaczynać się i kończyć '*' żeby dopasować wiele buforów
regex: wyrażenie regularne do wyszukania w linii
- użyj '\t' do oddzielenia prefiksu od wiadomości, znaki specjalne jak '|' muszą zostać poprzedzone '\' np: '\|'
- jeśli wyrażenie zaczyna się od '!', wtedy pasujący wynik jest odwracany (użyj '\!', aby zacząć od '!')
- dwa wyrażenia są tworzone: jedno dla prefiksu, drugie dla wiadomości
- wielkość znaków nie ma znaczenia dla wyrażeń, jeśli zaczynają się od "(?-i)" wielkość znaków ma znaczenie
list: list all filters
enable: enable filters (filters are enabled by default)
disable: disable filters
toggle: toggle filters
name: filter name
add: add a filter
del: delete a filter
-all: delete all filters
buffer: comma separated list of buffers where filter is active:
- this is full name including plugin (example: "irc.freenode.#weechat")
- "*" means all buffers
- a name starting with '!' is excluded
- name can start or end with '*' to match many buffers
tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit"
- logical "and": use "+" between tags (for example: "nick_toto+irc_action")
- tags can start or end with '*'
regex: POSIX extended regular expression to search in line
- use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|'
- if regex starts with '!', then matching result is reversed (use '\!' to start with '!')
- two regular expressions are created: one for prefix and one for message
- regex are case insensitive, they can start by "(?-i)" to become case sensitive
Domyślny skrót klawiszowy alt+'=' włącza/wyłącza filtrowanie.
The default key alt+'=' toggles filtering on/off.
Najczęściej używane tagi:
no_filter, no_highlight, no_log, log0..log9 (poziom logowania),
Tags most commonly used:
no_filter, no_highlight, no_log, log0..log9 (log level),
notify_none, notify_message, notify_private, notify_highlight,
nick_xxx (xxx to nick w wiadomości), prefix_nick_ccc (ccc to kolor nicka),
irc_xxx (xxx to nazwa komendy lub numer, zobacz /server raw),
nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick),
irc_xxx (xxx is command name or number, see /server raw or /debug tags),
irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info.
Aby zobaczyć listę tagów w liniach buforów wykonaj: /debug tags
To see tags for lines in buffers: /debug tags
Przykłady:
użyj inteligentnego filtru we wszystkich buforach IRC:
Examples:
use IRC smart filter on all buffers:
/filter add irc_smart * irc_smart_filter *
użyj inteligentnego filtru we wszystkich buforach IRC poza tymi zawierającymi "#weechat" w nazwie:
use IRC smart filter on all buffers except those with "#weechat" in name:
/filter add irc_smart *,!*#weechat* irc_smart_filter *
filtruj wszystkie wiadomości IRC o join/part/quit:
filter all IRC join/part/quit messages:
/filter add joinquit * irc_join,irc_part,irc_quit *
filtruj nicki wyświetlane przy wejściu na kanał albo za pomocą /names:
filter nicks displayed when joining channels or with /names:
/filter add nicks * irc_366 *
filtruj nick "toto" na kanale IRC #weechat:
filter nick "toto" on IRC channel #weechat:
/filter add toto irc.freenode.#weechat nick_toto *
filtruj wejścia/akcje IRC od użytkownika "toto":
filter IRC join/action messages from nick "toto":
/filter add toto * nick_toto+irc_join,nick_toto+irc_action *
filtruj linie zawierające fraze "weechat sucks" na kanale IRC #weechat:
filter lines containing "weechat sucks" on IRC channel #weechat:
/filter add sucks irc.freenode.#weechat * weechat sucks
----

View File

@ -434,7 +434,7 @@
** wartości: on, off (domyślna wartość: `off`)
* [[option_weechat.look.buffer_search_regex]] *weechat.look.buffer_search_regex*
** opis: `domyślne wyszukiwanie w buforze: jeśli włączone szukane jest wyrażenie regularne, w przeciwnym wypadku prosty ciąg`
** opis: `default text search in buffer: if enabled, search POSIX extended regular expression, otherwise search simple string`
** typ: bool
** wartości: on, off (domyślna wartość: `off`)
@ -539,7 +539,7 @@
** wartości: dowolny ciąg (domyślna wartość: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
** opis: `wyrażenie regularne używane do sprawdzenia, czy wiadomość posiada podświetlenie czy nie, przynajmniej jeden dopasowany ciąg musi być otoczony znakami (alfanumerycznymi, "-", "_" lub "|"), wielkość znaków nie ma wpływu na wyrażenie (użyj "(?-i)" na początku, aby wielkość znaków miała znaczenie), przykłady: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** opis: `POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** typ: ciąg
** wartości: dowolny ciąg (domyślna wartość: `""`)

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1312,8 +1312,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1394,7 +1394,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2582,8 +2582,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2739,11 +2739,11 @@ msgstr ""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"regulární výraz pro zkontrolování zda má zpráva být zvýrazněna nebo ne, "
"alespoň jedno nalezení v řetězci musí být obklopeno znaky slov "
@ -5086,8 +5086,8 @@ msgstr "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5263,8 +5263,8 @@ msgstr "[<kanál>[,<kanál>...]] [<server>] [-re <regexp>]"
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -8464,10 +8464,11 @@ msgid "text color of selected line in relay buffer"
msgstr "barva textu řádku vybraného klienta"
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
msgid ""
@ -8505,9 +8506,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
#, fuzzy
@ -8690,8 +8691,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.3-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
@ -1353,6 +1353,7 @@ msgstr "wertet eine Expression aus und zeigt das Resultat im Buffer an"
msgid "[-n] <expression> || [-n] -c <expression1> <operator> <expression2>"
msgstr "[-n] <expression> || [-n] -c <expression1> <operator> <expression2>"
#, fuzzy
msgid ""
" -n: display result without sending it to buffer (debug mode)\n"
" -c: evaluate as condition: use operators and parentheses, return a "
@ -1370,8 +1371,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1496,6 +1497,7 @@ msgstr ""
"list || enable|disable|toggle [<name>] || add <name> <buffer>[,<buffer>...] "
"<tags> <regex> || del <name>|-all"
#, fuzzy
msgid ""
" list: list all filters\n"
" enable: enable filters (filters are enabled by default)\n"
@ -1516,7 +1518,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2966,9 +2968,10 @@ msgstr ""
"es werden immer die Standardeinstellungen verwendet (anstelle der zuletzt "
"genutzten Sucheinstellungen)"
#, fuzzy
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
"standardmäßige Textsuche im Buffer: falls aktiviert wird mittels regulären "
"Ausdrücken gesucht, andernfalls findet eine genaue Textsuche statt"
@ -3158,12 +3161,13 @@ msgstr ""
"werden). Schlagwörter können mit \"*\", als Joker, beginnen oder enden; "
"Beispiel: \"test,(?-i)*toto*,flash*\""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"Suchmuster (regulärer Ausdruck) welches genutzt werden soll, um zu "
"überprüfen ob eine Nachricht ein Highlight enthält oder nicht. Mindestens "
@ -5776,11 +5780,12 @@ msgstr "Ignoriert Nicks/Hosts von Channels oder Servern"
msgid "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
msgstr "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
#, fuzzy
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5956,11 +5961,12 @@ msgstr "Channels mit ihrem Thema auflisten"
msgid "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
msgstr "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
#, fuzzy
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -9404,11 +9410,13 @@ msgstr "Hintergrundfarbe in Relay-Buffer"
msgid "text color of selected line in relay buffer"
msgstr "Textfarbe für selektierte Zeile in Relay-Buffer"
#, fuzzy
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"regulärer Ausdruck für IP Adressen die auf das Relay zugreifen dürfen "
"(zwischen Groß- und Kleinschreibung wird dabei nicht unterschieden. Um "
@ -9460,10 +9468,11 @@ msgstr ""
"Datei mit SSL Zertifikat und privatem Schlüssel (zur Nutzung von Clients mit "
"SSL)"
#, fuzzy
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
"erlaubt regulären Ausdruck für Origins in WebSockets (Groß- und "
"Kleinschreibung wird ignoriert, um Groß- und Kleinschreibung zu nutzen muss "
@ -9654,6 +9663,7 @@ msgstr ""
"list|listdefault || add <name> <modifiers> <groups> <regex> || del <name>|-"
"all [<name>...] || missing || default -yes"
#, fuzzy
msgid ""
" list: list all rmodifiers\n"
"listdefault: list default rmodifiers\n"
@ -9663,8 +9673,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1351,8 +1351,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1433,7 +1433,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2726,8 +2726,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2895,12 +2895,13 @@ msgstr ""
"sensible), las palabras pueden empezar o terminar con \"*\" para una "
"concordancia parcial; ejemplo: \"prueba,(?-i)*toto*,flash*\""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"expresión regular usada para ver si un mensaje tiene un resalte o no, al "
"menos una coincidencia en el texto debe estar rodeado por letras "
@ -5306,11 +5307,12 @@ msgid "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
msgstr "list || add [re:]<apodo> [<servidor> [<canal>]] || del <número>|-all"
# nicks and hostnames are case insensible
#, fuzzy
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5483,11 +5485,12 @@ msgstr "lista canales y sus temas"
msgid "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
msgstr "[<canal>[,<canal>...]] [<servidor>] [-re <regex>]"
#, fuzzy
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -8739,11 +8742,13 @@ msgid "text color of selected line in relay buffer"
msgstr "color del texto de la línea seleccionada en el buffer del repetidor"
# why is case insensitive important? ips use numbers and urls are case insensible.
#, fuzzy
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"expresión regular con IPs permitidas a usar el retransmisor (insensible a "
"las mayúsculas, use \"(?-i) al principio para hacerlo sensible); si IPv6 "
@ -8788,9 +8793,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
msgid ""
@ -8972,8 +8977,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

103
po/fr.po
View File

@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"PO-Revision-Date: 2014-01-09 12:23+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-09 17:02+0100\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@ -1349,8 +1349,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1412,8 +1412,9 @@ msgstr ""
" < inférieur\n"
" >= supérieur ou égal\n"
" > supérieur\n"
" =~ correspond à l'expression régulière\n"
" !~ ne correspond PAS à l'expression régulière\n"
" =~ correspond à l'expression régulière POSIX étendue\n"
" !~ ne correspond PAS à l'expression régulière POSIX "
"étendue\n"
"\n"
"Une expression est considérée comme \"vraie\" si elle est non NULL, non "
"vide, et différente de \"0\".\n"
@ -1496,7 +1497,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -1556,7 +1557,7 @@ msgstr ""
" - \"et\" logique: utilisez \"+\" entre les étiquettes (par "
"exemple: \"nick_toto+irc_action\")\n"
" - les étiquettes peuvent commencer ou se terminer par '*'\n"
" regex: expression régulière à rechercher dans la ligne\n"
" regex: expression régulière POSIX étendue à rechercher dans la ligne\n"
" - utiliser '\\t' pour séparer le préfixe du message, les "
"caractères spéciaux comme '|' doivent être échappés: '\\|'\n"
" - si l'expression régulière commence par '!' alors le résultat "
@ -2883,11 +2884,11 @@ msgstr ""
"lieu d'utiliser les valeurs de la dernière recherche dans le tampon)"
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
"recherche par défaut dans le tampon: si activé, rechercher une expression "
"régulière, sinon rechercher du texte simple"
"régulière POSIX étendue, sinon rechercher du texte simple"
msgid "default text search in buffer: in message, prefix, prefix and message"
msgstr ""
@ -3067,18 +3068,18 @@ msgstr ""
"\"*\" pour une comparaison partielle; exemple: \"test,(?-i)*toto*,flash*\""
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"expression régulière utilisée pour vérifier si un message a un \"highlight\" "
"ou non, au moins une correspondance dans la chaîne doit être entourée de "
"caractères de mot (alphanumérique, \"-\", \"_\" ou \"|\"), l'expression "
"régulière est insensible à la casse (utilisez \"(?-i)\" au début pour la "
"rendre sensible à la casse), exemples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"expression régulière POSIX étendue utilisée pour vérifier si un message a un "
"\"highlight\" ou non, au moins une correspondance dans la chaîne doit être "
"entourée de caractères de mot (alphanumérique, \"-\", \"_\" ou \"|\"), "
"l'expression régulière est insensible à la casse (utilisez \"(?-i)\" au "
"début pour la rendre sensible à la casse), exemples: \"flashcode|flashy\", "
"\"(?-i)FlashCode|flashy\""
msgid ""
"comma separated list of tags to highlight; case insensitive comparison; each "
@ -5627,8 +5628,8 @@ msgstr "list || add [re:]<pseudo> [<serveur> [<canal>]] || del <numéro>|-all"
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5648,9 +5649,9 @@ msgid ""
msgstr ""
" list: lister tous les ignores\n"
" add: ajouter un ignore\n"
" pseudo: pseudo ou hôte (peut être une expression régulière si \"re:\" "
"est donné ou un masque avec \"*\" pour remplacer un ou plusieurs "
"caractères)\n"
" pseudo: pseudo ou hôte (peut être une expression régulière POSIX "
"étendue si \"re:\" est donné ou un masque avec \"*\" pour remplacer un ou "
"plusieurs caractères)\n"
" del: supprimer un ignore\n"
" numéro: numéro du ignore à supprimer (voir la liste des ignore pour le "
"trouver)\n"
@ -5806,8 +5807,8 @@ msgstr "[<canal>[,<canal>...]] [<serveur>] [-re <regex>]"
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -5820,9 +5821,9 @@ msgid ""
msgstr ""
" canal: canal à lister\n"
"serveur: nom du serveur\n"
" regex: expression régulière utilisée pour filtrer les résultats "
"(insensible à la casse, peut commencer par \"(?-i)\" pour devenir sensible à "
"la casse)\n"
" regex: expression régulière POSIX étendue utilisée pour filtrer les "
"résultats (insensible à la casse, peut commencer par \"(?-i)\" pour devenir "
"sensible à la casse)\n"
"\n"
"Exemples:\n"
" lister tous les canaux du serveur (peut être très lent pour les grands "
@ -9158,15 +9159,16 @@ msgid "text color of selected line in relay buffer"
msgstr "couleur du texte pour la ligne sélectionnée dans le tampon relay"
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"expression régulière avec les IPs autorisées pour le relai (insensible à la "
"casse, utilisez \"(?-i)\" en début de chaîne pour la rendre sensible à la "
"casse); si l'IPv6 est activé et qu'une connexion est faite en IPv4, il y "
"aura une adresse IPv4 encapsulée dans une IPv6 (comme: \"::"
"expression régulière POSIX étendue avec les IPs autorisées pour le relai "
"(insensible à la casse, utilisez \"(?-i)\" en début de chaîne pour la rendre "
"sensible à la casse); si l'IPv6 est activé et qu'une connexion est faite en "
"IPv4, il y aura une adresse IPv4 encapsulée dans une IPv6 (comme: \"::"
"ffff:127.0.0.1\"), exemple: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
msgid ""
@ -9212,13 +9214,14 @@ msgstr ""
"avec SSL)"
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
"expression régulière avec les origines autorisées dans les websockets "
"(insensible à la casse, utilisez \"(?-i)\" en début de chaîne pour la rendre "
"insensible à la casse), exemple: \"^http://(www\\.)?example\\.(com|org)\""
"expression régulière POSIX étendue avec les origines autorisées dans les "
"websockets (insensible à la casse, utilisez \"(?-i)\" en début de chaîne "
"pour la rendre insensible à la casse), exemple: \"^http://(www\\.)?example\\."
"(com|org)\""
msgid ""
"maximum number of minutes in backlog per IRC channel (0 = unlimited, "
@ -9406,8 +9409,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"
@ -9429,8 +9432,8 @@ msgstr ""
" groupes: action sur les groupes capturés dans l'expression régulière "
"(entre parenthèses): liste de groupes (séparés par une virgule) (de 1 à 9) "
"avec en option \"*\" après le nombre pour cacher le groupe\n"
" regex: expression régulière (insensible à la casse, peut commencer par "
"\"(?-i)\" pour devenir sensible à la casse)\n"
" regex: expression régulière POSIX étendue (insensible à la casse, peut "
"commencer par \"(?-i)\" pour devenir sensible à la casse)\n"
" del: supprimer un rmodifier\n"
" -all: supprimer tous les rmodifiers\n"
" missing: ajouter les rmodifiers manquants\n"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1241,8 +1241,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1318,7 +1318,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2255,8 +2255,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2385,11 +2385,11 @@ msgstr ""
"összehasonlítás, a szavak végére/elejére \"*\"-ot illesztve részleges keresés"
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
msgid ""
@ -4643,8 +4643,8 @@ msgstr ""
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -4788,8 +4788,8 @@ msgstr "[szoba[,szoba] [szerver]]"
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -7897,10 +7897,11 @@ msgid "text color of selected line in relay buffer"
msgstr "szerver nevének színe"
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
msgid ""
@ -7932,9 +7933,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
#, fuzzy
@ -8119,8 +8120,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1327,8 +1327,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1467,7 +1467,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2816,8 +2816,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2983,12 +2983,13 @@ msgstr ""
"sensibili alle maiuscole), le parole possono iniziare o terminare con \"*\" "
"per la corrispondenza parziale; ad esempio: \"test,(?-i)*tizio*,flash*\""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"espressione regolare usata per verificare se un messaggio contiene una "
"notifica oppure no, almeno una corrispondenza nella stringa deve essere "
@ -5438,11 +5439,12 @@ msgstr "ignora nick/host dai server o dai canali"
msgid "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
msgstr "list || add [re:]<nick> [<server> [<canale>]] || del <numero>|-all"
#, fuzzy
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5617,11 +5619,12 @@ msgstr "elenca i canali ed i loro argomenti"
msgid "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
msgstr "[<canale>[,<canale>...]] [<server>] [-re <regexp>]"
#, fuzzy
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -8876,11 +8879,13 @@ msgstr "colore di sfondo nel buffer relay"
msgid "text color of selected line in relay buffer"
msgstr "colore del testo della riga selezionata nel buffer relay"
#, fuzzy
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"espressione regolare con gli indirizzi IP a cui è consentito usare il relay, "
"(non sensibile alle maiuscole, usare \"(?-i)\" all'inizio per renderla "
@ -8929,9 +8934,9 @@ msgstr ""
"SSL)"
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
msgid ""
@ -9116,8 +9121,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/WeeChat>\n"
@ -1314,8 +1314,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1452,7 +1452,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2793,8 +2793,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2960,12 +2960,13 @@ msgstr ""
"に \"(?-i)\" をつければ区別有り)、部分マッチさせるには単語の最初か最後に \"*"
"\" をつける; 例: \"test,(?-i)*toto*,flash*\""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"メッセージがハイライトされるかを判断する正規表現、一回以上マッチすればハイラ"
"イトされる (英数字、\"-\"、\"_\"、\"|\")、正規表現は大文字小文字を区別しない "
@ -5372,11 +5373,12 @@ msgstr "あるサーバかチャンネルで、指定したニックネーム/
msgid "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
msgstr "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
#, fuzzy
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5550,11 +5552,12 @@ msgstr "チャンネルとトピックをリストアップ"
msgid "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
msgstr "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
#, fuzzy
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -8767,11 +8770,13 @@ msgstr "リレーバッファ内の背景色"
msgid "text color of selected line in relay buffer"
msgstr "リレーバッファ内の選択行のテキスト色"
#, fuzzy
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"リレーの利用をを許可する IP アドレスの正規表現 (大文字小文字の区別無し、最初"
"に \"(?-i)\" をつければ区別有り); IPv6 が有効で IPv4 を使って接続している場"
@ -8816,10 +8821,11 @@ msgid ""
"file with SSL certificate and private key (for serving clients with SSL)"
msgstr "SSL 証明書と秘密鍵のファイル (SSL 接続を利用するクライアント用)"
#, fuzzy
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
"ウェブソケットに使うことを許可する origin の正規表現 (大文字小文字を区別しな"
"い、\"(?-i)\" を先頭に置くと大文字小文字を区別する)、例: \"^http://(www\\.)?"
@ -9004,6 +9010,7 @@ msgstr ""
"list|listdefault || add <name> <modifiers> <groups> <regex> || del <name>|-"
"all [<name>...] || missing || default -yes"
#, fuzzy
msgid ""
" list: list all rmodifiers\n"
"listdefault: list default rmodifiers\n"
@ -9013,8 +9020,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:17+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1332,6 +1332,7 @@ msgstr "przetwarza wyrażenie i wysyła wynik do buforu"
msgid "[-n] <expression> || [-n] -c <expression1> <operator> <expression2>"
msgstr "[-n] <wyrażenie> || [-n] -c <wyrażenie1> <operator> <wyrażenie2>"
#, fuzzy
msgid ""
" -n: display result without sending it to buffer (debug mode)\n"
" -c: evaluate as condition: use operators and parentheses, return a "
@ -1349,8 +1350,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1473,6 +1474,7 @@ msgstr ""
"list || enable|disable|toggle [<nazwa>] || add <nazwa> <bufor>[,<bufor>...] "
"<tagi> <regex> || del <nazwa>|-all"
#, fuzzy
msgid ""
" list: list all filters\n"
" enable: enable filters (filters are enabled by default)\n"
@ -1493,7 +1495,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2865,9 +2867,10 @@ msgstr ""
"wymusza domyślne wartości dla wyszukiwań tekstowych w buforze (zamiast "
"wartości z poprzedniego wyszukiwania)"
#, fuzzy
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
"domyślne wyszukiwanie w buforze: jeśli włączone szukane jest wyrażenie "
"regularne, w przeciwnym wypadku prosty ciąg"
@ -3046,12 +3049,13 @@ msgstr ""
"znaków miała znaczenie), słowa mogą zaczynać się od \"*\" dla częściowego "
"dopasowania; przykład: \"test,(?-i)*toto*,flash*\""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"wyrażenie regularne używane do sprawdzenia, czy wiadomość posiada "
"podświetlenie czy nie, przynajmniej jeden dopasowany ciąg musi być otoczony "
@ -5525,11 +5529,12 @@ msgstr "ignoruje nicki/hosty z serwera lub kanałów"
msgid "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
msgstr "list || add [re:]<nick> [<serwer> [<kanał>]] || del <numer>|-all"
#, fuzzy
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5704,11 +5709,12 @@ msgstr "wyświetla kanały i ich tematy"
msgid "[<channel>[,<channel>...]] [<server>] [-re <regex>]"
msgstr "[<kanał>[,<kanał>...]] [<serwer>] [-re <regex>]"
#, fuzzy
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -8997,11 +9003,13 @@ msgstr "kolor tła w buforze pośrednika"
msgid "text color of selected line in relay buffer"
msgstr "kolor tekstu zaznaczonej linii w buforze pośrednika"
#, fuzzy
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"dla wtyczki relay dozwolone są wyrażenia regularne zawierające adresy IP "
"(wielkość znaków nie ma znaczenia, użyj \"(?-i)\" na początku, aby wielkość "
@ -9050,10 +9058,11 @@ msgstr ""
"plik z certyfikatem SSL i kluczem prywatnym (dla obsługi klientów poprzez "
"SSL)"
#, fuzzy
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
"wyrażenie regularne ze źródłami dozwolonymi dla gniazd webowych (nie "
"wrażliwe na wielkość znaków, umieszczenie \"(?-i)\" na początku sprawi, że "
@ -9238,6 +9247,7 @@ msgstr ""
"list|listdefault || add <nazwa> <modyfikatory> <grupy> <regex> || del "
"<nazwa>|-all [<nazwa>...] || missing || default -yes"
#, fuzzy
msgid ""
" list: list all rmodifiers\n"
"listdefault: list default rmodifiers\n"
@ -9247,8 +9257,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:17+0100\n"
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1365,8 +1365,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1447,7 +1447,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2670,8 +2670,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2823,11 +2823,11 @@ msgstr ""
#, fuzzy
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
"expressão regular usada para verificar se a mensagem tem destaque ou não, "
"pelo menos uma correspondência na string precisa ser envolta por caracteres "
@ -5053,8 +5053,8 @@ msgstr "list || add [re:]<apelido> [<servidor> [<canal>]] || del <número>|-all"
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -5181,8 +5181,8 @@ msgstr "[<canal>[,<canal>...]] [<servidor>] [-re <expressão_regular>]"
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -8104,10 +8104,11 @@ msgstr "cor do texto da linha do cliente selecionada"
#, fuzzy
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
"expressão regular com IPs permitidos a usar o relay, por exemplo: "
"\"^(123.45.67.89|192.160.*)$\""
@ -8149,9 +8150,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
#, fuzzy
@ -8334,8 +8335,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:17+0100\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1263,8 +1263,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1340,7 +1340,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2278,8 +2278,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2408,11 +2408,11 @@ msgstr ""
"могут начинаться или кончаться \"*\" для неполного соответствия)"
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
msgid ""
@ -4679,8 +4679,8 @@ msgstr ""
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -4822,8 +4822,8 @@ msgstr "[канал[,канал] [сервер]]"
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -7926,10 +7926,11 @@ msgid "text color of selected line in relay buffer"
msgstr "цвет названия сервера"
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
msgid ""
@ -7961,9 +7962,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
#, fuzzy
@ -8146,8 +8147,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+0100\n"
"PO-Revision-Date: 2014-01-06 10:17+0100\n"
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@ -1105,8 +1105,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1182,7 +1182,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2023,8 +2023,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2142,11 +2142,11 @@ msgid ""
msgstr ""
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
msgid ""
@ -4181,8 +4181,8 @@ msgstr "list || add [re:]<rumuz> [<sunucu> [<kanal>]] || del <sayı>|-all"
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -4305,8 +4305,8 @@ msgstr ""
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -7057,10 +7057,11 @@ msgid "text color of selected line in relay buffer"
msgstr ""
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
msgid ""
@ -7092,9 +7093,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
msgid ""
@ -7264,8 +7265,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

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: 2014-01-09 12:18+0100\n"
"POT-Creation-Date: 2014-01-09 16:10+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"
@ -1111,8 +1111,8 @@ msgid ""
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n"
"\n"
"An expression is considered as \"true\" if it is not NULL, not empty, and "
"different from \"0\".\n"
@ -1188,7 +1188,7 @@ msgid ""
" - logical \"and\": use \"+\" between tags (for example: \"nick_toto"
"+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" regex: POSIX extended regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special chars like '|' "
"must be escaped: '\\|'\n"
" - if regex starts with '!', then matching result is reversed (use "
@ -2026,8 +2026,8 @@ msgid ""
msgstr ""
msgid ""
"default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"
"default text search in buffer: if enabled, search POSIX extended regular "
"expression, otherwise search simple string"
msgstr ""
msgid "default text search in buffer: in message, prefix, prefix and message"
@ -2145,11 +2145,11 @@ msgid ""
msgstr ""
msgid ""
"regular expression used to check if a message has highlight or not, at least "
"one match in string must be surrounded by word chars (alphanumeric, \"-\", "
"\"_\" or \"|\"), regular expression is case insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: \"flashcode|flashy\", \"(?-"
"i)FlashCode|flashy\""
"POSIX extended regular expression used to check if a message has highlight "
"or not, at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""
msgstr ""
msgid ""
@ -4184,8 +4184,8 @@ msgstr ""
msgid ""
" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX extended regular expression if "
"\"re:\" is given or a mask using \"*\" to replace one or more chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignores\n"
@ -4307,8 +4307,8 @@ msgstr ""
msgid ""
"channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter results (case insensitive, can "
"start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression used to filter results (case "
"insensitive, can start by \"(?-i)\" to become case sensitive)\n"
"\n"
"Examples:\n"
" list all channels on server (can be very slow on large networks):\n"
@ -7019,10 +7019,11 @@ msgid "text color of selected line in relay buffer"
msgstr ""
msgid ""
"regular expression with IPs allowed to use relay (case insensitive, use \"(?-"
"i)\" at beginning to make it case sensitive); if IPv6 is enabled and that "
"connection is made using IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: \"^((::ffff:)?123.45.67.89|192.160.*)$\""
"POSIX extended regular expression with IPs allowed to use relay (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive); if IPv6 "
"is enabled and that connection is made using IPv4, it will be IPv4-mapped "
"IPv6 address (like: \"::ffff:127.0.0.1\"), example: \"^((::ffff:)?"
"123.45.67.89|192.160.*)$\""
msgstr ""
msgid ""
@ -7054,9 +7055,9 @@ msgid ""
msgstr ""
msgid ""
"regular expression with origins allowed in websockets (case insensitive, use "
"\"(?-i)\" at beginning to make it case sensitive), example: \"^http://(www"
"\\.)?example\\.(com|org)\""
"POSIX extended regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""
msgstr ""
msgid ""
@ -7227,8 +7228,8 @@ msgid ""
" groups: action on groups captured in regular expression (inside "
"parentheses): comma separated list of groups (from 1 to 9) with optional \"*"
"\" after number to hide the group\n"
" regex: regular expression (case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" regex: POSIX extended regular expression (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"

View File

@ -6515,8 +6515,8 @@ command_init ()
" < less\n"
" >= greater or equal\n"
" > greater\n"
" =~ is matching regex\n"
" !~ is NOT matching regex\n\n"
" =~ is matching POSIX extended regex\n"
" !~ is NOT matching POSIX extended regex\n\n"
"An expression is considered as \"true\" if it is not NULL, "
"not empty, and different from \"0\".\n"
"The comparison is made using integers if the two "
@ -6594,9 +6594,10 @@ command_init ()
" - logical \"and\": use \"+\" between tags (for "
"example: \"nick_toto+irc_action\")\n"
" - tags can start or end with '*'\n"
" regex: regular expression to search in line\n"
" - use '\\t' to separate prefix from message, special "
"chars like '|' must be escaped: '\\|'\n"
" regex: POSIX extended regular expression to search in "
"line\n"
" - use '\\t' to separate prefix from message, "
"special chars like '|' must be escaped: '\\|'\n"
" - if regex starts with '!', then matching "
"result is reversed (use '\\!' to start with '!')\n"
" - two regular expressions are created: one for "

View File

@ -2071,8 +2071,8 @@ config_weechat_init_options ()
config_look_buffer_search_regex = config_file_new_option (
weechat_config_file, ptr_section,
"buffer_search_regex", "boolean",
N_("default text search in buffer: if enabled, search regular expression, "
"otherwise search simple string"),
N_("default text search in buffer: if enabled, search POSIX extended "
"regular expression, otherwise search simple string"),
NULL, 0, 0, "off", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
config_look_buffer_search_where = config_file_new_option (
weechat_config_file, ptr_section,
@ -2224,11 +2224,12 @@ config_weechat_init_options ()
config_look_highlight_regex = config_file_new_option (
weechat_config_file, ptr_section,
"highlight_regex", "string",
N_("regular expression used to check if a message has highlight or not, "
"at least one match in string must be surrounded by word chars "
"(alphanumeric, \"-\", \"_\" or \"|\"), regular expression is case "
"insensitive (use \"(?-i)\" at beginning to make it case sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""),
N_("POSIX extended regular expression used to check if a message has "
"highlight or not, at least one match in string must be surrounded "
"by word chars (alphanumeric, \"-\", \"_\" or \"|\"), regular "
"expression is case insensitive (use \"(?-i)\" at beginning to make "
"it case sensitive), examples: \"flashcode|flashy\", "
"\"(?-i)FlashCode|flashy\""),
NULL, 0, 0, "", NULL, 0, NULL, NULL, &config_change_highlight_regex, NULL, NULL, NULL);
config_look_highlight_tags = config_file_new_option (
weechat_config_file, ptr_section,

View File

@ -5977,9 +5977,10 @@ irc_command_init ()
" || del <number>|-all"),
N_(" list: list all ignores\n"
" add: add an ignore\n"
" nick: nick or hostname (can be regular "
"expression if \"re:\" is given or a mask using "
"\"*\" to replace one or more chars)\n"
" nick: nick or hostname (can be a POSIX "
"extended regular expression if \"re:\" is given "
"or a mask using \"*\" to replace one or more "
"chars)\n"
" del: delete an ignore\n"
" number: number of ignore to delete (look at "
"list to find it)\n"
@ -6079,9 +6080,9 @@ irc_command_init ()
"[-re <regex>]"),
N_("channel: channel to list\n"
" server: server name\n"
" regex: regular expression used to filter "
"results (case insensitive, can start by \"(?-i)\" "
"to become case sensitive)\n\n"
" regex: POSIX extended regular expression used "
"to filter results (case insensitive, can start "
"by \"(?-i)\" to become case sensitive)\n\n"
"Examples:\n"
" list all channels on server (can be very slow "
"on large networks):\n"

View File

@ -588,10 +588,11 @@ relay_config_init ()
relay_config_network_allowed_ips = weechat_config_new_option (
relay_config_file, ptr_section,
"allowed_ips", "string",
N_("regular expression with IPs allowed to use relay (case insensitive, "
"use \"(?-i)\" at beginning to make it case sensitive); if IPv6 is "
"enabled and that connection is made using IPv4, it will be "
"IPv4-mapped IPv6 address (like: \"::ffff:127.0.0.1\"), example: "
N_("POSIX extended regular expression with IPs allowed to use relay "
"(case insensitive, use \"(?-i)\" at beginning to make it case "
"sensitive); if IPv6 is enabled and that connection is made using "
"IPv4, it will be IPv4-mapped IPv6 address (like: "
"\"::ffff:127.0.0.1\"), example: "
"\"^((::ffff:)?123.45.67.89|192.160.*)$\""),
NULL, 0, 0, "", NULL, 0, NULL, NULL,
&relay_config_change_network_allowed_ips, NULL, NULL, NULL);
@ -642,9 +643,10 @@ relay_config_init ()
relay_config_network_websocket_allowed_origins = weechat_config_new_option (
relay_config_file, ptr_section,
"websocket_allowed_origins", "string",
N_("regular expression with origins allowed in websockets (case "
"insensitive, use \"(?-i)\" at beginning to make it case sensitive), "
"example: \"^http://(www\\.)?example\\.(com|org)\""),
N_("POSIX extended regular expression with origins allowed in "
"websockets (case insensitive, use \"(?-i)\" at beginning to make "
"it case sensitive), example: "
"\"^http://(www\\.)?example\\.(com|org)\""),
NULL, 0, 0, "", NULL, 0, NULL, NULL,
&relay_config_change_network_websocket_allowed_origins, NULL, NULL, NULL);

View File

@ -256,8 +256,9 @@ rmodifier_command_init ()
"expression (inside parentheses): comma separated "
"list of groups (from 1 to 9) with optional \"*\" "
"after number to hide the group\n"
" regex: regular expression (case insensitive, "
"can start by \"(?-i)\" to become case sensitive)\n"
" regex: POSIX extended regular expression "
"(case insensitive, can start by \"(?-i)\" to "
"become case sensitive)\n"
" del: delete a rmodifier\n"
" -all: delete all rmodifiers\n"
" missing: add missing rmodifiers\n"