mirror of
https://github.com/weechat/weechat.git
synced 2026-06-17 00:24:47 +02:00
Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f9b449df34 | |||
| c6c9566fbb | |||
| fb1a0231b7 | |||
| 96499ad34a | |||
| 5280b7d095 | |||
| 42ac70899a | |||
| 57ffa846f4 | |||
| 5cc4005231 | |||
| 9b5da2f11f | |||
| 65ff49f01e | |||
| 1361602ea5 | |||
| b547bf6bbb | |||
| 7cd4a23cdc | |||
| 52908c86f7 | |||
| 42da33e625 | |||
| c7c15fe743 | |||
| a915d1f398 | |||
| d154b39990 | |||
| d2b8c2883b | |||
| add0be28d9 | |||
| 18833a8c93 | |||
| 04fc35c050 | |||
| e6465d7041 | |||
| 8976000345 | |||
| fe7f92c4d8 | |||
| 59202e3e02 | |||
| 5429381cb6 | |||
| 7c5ae208fd | |||
| f60593e890 | |||
| a031f15f38 | |||
| 65ac711c10 | |||
| 088a74911c | |||
| 0309753406 | |||
| 990c0bc121 | |||
| e01ed80669 | |||
| 501437af07 | |||
| 3886855b05 | |||
| 914bda1a74 | |||
| 28125942d4 | |||
| 2087ec28e3 | |||
| c9fbb917e0 | |||
| 3752e97be1 | |||
| 994b71f58c | |||
| 705d86e684 | |||
| b30c6786b4 | |||
| 668bb3a4ad |
+2
-2
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2007-2008 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2008-2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
@@ -237,7 +237,7 @@ add_custom_target(uninstall
|
||||
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|
||||
|
||||
add_custom_target(dist
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/makedist.sh" "${VERSION}" "HEAD" "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/tools/makedist.sh" "${VERSION}" "HEAD" "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
|
||||
# pkgconfig file
|
||||
|
||||
+19
-4
@@ -15,15 +15,23 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
(file _ReleaseNotes.adoc_ in sources).
|
||||
|
||||
|
||||
[[v1.7.1]]
|
||||
== Version 1.7.1 (2017-04-22)
|
||||
|
||||
Bug fixes::
|
||||
|
||||
* irc: fix parsing of DCC filename
|
||||
|
||||
[[v1.7]]
|
||||
== Version 1.7 (under dev)
|
||||
== Version 1.7 (2017-01-15)
|
||||
|
||||
New features::
|
||||
|
||||
* core: add option weechat.look.align_multiline_words (issue #411, issue #802)
|
||||
* core: add optional command prefix in completion templates "commands", "plugins_commands" and ""weechat_commands"
|
||||
* core: add optional command prefix in completion templates "commands", "plugins_commands" and "weechat_commands"
|
||||
* core: add optional arguments in completion template, sent to the callback
|
||||
* core: add option "time" in command /debug
|
||||
* api: add info "uptime" (WeeChat uptime)
|
||||
* api: add info "pid" (WeeChat PID) (issue #850)
|
||||
* fifo: add file fifo.conf and option fifo.file.path to customize FIFO pipe path/filename (issue #850)
|
||||
* irc: add server option "usermode" (issue #377, issue #820)
|
||||
@@ -35,8 +43,9 @@ Improvements::
|
||||
* core: add a slash before commands completed in arguments of /command, /debug time, /key bind, /key bindctxt, /mute, /repeat, /wait
|
||||
* core: add a warning in header of configuration files to not edit by hand (issue #851)
|
||||
* alias: add a slash before commands completed in arguments of /alias
|
||||
* exec: add option "-oc" in command /exec to execute commands in process output, don't execute commands by default with "-o" (issue #877)
|
||||
* irc: evaluate content of server option "ssl_fingerprint" (issue #858)
|
||||
* irc: change default value of option irc.network.lag_reconnect to 300 (issue #818)
|
||||
* irc: change default value of option irc.network.lag_reconnect from 0 to 300 (issue #818)
|
||||
* trigger: do not hide email in command "/msg nickserv register password email" (issue #849)
|
||||
|
||||
Bug fixes::
|
||||
@@ -44,15 +53,21 @@ Bug fixes::
|
||||
* core: fix deadlock when quitting after a signal SIGHUP/SIGQUIT/SIGTERM is received (issue #32)
|
||||
* core: fix display of empty lines in search mode (issue #829)
|
||||
* api: fix crash in function string_expand_home() when the HOME environment variable is not set (issue #827)
|
||||
* exec: fix memory leak in display of process output
|
||||
* irc: fix option "-temp" in command /server (issue #880)
|
||||
* irc: fix close of server channels which are waiting for the JOIN when the server buffer is closed (issue #873)
|
||||
* irc: fix buffer switching on manual join for forwarded channels (issue #876)
|
||||
* irc: add missing tags on CTCP message sent
|
||||
* lua: fix integers returned in Lua >= 5.3 (issue #834)
|
||||
* relay: make HTTP headers case-insensitive for WebSocket connections (issue #888)
|
||||
* relay: set status to "authentication failed" and close immediately connection in case of authentication failure in weechat and irc protocols (issue #825)
|
||||
* script: reload a script after upgrade only if it was loaded, set autoload only if the script was auto-loaded (issue #855)
|
||||
|
||||
Build::
|
||||
|
||||
* core: fix compilation on Mac OS X (add link with resolv) (issue #276)
|
||||
* core, irc, xfer: fix compilation on Mac OS X (add link with resolv) (issue #276)
|
||||
* core: add build of xz package with make dist (cmake)
|
||||
* tests: fix compilation of tests on FreeBSD 11.0
|
||||
|
||||
[[v1.6]]
|
||||
== Version 1.6 (2016-10-02)
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2006-2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
@@ -39,7 +39,6 @@ EXTRA_DIST = AUTHORS.adoc \
|
||||
CMakeLists.txt \
|
||||
config.rpath \
|
||||
config.h.cmake \
|
||||
makedist.sh \
|
||||
cmake/CMakeParseArguments.cmake \
|
||||
cmake/FindAsciidoctor.cmake \
|
||||
cmake/FindAspell.cmake \
|
||||
@@ -65,6 +64,7 @@ EXTRA_DIST = AUTHORS.adoc \
|
||||
po/srcfiles.cmake \
|
||||
tools/build-test.sh \
|
||||
tools/git-version.sh \
|
||||
tools/makedist.sh \
|
||||
version.sh \
|
||||
weechat.png \
|
||||
weechat.pc.in \
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ https://weechat.org/files/doc/devel/weechat_user.en.html#compile_with_autotools[
|
||||
|
||||
== Copyright
|
||||
|
||||
Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
|
||||
This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
|
||||
+6
-1
@@ -17,8 +17,13 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
|
||||
(file _ChangeLog.adoc_ in sources).
|
||||
|
||||
|
||||
[[v1.7.1]]
|
||||
== Version 1.7.1 (2017-04-22)
|
||||
|
||||
Bug fix and maintenance release.
|
||||
|
||||
[[v1.7]]
|
||||
== Version 1.7 (under dev)
|
||||
== Version 1.7 (2017-01-15)
|
||||
|
||||
[[v1.7_fifo_options]]
|
||||
=== FIFO options
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2005-2006 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2014-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2014-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2007 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2011-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2011-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2009 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2008-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2008-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2015-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2015-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2005 Benoit Papillault <benoit.papillault@free.fr>
|
||||
# Copyright (C) 2005-2006 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2005-2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
|
||||
@@ -4,7 +4,7 @@ Upstream-Contact: Sébastien Helleu <flashcode@flashtux.org>
|
||||
Source: https://weechat.org/
|
||||
|
||||
Files: *
|
||||
Copyright: 2003-2016, Sébastien Helleu <flashcode@flashtux.org>
|
||||
Copyright: 2003-2017, Sébastien Helleu <flashcode@flashtux.org>
|
||||
2005-2009, Emmanuel Bouthenot <kolter@openics.org>
|
||||
2008-2009, Dmitry Kobylin <fnfal@academ.tsc.ru>
|
||||
License: GPL-3+
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -101,7 +101,7 @@ Tato manuálová stránka byla přeložena Ondřejem Súkupem.
|
||||
WeeChat je napsán Sébastienem Helleu a přispěvovateli (kompletní seznam je v
|
||||
souboru AUTHORS.adoc).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat je svobodný software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
| weechat | term_width | Breite des Terminals | -
|
||||
|
||||
| weechat | uptime | Laufzeit von Weechat (Format: "days:hh:mm:ss") | "days" (Anzahl der Tage) oder "seconds" (Anzahl der Sekunden) (optional)
|
||||
|
||||
| weechat | version | WeeChat-Version | -
|
||||
|
||||
| weechat | version_git | WeeChat Git Version (Ausgabe des Befehls "git describe", ausschließlich für eine Entwicklerversion. Eine stabile Version gibt keine Information zurück) | -
|
||||
|
||||
@@ -19,15 +19,16 @@
|
||||
-list: zeigt laufende Befehle an
|
||||
-sh: es wird die shell verwendet um Befehle auszuführen (WARNUNG: Dieses Argument sollte nur verwendet werden, falls alle Argumente unbedenklich sind, siehe Argument -nosh)
|
||||
-nosh: die shell wird nicht verwendet um Befehle auszuführen (wird benötigt, falls der Befehl mit sensiblen Daten hantiert. Zum Beispiel der Inhalt einer Nachricht eines anderen Users)
|
||||
-bg: führt Prozess im Hintergrund aus: gibt weder eine Prozessausgabe noch einen Rückgabewert aus (nicht kompatibel mit Argumenten -o/-n)
|
||||
-bg: führt Prozess im Hintergrund aus: gibt weder eine Prozessausgabe noch einen Rückgabewert aus (nicht kompatibel mit Argumenten -o/-oc/-n/-nf/-pipe/-hsignal)
|
||||
-nobg: gibt Prozessausgabe und Rückgabewert aus (Standardverhalten)
|
||||
-stdin: erstellt eine PIPE um Daten zu dem Prozess zu senden (mittels /exec -in/-inclose)
|
||||
-nostdin: es wird keine PIPE für stdin erstellt (Standardverhalten)
|
||||
-buffer: zeigt/sendet Ausgabe des Befehls an diesen Buffer (wird der angegebene Buffer nicht gefunden wird ein neuer Buffer mit dem Namen "exec.exec.xxx" erstellt)
|
||||
-l: gibt die Ausgabe des Befehls lokal im Buffer aus (Standardverhalten)
|
||||
-o: gibt die Ausgabe des Befehls im Buffer aus (nicht kompatibel mit Argument -bg)
|
||||
-n: gibt die Ausgabe des Befehls in einem neuen Buffer aus (nicht kompatibel mit Argument -bg)
|
||||
-nf: gibt die Ausgabe des Befehls in einem neuen Buffer, mit einem freien Inhalt (kein Zeilenumbruch, keine Limitierung in der Anzahl der Zeilen), aus (nicht kompatibel mit Argument -bg)
|
||||
-o: gibt die Ausgabe des Befehls im Buffer aus (nicht kompatibel mit Argumenten -bg/-pipe/-hsignal)
|
||||
-oc: gibt die Ausgabe des Befehls im Buffer aus und führt diesen dann aus (betrifft Zeilen die mit "/" beginnen bzw. das benutzerdefinierte Befehlszeichen verwenden) (nicht kompatibel mit Argumenten -bg/-pipe/-hsignal)
|
||||
-n: gibt die Ausgabe des Befehls in einem neuen Buffer aus (nicht kompatibel mit Argumenten -bg/-pipe/-hsignal)
|
||||
-nf: gibt die Ausgabe des Befehls in einem neuen Buffer, mit einem freien Inhalt (kein Zeilenumbruch, keine Limitierung in der Anzahl der Zeilen), aus (nicht kompatibel mit Argument -bg/-pipe/-hsignal)
|
||||
-cl: der neue Buffer wird vor einer Ausgabe gelöscht
|
||||
-nocl: Ausgabe wird an neuen Buffer angehangen, ohne diesen vorher zu löschen (Standardverhalten)
|
||||
-sw: es wird zum Ausgabebuffer gewechselt (Standardverhalten)
|
||||
@@ -46,8 +47,8 @@
|
||||
-norc: der Rückgabewert wird unterdrückt
|
||||
-timeout: gibt eine Zeitbeschränkung für den auszuführenden Befehl an (in Sekunden)
|
||||
-name: dem Befehl wird ein Name zugewiesen (um den Befehl später mittels /exec zu nutzen)
|
||||
-pipe: sendet die Ausgabe an einen Befehl von WeeChat/Erweiterung (Zeile für Zeile); sollen Leerzeichen im Befehl/Argument verwendet werden, müssen diese mit Anführungszeichen eingeschlossen werden; Variable $line wird durch die entsprechende Zeile ersetzt (standardmäßig wird die Zeile, getrennt durch ein Leerzeichen, dem Befehl nachgestellt (nicht kompatibel mit den Argumenten -bg/-o/-n)
|
||||
-hsignal: sendet die Ausgabe als hsignal (um es z.B. mittels /trigger zu verwenden) (nicht kompatibel mit den Argumenten -bg/-o/-n)
|
||||
-pipe: sendet die Ausgabe an einen Befehl von WeeChat/Erweiterung (Zeile für Zeile); sollen Leerzeichen im Befehl/Argument verwendet werden, müssen diese mit Anführungszeichen eingeschlossen werden; Variable $line wird durch die entsprechende Zeile ersetzt (standardmäßig wird die Zeile, getrennt durch ein Leerzeichen, dem Befehl nachgestellt (nicht kompatibel mit den Argumenten -bg/-o/-oc/-n/-nf)
|
||||
-hsignal: sendet die Ausgabe als hsignal (um es z.B. mittels /trigger zu verwenden) (nicht kompatibel mit den Argumenten -bg/-o/-oc/-n/-nf)
|
||||
command: Befehl der ausgeführt werden soll; beginnt der Befehl mit "url:", wird die shell deaktiviert und der Inhalt der URL wird heruntergeladen und im Buffer ausgegeben
|
||||
id: identifiziert eindeutig einen Befehl: entweder durch eine Nummer oder einen Namen (sofern ein Name mittels "-name xxx" zugewiesen wurde)
|
||||
-in: sendet Text an die Standardeingabe des Prozesses
|
||||
|
||||
@@ -721,7 +721,7 @@ listfull: listet alle Server auf, mit detaillierten Informationen zu jedem einze
|
||||
add: erstellt einen neuen Server
|
||||
server: Servername, dient der internen Nutzung und zur Darstellung
|
||||
hostname: Name oder IP-Adresse des Servers. Optional kann zusätzlich der Port festgelegt werden (Standard-Port: 6667). Verschiedene Ports können durch Kommata getrennt werden
|
||||
temp: erstellt temporären Server (wird nicht gespeichert)
|
||||
-temp: erstellt temporären Server (wird nicht gespeichert)
|
||||
option: legt die Optionen für den Server fest (die Boolean-Optionen können weggelassen werden)
|
||||
nooption: stellt die Boolean Einstellung auf 'off' (Beispiel: -nossl)
|
||||
copy: erstellt eine Kopie des Servers
|
||||
|
||||
@@ -102,7 +102,7 @@ Diese manpage wurde von {author} geschrieben.
|
||||
WeeChat wird programmiert von Sébastien Helleu und weiteren Beteiligten (eine vollständige Auflistung
|
||||
findet man in der AUTHORS.adoc Datei).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Copyright (C) 2008-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2008-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
<!--
|
||||
Custom styles for Asciidoctor
|
||||
(C) 2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
Copyright (C) 2016-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
-->
|
||||
<style>
|
||||
#header,#content,#footnotes,#footer {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
| weechat | term_width | width of terminal | -
|
||||
|
||||
| weechat | uptime | WeeChat uptime (format: "days:hh:mm:ss") | "days" (number of days) or "seconds" (number of seconds) (optional)
|
||||
|
||||
| weechat | version | WeeChat version | -
|
||||
|
||||
| weechat | version_git | WeeChat git version (output of command "git describe" for a development version only, empty for a stable release) | -
|
||||
|
||||
@@ -19,15 +19,16 @@
|
||||
-list: list commands
|
||||
-sh: use the shell to execute the command (WARNING: use this option ONLY if all arguments are safe, see option -nosh)
|
||||
-nosh: do not use the shell to execute the command (required if the command has some unsafe data, for example the content of a message from another user) (default)
|
||||
-bg: run process in background: do not display process output neither return code (not compatible with options -o/-n)
|
||||
-bg: run process in background: do not display process output neither return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)
|
||||
-nobg: catch process output and display return code (default)
|
||||
-stdin: create a pipe for sending data to the process (with /exec -in/-inclose)
|
||||
-nostdin: do not create a pipe for stdin (default)
|
||||
-buffer: display/send output of command on this buffer (if the buffer is not found, a new buffer with name "exec.exec.xxx" is created)
|
||||
-l: display locally output of command on buffer (default)
|
||||
-o: send output of command to the buffer (not compatible with option -bg)
|
||||
-n: display output of command in a new buffer (not compatible with option -bg)
|
||||
-nf: display output of command in a new buffer with free content (no word-wrap, no limit on number of lines) (not compatible with option -bg)
|
||||
-o: send output of command to the buffer without executing commands (not compatible with options -bg/-pipe/-hsignal)
|
||||
-oc: send output of command to the buffer and execute commands (lines starting with "/" or another custom command char) (not compatible with options -bg/-pipe/-hsignal)
|
||||
-n: display output of command in a new buffer (not compatible with options -bg/-pipe/-hsignal)
|
||||
-nf: display output of command in a new buffer with free content (no word-wrap, no limit on number of lines) (not compatible with options -bg/-pipe/-hsignal)
|
||||
-cl: clear the new buffer before displaying output
|
||||
-nocl: append to the new buffer without clear (default)
|
||||
-sw: switch to the output buffer (default)
|
||||
@@ -46,8 +47,8 @@
|
||||
-norc: don't display return code
|
||||
-timeout: set a timeout for the command (in seconds)
|
||||
-name: set a name for the command (to name it later with /exec)
|
||||
-pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-n)
|
||||
-hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-n)
|
||||
-pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-oc/-n/-nf)
|
||||
-hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-oc/-n/-nf)
|
||||
command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
|
||||
id: command identifier: either its number or name (if set with "-name xxx")
|
||||
-in: send text on standard input of process
|
||||
|
||||
@@ -721,7 +721,7 @@ listfull: list servers with detailed info for each server
|
||||
add: add a new server
|
||||
server: server name, for internal and display use
|
||||
hostname: name or IP address of server, with optional port (default: 6667), many addresses can be separated by a comma
|
||||
temp: add a temporary server (not saved)
|
||||
-temp: add a temporary server (not saved)
|
||||
option: set option for server (for boolean option, value can be omitted)
|
||||
nooption: set boolean option to 'off' (for example: -nossl)
|
||||
copy: duplicate a server
|
||||
|
||||
@@ -100,7 +100,7 @@ This manpage was written by {author}.
|
||||
WeeChat is written by Sébastien Helleu and contributors (complete list is in
|
||||
the AUTHORS.adoc file).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
@@ -391,7 +391,7 @@ Example in C:
|
||||
/*
|
||||
* weechat.c - core functions for WeeChat
|
||||
*
|
||||
* Copyright (C) 2016 Your Name <your@email.com>
|
||||
* Copyright (C) 2017 Your Name <your@email.com>
|
||||
*
|
||||
* This file is part of WeeChat, the extensible chat client.
|
||||
*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2012-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2012-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2012-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2012-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
| weechat | term_width | largeur du terminal | -
|
||||
|
||||
| weechat | uptime | Uptime de WeeChat (format : "jours:hh:mm:ss") | "days" (nombre de jours) ou "seconds" (nombre de secondes) (optionnel)
|
||||
|
||||
| weechat | version | version de WeeChat | -
|
||||
|
||||
| weechat | version_git | version git de WeeChat (sortie de la commande "git describe" pour une version de développement seulement, vide pour une version stable) | -
|
||||
|
||||
@@ -19,15 +19,16 @@
|
||||
-list : lister les commandes
|
||||
-sh : utiliser le shell pour exécuter la commande (ATTENTION : utilisez cette option SEULEMENT si tous les paramètres sont fiables, voir l'option -nosh)
|
||||
-nosh : ne pas utiliser le shell pour exécuter la commande (requis si la commande a des données non fiables, par exemple le contenu d'un message d'un autre utilisateur) (par défaut)
|
||||
-bg : lancer le processus en tâche de fond : ne pas afficher la sortie ni le code retour (non compatible avec les options -o/-n)
|
||||
-bg : lancer le processus en tâche de fond : ne pas afficher la sortie ni le code retour (non compatible avec les options -o/-oc/-n/-nf/-pipe/-hsignal)
|
||||
-nobg : capturer la sortie du processus et afficher le code retour (par défaut)
|
||||
-stdin : créer un tuyau pour envoyer des données sur l'entrée standard du processus (avec /exec -in/-inclose)
|
||||
-nostdin : ne pas créer de tuyau pour l'entrée standard (par défaut)
|
||||
-buffer : afficher/envoyer la sortie de la commande sur ce tampon (si le tampon n'est pas trouvé, un nouveau tampon avec le nom "exec.exec.xxx" est créé)
|
||||
-l : afficher localement la sortie de la commande sur le tampon (par défaut)
|
||||
-o : envoyer la sortie de la commande au tampon (non compatible avec l'option -bg)
|
||||
-n : afficher la sortie de la commande dans un nouveau tampon (non compatible avec l'option -bg)
|
||||
-nf : afficher la sortie de la commande dans un nouveau tampon avec contenu libre (pas de coupure des mots, pas de limite sur le nombre de lignes) (non compatible avec l'option -bg)
|
||||
-o : envoyer la sortie de la commande au tampon sans exécuter les commandes (non compatible avec les options -bg/-pipe/-hsignal)
|
||||
-oc : envoyer la sortie de la commande au tampon et exécuter les commandes (lignes commençant par "/" ou un caractère personnalisé de commande) (non compatible avec les options -bg/-pipe/-hsignal)
|
||||
-n : afficher la sortie de la commande dans un nouveau tampon (non compatible avec les options -bg/-pipe/-hsignal)
|
||||
-nf : afficher la sortie de la commande dans un nouveau tampon avec contenu libre (pas de coupure des mots, pas de limite sur le nombre de lignes) (non compatible avec les options -bg/-pipe/-hsignal)
|
||||
-cl : effacer le nouveau tampon avant d'afficher la sortie
|
||||
-nocl : ajouter au nouveau tampon sans effacer (par défaut)
|
||||
-sw : basculer vers le tampon de sortie (par défaut)
|
||||
@@ -46,8 +47,8 @@
|
||||
-norc : ne pas afficher le code retour
|
||||
-timeout : définir un délai maximum pour la commande (en secondes)
|
||||
-name : définir un nom pour la commande (pour la nommer plus tard avec /exec)
|
||||
-pipe : envoyer la sortie vers une commande WeeChat/extension (ligne par ligne) ; s'il y a des espaces dans la commande/paramètres, entourez les de guillemets ; la variable $line est remplacée par la ligne (par défaut la ligne est ajoutée après la commande, séparée par un espace) (non compatible avec les options -bg/-o/-n)
|
||||
-hsignal : envoyer la sortie sous forme de hsignal (pour être utilisé par exemple dans un trigger) (non compatible avec les options -bg/-o/-n)
|
||||
-pipe : envoyer la sortie vers une commande WeeChat/extension (ligne par ligne) ; s'il y a des espaces dans la commande/paramètres, entourez les de guillemets ; la variable $line est remplacée par la ligne (par défaut la ligne est ajoutée après la commande, séparée par un espace) (non compatible avec les options -bg/-o/-oc/-n/-nf)
|
||||
-hsignal : envoyer la sortie sous forme de hsignal (pour être utilisé par exemple dans un trigger) (non compatible avec les options -bg/-o/-oc/-n/-nf)
|
||||
commande : la commande à exécuter ; si elle commence par "url:", le shell est désactivé et le contenu de l'URL est téléchargé et envoyé comme sortie
|
||||
id : identifiant de commande : soit le numéro ou le nom (si défini avec "-name xxx")
|
||||
-in : envoyer le texte sur l'entrée standard du processus
|
||||
|
||||
@@ -721,7 +721,7 @@ listfull : afficher les serveurs avec de l'info détaillée pour chaque
|
||||
add : ajouter un nouveau serveur
|
||||
serveur : nom du serveur, pour usage interne et affichage
|
||||
nom : nom ou adresse IP du serveur avec port en option (défaut : 6667), plusieurs adresses peuvent être séparées par une virgule
|
||||
temp : ajouter un serveur temporaire (non sauvé)
|
||||
-temp : ajouter un serveur temporaire (non sauvé)
|
||||
option : définir l'option pour le serveur (pour une option booléenne, la valeur peut être omise)
|
||||
nooption : définir l'option booléenne à 'off' (par exemple : -nossl)
|
||||
copy : dupliquer un serveur
|
||||
|
||||
@@ -102,7 +102,7 @@ Cette page de manuel a été écrite par {author}.
|
||||
WeeChat est écrit par Sébastien Helleu et des contributeurs (la liste complète
|
||||
est dans le fichier AUTHORS.adoc).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat est un logiciel libre; vous pouvez le redistribuer et/ou le modifier
|
||||
sous les termes de la GNU General Public License telle que publiée par la
|
||||
|
||||
@@ -393,7 +393,7 @@ Exemple en C :
|
||||
/*
|
||||
* weechat.c - core functions for WeeChat
|
||||
*
|
||||
* Copyright (C) 2016 Your Name <your@email.com>
|
||||
* Copyright (C) 2017 Your Name <your@email.com>
|
||||
*
|
||||
* This file is part of WeeChat, the extensible chat client.
|
||||
*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
| weechat | term_width | width of terminal | -
|
||||
|
||||
| weechat | uptime | WeeChat uptime (format: "days:hh:mm:ss") | "days" (number of days) or "seconds" (number of seconds) (optional)
|
||||
|
||||
| weechat | version | versione di WeeChat | -
|
||||
|
||||
| weechat | version_git | Versione git di weechat (output del comando "git describe" solo per la versione di sviluppo, vuoto per una release stabile) | -
|
||||
|
||||
@@ -19,15 +19,16 @@
|
||||
-list: list commands
|
||||
-sh: use the shell to execute the command (WARNING: use this option ONLY if all arguments are safe, see option -nosh)
|
||||
-nosh: do not use the shell to execute the command (required if the command has some unsafe data, for example the content of a message from another user) (default)
|
||||
-bg: run process in background: do not display process output neither return code (not compatible with options -o/-n)
|
||||
-bg: run process in background: do not display process output neither return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)
|
||||
-nobg: catch process output and display return code (default)
|
||||
-stdin: create a pipe for sending data to the process (with /exec -in/-inclose)
|
||||
-nostdin: do not create a pipe for stdin (default)
|
||||
-buffer: display/send output of command on this buffer (if the buffer is not found, a new buffer with name "exec.exec.xxx" is created)
|
||||
-l: display locally output of command on buffer (default)
|
||||
-o: send output of command to the buffer (not compatible with option -bg)
|
||||
-n: display output of command in a new buffer (not compatible with option -bg)
|
||||
-nf: display output of command in a new buffer with free content (no word-wrap, no limit on number of lines) (not compatible with option -bg)
|
||||
-o: send output of command to the buffer without executing commands (not compatible with options -bg/-pipe/-hsignal)
|
||||
-oc: send output of command to the buffer and execute commands (lines starting with "/" or another custom command char) (not compatible with options -bg/-pipe/-hsignal)
|
||||
-n: display output of command in a new buffer (not compatible with options -bg/-pipe/-hsignal)
|
||||
-nf: display output of command in a new buffer with free content (no word-wrap, no limit on number of lines) (not compatible with options -bg/-pipe/-hsignal)
|
||||
-cl: clear the new buffer before displaying output
|
||||
-nocl: append to the new buffer without clear (default)
|
||||
-sw: switch to the output buffer (default)
|
||||
@@ -46,8 +47,8 @@
|
||||
-norc: don't display return code
|
||||
-timeout: set a timeout for the command (in seconds)
|
||||
-name: set a name for the command (to name it later with /exec)
|
||||
-pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-n)
|
||||
-hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-n)
|
||||
-pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-oc/-n/-nf)
|
||||
-hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-oc/-n/-nf)
|
||||
command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output
|
||||
id: command identifier: either its number or name (if set with "-name xxx")
|
||||
-in: send text on standard input of process
|
||||
|
||||
@@ -721,7 +721,7 @@ listfull: list servers with detailed info for each server
|
||||
add: add a new server
|
||||
server: server name, for internal and display use
|
||||
hostname: name or IP address of server, with optional port (default: 6667), many addresses can be separated by a comma
|
||||
temp: add a temporary server (not saved)
|
||||
-temp: add a temporary server (not saved)
|
||||
option: set option for server (for boolean option, value can be omitted)
|
||||
nooption: set boolean option to 'off' (for example: -nossl)
|
||||
copy: duplicate a server
|
||||
|
||||
@@ -107,7 +107,7 @@ This manpage was written by {author}.
|
||||
WeeChat is written by Sébastien Helleu and contributors (complete list is in
|
||||
the AUTHORS.adoc file).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
| weechat | term_width | 端末の幅 | -
|
||||
|
||||
| weechat | uptime | WeeChat 連続稼働時間 (書式: "days:hh:mm:ss") | "days" (日数) または "seconds" (秒数) (任意)
|
||||
|
||||
| weechat | version | WeeChat のバージョン | -
|
||||
|
||||
| weechat | version_git | WeeChat の git バージョン (開発バージョンではコマンド "git describe" の出力、安定版リリースでは空文字が出力されます) | -
|
||||
|
||||
@@ -19,15 +19,16 @@
|
||||
-list: コマンドをリストアップ
|
||||
-sh: コマンドを実行する際にシェルを使う (警告: このオプションを使えるのは、全ての引数が安全な場合だけです、オプション -nosh を参照)
|
||||
-nosh: コマンドを実行する際にシェルを使わない (コマンドに安全でないデータが含まれる場合に必要、例えば他のユーザからのメッセージの内容) (デフォルト)
|
||||
-bg: プロセスをバックグラウンド実行: プロセスの出力およびリターンコードを表示しない (オプション -o/-n と互換性はありません)
|
||||
-bg: プロセスをバックグラウンド実行: プロセスの出力およびリターンコードを表示しない (オプション -o/-oc/-n/-nf/-pipe/-hsignal と同時に利用できません)
|
||||
-nobg: プロセスの出力を受け取り、リターンコードを表示する (デフォルト)
|
||||
-stdin: プロセスにデータを送信するパイプを作成する (/exec -in/-inclose を使う)
|
||||
-nostdin: 標準入力用にパイプを作成しない (デフォルト)
|
||||
-buffer: コマンドの出力をこのバッファに表示 / 送信する (バッファが見つからない場合、新しいバッファ "exec.exec.xxx" が作られます)
|
||||
-l: コマンドの出力をカレントバッファに表示 (デフォルト)
|
||||
-o: コマンドの出力をカレントバッファに送信 (オプション -bg と互換性はありません)
|
||||
-n: コマンドの出力を新しいバッファに表示 (オプション -bg と互換性はありません)
|
||||
-nf: コマンドの出力を自由内容 (禁則処理なし、行数制限なし) の新しいバッファに表示 (オプション -bg と互換性はありません)
|
||||
-o: コマンドの出力をカレントバッファに送信、カレントバッファは受信した内容をコマンドとして実行しません (オプション -bg/-pipe/-hsignal と同時に利用できません)
|
||||
-oc: コマンドの出力をカレントバッファに送信、カレントバッファは受信した内容 (先頭に "/" もしくはそれ以外のコマンド開始文字を含む行) をコマンドとして実行します (オプション -bg/-pipe/-hsignal と同時に利用できません)
|
||||
-n: コマンドの出力を新しいバッファに表示 (オプション -bg/-pipe/-hsignal と同時に利用できません)
|
||||
-nf: コマンドの出力を自由内容 (禁則処理なし、行数制限なし) の新しいバッファに表示 (オプション -bg/-pipe/-hsignal と同時に利用できません)
|
||||
-cl: 出力を表示する前に新しいバッファをクリア
|
||||
-nocl: 新しいバッファをクリアせずに追加 (デフォルト)
|
||||
-sw: 出力バッファに移動 (デフォルト)
|
||||
@@ -46,8 +47,8 @@
|
||||
-norc: リターンコードを表示しない
|
||||
-timeout: コマンドのタイムアウトを設定 (秒単位)
|
||||
-name: コマンドの名前を設定 (後から名前を付けるには /exec を使う)
|
||||
-pipe: WeeChat およびプラグインコマンドに出力を送信 (1 行ごと); コマンドおよび引数に空白が含まれる場合、2 重引用符で囲ってください; 引数 $line はその行で置換されます (デフォルトではコマンドの後ろに空白を付けてから行を追加します) (オプション -bg/-o/-n と互換性はありません)
|
||||
-hsignal: hsignal として出力を送信 (例えばトリガで使われます) (オプション -bg/-o/-n と互換性はありません)
|
||||
-pipe: WeeChat およびプラグインコマンドに出力を送信 (1 行ごと); コマンドおよび引数に空白が含まれる場合、2 重引用符で囲ってください; 引数 $line はその行で置換されます (デフォルトではコマンドの後ろに空白を付けてから行を追加します) (オプション -bg/-o/-oc/-n/-nf と同時に利用できません)
|
||||
-hsignal: hsignal として出力を送信 (例えばトリガで使われます) (オプション -bg/-o/-oc/-n/-nf と同時に利用できません)
|
||||
command: 実行するコマンド; "url:" で始まる場合、シェルは無効化され、URL の内容がダウンロードされ、出力として送信されます
|
||||
id: コマンド識別子: 番号か名前 ("-name xxx" で設定した場合) のどちらか一方
|
||||
-in: プロセスの標準入力にテキストを送信
|
||||
|
||||
@@ -721,7 +721,7 @@ listfull: 詳細情報を含めてサーバをリストアップ
|
||||
add: 新しいサーバを追加
|
||||
server: サーバ名、内部的な利用と表示に利用
|
||||
hostname: サーバのホスト名か IP アドレス、ポート番号は任意 (デフォルト: 6667)、複数のアドレスはコンマで区切る
|
||||
temp: 一時的なサーバを追加 (保存されない)
|
||||
-temp: 一時的なサーバを追加 (保存されない)
|
||||
option: サーバのオプションを設定 (ブールオプションでは値が無視される)
|
||||
nooption: ブールオプションを 'off' に設定 (例: -nossl)
|
||||
copy: サーバを複製
|
||||
|
||||
@@ -102,7 +102,7 @@ $HOME/.weechat/weechat.log::
|
||||
WeeChat は Sébastien Helleu さんと貢献者によって作成されています
|
||||
(完全なリストは AUTHORS.adoc ファイルを参照してください)。
|
||||
|
||||
著作権 (C) 2003-2016 {author}
|
||||
著作権 (C) 2003-2017 {author}
|
||||
|
||||
WeeChat はフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された
|
||||
GNU 一般公衆利用許諾契約書 (バージョン 2 か、希望によってはそれ以降のバージョンのうちどれか)
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2017
|
||||
|
||||
|
||||
このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。
|
||||
@@ -394,7 +394,7 @@ WeeChat とプラグインの翻訳は gettext で行います、ファイルは
|
||||
/*
|
||||
* weechat.c - core functions for WeeChat
|
||||
*
|
||||
* Copyright (C) 2016 Your Name <your@email.com>
|
||||
* Copyright (C) 2017 Your Name <your@email.com>
|
||||
*
|
||||
* This file is part of WeeChat, the extensible chat client.
|
||||
*
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2017
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2017
|
||||
|
||||
|
||||
このマニュアルは WeeChat チャットクライアントについての文書で、WeeChat の一部です。
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2009-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2009-2017
|
||||
|
||||
|
||||
[[start]]
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2014-2017
|
||||
|
||||
|
||||
この文書は WeeChat リレープロトコルについて述べたものです: リレープロトコルとは、WeeChat
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2017
|
||||
|
||||
|
||||
このマニュアルは WeeChat チャットクライアントについて説明しており、WeeChat の一部です。
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2017
|
||||
|
||||
|
||||
[[purpose]]
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
翻訳者:
|
||||
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2016
|
||||
* Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2017
|
||||
|
||||
|
||||
このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
| weechat | term_width | szerokość terminala | -
|
||||
|
||||
| weechat | uptime | uptime WeeChat (format: "dni:hh:mm:ss") | "dni" (ilość dni) lub "sekundy" (ilość sekund) (opcjonalne)
|
||||
|
||||
| weechat | version | wersja WeeChat | -
|
||||
|
||||
| weechat | version_git | wersja git WeeChat (wyjście komendy "git describe" dla tylko dla wersji rozwojowej, puste dla wersji stabilnej) | -
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
-set <id> <właściwość> <wartość>
|
||||
-del <id>|-all [<id>...]
|
||||
|
||||
-list: lista komend
|
||||
-list: wyświetla komendy
|
||||
-sh: użyj powłoki do wykonania komendy (UWAGA: użyj tej opcji TYLKO jeśli wszystkie argumenty są bezpieczne, zobacz opcję -nosh)
|
||||
-nosh: nie używaj powłoki do wykonania komendy (wymagane jeśli komenda posiada niebezpieczne dane, na przykład zawartość wiadomości od innego użytkownika) (domyślne)
|
||||
-bg: uruchom proces w tle: nie wyświetlaj wyjścia z procesu ani zwracanego kodu (nie kompatybilne z opcjami -o/-n)
|
||||
@@ -26,8 +26,9 @@
|
||||
-buffer: wyświetl/wyślij wyjście komendy do tego bufora (jeśli bufor nie zostanie znaleziony zostanie utworzony nowy bufor o nazwie "exec.exec.xxx")
|
||||
-l: wyświetl lokalnie wyście z komendy w buforze (domyślne)
|
||||
-o: wyślij wyjście z komendy do bufora (nie kompatybilne z opcją -bg)
|
||||
-n: wyświetl wyjście komendy w nowym buforze (nie kompatybilne z opcją -bg)
|
||||
-nf: wyświetl wyjście komendy w nowym buforze z wolna zawartością (brak zawijania słów, bez limitu ilości linii) (nie kompatybilne z opcją -bg)
|
||||
-oc: wysyła wyjście komendy do bufora i wykonuje komendy (linie zaczynające się od "/" lub własnego znaku komendy) (nie kompatybilne z opcjami -bg/-pipe/-hsignal)
|
||||
-n: wyświetl wyjście komendy w nowym buforze (nie kompatybilne z opcjami -bg/-pipe/-hsignal)
|
||||
-nf: wyświetl wyjście komendy w nowym buforze z wolna zawartością (brak zawijania słów, bez limitu ilości linii) (nie kompatybilne z opcjami -bg/-pipe/-hsignal)
|
||||
-cl: wyczyść nowy bufor przed wyświetleniem wyjścia
|
||||
-nocl: dodaj do nowego bufora bez czyszczenia zawartości (domyślne)
|
||||
-sw: przełącz na bufor wyjściowy (domyślne)
|
||||
@@ -46,8 +47,8 @@
|
||||
-norc: nie wyświetlaj kodu wyjścia
|
||||
-timeout: ustaw timeout dla komendy (w sekundach)
|
||||
-name: ustaw nazwę dla komendy (do wywołania później za pomocą /exec)
|
||||
-pipe: wyślij wyjście do WeeChat/wtyczki (linia po linii); jeśli występują spacje w komendzie/argumentach, otocz je cudzysłowem; zmienna $line jest zastępowana przez linie (domyślnie linia jest dodawana za komendą, oddzielona spacją) (nie kompatybilne z opcjami -bg/-o/-n)
|
||||
-hsignal: wyślij wyjście jako hsignal (w celu użycia na przykład w triggerze) (nie kompatybilne z opcjami -bg/-o/-n)
|
||||
-pipe: wyślij wyjście do WeeChat/wtyczki (linia po linii); jeśli występują spacje w komendzie/argumentach, otocz je cudzysłowem; zmienna $line jest zastępowana przez linie (domyślnie linia jest dodawana za komendą, oddzielona spacją) (nie kompatybilne z opcjami -bg/-o/-oc/-n/-nf)
|
||||
-hsignal: wyślij wyjście jako hsignal (w celu użycia na przykład w triggerze) (nie kompatybilne z opcjami -bg/-o/-oc/-n/-nf)
|
||||
komenda: komenda do wykonania; jeśli zaczyna się od "url:", powłoka jest wyłączana i zawartość URLa jest pobierana i wysyłana jako wyjście
|
||||
id: identyfikator komendy: numer lub nazwa (jeśli ustawiona przez "-name xxx")
|
||||
-in: wyślij tekst na standardowe wejście procesu
|
||||
|
||||
@@ -720,7 +720,7 @@ listfull: wyświetla listę serwerów ze szczegółowymi informacjami dla każde
|
||||
add: tworzy nowy serwer
|
||||
serwer: nazwa serwera, do użytku wewnętrznego i wyświetlania
|
||||
host: nazwa albo adres IP serwera, z opcjonalnym numerem portu (domyślnie: 6667), wiele adresów należy rozdzielić przecinkiem
|
||||
temp: tworzy serwer tymczasowy (nie zapisany)
|
||||
-temp: tworzy serwer tymczasowy (nie zapisany)
|
||||
opcja: ustawia opcję dla serwera (dla opcji boolowskich wartość może zostać pominięta)
|
||||
noopcja: ustawia opcje boolowskie na 'off' (na przykład: -nossl)
|
||||
copy: duplikuje serwer
|
||||
|
||||
@@ -103,7 +103,7 @@ Tłumaczenie Krzysztof Korościk.
|
||||
WeeChat jest tworzony przez Sébastien Helleu i społeczność (pełna lista dostępna
|
||||
jest w pliku AUTHORS.adoc).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -102,7 +102,7 @@ $HOME/.weechat/weechat.log::
|
||||
WeeChat написан Sébastien Helleu и другими участниками (полный список находится
|
||||
в файле AUTHORS.adoc).
|
||||
|
||||
Copyright (C) 2003-2016 {author}
|
||||
Copyright (C) 2003-2017 {author}
|
||||
|
||||
WeeChat is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
-55
@@ -1,55 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
# WeeChat is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# WeeChat is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
#
|
||||
# Build gzip/bzip2/xz tarballs for WeeChat using git-archive.
|
||||
#
|
||||
# Syntax:
|
||||
# makedist.sh <version> <tree-ish> [<path>]
|
||||
#
|
||||
# version : WeeChat version, for example 0.3.9 or 0.4.0-dev
|
||||
# tree-ish: git tree-ish (optional, defaults to HEAD), example: v0.3.9
|
||||
# path : where to put packages (optional, default is current directory)
|
||||
#
|
||||
|
||||
if [ $# -lt 2 ]; then
|
||||
echo "Syntax: $0 <version> <tree-ish> [<path>]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
VERSION=$1
|
||||
TREEISH=${2:-HEAD}
|
||||
OUTPATH="."
|
||||
|
||||
if [ $# -ge 3 ]; then
|
||||
OUTPATH=$3
|
||||
fi
|
||||
|
||||
PREFIX="weechat-${VERSION}/"
|
||||
FILE="weechat-${VERSION}.tar"
|
||||
|
||||
echo "Building file ${FILE}.gz"
|
||||
git archive --prefix=${PREFIX} ${TREEISH} | gzip -c >${OUTPATH}/${FILE}.gz
|
||||
|
||||
echo "Building file ${FILE}.bz2"
|
||||
git archive --prefix=${PREFIX} ${TREEISH} | bzip2 -c >${OUTPATH}/${FILE}.bz2
|
||||
|
||||
echo "Building file ${FILE}.xz"
|
||||
git archive --prefix=${PREFIX} ${TREEISH} | xz -c >${OUTPATH}/${FILE}.xz
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:23+0200\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 21:59+0100\n"
|
||||
"Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: cs\n"
|
||||
@@ -5005,7 +5005,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5013,12 +5013,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5040,9 +5044,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -6570,7 +6575,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -6601,7 +6606,7 @@ msgstr ""
|
||||
" server: jméno serveru pro vnitřní a zobrazovací použití\n"
|
||||
"hostname: jméno nebo IP adresa serveru s nepovinným portem (výchozí: 6667), "
|
||||
"více adres může být odděleno čárkou\n"
|
||||
" temp: vytvoří dočasný server (neukládá se)\n"
|
||||
" -temp: vytvoří dočasný server (neukládá se)\n"
|
||||
" option: nastaví volbu serveru (pro booleovské volby může být hodnota "
|
||||
"vynechána)\n"
|
||||
"nooption: nastaví booleovskou volbu na 'vypnuto' (například -nossl)\n"
|
||||
@@ -9008,6 +9013,12 @@ msgstr "získat kód barvy přezdívky"
|
||||
msgid "get nick color name"
|
||||
msgstr "získat jméno barvy přezdívky"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "seznam polí"
|
||||
|
||||
|
||||
@@ -19,8 +19,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-12-21 08:26+0100\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-07 08:22+0100\n"
|
||||
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
|
||||
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
||||
"Language: de\n"
|
||||
@@ -5877,7 +5877,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5885,12 +5885,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5912,9 +5916,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5954,7 +5959,8 @@ msgstr ""
|
||||
"benötigt, falls der Befehl mit sensiblen Daten hantiert. Zum Beispiel der "
|
||||
"Inhalt einer Nachricht eines anderen Users)\n"
|
||||
" -bg: führt Prozess im Hintergrund aus: gibt weder eine Prozessausgabe "
|
||||
"noch einen Rückgabewert aus (nicht kompatibel mit Argumenten -o/-n)\n"
|
||||
"noch einen Rückgabewert aus (nicht kompatibel mit Argumenten -o/-oc/-n/-nf/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -nobg: gibt Prozessausgabe und Rückgabewert aus (Standardverhalten)\n"
|
||||
" -stdin: erstellt eine PIPE um Daten zu dem Prozess zu senden (mittels /"
|
||||
"exec -in/-inclose)\n"
|
||||
@@ -5965,12 +5971,16 @@ msgstr ""
|
||||
" -l: gibt die Ausgabe des Befehls lokal im Buffer aus "
|
||||
"(Standardverhalten)\n"
|
||||
" -o: gibt die Ausgabe des Befehls im Buffer aus (nicht kompatibel mit "
|
||||
"Argument -bg)\n"
|
||||
"Argumenten -bg/-pipe/-hsignal)\n"
|
||||
" -oc: gibt die Ausgabe des Befehls im Buffer aus und führt diesen dann "
|
||||
"aus (betrifft Zeilen die mit \"/\" beginnen bzw. das benutzerdefinierte "
|
||||
"Befehlszeichen verwenden) (nicht kompatibel mit Argumenten -bg/-pipe/-"
|
||||
"hsignal)\n"
|
||||
" -n: gibt die Ausgabe des Befehls in einem neuen Buffer aus (nicht "
|
||||
"kompatibel mit Argument -bg)\n"
|
||||
"kompatibel mit Argumenten -bg/-pipe/-hsignal)\n"
|
||||
" -nf: gibt die Ausgabe des Befehls in einem neuen Buffer, mit einem "
|
||||
"freien Inhalt (kein Zeilenumbruch, keine Limitierung in der Anzahl der "
|
||||
"Zeilen), aus (nicht kompatibel mit Argument -bg)\n"
|
||||
"Zeilen), aus (nicht kompatibel mit Argument -bg/-pipe/-hsignal)\n"
|
||||
" -cl: der neue Buffer wird vor einer Ausgabe gelöscht\n"
|
||||
" -nocl: Ausgabe wird an neuen Buffer angehangen, ohne diesen vorher zu "
|
||||
"löschen (Standardverhalten)\n"
|
||||
@@ -6000,9 +6010,9 @@ msgstr ""
|
||||
"diese mit Anführungszeichen eingeschlossen werden; Variable $line wird durch "
|
||||
"die entsprechende Zeile ersetzt (standardmäßig wird die Zeile, getrennt "
|
||||
"durch ein Leerzeichen, dem Befehl nachgestellt (nicht kompatibel mit den "
|
||||
"Argumenten -bg/-o/-n)\n"
|
||||
"Argumenten -bg/-o/-oc/-n/-nf)\n"
|
||||
" -hsignal: sendet die Ausgabe als hsignal (um es z.B. mittels /trigger zu "
|
||||
"verwenden) (nicht kompatibel mit den Argumenten -bg/-o/-n)\n"
|
||||
"verwenden) (nicht kompatibel mit den Argumenten -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: Befehl der ausgeführt werden soll; beginnt der Befehl mit \"url:"
|
||||
"\", wird die shell deaktiviert und der Inhalt der URL wird heruntergeladen "
|
||||
"und im Buffer ausgegeben\n"
|
||||
@@ -7632,7 +7642,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -7665,7 +7675,7 @@ msgstr ""
|
||||
"hostname: Name oder IP-Adresse des Servers. Optional kann zusätzlich der "
|
||||
"Port festgelegt werden (Standard-Port: 6667). Verschiedene Ports können "
|
||||
"durch Kommata getrennt werden\n"
|
||||
" temp: erstellt temporären Server (wird nicht gespeichert)\n"
|
||||
" -temp: erstellt temporären Server (wird nicht gespeichert)\n"
|
||||
" option: legt die Optionen für den Server fest (die Boolean-Optionen können "
|
||||
"weggelassen werden)\n"
|
||||
"nooption: stellt die Boolean Einstellung auf 'off' (Beispiel: -nossl)\n"
|
||||
@@ -10353,6 +10363,13 @@ msgstr "zeigt Farbecode des Nick"
|
||||
msgid "get nick color name"
|
||||
msgstr "zeigt Farbnamen des Nick"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr "Laufzeit von Weechat (Format: \"days:hh:mm:ss\")"
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
"\"days\" (Anzahl der Tage) oder \"seconds\" (Anzahl der Sekunden) (optional)"
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "Auflistung der Bars"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:23+0200\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 22:01+0100\n"
|
||||
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: es\n"
|
||||
@@ -5219,7 +5219,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5227,12 +5227,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5254,9 +5258,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -6808,7 +6813,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -6838,7 +6843,7 @@ msgstr ""
|
||||
" servidor: nombre del servidor, para identificarlo\n"
|
||||
"hostname: dirección del servidor, con el puerto opcionalmente (defecto: "
|
||||
"6667), varias direcciones pueden ser separados por coma\n"
|
||||
" temp: crear servidor temporalmente (no es guardado)\n"
|
||||
" -temp: crear servidor temporalmente (no es guardado)\n"
|
||||
" opción: configura opción para el servidor (para opciones booleanas, el "
|
||||
"valor puede omitirse)\n"
|
||||
" noopción: pone la opción booleana en 'off' (desactivado) (por ejemplo: -"
|
||||
@@ -9314,6 +9319,12 @@ msgstr "obtiene el código del color del apodo"
|
||||
msgid "get nick color name"
|
||||
msgstr "obtiene el nombre del color del apodo"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "lista de barras"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2005-2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-12-20 22:37+0100\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-07 07:59+0100\n"
|
||||
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: fr\n"
|
||||
@@ -5750,7 +5750,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5758,12 +5758,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5785,9 +5789,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5827,7 +5832,8 @@ msgstr ""
|
||||
"commande a des données non fiables, par exemple le contenu d'un message d'un "
|
||||
"autre utilisateur) (par défaut)\n"
|
||||
" -bg : lancer le processus en tâche de fond : ne pas afficher la sortie "
|
||||
"ni le code retour (non compatible avec les options -o/-n)\n"
|
||||
"ni le code retour (non compatible avec les options -o/-oc/-n/-nf/-pipe/-"
|
||||
"hsignal)\n"
|
||||
" -nobg : capturer la sortie du processus et afficher le code retour (par "
|
||||
"défaut)\n"
|
||||
" -stdin : créer un tuyau pour envoyer des données sur l'entrée standard du "
|
||||
@@ -5838,13 +5844,16 @@ msgstr ""
|
||||
"créé)\n"
|
||||
" -l : afficher localement la sortie de la commande sur le tampon (par "
|
||||
"défaut)\n"
|
||||
" -o : envoyer la sortie de la commande au tampon (non compatible avec "
|
||||
"l'option -bg)\n"
|
||||
" -o : envoyer la sortie de la commande au tampon sans exécuter les "
|
||||
"commandes (non compatible avec les options -bg/-pipe/-hsignal)\n"
|
||||
" -oc : envoyer la sortie de la commande au tampon et exécuter les "
|
||||
"commandes (lignes commençant par \"/\" ou un caractère personnalisé de "
|
||||
"commande) (non compatible avec les options -bg/-pipe/-hsignal)\n"
|
||||
" -n : afficher la sortie de la commande dans un nouveau tampon (non "
|
||||
"compatible avec l'option -bg)\n"
|
||||
"compatible avec les options -bg/-pipe/-hsignal)\n"
|
||||
" -nf : afficher la sortie de la commande dans un nouveau tampon avec "
|
||||
"contenu libre (pas de coupure des mots, pas de limite sur le nombre de "
|
||||
"lignes) (non compatible avec l'option -bg)\n"
|
||||
"lignes) (non compatible avec les options -bg/-pipe/-hsignal)\n"
|
||||
" -cl : effacer le nouveau tampon avant d'afficher la sortie\n"
|
||||
" -nocl : ajouter au nouveau tampon sans effacer (par défaut)\n"
|
||||
" -sw : basculer vers le tampon de sortie (par défaut)\n"
|
||||
@@ -5870,9 +5879,10 @@ msgstr ""
|
||||
"ligne) ; s'il y a des espaces dans la commande/paramètres, entourez les de "
|
||||
"guillemets ; la variable $line est remplacée par la ligne (par défaut la "
|
||||
"ligne est ajoutée après la commande, séparée par un espace) (non compatible "
|
||||
"avec les options -bg/-o/-n)\n"
|
||||
"avec les options -bg/-o/-oc/-n/-nf)\n"
|
||||
" -hsignal : envoyer la sortie sous forme de hsignal (pour être utilisé par "
|
||||
"exemple dans un trigger) (non compatible avec les options -bg/-o/-n)\n"
|
||||
"exemple dans un trigger) (non compatible avec les options -bg/-o/-oc/-n/-"
|
||||
"nf)\n"
|
||||
" commande : la commande à exécuter ; si elle commence par \"url:\", le shell "
|
||||
"est désactivé et le contenu de l'URL est téléchargé et envoyé comme sortie\n"
|
||||
" id : identifiant de commande : soit le numéro ou le nom (si défini "
|
||||
@@ -7476,7 +7486,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -7506,7 +7516,7 @@ msgstr ""
|
||||
" serveur : nom du serveur, pour usage interne et affichage\n"
|
||||
" nom : nom ou adresse IP du serveur avec port en option (défaut : 6667), "
|
||||
"plusieurs adresses peuvent être séparées par une virgule\n"
|
||||
" temp : ajouter un serveur temporaire (non sauvé)\n"
|
||||
" -temp : ajouter un serveur temporaire (non sauvé)\n"
|
||||
" option : définir l'option pour le serveur (pour une option booléenne, la "
|
||||
"valeur peut être omise)\n"
|
||||
"nooption : définir l'option booléenne à 'off' (par exemple : -nossl)\n"
|
||||
@@ -10108,6 +10118,13 @@ msgstr "retourne le code couleur du pseudo"
|
||||
msgid "get nick color name"
|
||||
msgstr "retourne le nom de la couleur du pseudo"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr "Uptime de WeeChat (format : \"jours:hh:mm:ss\")"
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
"\"days\" (nombre de jours) ou \"seconds\" (nombre de secondes) (optionnel)"
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "liste des barres"
|
||||
|
||||
@@ -12761,6 +12778,9 @@ msgstr "%s%s : délai d'attente dépassé pour \"%s\" avec %s"
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s : impossible de se connecter : erreur inattendue (%d)"
|
||||
|
||||
#~ msgid "\"days\" (optional: just return the number of days)"
|
||||
#~ msgstr "\"days\" (optionnel : retourner juste le nombre de jours)"
|
||||
|
||||
#~ msgid "commands defined by plugins"
|
||||
#~ msgstr "commandes définies par les extensions"
|
||||
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:23+0200\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 22:03+0100\n"
|
||||
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: hu\n"
|
||||
@@ -4542,7 +4542,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -4550,12 +4550,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -4577,9 +4581,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -6008,7 +6013,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -6039,7 +6044,7 @@ msgstr ""
|
||||
" szervernév: szerver neve, saját használatra, megjelenítéshez\n"
|
||||
" gépnév: a szerver neve vagy IP-címe\n"
|
||||
" port: a szerver portja (egész szám, alapértelmezetten 6667)\n"
|
||||
" temp: ideiglenes szerver létrehozása (nem kerül be a "
|
||||
" -temp: ideiglenes szerver létrehozása (nem kerül be a "
|
||||
"beállítófájlba)\n"
|
||||
" auto: automatikus kapcsolódás a szerverhez a WeeChat indulásakor\n"
|
||||
" noauto: ne kapcsolódjon a szerverhez a WeeChat indulásakor "
|
||||
@@ -8366,6 +8371,12 @@ msgstr "üzenetek színe"
|
||||
msgid "get nick color name"
|
||||
msgstr "üzenetek színe"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "list of bars"
|
||||
msgstr "Aliaszok listája:\n"
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 22:04+0100\n"
|
||||
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: it\n"
|
||||
@@ -5362,7 +5362,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5370,12 +5370,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5397,9 +5401,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -6953,7 +6958,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -6983,7 +6988,7 @@ msgstr ""
|
||||
" server: nome server, per il solo uso interno e di visualizzazione\n"
|
||||
"nome_host: nome o indirizzo IP del server, con porta opzionale (predefinita: "
|
||||
"6667), più indirizzi possono essere separati da virgole\n"
|
||||
" temp: crea server temporaneo (non salvato)\n"
|
||||
" -temp: crea server temporaneo (non salvato)\n"
|
||||
" opzione: imposta opzione per il server (per opzioni bool, il valore può "
|
||||
"essere omesso)\n"
|
||||
" nooption: imposta l'opzione bool su 'off' (per esempio: -nossl)\n"
|
||||
@@ -9477,6 +9482,12 @@ msgstr "ottiene il codice del colore del nick"
|
||||
msgid "get nick color name"
|
||||
msgstr "ottiene il nome del colore del nick"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "elenco delle barre"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2012-2016 Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>
|
||||
# Copyright (C) 2012-2017 Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-12-24 09:00+0900\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-08 09:00+0900\n"
|
||||
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
|
||||
"Language-Team: Japanese <https://github.com/l/weechat/tree/master/"
|
||||
"translation/ja_JP>\n"
|
||||
@@ -5493,7 +5493,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5501,12 +5501,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5528,9 +5532,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5568,7 +5573,8 @@ msgstr ""
|
||||
" -nosh: コマンドを実行する際にシェルを使わない (コマンドに安全でないデータ"
|
||||
"が含まれる場合に必要、例えば他のユーザからのメッセージの内容) (デフォルト)\n"
|
||||
" -bg: プロセスをバックグラウンド実行: プロセスの出力およびリターンコード"
|
||||
"を表示しない (オプション -o/-n と互換性はありません)\n"
|
||||
"を表示しない (オプション -o/-oc/-n/-nf/-pipe/-hsignal と同時に利用できませ"
|
||||
"ん)\n"
|
||||
" -nobg: プロセスの出力を受け取り、リターンコードを表示する (デフォルト)\n"
|
||||
" -stdin: プロセスにデータを送信するパイプを作成する (/exec -in/-inclose を使"
|
||||
"う)\n"
|
||||
@@ -5576,12 +5582,16 @@ msgstr ""
|
||||
" -buffer: コマンドの出力をこのバッファに表示 / 送信する (バッファが見つからな"
|
||||
"い場合、新しいバッファ \"exec.exec.xxx\" が作られます)\n"
|
||||
" -l: コマンドの出力をカレントバッファに表示 (デフォルト)\n"
|
||||
" -o: コマンドの出力をカレントバッファに送信 (オプション -bg と互換性はあ"
|
||||
"りません)\n"
|
||||
" -n: コマンドの出力を新しいバッファに表示 (オプション -bg と互換性はあり"
|
||||
"ません)\n"
|
||||
" -o: コマンドの出力をカレントバッファに送信、カレントバッファは受信した"
|
||||
"内容をコマンドとして実行しません (オプション -bg/-pipe/-hsignal と同時に利用"
|
||||
"できません)\n"
|
||||
" -oc: コマンドの出力をカレントバッファに送信、カレントバッファは受信した"
|
||||
"内容 (先頭に \"/\" もしくはそれ以外のコマンド開始文字を含む行) をコマンドとし"
|
||||
"て実行します (オプション -bg/-pipe/-hsignal と同時に利用できません)\n"
|
||||
" -n: コマンドの出力を新しいバッファに表示 (オプション -bg/-pipe/-"
|
||||
"hsignal と同時に利用できません)\n"
|
||||
" -nf: コマンドの出力を自由内容 (禁則処理なし、行数制限なし) の新しいバッ"
|
||||
"ファに表示 (オプション -bg と互換性はありません)\n"
|
||||
"ファに表示 (オプション -bg/-pipe/-hsignal と同時に利用できません)\n"
|
||||
" -cl: 出力を表示する前に新しいバッファをクリア\n"
|
||||
" -nocl: 新しいバッファをクリアせずに追加 (デフォルト)\n"
|
||||
" -sw: 出力バッファに移動 (デフォルト)\n"
|
||||
@@ -5603,9 +5613,9 @@ msgstr ""
|
||||
" -pipe: WeeChat およびプラグインコマンドに出力を送信 (1 行ごと); コマンドお"
|
||||
"よび引数に空白が含まれる場合、2 重引用符で囲ってください; 引数 $line はその行"
|
||||
"で置換されます (デフォルトではコマンドの後ろに空白を付けてから行を追加しま"
|
||||
"す) (オプション -bg/-o/-n と互換性はありません)\n"
|
||||
"す) (オプション -bg/-o/-oc/-n/-nf と同時に利用できません)\n"
|
||||
"-hsignal: hsignal として出力を送信 (例えばトリガで使われます) (オプション -"
|
||||
"bg/-o/-n と互換性はありません)\n"
|
||||
"bg/-o/-oc/-n/-nf と同時に利用できません)\n"
|
||||
" command: 実行するコマンド; \"url:\" で始まる場合、シェルは無効化され、URL の"
|
||||
"内容がダウンロードされ、出力として送信されます\n"
|
||||
" id: コマンド識別子: 番号か名前 (\"-name xxx\" で設定した場合) のどちら"
|
||||
@@ -7168,7 +7178,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -7198,7 +7208,7 @@ msgstr ""
|
||||
" server: サーバ名、内部的な利用と表示に利用\n"
|
||||
"hostname: サーバのホスト名か IP アドレス、ポート番号は任意 (デフォルト: "
|
||||
"6667)、複数のアドレスはコンマで区切る\n"
|
||||
" temp: 一時的なサーバを追加 (保存されない)\n"
|
||||
" -temp: 一時的なサーバを追加 (保存されない)\n"
|
||||
" option: サーバのオプションを設定 (ブールオプションでは値が無視される)\n"
|
||||
"nooption: ブールオプションを 'off' に設定 (例: -nossl)\n"
|
||||
" copy: サーバを複製\n"
|
||||
@@ -9718,6 +9728,12 @@ msgstr "ニックネームの色コードを取得"
|
||||
msgid "get nick color name"
|
||||
msgstr "ニックネームの色名を取得"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr "WeeChat 連続稼働時間 (書式: \"days:hh:mm:ss\")"
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr "\"days\" (日数) または \"seconds\" (秒数) (任意)"
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "バーのリスト"
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-12-31 12:37+0100\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 22:05+0100\n"
|
||||
"Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: pl\n"
|
||||
@@ -1793,11 +1793,11 @@ msgstr ""
|
||||
"Najczęściej używane tagi:\n"
|
||||
" no_filter, no_highlight, no_log, log0..log9 (log level),\n"
|
||||
" notify_none, notify_message, notify_private, notify_highlight,\n"
|
||||
" self_msg, nick_xxx (xxx to nick w wiadomości), prefix_nick_ccc "
|
||||
"(ccc to kolor nicka),\n"
|
||||
" self_msg, nick_xxx (xxx to nick w wiadomości), prefix_nick_ccc (ccc to "
|
||||
"kolor nicka),\n"
|
||||
" host_xxx (xxx to użytkownik + host w wiadomości),\n"
|
||||
" irc_xxx (xxx to nazwa komendy, lub numer; zobacz /server raw lub "
|
||||
"/debug tags),\n"
|
||||
" irc_xxx (xxx to nazwa komendy, lub numer; zobacz /server raw lub /debug "
|
||||
"tags),\n"
|
||||
" irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, "
|
||||
"irc_smart_filter, away_info.\n"
|
||||
"Aby zobaczyć listę tagów w liniach buforów wykonaj: /debug tags\n"
|
||||
@@ -3105,7 +3105,8 @@ msgid "values for a configuration option"
|
||||
msgstr "wartości opcji konfiguracyjnych"
|
||||
|
||||
msgid "weechat commands; optional argument: prefix to add before the commands"
|
||||
msgstr "komendy weechat: opcjonalny argument: prefiks do dodania przed komendami"
|
||||
msgstr ""
|
||||
"komendy weechat: opcjonalny argument: prefiks do dodania przed komendami"
|
||||
|
||||
msgid "names of proxies"
|
||||
msgstr "nazwy proxy"
|
||||
@@ -5619,7 +5620,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5627,12 +5628,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5654,9 +5659,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5688,7 +5694,7 @@ msgid ""
|
||||
" /exec -n tail -f /var/log/messages\n"
|
||||
" /exec -kill 0"
|
||||
msgstr ""
|
||||
" -list: lista komend\n"
|
||||
" -list: wyświetla komendy\n"
|
||||
" -sh: użyj powłoki do wykonania komendy (UWAGA: użyj tej opcji TYLKO "
|
||||
"jeśli wszystkie argumenty są bezpieczne, zobacz opcję -nosh)\n"
|
||||
" -nosh: nie używaj powłoki do wykonania komendy (wymagane jeśli komenda "
|
||||
@@ -5706,10 +5712,14 @@ msgstr ""
|
||||
"\")\n"
|
||||
" -l: wyświetl lokalnie wyście z komendy w buforze (domyślne)\n"
|
||||
" -o: wyślij wyjście z komendy do bufora (nie kompatybilne z opcją -bg)\n"
|
||||
" -n: wyświetl wyjście komendy w nowym buforze (nie kompatybilne z opcją "
|
||||
"-bg)\n"
|
||||
" -oc: wysyła wyjście komendy do bufora i wykonuje komendy (linie "
|
||||
"zaczynające się od \"/\" lub własnego znaku komendy) (nie kompatybilne z "
|
||||
"opcjami -bg/-pipe/-hsignal)\n"
|
||||
" -n: wyświetl wyjście komendy w nowym buforze (nie kompatybilne z "
|
||||
"opcjami -bg/-pipe/-hsignal)\n"
|
||||
" -nf: wyświetl wyjście komendy w nowym buforze z wolna zawartością (brak "
|
||||
"zawijania słów, bez limitu ilości linii) (nie kompatybilne z opcją -bg)\n"
|
||||
"zawijania słów, bez limitu ilości linii) (nie kompatybilne z "
|
||||
"opcjami -bg/-pipe/-hsignal)\n"
|
||||
" -cl: wyczyść nowy bufor przed wyświetleniem wyjścia\n"
|
||||
" -nocl: dodaj do nowego bufora bez czyszczenia zawartości (domyślne)\n"
|
||||
" -sw: przełącz na bufor wyjściowy (domyślne)\n"
|
||||
@@ -5731,9 +5741,10 @@ msgstr ""
|
||||
" -pipe: wyślij wyjście do WeeChat/wtyczki (linia po linii); jeśli "
|
||||
"występują spacje w komendzie/argumentach, otocz je cudzysłowem; zmienna "
|
||||
"$line jest zastępowana przez linie (domyślnie linia jest dodawana za "
|
||||
"komendą, oddzielona spacją) (nie kompatybilne z opcjami -bg/-o/-n)\n"
|
||||
"komendą, oddzielona spacją) (nie kompatybilne z opcjami -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: wyślij wyjście jako hsignal (w celu użycia na przykład w "
|
||||
"triggerze) (nie kompatybilne z opcjami -bg/-o/-n)\n"
|
||||
"triggerze) (nie kompatybilne z opcjami -bg/-o/-oc/-n/-nf)\n"
|
||||
" komenda: komenda do wykonania; jeśli zaczyna się od \"url:\", powłoka jest "
|
||||
"wyłączana i zawartość URLa jest pobierana i wysyłana jako wyjście\n"
|
||||
" id: identyfikator komendy: numer lub nazwa (jeśli ustawiona przez \"-"
|
||||
@@ -5892,10 +5903,10 @@ msgid ""
|
||||
"home (\"~/.weechat\" by default); WeeChat PID can be used in path with "
|
||||
"${info:pid} (note: content is evaluated, see /help eval)"
|
||||
msgstr ""
|
||||
"ścieżka dla pliku FIFO; \"%h\" na początku ciągu zostanie zastąpione "
|
||||
"przez katalog domowy WeeChat (domyślnie \"~/.weechat\"); PID WeeChat może"
|
||||
"zostać użyty poprzez ${info:pid} (uwaga: zawartość jest przetwarzana, "
|
||||
"zobacz /help eval)"
|
||||
"ścieżka dla pliku FIFO; \"%h\" na początku ciągu zostanie zastąpione przez "
|
||||
"katalog domowy WeeChat (domyślnie \"~/.weechat\"); PID WeeChat możezostać "
|
||||
"użyty poprzez ${info:pid} (uwaga: zawartość jest przetwarzana, zobacz /help "
|
||||
"eval)"
|
||||
|
||||
msgid "name of FIFO pipe"
|
||||
msgstr "nazwa strumienia FIFO"
|
||||
@@ -7316,7 +7327,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -7348,7 +7359,7 @@ msgstr ""
|
||||
" serwer: nazwa serwera, do użytku wewnętrznego i wyświetlania\n"
|
||||
"host: nazwa albo adres IP serwera, z opcjonalnym numerem portu (domyślnie: "
|
||||
"6667), wiele adresów należy rozdzielić przecinkiem\n"
|
||||
" temp: tworzy serwer tymczasowy (nie zapisany)\n"
|
||||
" -temp: tworzy serwer tymczasowy (nie zapisany)\n"
|
||||
" opcja: ustawia opcję dla serwera (dla opcji boolowskich wartość może "
|
||||
"zostać pominięta)\n"
|
||||
"noopcja: ustawia opcje boolowskie na 'off' (na przykład: -nossl)\n"
|
||||
@@ -7787,7 +7798,8 @@ msgid "check that the SSL connection is fully trusted"
|
||||
msgstr "sprawdź czy połączenie ssl jest w pełni zaufane"
|
||||
|
||||
msgid "password for server (note: content is evaluated, see /help eval)"
|
||||
msgstr "hasło dla serwera (uwaga: zawartość jest przetwarzana, zobacz /help eval)"
|
||||
msgstr ""
|
||||
"hasło dla serwera (uwaga: zawartość jest przetwarzana, zobacz /help eval)"
|
||||
|
||||
#. TRANSLATORS: please keep words "client capabilities" between brackets if translation is different (see fr.po)
|
||||
msgid ""
|
||||
@@ -7906,9 +7918,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"tryb(y) użytkowniak do ustawienia po połączeniu z serwerem przed wykonaniem "
|
||||
"komend oraz automatycznym wejściem na kanały; przykłady \"+R\" (w celu "
|
||||
"ustawienia trybu \"R\"), \"+R-i\" (w celu utawienia trbu \"R\" i zdjęcia trybu "
|
||||
"\"i\"); zobacz /help mode dla pełnej lity składni (uwaga: zawartość jest "
|
||||
"przetwarzana, zobacz /help eval)"
|
||||
"ustawienia trybu \"R\"), \"+R-i\" (w celu utawienia trbu \"R\" i zdjęcia "
|
||||
"trybu \"i\"); zobacz /help mode dla pełnej lity składni (uwaga: zawartość "
|
||||
"jest przetwarzana, zobacz /help eval)"
|
||||
|
||||
msgid ""
|
||||
"command(s) to run after connection to server and before auto-join of "
|
||||
@@ -9907,6 +9919,12 @@ msgstr "pobiera kod koloru nicka"
|
||||
msgid "get nick color name"
|
||||
msgstr "pobiera nazwę koloru nicka"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr "uptime WeeChat (format: \"dni:hh:mm:ss\")"
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr "\"dni\" (ilość dni) lub \"sekundy\" (ilość sekund) (opcjonalne)"
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "lista pasków"
|
||||
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-09-27 12:29+0000\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-14 21:39+0100\n"
|
||||
"Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n"
|
||||
"Language-Team: Portuguese <>\n"
|
||||
"Language: pt\n"
|
||||
@@ -1437,18 +1437,17 @@ msgstr ""
|
||||
" /cursor go 10,5"
|
||||
|
||||
msgid "debug functions"
|
||||
msgstr ""
|
||||
msgstr "funções de debug"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list || set <plugin> <level> || dump [<plugin>] || buffer|color|infolists|"
|
||||
"memory|tags|term|windows || mouse|cursor [verbose] || hdata [free] || time "
|
||||
"<command>"
|
||||
msgstr ""
|
||||
"list || set <plugin> <nível> || dump [<plugin>] || buffer|color|infolists|"
|
||||
"memory|tags|term|windows || mouse|cursor [verbose] || hdata [free]"
|
||||
"memory|tags|term|windows || mouse|cursor [verbose] || hdata [free] || time "
|
||||
"<comando>"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list plugins with debug levels\n"
|
||||
" set: set debug level for plugin\n"
|
||||
@@ -1493,7 +1492,9 @@ msgstr ""
|
||||
" mouse: ativar ou desativar depuração do rato\n"
|
||||
" tags: mostrar tags nas linhas\n"
|
||||
" term: mostrar infos sobre o terminal\n"
|
||||
" windows: mostrar árvore de janelas"
|
||||
" windows: mostrar árvore de janelas\n"
|
||||
" time: medir tempo para executar um comando ou para enviar texto para o "
|
||||
"buffer atual"
|
||||
|
||||
msgid "evaluate expression"
|
||||
msgstr "avaliar uma expressão"
|
||||
@@ -1681,7 +1682,6 @@ msgstr ""
|
||||
"list || enable|disable|toggle [<nome>|@] || add <nome> <buffer>[,"
|
||||
"<buffer>...] <tags> <regex> || rename <nome> <novo_nome> || del <nome>|-all"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all filters\n"
|
||||
" enable: enable filters (filters are enabled by default)\n"
|
||||
@@ -1786,8 +1786,8 @@ msgstr ""
|
||||
"Tags mais utilizadas:\n"
|
||||
" no_filter, no_highlight, no_log, log0..log9 (nível de registo),\n"
|
||||
" notify_none, notify_message, notify_private, notify_highlight,\n"
|
||||
" nick_xxx (xxx é o nick na mensagem), prefix_nick_ccc (ccc é a cor do "
|
||||
"nick),\n"
|
||||
" self_msg, nick_xxx (xxx é o nick na mensagem), prefix_nick_ccc (ccc é a "
|
||||
"cor do nick),\n"
|
||||
" host_xxx (xxx é o nome de utilizador + host na mensagem),\n"
|
||||
" irc_xxx (xxx é um nome de comando ou um número, consulte /server raw ou /"
|
||||
"debug tags),\n"
|
||||
@@ -3069,6 +3069,8 @@ msgid ""
|
||||
"commands (weechat and plugins); optional argument: prefix to add before the "
|
||||
"commands"
|
||||
msgstr ""
|
||||
"comandos (weechat e plugins); argumento opcional: prefixo para adicionar "
|
||||
"antes dos comandos"
|
||||
|
||||
msgid "names of infos hooked"
|
||||
msgstr "nomes dos infos ligados"
|
||||
@@ -3092,6 +3094,8 @@ msgid ""
|
||||
"commands defined by plugins; optional argument: prefix to add before the "
|
||||
"commands"
|
||||
msgstr ""
|
||||
"comandos definidos por plugins; argumento opcional: prefixo para adicionar "
|
||||
"antes dos comandos"
|
||||
|
||||
msgid "names of bars"
|
||||
msgstr "nomes das barras"
|
||||
@@ -3101,6 +3105,8 @@ msgstr "valores de uma opção de configuração"
|
||||
|
||||
msgid "weechat commands; optional argument: prefix to add before the commands"
|
||||
msgstr ""
|
||||
"comandos weechat; argumento opcional: prefixo para adicionar antes dos "
|
||||
"comandos"
|
||||
|
||||
msgid "names of proxies"
|
||||
msgstr "nomes dos proxies"
|
||||
@@ -3229,6 +3235,9 @@ msgid ""
|
||||
"align_end_of_lines; if disabled, the multiline words will not be aligned, "
|
||||
"which can be useful to not break long URLs"
|
||||
msgstr ""
|
||||
"alinhamento para palavras multilinhas de acordo com a opção weechat.look."
|
||||
"align_end_of_lines; se desativado, as palavras multilinhas não serão "
|
||||
"alinhadas, o que pode ser útil para não partir URLs longos"
|
||||
|
||||
msgid ""
|
||||
"string displayed when bar can be scrolled down (for bars with filling "
|
||||
@@ -4075,6 +4084,9 @@ msgid ""
|
||||
"fallback when a nick color is not found; most of times nick color comes from "
|
||||
"option weechat.color.chat_nick_colors"
|
||||
msgstr ""
|
||||
"cor do texto dos nicks na janela de chat: usado em algumas mensagens de "
|
||||
"servidor e como contingência quando a cor de um nick vem da opção weechat."
|
||||
"color.chat_nick_colors"
|
||||
|
||||
#. TRANSLATORS: please do not translate "lightred:blue"
|
||||
msgid ""
|
||||
@@ -5609,7 +5621,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5617,12 +5629,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5644,9 +5660,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5685,7 +5702,7 @@ msgstr ""
|
||||
"comando tem algum dado inseguro, por exemplo o conteúdo de uma mensagem de "
|
||||
"outro utilizador) (por omissão)\n"
|
||||
" -bg: executar processo em segundo plano: não mostrar progresso nem "
|
||||
"retornar código (incompatível com as opções -o/-n)\n"
|
||||
"retornar código (incompatível com as opções -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: capturar a saída do processo e mostrar o código de retorno (por "
|
||||
"omissão)\n"
|
||||
" -stdin: criar um canal para enviar dados para o processo (com /exec -"
|
||||
@@ -5694,13 +5711,16 @@ msgstr ""
|
||||
" -buffer: mostrar/enviar a saída do comando neste buffer (se o buffer não "
|
||||
"for encontrado, é criado um buffer com o nome \"exec.exec.xxx\")\n"
|
||||
" -l: mostrar a saída do comando localmente no buffer (por omissão)\n"
|
||||
" -o: enviar a saída do comando para o buffer (incompatível com a "
|
||||
"opção -bg)\n"
|
||||
" -o: enviar a saída do comando para o buffer (incompatível com as "
|
||||
"opções -bg/-pipe/-hsignal)\n"
|
||||
" -oc: enviar a saída do comando para o buffer e executar comandos "
|
||||
"(linhas começadas com \"/\" ou outro caráter personalizado de comando) "
|
||||
"(incompatível com as opções -bg/-pipe/-hsignal)\n"
|
||||
" -n: mostrar a saída do comando num novo buffer (incompatível com a "
|
||||
"opção -bg)\n"
|
||||
" -nf: mostrar a saída do comando num novo buffer com conteúdo libre "
|
||||
"(sem moldar o texto, sem limitar número de linhas) (imcompatível com a opção "
|
||||
"-bg)\n"
|
||||
"(sem moldar o texto, sem limitar número de linhas) (incompatível com as "
|
||||
"opções -bg/-pipe/-hsignal)\n"
|
||||
" -cl: limpar o novo buffer antes de mostrar a saída\n"
|
||||
" -nocl: acrescentar ao novo buffer sem limpar (por omissão)\n"
|
||||
" -sw: mudar para o buffer com a saída (por omissão)\n"
|
||||
@@ -5724,9 +5744,9 @@ msgstr ""
|
||||
"cada vez); se houver espaços no comando/argumentos, colocá-los entre aspas; "
|
||||
"a variável $line é substituída pela linha (por omissão a linha é adicionada "
|
||||
"depois do comando, separada por um espaço) (incompatível com as opções -bg/-"
|
||||
"o/-n)\n"
|
||||
"o/-oc/-n/-nf)\n"
|
||||
" -hsignal: enviar a saída como um hsignal (para ser usado por exemplo como "
|
||||
"um acionador) (incompatível com as opções -bg/-o/-n)\n"
|
||||
"um acionador) (incompatível com as opções -bg/-o/-oc/-n/-nf)\n"
|
||||
" comando: o comando a executar; se começar com \"url:\", a shell é "
|
||||
"desativada e o conteúdo do URL é transferido e enviado como saída\n"
|
||||
" id: identificador do comando: número ou nome (se definido com \"-"
|
||||
@@ -5838,7 +5858,6 @@ msgstr "configuração do plugin fifo"
|
||||
msgid "enable|disable|toggle"
|
||||
msgstr "enable|disable|toggle"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" enable: enable FIFO pipe\n"
|
||||
"disable: disable FIFO pipe\n"
|
||||
@@ -5866,34 +5885,32 @@ msgstr ""
|
||||
"\n"
|
||||
"O pipe FIFO é usado como controlo remoto do WeeChat: pode enviar comandos e "
|
||||
"texto pelo pipe FIFO a partir duma shell.\n"
|
||||
"Por omissão o pipe FIFO encontra-se em ~/.weechat/weechat_fifo_xxx (\"xxx\" "
|
||||
"é o PID do WeeChat).\n"
|
||||
"Por omissão o pipe FIFO encontra-se em ~/.weechat/weechat_fifo.\n"
|
||||
"\n"
|
||||
"O formato esperado é um dos seguintes:\n"
|
||||
" plugin.buffer *texto ou comando aqui\n"
|
||||
" *texto ou comando aqui\n"
|
||||
"\n"
|
||||
"Por exemplo, para mudar o nick em freenode:\n"
|
||||
" echo 'irc.server.freenode */nick newnick' >~/.weechat/weechat_fifo_12345\n"
|
||||
" echo 'irc.server.freenode */nick newnick' >~/.weechat/weechat_fifo\n"
|
||||
"\n"
|
||||
"Leia o manual do utilizador para obter mais informação e exemplos.\n"
|
||||
"\n"
|
||||
"Exemplos:\n"
|
||||
" /fifo toggle"
|
||||
|
||||
#, fuzzy
|
||||
msgid "enable FIFO pipe"
|
||||
msgstr "nome do pipe FIFO"
|
||||
msgstr "ativar FIFO pipe"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"path for FIFO file; \"%h\" at beginning of string is replaced by WeeChat "
|
||||
"home (\"~/.weechat\" by default); WeeChat PID can be used in path with "
|
||||
"${info:pid} (note: content is evaluated, see /help eval)"
|
||||
msgstr ""
|
||||
"caminho onde escrever os ficheiros recebidos: \"%h\" no início da cadeia é "
|
||||
"substituído pelo diretório do WeeChat (\"~/.weechat\" por omissão) (nota: o "
|
||||
"conteúdo é avaliado, ver /help eval)"
|
||||
"caminho para o ficheiro FIFO; \"%h\" no início da cadeia é substituído pelo "
|
||||
"diretório do WeeChat (\"~/.weechat\" por omissão); WeeChat PID pode ser "
|
||||
"usado no caminho com ${info:pid} (nota: o conteúdo é avaliado, ver /help "
|
||||
"eval)"
|
||||
|
||||
msgid "name of FIFO pipe"
|
||||
msgstr "nome do pipe FIFO"
|
||||
@@ -6695,7 +6712,6 @@ msgstr "ignorar nicks/hosts de servidores ou canais"
|
||||
msgid "list || add [re:]<nick> [<server> [<channel>]] || del <number>|-all"
|
||||
msgstr "list || add [re:]<nick> [<servidor> [<canal>]] || del <número>|-all"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all ignores\n"
|
||||
" add: add an ignore\n"
|
||||
@@ -6721,7 +6737,7 @@ msgstr ""
|
||||
" list: listar todos os ignorados\n"
|
||||
" add: adicionar um ignorado\n"
|
||||
" nick: nick ou hostname (pode ser uma expressão regular POSIX estendida "
|
||||
"se inserir \"re:\" ou uma máscara usando \"*\" para substituir um ou mais "
|
||||
"se inserir \"re:\" ou uma máscara usando \"*\" para substituir zero ou mais "
|
||||
"carateres)\n"
|
||||
" del: eliminar todos os ignorados\n"
|
||||
" número: número de ignorados para eliminar (ver a lista para obtê-lo)\n"
|
||||
@@ -7310,7 +7326,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -7340,7 +7356,7 @@ msgstr ""
|
||||
"servidor: nome do servidor, para uso interno e apresentação\n"
|
||||
"hostname: nome ou endereço IP do servidor, com porta opcional (por omissão: "
|
||||
"6667), pode separar vários endereços por vírgula\n"
|
||||
" temp: adicionar um servidor temporário (não guardado)\n"
|
||||
" -temp: adicionar um servidor temporário (não guardado)\n"
|
||||
" opção: definir uma opção para o servidor (para uma opção booleana, o "
|
||||
"valor pode ser omitido)\n"
|
||||
" noopção: definir uma opção booleana como 'off' (por exemplo: -nossl)\n"
|
||||
@@ -7665,9 +7681,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"%s%s: cadeia de prioridades inválida, erro nesta posição na cadeia: \"%s\""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s: the evaluated fingerprint must not be empty"
|
||||
msgstr "%s%s: não é possível reiniciar um acionador desativado"
|
||||
msgstr "%s%s: a impressão digital avaliada não pode ser vazia"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
@@ -7762,7 +7778,6 @@ msgstr ""
|
||||
msgid "size of the key used during the Diffie-Hellman Key Exchange"
|
||||
msgstr "tamanho da chave usada durante a troca de chaves de Diffie-Hellman"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"fingerprint of certificate which is trusted and accepted for the server; "
|
||||
"only hexadecimal digits are allowed (0-9, a-f): 64 chars for SHA-512, 32 "
|
||||
@@ -7776,7 +7791,8 @@ msgstr ""
|
||||
"SHA-512, 32 carateres para SHA-256, 20 carateres para SHA-1 (inseguro, não "
|
||||
"recomendado); pode separar várias impressões digitais por vírgula; se esta "
|
||||
"opção estiver definida, NÃO são realizadas as outras verificações aos "
|
||||
"certificados (opção \"ssl_verify\")"
|
||||
"certificados (opção \"ssl_verify\") (nota: o conteúdo é avaliado, ver /help "
|
||||
"eval)"
|
||||
|
||||
msgid "check that the SSL connection is fully trusted"
|
||||
msgstr "verificar se a conexão SSL é totalmente fidedigna"
|
||||
@@ -7890,18 +7906,17 @@ msgstr ""
|
||||
"nome local de máquina/IP personalizado para o servidor (opcional, se for "
|
||||
"vazio é utilizado o nome local da máquina)"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"user mode(s) to set after connection to server and before executing command "
|
||||
"and the auto-join of channels; examples: \"+R\" (to set mode \"R\"), \"+R-i"
|
||||
"\" (to set mode \"R\" and remove \"i\"); see /help mode for the complete "
|
||||
"mode syntax (note: content is evaluated, see /help eval)"
|
||||
msgstr ""
|
||||
"comandos a executar depois de se conectar ao servidor e antes de se juntar "
|
||||
"automaticamente aos canais (pode separar vários comandos por \";\", use \"\\;"
|
||||
"\" para inserir ponto e vírgula, as variáveis especiais $nick, $channel e "
|
||||
"$server são substituídas pelos respetivos valores) (nota: o conteúdo é "
|
||||
"avaliado, ver /help eval)"
|
||||
"modo(s) de utilizador para definir depois de conectar ao servidor e antes de "
|
||||
"executar comando e juntar-se automaticamente aos canais; exemplos: \"+R"
|
||||
"\" (para definir o modo \"R\"), \"+R-i\" (para definir o modo \"R\" e "
|
||||
"remover \"i\"); ver /help mode para a sintaxe completa de mode (note: o "
|
||||
"conteúdo é avaliado, ver /help eval)"
|
||||
|
||||
msgid ""
|
||||
"command(s) to run after connection to server and before auto-join of "
|
||||
@@ -9837,7 +9852,7 @@ msgid "WeeChat compilation date"
|
||||
msgstr "data de compilação do WeeChat"
|
||||
|
||||
msgid "WeeChat PID (process ID)"
|
||||
msgstr ""
|
||||
msgstr "WeeChat PID (ID de processo)"
|
||||
|
||||
msgid "directory separator"
|
||||
msgstr "separador de diretórios"
|
||||
@@ -9908,6 +9923,13 @@ msgstr "obter código de cor do nick"
|
||||
msgid "get nick color name"
|
||||
msgstr "obter nome da cor do nick"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr "WeeChat uptime (formato: \"dias:hh:mm:ss\")"
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
"\"dias\" (número de dias) ou \"segundos\" (número de segundos) (opcional)"
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "lista de barras"
|
||||
|
||||
@@ -12474,9 +12496,9 @@ msgstr "%s%s: CRC32 do ficheiro %s incorreto"
|
||||
msgid "%s%s: CRC32 error while resuming"
|
||||
msgstr "%s%s: erro de CRC32 ao resumir"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s: unable to fork (%s)"
|
||||
msgstr "%s%s: não foi possível criar processo (fork)"
|
||||
msgstr "%s%s: não é possível efetuar fork (%s)"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
||||
+20
-9
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"Last-Translator: Eduardo Elias <camponez@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -5157,7 +5157,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -5165,12 +5165,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -5192,9 +5196,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -6480,7 +6485,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -8810,6 +8815,12 @@ msgstr "obter código de cor do apelido"
|
||||
msgid "get nick color name"
|
||||
msgstr "obter nome da cor do apelido"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr "lista de barras"
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 22:06+0100\n"
|
||||
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: ru\n"
|
||||
@@ -4580,7 +4580,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -4588,12 +4588,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -4615,9 +4619,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -6045,7 +6050,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -6076,7 +6081,7 @@ msgstr ""
|
||||
" сервер: имя сервера\n"
|
||||
"hostname: адрес сервера\n"
|
||||
" port: порт сервера (целочисленное значение)\n"
|
||||
" temp: создать временный сервер (не сохраняется в конфигурационном "
|
||||
" -temp: создать временный сервер (не сохраняется в конфигурационном "
|
||||
"файле)\n"
|
||||
" auto: автоматически подключаться к серверу при запуске WeeChat\n"
|
||||
" noauto: не подключаться автоматически к серверу при запуске WeeChat\n"
|
||||
@@ -8403,6 +8408,12 @@ msgstr "цвет чата"
|
||||
msgid "get nick color name"
|
||||
msgstr "цвет чата"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "list of bars"
|
||||
msgstr "Список сокращений:\n"
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+0100\n"
|
||||
"PO-Revision-Date: 2017-01-06 22:07+0100\n"
|
||||
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: tr\n"
|
||||
@@ -4143,7 +4143,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -4151,12 +4151,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -4178,9 +4182,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5427,7 +5432,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -5457,7 +5462,7 @@ msgstr ""
|
||||
" server: iç ve ekran kullanımı için sunucu ismi\n"
|
||||
"hostname: isteğe bağlı noktası, sunucunun İP adresi veya ismi (varsayılan: "
|
||||
"6667), fazla adres virgül ile ayrılabilir\n"
|
||||
" temp: geçici bir sunucu oluştur (kaydedilmez)\n"
|
||||
" -temp: geçici bir sunucu oluştur (kaydedilmez)\n"
|
||||
" option: sunucu için seçenekleri ayarla (for boolean option, value can be "
|
||||
"omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
@@ -7590,6 +7595,12 @@ msgstr "rumuz renk kodu al"
|
||||
msgid "get nick color name"
|
||||
msgstr "rumuz renk ismi al"
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+21
-10
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-12-20 22:37+0100\n"
|
||||
"POT-Creation-Date: 2017-01-07 07:55+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"
|
||||
@@ -4127,7 +4127,7 @@ msgid ""
|
||||
"command has some unsafe data, for example the content of a message from "
|
||||
"another user) (default)\n"
|
||||
" -bg: run process in background: do not display process output neither "
|
||||
"return code (not compatible with options -o/-n)\n"
|
||||
"return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal)\n"
|
||||
" -nobg: catch process output and display return code (default)\n"
|
||||
" -stdin: create a pipe for sending data to the process (with /exec -in/-"
|
||||
"inclose)\n"
|
||||
@@ -4135,12 +4135,16 @@ msgid ""
|
||||
" -buffer: display/send output of command on this buffer (if the buffer is "
|
||||
"not found, a new buffer with name \"exec.exec.xxx\" is created)\n"
|
||||
" -l: display locally output of command on buffer (default)\n"
|
||||
" -o: send output of command to the buffer (not compatible with option -"
|
||||
"bg)\n"
|
||||
" -o: send output of command to the buffer without executing commands "
|
||||
"(not compatible with options -bg/-pipe/-hsignal)\n"
|
||||
" -oc: send output of command to the buffer and execute commands (lines "
|
||||
"starting with \"/\" or another custom command char) (not compatible with "
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -n: display output of command in a new buffer (not compatible with "
|
||||
"option -bg)\n"
|
||||
"options -bg/-pipe/-hsignal)\n"
|
||||
" -nf: display output of command in a new buffer with free content (no "
|
||||
"word-wrap, no limit on number of lines) (not compatible with option -bg)\n"
|
||||
"word-wrap, no limit on number of lines) (not compatible with options -bg/-"
|
||||
"pipe/-hsignal)\n"
|
||||
" -cl: clear the new buffer before displaying output\n"
|
||||
" -nocl: append to the new buffer without clear (default)\n"
|
||||
" -sw: switch to the output buffer (default)\n"
|
||||
@@ -4162,9 +4166,10 @@ msgid ""
|
||||
" -pipe: send the output to a WeeChat/plugin command (line by line); if "
|
||||
"there are spaces in command/arguments, enclose them with double quotes; "
|
||||
"variable $line is replaced by the line (by default the line is added after "
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-n)\n"
|
||||
"the command, separated by a space) (not compatible with options -bg/-o/-oc/-"
|
||||
"n/-nf)\n"
|
||||
"-hsignal: send the output as a hsignal (to be used for example in a trigger) "
|
||||
"(not compatible with options -bg/-o/-n)\n"
|
||||
"(not compatible with options -bg/-o/-oc/-n/-nf)\n"
|
||||
" command: the command to execute; if beginning with \"url:\", the shell is "
|
||||
"disabled and the content of URL is downloaded and sent as output\n"
|
||||
" id: command identifier: either its number or name (if set with \"-name "
|
||||
@@ -5391,7 +5396,7 @@ msgid ""
|
||||
" server: server name, for internal and display use\n"
|
||||
"hostname: name or IP address of server, with optional port (default: 6667), "
|
||||
"many addresses can be separated by a comma\n"
|
||||
" temp: add a temporary server (not saved)\n"
|
||||
" -temp: add a temporary server (not saved)\n"
|
||||
" option: set option for server (for boolean option, value can be omitted)\n"
|
||||
"nooption: set boolean option to 'off' (for example: -nossl)\n"
|
||||
" copy: duplicate a server\n"
|
||||
@@ -7514,6 +7519,12 @@ msgstr ""
|
||||
msgid "get nick color name"
|
||||
msgstr ""
|
||||
|
||||
msgid "WeeChat uptime (format: \"days:hh:mm:ss\")"
|
||||
msgstr ""
|
||||
|
||||
msgid "\"days\" (number of days) or \"seconds\" (number of seconds) (optional)"
|
||||
msgstr ""
|
||||
|
||||
msgid "list of bars"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2007-2008 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2008-2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user