1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

core: update translations and auto-generated doc files (issue #1872)

This commit is contained in:
Sébastien Helleu
2023-01-28 15:18:50 +01:00
parent 4c1a87ba60
commit efe4aa29fc
37 changed files with 18123 additions and 17623 deletions
+26 -22
View File
@@ -1076,32 +1076,36 @@ target: Antwort soll auf diese Suchmaske zutreffen
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
rename <alias> <new_alias>
list: listet Alternativbefehle auf (ohne Angabe von Argumenten wird diese Liste dargestellt)
add: fügt einen Alternativbefehl hinzu
addcompletion: fügt einen Alternativbefehl, mit einer benutzerdefinierten Vervollständigung, hinzu
del: entfernt einen Alternativbefehl
completion: Vervollständigung für Alternativbefehl: standardmäßig wird die Vervollständigung auf den Zielbefehl angewendet
Hinweis: Mit der Variablen "%%command" kann eine Vervollständigung eines vorhandenen Befehls durchgeführt werden
alias: Name des Alternativbefehls
command: Name des zuzuordnenden Befehls, inklusive Argumenten (mehrere Befehle können durch Semikolon getrennt werden)
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
command: command name with arguments (many commands can be separated by semicolons)
Anmerkung: Im Befehl können Variablen genutzt werden, die dann durch den entsprechenden Wert ersetzt werden:
$n: Argument 'n' (zwischen 1 und 9)
$-m: Argumente von 1 bis 'm'
$n-: Argumente von 'n' bis zum letzten Argument
$n-m: Argumente von 'n' bis 'm'
$*: alle Argumente
$~: letztes Argument
$var: "var" ist eine lokale Variable für den jeweiligen Buffer (siehe /buffer listvar)
Beispiel: $nick, $channel, $server, $plugin, $name
Note: in command, special variables are replaced:
$n: argument 'n' (between 1 and 9)
$-m: arguments from 1 to 'm'
$n-: arguments from 'n' to last
$n-m: arguments from 'n' to 'm'
$*: all arguments
$~: last argument
$var: where "var" is a local variable of buffer (see /buffer listvar)
examples: $nick, $channel, $server, $plugin, $name
Beispiele:
Alternativbefehl "/split" wird anlegt um ein Fenster horizontal zu teilen:
Examples:
alias /split to split window horizontally:
/alias add split /window splith
Alternativbefehl "/hallo" wird angelegt um in allen Channels, außer im #weechat Channel, den Text "Hallo" auszugeben:
/alias add hallo /allchan -exclude=#weechat hallo
Alternativbefehl "/forcejoin" wird angelegt um den IRC Befehl "forcejoin" mit einer Vervollständigung von /sajoin auszuführen:
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
rename alias "hello" to "Hello":
/alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
// end::alias_commands[]
@@ -8,37 +8,37 @@
|===
| Alias | Befehl | Vervollständigung
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
@@ -1076,11 +1076,13 @@ target: reply should match this mask
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
rename <alias> <new_alias>
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
@@ -1101,6 +1103,8 @@ Examples:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
rename alias "hello" to "Hello":
/alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
@@ -8,37 +8,37 @@
|===
| Alias | Command | Completion
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
@@ -6,7 +6,7 @@
// tag::config_priority[]
[width="30%",cols="1,3,2",options="header"]
|===
| Rank | File | Priority
| Rang | Fichier | Priorité
| 1 | sec.conf | 120000
| 2 | weechat.conf | 110000
| 3 | plugins.conf | 100000
@@ -6,7 +6,7 @@
// tag::plugins_priority[]
[width="30%",cols="1,3,2",options="header"]
|===
| Rank | Extension | Priority
| Rang | Extension | Priorité
| 1 | charset | 16000
| 2 | logger | 15000
| 3 | exec | 14000
@@ -1076,11 +1076,13 @@ nombre : nombre de réponses à retourner (recherche complète si nombre négat
add <alias> [<commande>[;<commande>...]]
addcompletion <complétion> <alias> [<commande>[;<commande>...]]
del <alias> [<alias>...]
rename <alias> <nouvel_alias>
list : afficher les alias (sans paramètre, cette liste est affichée)
add : ajouter un alias
addcompletion : ajouter un alias avec une complétion personnalisée
del : supprimer un alias
rename : renommer un alias
complétion : complétion pour l'alias : par défaut la complétion se fait avec la commande cible
note : vous pouvez utiliser %%commande pour utiliser la complétion d'une commande existante
alias : nom de l'alias
@@ -1101,6 +1103,8 @@ Exemples :
/alias add split /window splith
alias /hello pour dire "hello" sur tous les canaux mais pas sur #weechat :
/alias add hello /allchan -exclude=#weechat hello
renommer l'alias "hello" en "Hello" :
/alias rename hello Hello
alias /forcejoin pour envoyer la commande IRC "forcejoin" avec la complétion de /sajoin :
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
@@ -8,37 +8,37 @@
|===
| Alias | Commande | Complétion
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
@@ -1076,11 +1076,13 @@ target: reply should match this mask
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
rename <alias> <new_alias>
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
@@ -1101,6 +1103,8 @@ Examples:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
rename alias "hello" to "Hello":
/alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
@@ -8,37 +8,37 @@
|===
| Alias | Command | Completion
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
@@ -1076,11 +1076,13 @@ target: マスクに一致するものだけを返す
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
rename <alias> <new_alias>
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
@@ -1101,6 +1103,8 @@ Examples:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
rename alias "hello" to "Hello":
/alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
@@ -8,37 +8,37 @@
|===
| 別名 | コマンド | 補完
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
+30 -26
View File
@@ -1072,36 +1072,40 @@ cel: odpowiedź powinna pasować do maski
----
/alias list [<alias>]
add <alias> [<komenda>[;<komenda>...]]
addcompletion <dopełnienie> <alias> [<komenda>[;<komenda>...]]
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
rename <alias> <new_alias>
list: lista aliasów (ta lista wyświetlana jest jeśli nie zostanie podany argument)
add: dodaje alias
addcompletion: dodaje alias z niestandardowym dopełnieniem
del: usuwa alias
completion: dopełnienie dla aliasu: domyślnie dopełnienie wykonuje się z docelową komendą
uwaga: można użyć %%komenda w celu użycia dopełnień dla istniejących komend
alias: nazwa aliasu
komenda: nazwa komendy (wiele komend można oddzielić za pomocą średnika)
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
command: command name with arguments (many commands can be separated by semicolons)
Ważne: dla komend specjalne zmienne są zastępowane odpowiednimi wartościami:
$n: argument 'n' (pomiędzy 1 i 9)
$-m: argumenty od 1 do 'm'
$n-: argumenty od 'n' do ostatniego
$n-m: argumenty od 'n' od 'm'
$*: wszystkie argumenty
$~: ostatni argument
$var: gdzie "var" to zmienna lokalna buforu (zobacz /buffer localvar)
przykłady: $nick, $channel, $server, $plugin, $name
Note: in command, special variables are replaced:
$n: argument 'n' (between 1 and 9)
$-m: arguments from 1 to 'm'
$n-: arguments from 'n' to last
$n-m: arguments from 'n' to 'm'
$*: all arguments
$~: last argument
$var: where "var" is a local variable of buffer (see /buffer listvar)
examples: $nick, $channel, $server, $plugin, $name
Przykłady:
alias /split do poziomego podziału okna:
/alias split /window splith
alias /hello pisze "hello" na wszystkich kanałach poza #weechat:
/alias hello /allchan -exclude=#weechat hello
alias /forcejoin wysyłający komende IRC "forcejoin" z dopełnieniem dla /sajoin:
/alias -completion %%sajoin forcejoin /quote forcejoin
Examples:
alias /split to split window horizontally:
/alias add split /window splith
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
rename alias "hello" to "Hello":
/alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
// end::alias_commands[]
@@ -8,37 +8,37 @@
|===
| Alias | Komenda | Dopełnienie
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
+29 -25
View File
@@ -1072,36 +1072,40 @@ noопција: постављање логичке опције на ’off’
* `+alias+`: исписује, додаје или уклања алијасе команди
----
/alias list [<алијас>]
add <алијас> [<команда>[;<команда>...]]
addcompletion <довршавање> <алијас> [<команда>[;<команда>...]]
del <алијас> [<алијас>...]
/alias list [<alias>]
add <alias> [<command>[;<command>...]]
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
rename <alias> <new_alias>
list: исписује алијасе (без аргумента, приказује се ова листа)
add: додавање алијаса
addcompletion: додавање алијаса са кориснички дефинисаним довршавањем
del: брисање алијаса
completion: довршавање за алијас: довршавање се подразумевано врши са target командом
напомена: за довршавање постојеће команде можете да употребите %%команда
алијас: име алијаса
команда: име команде са аргументима (више команди може да се раздвоји тачка запетама)
list: list aliases (without argument, this list is displayed)
add: add an alias
addcompletion: add an alias with a custom completion
del: delete an alias
rename: rename an alias
completion: completion for alias: by default completion is done with target command
note: you can use %%command to use completion of an existing command
alias: name of alias
command: command name with arguments (many commands can be separated by semicolons)
Напомена: у команди се замењују специјалне променљиве:
$n: аргумент ’n’ (између 1 и 9)
$-m: аргументи од 1 до ’m’
$n-: аргументи од ’n’ до последњег
$n-m: аргументи од ’n’ до ’m’
$*: сви аргументи
$~: последњи аргумент
$var: где је „var” локална променљива или бафер (погледајте /buffer listvar)
примери: $nick, $channel, $server, $plugin, $name
Note: in command, special variables are replaced:
$n: argument 'n' (between 1 and 9)
$-m: arguments from 1 to 'm'
$n-: arguments from 'n' to last
$n-m: arguments from 'n' to 'm'
$*: all arguments
$~: last argument
$var: where "var" is a local variable of buffer (see /buffer listvar)
examples: $nick, $channel, $server, $plugin, $name
Примери:
алијас /split на поделу прозора по хоризонтали:
Examples:
alias /split to split window horizontally:
/alias add split /window splith
алијас /hello да се каже „hello” на свим каналима осим на #weechat:
alias /hello to say "hello" on all channels but not on #weechat:
/alias add hello /allchan -exclude=#weechat hello
алијас /forcejoin да пошаље IRC команду „forcejoin” са довршавањем /sajoin:
rename alias "hello" to "Hello":
/alias rename hello Hello
alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
// end::alias_commands[]
@@ -8,37 +8,37 @@
|===
| Alias | Команда | Довршавање
| /AAWAY | /allserv /away | -
| /ANICK | /allserv /nick | -
| /BEEP | /print -beep | -
| /BYE | /quit | -
| /C | /buffer clear | -
| /CL | /buffer clear | -
| /CLOSE | /buffer close | -
| /CHAT | /dcc chat | -
| /EXIT | /quit | -
| /IG | /ignore | -
| /J | /join | -
| /K | /kick | -
| /KB | /kickban | -
| /LEAVE | /part | -
| /M | /msg | -
| /MUB | /unban * | -
| /MSGBUF | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /N | /names | -
| /Q | /query | -
| /REDRAW | /window refresh | -
| /SAY | /msg * | -
| /SIGNOFF | /quit | -
| /T | /topic | -
| /UB | /unban | -
| /UMODE | /mode $nick | -
| /V | /command core version | -
| /W | /who | -
| /WC | /window close | -
| /WI | /whois | -
| /WII | /whois $1 $1 | -
| /WM | /window merge | -
| /WW | /whowas | -
| /aaway | /allserv /away | -
| /anick | /allserv /nick | -
| /beep | /print -beep | -
| /bye | /quit | -
| /c | /buffer clear | -
| /cl | /buffer clear | -
| /close | /buffer close | -
| /chat | /dcc chat | -
| /exit | /quit | -
| /ig | /ignore | -
| /j | /join | -
| /k | /kick | -
| /kb | /kickban | -
| /leave | /part | -
| /m | /msg | -
| /mub | /unban * | -
| /msgbuf | /command -buffer $1 * /input send $2- | %(buffers_plugins_names)
| /n | /names | -
| /q | /query | -
| /redraw | /window refresh | -
| /say | /msg * | -
| /signoff | /quit | -
| /t | /topic | -
| /ub | /unban | -
| /umode | /mode $nick | -
| /v | /command core version | -
| /w | /who | -
| /wc | /window close | -
| /wi | /whois | -
| /wii | /whois $1 $1 | -
| /wm | /window merge | -
| /ww | /whowas | -
|===
// end::default_aliases[]
File diff suppressed because it is too large Load Diff
+24 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -134,6 +134,15 @@ msgstr "Typ"
msgid "Constants"
msgstr "Konstanty"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, fuzzy, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sChyba: příkaz \"%s\" již existuje pro plugin \"%s\""
@@ -5087,13 +5096,23 @@ msgstr "%sAlias \"%s\" nenalezen"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" odebrán"
#, fuzzy, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: vzorec přesměrování \"%s\" již existuje"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Rozložení \"%s\" přejmenováno na %s"
#, fuzzy
msgid "list, add or remove command aliases"
msgstr "vypíše, přídá nebo odebere IRC servery"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, fuzzy, no-c-format
@@ -5102,6 +5121,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -5126,6 +5146,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+63 -3
View File
@@ -26,7 +26,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2023-01-25 07:49+0100\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German - Germany <weechatter@arcor.de>\n"
@@ -133,6 +133,15 @@ msgstr "Type"
msgid "Constants"
msgstr "Konstanten"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr ""
@@ -6285,22 +6294,71 @@ msgstr "%sAlias \"%s\" nicht gefunden"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" entfernt"
#, fuzzy, c-format
#| msgid "%s%s: trigger \"%s\" already exists"
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: Trigger \"%s\" existiert bereits"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Layout \"%s\" wurde umbenannt. Der neue Name lautet \"%s\""
msgid "list, add or remove command aliases"
msgstr "auflisten, hinzufügen oder entfernen von Alternativnamen"
#, fuzzy
#| msgid ""
#| "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
#| "<completion> <alias> [<command>[;<command>...]] || del <alias> "
#| "[<alias>...]"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
#, no-c-format
#, fuzzy, no-c-format
#| msgid ""
#| " list: list aliases (without argument, this list is displayed)\n"
#| " add: add an alias\n"
#| "addcompletion: add an alias with a custom completion\n"
#| " del: delete an alias\n"
#| " completion: completion for alias: by default completion is done with "
#| "target command\n"
#| " note: you can use %%command to use completion of an "
#| "existing command\n"
#| " alias: name of alias\n"
#| " command: command name with arguments (many commands can be "
#| "separated by semicolons)\n"
#| "\n"
#| "Note: in command, special variables are replaced:\n"
#| " $n: argument 'n' (between 1 and 9)\n"
#| " $-m: arguments from 1 to 'm'\n"
#| " $n-: arguments from 'n' to last\n"
#| " $n-m: arguments from 'n' to 'm'\n"
#| " $*: all arguments\n"
#| " $~: last argument\n"
#| " $var: where \"var\" is a local variable of buffer (see /buffer "
#| "listvar)\n"
#| " examples: $nick, $channel, $server, $plugin, $name\n"
#| "\n"
#| "Examples:\n"
#| " alias /split to split window horizontally:\n"
#| " /alias add split /window splith\n"
#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n"
#| " /alias add hello /allchan -exclude=#weechat hello\n"
#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
#| "sajoin:\n"
#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin"
msgid ""
" list: list aliases (without argument, this list is displayed)\n"
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -6325,6 +6383,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+24 -2
View File
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Santiago Forero <santiago@forero.xyz>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -132,6 +132,15 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Constantes"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sError: el comando \"%s\" ya existe en el plugin \"%s\""
@@ -5637,13 +5646,23 @@ msgstr "%sAlias \"%s\" no encontrado"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" eliminado"
#, fuzzy, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%sError: el filtro \"%s\" ya existe"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Tema \"%s\" renombrado a \"%s\""
#, fuzzy
msgid "list, add or remove command aliases"
msgstr "lista, añade o elimina servidores IRC"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, fuzzy, no-c-format
@@ -5652,6 +5671,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -5676,6 +5696,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+29 -4
View File
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"PO-Revision-Date: 2023-01-24 20:53+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2023-01-28 15:17+0100\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"Language: fr\n"
@@ -126,6 +126,15 @@ msgstr "Type"
msgid "Constants"
msgstr "Constantes"
msgid "Rank"
msgstr "Rang"
msgid "Priority"
msgstr "Priorité"
msgid "File"
msgstr "Fichier"
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sUne autre commande \"%s\" existe déjà pour l'extension \"%s\""
@@ -6149,15 +6158,25 @@ msgstr "%sAlias \"%s\" non trouvé"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" supprimé"
#, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%sL'alias \"%s\" existe déjà"
#, c-format
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "L'alias \"%s\" a été renommé en \"%s\""
msgid "list, add or remove command aliases"
msgstr "lister, ajouter ou retirer des alias de commande"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<alias>] || add <alias> [<commande>[;<commande>...]] || addcompletion "
"<complétion> <alias> [<commande>[;<commande>...]] || del <alias> [<alias>...]"
"<complétion> <alias> [<commande>[;<commande>...]] || del <alias> "
"[<alias>...] || rename <alias> <nouvel_alias>"
#, no-c-format
msgid ""
@@ -6165,6 +6184,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -6189,6 +6209,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
@@ -6198,6 +6220,7 @@ msgstr ""
" add : ajouter un alias\n"
"addcompletion : ajouter un alias avec une complétion personnalisée\n"
" del : supprimer un alias\n"
" rename : renommer un alias\n"
" complétion : complétion pour l'alias : par défaut la complétion se fait "
"avec la commande cible\n"
" note : vous pouvez utiliser %%commande pour utiliser la "
@@ -6223,6 +6246,8 @@ msgstr ""
" alias /hello pour dire \"hello\" sur tous les canaux mais pas sur "
"#weechat :\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" renommer l'alias \"hello\" en \"Hello\" :\n"
" /alias rename hello Hello\n"
" alias /forcejoin pour envoyer la commande IRC \"forcejoin\" avec la "
"complétion de /sajoin :\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+23 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -134,6 +134,15 @@ msgstr ""
msgid "Constants"
msgstr ""
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, fuzzy, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%s az ignore már létezik\n"
@@ -4655,13 +4664,22 @@ msgstr "%s cím \"%s\" nem található\n"
msgid "Alias \"%s\" removed"
msgstr "A \"%s\" aliasz eltávolítva\n"
#, fuzzy, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%s az ignore már létezik\n"
#, fuzzy, c-format
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "a felhasználók le lettek tiltva"
#, fuzzy
msgid "list, add or remove command aliases"
msgstr "szerverek listázása, hozzáadása vagy eltávolítása"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, fuzzy, no-c-format
@@ -4670,6 +4688,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -4694,6 +4713,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+24 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -131,6 +131,15 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Costanti"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, fuzzy, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sErrore: un altro comando \"%s\" esiste già per il plugin \"%s\""
@@ -5358,13 +5367,23 @@ msgstr "%sAlias \"%s\" non trovato"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" eliminato"
#, fuzzy, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%sErrore: il filtro \"%s\" esiste già"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Il layout \"%s\" è stato rinominato in \"%s\""
#, fuzzy
msgid "list, add or remove command aliases"
msgstr "elenca, aggiunge o rimuove server IRC"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, fuzzy, no-c-format
@@ -5373,6 +5392,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -5397,6 +5417,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+30 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
"Language-Team: Japanese <https://github.com/l/weechat/tree/master/"
@@ -130,6 +130,15 @@ msgstr "タイプ"
msgid "Constants"
msgstr "定数"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, fuzzy, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr ""
@@ -5830,12 +5839,28 @@ msgstr "%s別名 \"%s\" が見つかりません"
msgid "Alias \"%s\" removed"
msgstr "別名 \"%s\" が削除されました"
#, fuzzy, c-format
#| msgid "%s%s: trigger \"%s\" already exists"
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: トリガ \"%s\" は既に存在します"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "レイアウト \"%s\" を \"%s\" にリネームしました"
msgid "list, add or remove command aliases"
msgstr "別名コマンドのリストアップ、追加、削除"
#, fuzzy
#| msgid ""
#| "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
#| "<completion> <alias> [<command>[;<command>...]] || del <alias> "
#| "[<alias>...]"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
@@ -5846,6 +5871,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -5870,6 +5896,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+63 -3
View File
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-12-30 14:10+0100\n"
"Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n"
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
@@ -128,6 +128,15 @@ msgstr "Typ"
msgid "Constants"
msgstr "Stałe"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sIstnieje już inna komenda \"%s\" dla wtyczki \"%s\""
@@ -6012,22 +6021,71 @@ msgstr "%sAlias \"%s\" nie został znaleziony"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" został usunięty"
#, fuzzy, c-format
#| msgid "%s%s: trigger \"%s\" already exists"
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: trigger \"%s\" już istnieje"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Zmieniono nazwę układu \"%s\" na \"%s\""
msgid "list, add or remove command aliases"
msgstr "wyświetla, dodaje lub usuwa aliasy komend"
#, fuzzy
#| msgid ""
#| "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
#| "<completion> <alias> [<command>[;<command>...]] || del <alias> "
#| "[<alias>...]"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<alias>] || add <alias> [<komenda>[;<komenda>...]] || addcompletion "
"<dopełnienie> <alias> [<komenda>[;<komenda>...]] || del <alias> [<alias>...]"
#, no-c-format
#, fuzzy, no-c-format
#| msgid ""
#| " list: list aliases (without argument, this list is displayed)\n"
#| " add: add an alias\n"
#| "addcompletion: add an alias with a custom completion\n"
#| " del: delete an alias\n"
#| " completion: completion for alias: by default completion is done with "
#| "target command\n"
#| " note: you can use %%command to use completion of an "
#| "existing command\n"
#| " alias: name of alias\n"
#| " command: command name with arguments (many commands can be "
#| "separated by semicolons)\n"
#| "\n"
#| "Note: in command, special variables are replaced:\n"
#| " $n: argument 'n' (between 1 and 9)\n"
#| " $-m: arguments from 1 to 'm'\n"
#| " $n-: arguments from 'n' to last\n"
#| " $n-m: arguments from 'n' to 'm'\n"
#| " $*: all arguments\n"
#| " $~: last argument\n"
#| " $var: where \"var\" is a local variable of buffer (see /buffer "
#| "listvar)\n"
#| " examples: $nick, $channel, $server, $plugin, $name\n"
#| "\n"
#| "Examples:\n"
#| " alias /split to split window horizontally:\n"
#| " /alias add split /window splith\n"
#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n"
#| " /alias add hello /allchan -exclude=#weechat hello\n"
#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
#| "sajoin:\n"
#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin"
msgid ""
" list: list aliases (without argument, this list is displayed)\n"
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -6052,6 +6110,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+30 -2
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n"
"Language-Team: Portuguese <>\n"
@@ -133,6 +133,15 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Constantes"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, fuzzy, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sErro: outro comando \"%s\" já existe para o plugin \"%s\""
@@ -5880,12 +5889,28 @@ msgstr "%sAlias \"%s\" não encontrado"
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" removido"
#, fuzzy, c-format
#| msgid "%s%s: trigger \"%s\" already exists"
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: o acionador \"%s\" já existe"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "O nome da disposição \"%s\" mudou para \"%s\""
msgid "list, add or remove command aliases"
msgstr "listar, adicionar ou remover alias de comandos"
#, fuzzy
#| msgid ""
#| "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
#| "<completion> <alias> [<command>[;<command>...]] || del <alias> "
#| "[<alias>...]"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<alias>] || add <alias> [<comando>[;<comando>...]] || addcompletion "
"<completação> <alias> [<comando>[;<comando>...]] || del <alias> [<alias>...]"
@@ -5896,6 +5921,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -5920,6 +5946,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+24 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Érico Nogueira <ericonr@disroot.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -130,6 +130,15 @@ msgstr "Tipo"
msgid "Constants"
msgstr "Constantes"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sOutro comando \"%s\" já existe para o plugin \"%s\""
@@ -5317,12 +5326,22 @@ msgstr "%sAtalho \"%s\" não encontrado"
msgid "Alias \"%s\" removed"
msgstr "Atalho \"%s\" removido"
#, fuzzy, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%sErro: filtro \"%s\" já existe"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Disposição \"%s\" renomeado para \"%s\""
msgid "list, add or remove command aliases"
msgstr ""
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, no-c-format
@@ -5331,6 +5350,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -5355,6 +5375,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+23 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -142,6 +142,15 @@ msgstr ""
msgid "Constants"
msgstr ""
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, fuzzy, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%s игнорирование уже существует\n"
@@ -4693,13 +4702,22 @@ msgstr "%s адрес \"%s\" не найден\n"
msgid "Alias \"%s\" removed"
msgstr "Сокращение \"%s\" удалено\n"
#, fuzzy, c-format
msgid "%sAlias \"%s\" already exists"
msgstr "%s игнорирование уже существует\n"
#, fuzzy, c-format
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "команда users отключена"
#, fuzzy
msgid "list, add or remove command aliases"
msgstr "перечислить, добавить или удалить серверы"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, fuzzy, no-c-format
@@ -4708,6 +4726,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -4732,6 +4751,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+63 -3
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-12-05 09:44+0400\n"
"Last-Translator: Ivan Pešić <ivan.pesic@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -131,6 +131,15 @@ msgstr "Тип"
msgid "Constants"
msgstr "Константе"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sВећ постоји друга команда \"%s\" за додатак \"%s\""
@@ -6190,23 +6199,72 @@ msgstr "%sАлијас „%s” није пронађен"
msgid "Alias \"%s\" removed"
msgstr "Уклоњен је алијас „%s”"
#, fuzzy, c-format
#| msgid "%s%s: trigger \"%s\" already exists"
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: окидач „%s” већ постоји"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "Распореду „%s” је промењено име на „%s”"
msgid "list, add or remove command aliases"
msgstr "исписује, додаје или уклања алијасе команди"
#, fuzzy
#| msgid ""
#| "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
#| "<completion> <alias> [<command>[;<command>...]] || del <alias> "
#| "[<alias>...]"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<алијас>] || add <алијас> [<команда>[;<команда>...]] || addcompletion "
"<довршавање> <алијас> [<команда>[;<команда>...]] || del <алијас> "
"[<алијас>...]"
#, no-c-format
#, fuzzy, no-c-format
#| msgid ""
#| " list: list aliases (without argument, this list is displayed)\n"
#| " add: add an alias\n"
#| "addcompletion: add an alias with a custom completion\n"
#| " del: delete an alias\n"
#| " completion: completion for alias: by default completion is done with "
#| "target command\n"
#| " note: you can use %%command to use completion of an "
#| "existing command\n"
#| " alias: name of alias\n"
#| " command: command name with arguments (many commands can be "
#| "separated by semicolons)\n"
#| "\n"
#| "Note: in command, special variables are replaced:\n"
#| " $n: argument 'n' (between 1 and 9)\n"
#| " $-m: arguments from 1 to 'm'\n"
#| " $n-: arguments from 'n' to last\n"
#| " $n-m: arguments from 'n' to 'm'\n"
#| " $*: all arguments\n"
#| " $~: last argument\n"
#| " $var: where \"var\" is a local variable of buffer (see /buffer "
#| "listvar)\n"
#| " examples: $nick, $channel, $server, $plugin, $name\n"
#| "\n"
#| "Examples:\n"
#| " alias /split to split window horizontally:\n"
#| " /alias add split /window splith\n"
#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n"
#| " /alias add hello /allchan -exclude=#weechat hello\n"
#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
#| "sajoin:\n"
#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin"
msgid ""
" list: list aliases (without argument, this list is displayed)\n"
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -6231,6 +6289,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+63 -3
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
"Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -130,6 +130,15 @@ msgstr "Tür"
msgid "Constants"
msgstr "Sabitler"
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr "%sŞu eklenti için başka bir komut (\"%s\") halihazırda var: \"%s\""
@@ -6250,22 +6259,71 @@ msgstr "%s\"%s\" arması bulunamadı"
msgid "Alias \"%s\" removed"
msgstr "\"%s\" arması kaldırıldı"
#, fuzzy, c-format
#| msgid "%s%s: trigger \"%s\" already exists"
msgid "%sAlias \"%s\" already exists"
msgstr "%s%s: \"%s\" tetiği halihazırda mevcut"
#, fuzzy, c-format
#| msgid "Layout \"%s\" has been renamed to \"%s\""
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr "\"%s\" diziliminin adı \"%s\" olarak değiştirildi"
msgid "list, add or remove command aliases"
msgstr "komut armalarını listele, ekle veya kaldır"
#, fuzzy
#| msgid ""
#| "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
#| "<completion> <alias> [<command>[;<command>...]] || del <alias> "
#| "[<alias>...]"
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
"list [<arma>] || add <arma> [<komut>[;<komut>...]] || addcompletion "
"<tamamlama> <arma> [<komut>[;<komut>...]] || del <arma> [<arma>...]"
#, no-c-format
#, fuzzy, no-c-format
#| msgid ""
#| " list: list aliases (without argument, this list is displayed)\n"
#| " add: add an alias\n"
#| "addcompletion: add an alias with a custom completion\n"
#| " del: delete an alias\n"
#| " completion: completion for alias: by default completion is done with "
#| "target command\n"
#| " note: you can use %%command to use completion of an "
#| "existing command\n"
#| " alias: name of alias\n"
#| " command: command name with arguments (many commands can be "
#| "separated by semicolons)\n"
#| "\n"
#| "Note: in command, special variables are replaced:\n"
#| " $n: argument 'n' (between 1 and 9)\n"
#| " $-m: arguments from 1 to 'm'\n"
#| " $n-: arguments from 'n' to last\n"
#| " $n-m: arguments from 'n' to 'm'\n"
#| " $*: all arguments\n"
#| " $~: last argument\n"
#| " $var: where \"var\" is a local variable of buffer (see /buffer "
#| "listvar)\n"
#| " examples: $nick, $channel, $server, $plugin, $name\n"
#| "\n"
#| "Examples:\n"
#| " alias /split to split window horizontally:\n"
#| " /alias add split /window splith\n"
#| " alias /hello to say \"hello\" on all channels but not on #weechat:\n"
#| " /alias add hello /allchan -exclude=#weechat hello\n"
#| " alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
#| "sajoin:\n"
#| " /alias addcompletion %%sajoin forcejoin /quote forcejoin"
msgid ""
" list: list aliases (without argument, this list is displayed)\n"
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -6290,6 +6348,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"
+23 -2
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2023-01-24 20:52+0100\n"
"POT-Creation-Date: 2023-01-28 15:14+0100\n"
"PO-Revision-Date: 2014-08-16 10:27+0200\n"
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
@@ -118,6 +118,15 @@ msgstr ""
msgid "Constants"
msgstr ""
msgid "Rank"
msgstr ""
msgid "Priority"
msgstr ""
msgid "File"
msgstr ""
#, c-format
msgid "%sAnother command \"%s\" already exists for plugin \"%s\""
msgstr ""
@@ -4268,12 +4277,21 @@ msgstr ""
msgid "Alias \"%s\" removed"
msgstr ""
#, c-format
msgid "%sAlias \"%s\" already exists"
msgstr ""
#, c-format
msgid "Alias \"%s\" has been renamed to \"%s\""
msgstr ""
msgid "list, add or remove command aliases"
msgstr ""
msgid ""
"list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion "
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...]"
"<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] "
"|| rename <alias> <new_alias>"
msgstr ""
#, no-c-format
@@ -4282,6 +4300,7 @@ msgid ""
" add: add an alias\n"
"addcompletion: add an alias with a custom completion\n"
" del: delete an alias\n"
" rename: rename an alias\n"
" completion: completion for alias: by default completion is done with "
"target command\n"
" note: you can use %%command to use completion of an existing "
@@ -4306,6 +4325,8 @@ msgid ""
" /alias add split /window splith\n"
" alias /hello to say \"hello\" on all channels but not on #weechat:\n"
" /alias add hello /allchan -exclude=#weechat hello\n"
" rename alias \"hello\" to \"Hello\":\n"
" /alias rename hello Hello\n"
" alias /forcejoin to send IRC command \"forcejoin\" with completion of /"
"sajoin:\n"
" /alias addcompletion %%sajoin forcejoin /quote forcejoin"