diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-27 20:20:31 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-27 20:20:31 +0200 |
commit | 193d2902852c637dfb9ac43830149848224dac10 (patch) | |
tree | 5b7c4400ad8f719bef6bc71f24f565ea50950df9 /po/de.po | |
parent | 50f5be70aa449dede9289d9bae9b4fd121a3c330 (diff) | |
download | weechat-193d2902852c637dfb9ac43830149848224dac10.zip |
alias: add option `missing` in command `/alias`
Diffstat (limited to 'po/de.po')
-rw-r--r-- | po/de.po | 48 |
1 files changed, 45 insertions, 3 deletions
@@ -26,7 +26,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2023-05-27 09:28+0200\n" +"POT-Creation-Date: 2023-05-27 20:17+0200\n" "PO-Revision-Date: 2023-05-25 22:34+0200\n" "Last-Translator: Nils Görs <weechatter@arcor.de>\n" "Language-Team: German <kde-i18n-de@kde.org>\n" @@ -6481,22 +6481,64 @@ msgstr "Alias \"%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>...] || rename <alias> <new_alias>" msgid "" "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion " "<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] " -"|| rename <alias> <new_alias>" +"|| rename <alias> <new_alias> || missing" msgstr "" "list [<alias>] || add <alias> [<command>[;<command>...]] || addcompletion " "<completion> <alias> [<command>[;<command>...]] || del <alias> [<alias>...] " "|| rename <alias> <new_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" +#| " 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 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" +#| " $&: all arguments, with \" replaced by \\\"\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" +#| " 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" 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" +" missing: add missing aliases (using default aliases)\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 " |