diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-05-27 22:47:46 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-05-27 22:47:46 +0200 |
commit | 99dcdae5b0495d58873365556ed43e0602cb0927 (patch) | |
tree | 63d5a3a01487ab95609e7f650871f411b8a09fec /po/pl.po | |
parent | 86f110db983b38bef23e500a598c9e954a6ea434 (diff) | |
download | weechat-99dcdae5b0495d58873365556ed43e0602cb0927.zip |
core: update translations
Diffstat (limited to 'po/pl.po')
-rw-r--r-- | po/pl.po | 165 |
1 files changed, 164 insertions, 1 deletions
@@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2022-05-11 21:20+0200\n" +"POT-Creation-Date: 2022-05-27 22:21+0200\n" "PO-Revision-Date: 2022-04-24 10:20+0200\n" "Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n" "Language-Team: Polish <kde-i18n-doc@kde.org>\n" @@ -573,6 +573,66 @@ msgstr "%sNie ma dostępnej pomocy, \"%s\" nie jest komendą ani opcją" msgid "Buffer command history:" msgstr "Historia komend bufora:" +#, fuzzy +#| msgid "List of bar items:" +msgid "Custom bar items:" +msgstr "Lista elementów paska:" + +#, fuzzy, c-format +#| msgid "options %s%s%s" +msgid " conditions: %s\"%s%s%s\"%s" +msgstr "opcje %s%s%s" + +#, fuzzy, c-format +#| msgid "%s error: %s%s%s%s" +msgid " content: %s\"%s%s%s\"%s" +msgstr "%s błąd: %s%s%s%s" + +#, fuzzy +#| msgid "No bar item defined" +msgid "No custom bar item defined" +msgstr "Nie zdefiniowano elementów paska" + +#, fuzzy, c-format +#| msgid "Bar \"%s\" updated" +msgid "Custom bar item \"%s\" updated" +msgstr "Uaktualniono pasek \"%s\"" + +#, fuzzy, c-format +#| msgid "bar item \"%s\"" +msgid "Custom bar item \"%s\" added" +msgstr "element paska \"%s\"" + +#, fuzzy, c-format +#| msgid "%sUnable to scroll bar \"%s\"" +msgid "%sUnable to add custom bar item \"%s\"" +msgstr "%sNie można przewinąć paska \"%s\"" + +#, fuzzy, c-format +#| msgid "%sContext \"%s\" not found" +msgid "%sCustom bar item \"%s\" not found" +msgstr "%sNie odnaleziono kontekstu \"%s\"" + +#, fuzzy, c-format +#| msgid "Filter \"%s\" renamed to \"%s\"" +msgid "Custom bar item \"%s\" renamed to \"%s\"" +msgstr "Zmieniono nazwę filtru z \"%s\" na \"%s\"" + +#, fuzzy, c-format +#| msgid "%sUnable to rename filter \"%s\" to \"%s\"" +msgid "%sUnable to rename custom bar item \"%s\" to \"%s\"" +msgstr "%sNie można zmienić nazwy filtru z \"%s\" na \"%s\"" + +#, fuzzy +#| msgid "All bars have been deleted" +msgid "All custom bar items have been deleted" +msgstr "Wszystkie paski zostały usunięte" + +#, fuzzy, c-format +#| msgid "Bar \"%s\" deleted" +msgid "Custom bar item \"%s\" deleted" +msgstr "Pasek \"%s\" usunięty" + msgid "default command:" msgstr "domyślna komenda:" @@ -2361,6 +2421,69 @@ msgstr "" "\n" "Ta komenda jest używana do przypisywania klawiszy lub przez wtyczki." +#, fuzzy +#| msgid "list of bar items" +msgid "manage custom bar items" +msgstr "lista elementów pasków" + +#, fuzzy +#| msgid "" +#| "list || enable|disable|toggle [<name>|@] || add|addreplace <name> " +#| "<buffer>[,<buffer>...] <tags> <regex> || rename <name> <new_name> || " +#| "recreate <name> || del <name>|-all" +msgid "" +"list || add|addreplace <name> \"<conditions>\" \"<content>\" || rename " +"<name> <new_name> || refresh <name> [<name>...] || recreate <name> || del " +"<name>|-all" +msgstr "" +"list || enable|disable|toggle [<nazwa>|@] || add|addreplace<nazwa> <bufor>[," +"<bufor>...] <tagi> <regex> || rename <nazwa> <nowa_nazwa> || recreate " +"<nazwa> || del <nazwa>|-all" + +msgid "" +" list: list all custom bar items\n" +" add: add a custom bar item\n" +"addreplace: add or replace an existing custom bar item\n" +" name: custom bar item name\n" +"conditions: evaluated conditions to display the bar item (for example to " +"display the bar item only in specific buffers)\n" +" content: content (evaluated, see /help eval)\n" +" rename: rename a custom bar item\n" +" refresh: update content of item in all bars where the item is displayed; " +"any item can be refreshed: default/plugin/custom bar items\n" +" recreate: set input with the command used to edit the custom bar item\n" +" del: delete a custom bar item\n" +" -all: delete all custom bar items\n" +"\n" +"Examples:\n" +" add item with terminal size, displayed only in buffers with number = 1:\n" +" /item add terminfo \"${buffer.number} == 1\" \"term:${info:term_width}" +"x${info:term_height}\"\n" +" add item with buffer info:\n" +" /item add bufinfo \"\" \"${buffer.number}:${buffer.name}${if:${buffer." +"zoomed}?(Z)}\"\n" +" add item with date/time using format \"Dec 25, 12:34 +0100\", refreshed " +"every minute:\n" +" /item add datetime \"\" \"${date:%b %d, %H:%M %z}\"\n" +" /trigger add datetime_refresh timer \"60000;60\" \"\" \"\" \"/item " +"refresh datetime\"\n" +" add item with number of lines in buffer (displayed/total), refreshed each " +"time a new line is displayed or if filtered lines have changed:\n" +" /item add lines_count \"\" \"${calc:${buffer.lines.lines_count}-${buffer." +"lines.lines_hidden}}/${buffer.lines.lines_count} lines\"\n" +" /trigger add lines_count_refresh_print print \"\" \"\" \"\" \"/item " +"refresh lines_count\"\n" +" /trigger add lines_count_refresh_signal signal \"window_switch;" +"buffer_switch;buffer_lines_hidden;filters_*\" \"\" \"\" \"/item refresh " +"lines_count\"\n" +" force refresh of item \"lines_count\":\n" +" /item refresh lines_count\n" +" recreate item \"lines_count\" with different conditions or content:\n" +" /item recreate lines_count\n" +" delete item \"lines_count\":\n" +" /item del lines_count" +msgstr "" + msgid "bind/unbind keys" msgstr "dodaj/usuń przypisanie klawiszy" @@ -3626,6 +3749,24 @@ msgstr "" msgid "names of bars" msgstr "nazwy pasków" +#, fuzzy +#| msgid "names of bars" +msgid "names of custom bar items" +msgstr "nazwy pasków" + +#, fuzzy +#| msgid "functions for command line" +msgid "conditions for custom bar item" +msgstr "funkcje linii komend" + +msgid "contents for custom bar item" +msgstr "" + +msgid "" +"arguments for command that adds a custom bar item: item name, conditions, " +"content" +msgstr "" + msgid "values for a configuration option" msgstr "wartości opcji konfiguracyjnych" @@ -5726,6 +5867,22 @@ msgstr "%s-Więcej(%d)-" msgid "away" msgstr "nieobecny" +#, fuzzy +#| msgid "" +#| "filename; optional argument: default path (evaluated, see /help eval)" +msgid "condition(s) to display the bar item (evaluated, see /help eval)" +msgstr "" +"nazwa pliku; opcjonalny argument: domyślna ścieżka (przetwarzana, zobacz /" +"help eval)" + +#, fuzzy +#| msgid "" +#| "filename; optional argument: default path (evaluated, see /help eval)" +msgid "content of bar item (evaluated, see /help eval)" +msgstr "" +"nazwa pliku; opcjonalny argument: domyślna ścieżka (przetwarzana, zobacz /" +"help eval)" + #, c-format msgid "Notify changed for \"%s%s%s\": \"%s%s%s\" to \"%s%s%s\"" msgstr "Zmieniono powiadomienia dla \"%s%s%s\": \"%s%s%s\" na \"%s%s%s\"" @@ -14882,6 +15039,12 @@ msgstr "domyślny kod powrotu dla callbacka hooka" msgid "trigger post actions" msgstr "triggeruje akcje końcowe" +msgid "" +"arguments for command that adds a trigger: trigger name, hooks, hook " +"arguments, hook conditions, hook regex, hook command, hook return code, post " +"actions" +msgstr "" + #, c-format msgid "" "%s%s: invalid format for option \"regex\", see /help trigger.trigger.%s.regex" |