mirror of
https://github.com/weechat/weechat.git
synced 2026-06-20 01:54:46 +02:00
Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7495650be5 | |||
| 1a1a9a9503 | |||
| b42ae05a65 | |||
| c229030860 | |||
| b35873fc3e | |||
| 0796f343ee | |||
| 470b1892d8 | |||
| 0cf4640b9b | |||
| d039fd0f8c | |||
| d611982ba6 | |||
| 5dd36f8fda | |||
| 9040494016 | |||
| d4908ba8f3 | |||
| eb81c4752b | |||
| e95350a6b2 | |||
| 2021e63cd6 | |||
| 91b108e570 | |||
| 6d6d9d6c70 | |||
| 07b0585ca5 | |||
| 8f668bb18c | |||
| ca5aa6695f | |||
| 6d1251415f | |||
| d8e8053bea | |||
| 677d325078 | |||
| 8221c22e1e | |||
| a9653008d5 | |||
| 235cc3f9e2 | |||
| 00ba2e8c4d | |||
| a020c28ea6 | |||
| ce98526302 | |||
| b90b21ffa0 | |||
| ffb736f1b4 | |||
| 27431e234d | |||
| aa0289cbbd | |||
| bab75fe1ee | |||
| dc1993edca | |||
| db9290aaea | |||
| b9eb186e17 | |||
| bf05086878 | |||
| 966a7b5143 | |||
| c2c17e7b46 |
+3
-3
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2007-2008 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2008-2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
@@ -34,8 +34,8 @@ endif()
|
||||
|
||||
# version
|
||||
set(VERSION_MAJOR "1")
|
||||
set(VERSION_MINOR "1-rc1")
|
||||
set(VERSION_PATCH "")
|
||||
set(VERSION_MINOR "1")
|
||||
set(VERSION_PATCH "2-dev")
|
||||
if(VERSION_PATCH STREQUAL "")
|
||||
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
|
||||
else()
|
||||
|
||||
+26
-1
@@ -13,10 +13,31 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
(file 'ReleaseNotes.asciidoc' in sources).
|
||||
|
||||
|
||||
== Version 1.1 (under dev)
|
||||
== Version 1.1.1 (2015-01-25)
|
||||
|
||||
=== Bugs fixed
|
||||
|
||||
* core: fix random error when creating symbolic link weechat-curses on
|
||||
make install with cmake (bug #40313)
|
||||
* core: fix crash when a root bar has conditions different from
|
||||
active/inactive/nicklist (closes #317)
|
||||
* irc: don't close channel buffer on second /part when option
|
||||
irc.look.part_closes_buffer is off (closes #313)
|
||||
* irc: fix /join on a channel buffer opened with autojoin but which failed to
|
||||
join
|
||||
* irc: send QUIT to server and no PART for channels when the server buffer
|
||||
is closed (closes #294)
|
||||
* irc: fix order of channel buffers opened when option irc.look.server_buffer
|
||||
is set to "independent", irc.look.buffer_open_before_autojoin to "on" and
|
||||
irc.look.new_channel_position to "near_server" (closes #303)
|
||||
* irc: fix crash in buffer close when server name is the same as a channel name
|
||||
(closes #305)
|
||||
|
||||
== Version 1.1 (2015-01-11)
|
||||
|
||||
=== New features
|
||||
|
||||
* core: check bar conditions in root bars and on each update of a bar item
|
||||
* core: fully evaluate commands bound to keys in cursor and mouse contexts
|
||||
* core: add option weechat.completion.command_inline (task #12491)
|
||||
* core: add bar item "mouse_status", new options weechat.look.item_mouse_status
|
||||
@@ -58,6 +79,7 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
|
||||
=== Bugs fixed
|
||||
|
||||
* core: fix compilation of plugins with cmake >= 3.1 (closes #287)
|
||||
* core: fix display bug when scrolling in buffer on a filtered line
|
||||
(closes #240)
|
||||
* core: send mouse code only one time to terminal with command
|
||||
@@ -67,9 +89,12 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
* core: display time in bare display only if option
|
||||
weechat.look.buffer_time_format is not an empty string
|
||||
* core: fix translation of message displayed after /upgrade
|
||||
* doc: fix compilation of man pages with autotools in source directory
|
||||
* api: fix truncated process output in hook_process() (closes #266)
|
||||
* api: fix crash when reading config options with NULL value (closes #238)
|
||||
* tests: fix compilation of tests with clang (closes #275)
|
||||
* irc: defer the auto-connection to servers with a timer
|
||||
(closes #279, task #13038)
|
||||
* irc: add missing server options "sasl_timeout" and "notify" in output of
|
||||
/server listfull
|
||||
* irc: use option irc.look.nick_mode_empty to display nick prefix in bar item
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2006-2009 Emmanuel Bouthenot <kolter@openics.org>
|
||||
#
|
||||
|
||||
+2
-2
@@ -24,7 +24,7 @@ image:https://travis-ci.org/weechat/weechat.svg?branch=master["Build Status", li
|
||||
* Developed from scratch.
|
||||
* Free software, released under GPLv3.
|
||||
|
||||
image::http://static.weechat.org/images/screenshots/weechat/medium/weechat_2013-04-27_phlux_shadow.png[align="center"]
|
||||
image::https://weechat.org/media/images/screenshots/weechat/medium/weechat_2013-04-27_phlux_shadow.png[align="center"]
|
||||
|
||||
== Install
|
||||
|
||||
@@ -73,7 +73,7 @@ https://weechat.org/files/doc/devel/weechat_user.en.html#compile_with_autotools[
|
||||
|
||||
== Copyright
|
||||
|
||||
Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
|
||||
This file is part of WeeChat, the extensible chat client.
|
||||
|
||||
|
||||
@@ -15,7 +15,11 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
|
||||
(file 'ChangeLog.asciidoc' in sources).
|
||||
|
||||
|
||||
== Version 1.1 (under dev)
|
||||
== Version 1.1.1 (2015-01-25)
|
||||
|
||||
Bug fix and maintenance release.
|
||||
|
||||
== Version 1.1 (2015-01-11)
|
||||
|
||||
=== New format for regex replacement in triggers
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2014-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2011-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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,6 +1,6 @@
|
||||
#
|
||||
# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net>
|
||||
# Copyright (C) 2008-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2008-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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>
|
||||
@@ -24,7 +24,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.56)
|
||||
AC_INIT(WeeChat, 1.1-rc1, flashcode@flashtux.org)
|
||||
AC_INIT(WeeChat, 1.1.2-dev, flashcode@flashtux.org)
|
||||
AC_CONFIG_SRCDIR([configure.ac])
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
AM_INIT_AUTOMAKE([foreign])
|
||||
|
||||
Vendored
+6
@@ -1,3 +1,9 @@
|
||||
weechat (1.0.1-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
|
||||
-- Emmanuel Bouthenot <kolter@debian.org> Sun, 28 Sep 2014 17:41:10 +0200
|
||||
|
||||
weechat (1.0-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release (Closes: #758230, #751108)
|
||||
|
||||
Vendored
+1
-1
@@ -4,7 +4,7 @@ Upstream-Contact: Sébastien Helleu <flashcode@flashtux.org>
|
||||
Source: https://weechat.org/
|
||||
|
||||
Files: *
|
||||
Copyright: 2003-2014, Sébastien Helleu <flashcode@flashtux.org>
|
||||
Copyright: 2003-2015, 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+7
-4
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
@@ -48,9 +48,12 @@ all-local: $(man_targets) $(doc_targets)
|
||||
|
||||
# man page
|
||||
weechat.1: weechat.1.de.asciidoc cmdline_options.de.asciidoc
|
||||
cp -f $(abs_top_srcdir)/doc/de/weechat.1.de.asciidoc .
|
||||
cp -f $(abs_top_srcdir)/doc/de/cmdline_options.de.asciidoc .
|
||||
$(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.de.asciidoc
|
||||
-mkdir tmp_man
|
||||
cp -f $(abs_top_srcdir)/doc/de/weechat.1.de.asciidoc ./tmp_man/
|
||||
cp -f $(abs_top_srcdir)/doc/de/cmdline_options.de.asciidoc ./tmp_man/
|
||||
(cd tmp_man && $(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.de.asciidoc)
|
||||
mv -f tmp_man/weechat.1 .
|
||||
rm -rf tmp_man
|
||||
|
||||
# user's guide
|
||||
weechat_user.de.html: weechat_user.de.asciidoc cmdline_options.de.asciidoc $(wildcard autogen/user/*.asciidoc)
|
||||
|
||||
@@ -675,6 +675,7 @@ reason: Grund der Abmeldung
|
||||
/server list|listfull [<server>]
|
||||
add <server> <hostname>[/<port>] [-temp] [-<option>[=<value>]] [-no<option>]
|
||||
copy|rename <server> <new_name>
|
||||
reorder <server> [<server>...]
|
||||
del|keep <server>
|
||||
deloutq|jump|raw
|
||||
|
||||
@@ -688,6 +689,7 @@ hostname: Name oder IP-Adresse des Servers. Optional kann noch der Port festgele
|
||||
nooption: stellt die Boolean Einstellung auf "off" (Beispiel: -nossl)
|
||||
copy: erstellt eine Kopie des Servers
|
||||
rename: benennt den Server um
|
||||
reorder: Anordnung der Server ändern
|
||||
keep: behält den Server in der Konfigurationsdatei (ausschließlich für die Nutzung bei temporären Servern)
|
||||
del: entfernt einen Server
|
||||
deloutq: löscht bei allen Servern alle ausgehende Nachrichten, die in der Warteschlange stehen (dies betrifft alle Nachrichten die WeeChat gerade sendet)
|
||||
@@ -702,6 +704,7 @@ Beispiele:
|
||||
/server add freenode3 chat.freenode.net -password=mypass
|
||||
/server copy oftc oftcbis
|
||||
/server rename oftc newoftc
|
||||
/server reorder oftc freenode
|
||||
/server del freenode
|
||||
/server deloutq
|
||||
----
|
||||
|
||||
@@ -69,12 +69,12 @@
|
||||
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen (Standardwert: `default`)
|
||||
|
||||
* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin*
|
||||
** Beschreibung: `open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup`
|
||||
** Beschreibung: `betritt man automatisch einen Channel-Buffer (mittels autojoin Option) wird dieser direkt geöffnet, ohne auf die JOIN Nachricht des Servers zu warten; dies ist sinnvoll um die Channels immer an der selben Position bei einem Neustart zu öffnen`
|
||||
** Typ: boolesch
|
||||
** Werte: on, off (Standardwert: `on`)
|
||||
|
||||
* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join*
|
||||
** Beschreibung: `open channel buffer before the JOIN is received from server when it is manually joined (with /join command)`
|
||||
** Beschreibung: `betritt man mittels dem /join Befehl einen Channel wird der Buffer direkt geöffnet, ohne auf die JOIN Nachricht des Servers zu warten`
|
||||
** Typ: boolesch
|
||||
** Werte: on, off (Standardwert: `off`)
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ message: Abwesenheitsnachricht (ohne Angabe einer Nachricht wird der Abwesenheit
|
||||
|
||||
----
|
||||
/bar list|listfull|listitems
|
||||
add <name> <type>[,<condition>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
add <name> <type>[,<conditions>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
default [input|title|status|nicklist]
|
||||
del <name>|-all
|
||||
set <name> <option> <value>
|
||||
@@ -26,13 +26,13 @@ message: Abwesenheitsnachricht (ohne Angabe einer Nachricht wird der Abwesenheit
|
||||
add: füge eine neue Infobar hinzu
|
||||
name: Name der Infobar (muss einmalig sein)
|
||||
type: root: außerhalb eines Fensters,
|
||||
window: innerhalb eines Fensters, mit optionalen Merkmalen (siehe unten)
|
||||
condition: Merkmal(e) für eine Infobar (nur nutzbar mit Bars vom Typ "window"):
|
||||
window: innerhalb eines Fensters, mit optionalen Bedingungen (siehe unten)
|
||||
conditions: Bedingungen für eine Infobar:
|
||||
active: in einem aktiven Fenster
|
||||
inactive: in einem inaktiven Fenster
|
||||
nicklist: in Fenstern mit einer Benutzerliste
|
||||
weitere Merkmale: siehe /help weechat.bar.xxx.conditions und /help eval
|
||||
ohne Angabe von Merkmalen wird die Infobar immer angezeigt
|
||||
weitere mögliche Bedingungen: siehe /help weechat.bar.xxx.conditions und /help eval
|
||||
ohne Angabe von Bedingungen wird die Infobar immer angezeigt
|
||||
position: bottom (unten), top (oben), left (links) oder right (rechts)
|
||||
size: Größe der Infobar (in Zeichen)
|
||||
separator: 1 um eine Trennlinien zu zeichnen, bei 0 oder ohne eine Angabe, wird keine Trennlinien gezeichnet
|
||||
|
||||
@@ -544,13 +544,11 @@ Die Option 'weechat.network.gnutls_ca_file' sollte auf die Zertifikationsdatei z
|
||||
Überprüfe, ob die Zertifikationsdatei auf Deinem System installiert wurde (üblicherweise wird
|
||||
diese Datei durch das Paket "ca-certificates" bereitgestellt)
|
||||
|
||||
Konfiguration des Servers, Port, SSL, dhkey_size und dann einen
|
||||
Connect durchführen:
|
||||
Konfiguration des Servers, Port, SSL und dann einen Connect durchführen:
|
||||
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
/connect freenode
|
||||
----
|
||||
|
||||
|
||||
@@ -152,13 +152,8 @@ Um eine SSL Verbindung herzustellen:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Freenode unterstützt nicht die standardmäßige Schlüsselgröße von 2048 Bytes.
|
||||
Deshalb muss die Schlüsselgröße auf 1024 Bytes angepasst werden.
|
||||
|
||||
Sollte der Server SASL unterstützen, kann man sich damit automatisch Authentifizieren
|
||||
(dadurch identifiziert man sich beim Server, bevor man Channels (Chaträume) betritt):
|
||||
|
||||
|
||||
@@ -861,9 +861,8 @@ Einige Beispiele, wie die Bar 'nicklist' dargestellt werden kann:
|
||||
[[bar_conditions]]
|
||||
==== Bedingungen
|
||||
|
||||
Die Option 'conditions' ist eine Zeichenkette die direkten Einfluss darauf
|
||||
nimmt, ob die Bar in einem Fenster dargestellt wird oder nicht (diese Option
|
||||
kann nur für Bars vom Typ 'window' genutzt werden).
|
||||
Der Inhalt der Option 'conditions' ist evaluiert um festzulegen ob die entsprechende
|
||||
Bar angezeigt werden soll oder nicht.
|
||||
|
||||
Folgende Zeichenketten sind möglich:
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Copyright (C) 2008-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2008-2015 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,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+7
-4
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
@@ -55,9 +55,12 @@ all-local: $(man_targets) $(doc_targets)
|
||||
|
||||
# man page
|
||||
weechat.1: weechat.1.en.asciidoc cmdline_options.en.asciidoc
|
||||
cp -f $(abs_top_srcdir)/doc/en/weechat.1.en.asciidoc .
|
||||
cp -f $(abs_top_srcdir)/doc/en/cmdline_options.en.asciidoc .
|
||||
$(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.en.asciidoc
|
||||
-mkdir tmp_man
|
||||
cp -f $(abs_top_srcdir)/doc/en/weechat.1.en.asciidoc ./tmp_man/
|
||||
cp -f $(abs_top_srcdir)/doc/en/cmdline_options.en.asciidoc ./tmp_man/
|
||||
(cd tmp_man && $(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.en.asciidoc)
|
||||
mv -f tmp_man/weechat.1 .
|
||||
rm -rf tmp_man
|
||||
|
||||
# user's guide
|
||||
weechat_user.en.html: weechat_user.en.asciidoc cmdline_options.en.asciidoc $(wildcard autogen/user/*.asciidoc)
|
||||
|
||||
@@ -675,6 +675,7 @@ reason: reason
|
||||
/server list|listfull [<server>]
|
||||
add <server> <hostname>[/<port>] [-temp] [-<option>[=<value>]] [-no<option>]
|
||||
copy|rename <server> <new_name>
|
||||
reorder <server> [<server>...]
|
||||
del|keep <server>
|
||||
deloutq|jump|raw
|
||||
|
||||
@@ -688,6 +689,7 @@ hostname: name or IP address of server, with optional port (default: 6667), many
|
||||
nooption: set boolean option to 'off' (for example: -nossl)
|
||||
copy: duplicate a server
|
||||
rename: rename a server
|
||||
reorder: reorder list of servers
|
||||
keep: keep server in config file (for temporary servers only)
|
||||
del: delete a server
|
||||
deloutq: delete messages out queue for all servers (all messages WeeChat is currently sending)
|
||||
@@ -702,6 +704,7 @@ Examples:
|
||||
/server add freenode3 chat.freenode.net -password=mypass
|
||||
/server copy oftc oftcbis
|
||||
/server rename oftc newoftc
|
||||
/server reorder oftc freenode
|
||||
/server del freenode
|
||||
/server deloutq
|
||||
----
|
||||
|
||||
@@ -13,7 +13,7 @@ message: message for away (if no message is given, away status is removed)
|
||||
|
||||
----
|
||||
/bar list|listfull|listitems
|
||||
add <name> <type>[,<condition>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
add <name> <type>[,<conditions>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
default [input|title|status|nicklist]
|
||||
del <name>|-all
|
||||
set <name> <option> <value>
|
||||
@@ -27,12 +27,12 @@ message: message for away (if no message is given, away status is removed)
|
||||
name: name of bar (must be unique)
|
||||
type: root: outside windows,
|
||||
window: inside windows, with optional conditions (see below)
|
||||
condition: condition(s) for displaying bar (only for type "window"):
|
||||
conditions: the conditions to display the bar:
|
||||
active: on active window
|
||||
inactive: on inactive windows
|
||||
nicklist: on windows with nicklist
|
||||
other condition: see /help weechat.bar.xxx.conditions and /help eval
|
||||
without condition, the bar is always displayed
|
||||
without conditions, the bar is always displayed
|
||||
position: bottom, top, left or right
|
||||
size: size of bar (in chars)
|
||||
separator: 1 for using separator (line), 0 or nothing means no separator
|
||||
|
||||
@@ -367,7 +367,7 @@ Example in C:
|
||||
/*
|
||||
* weechat.c - core functions for WeeChat
|
||||
*
|
||||
* Copyright (C) 2014 Your Name <your@email.com>
|
||||
* Copyright (C) 2015 Your Name <your@email.com>
|
||||
*
|
||||
* This file is part of WeeChat, the extensible chat client.
|
||||
*
|
||||
|
||||
@@ -518,12 +518,11 @@ Set option 'weechat.network.gnutls_ca_file' to file with certificates:
|
||||
Check that you have this file on your system (commonly brought by package
|
||||
"ca-certificates").
|
||||
|
||||
Setup server port, SSL, dhkey_size, then connect:
|
||||
Setup server port, SSL, then connect:
|
||||
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
/connect freenode
|
||||
----
|
||||
|
||||
|
||||
@@ -143,13 +143,8 @@ To connect with SSL:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Freenode does not support the default dhkey size of 2048, so it has to be set
|
||||
to 1024.
|
||||
|
||||
If SASL is available on server, you can use it for authentication (you will be
|
||||
identified before you join channels):
|
||||
|
||||
|
||||
@@ -854,8 +854,8 @@ Some examples of filling for bar 'nicklist':
|
||||
[[bar_conditions]]
|
||||
==== Conditions
|
||||
|
||||
The option 'conditions' is a string evaluated to know if the bar is displayed
|
||||
or not in the window (it is used only for bars with type 'window').
|
||||
The option 'conditions' is a string which is evaluated to know if the bar
|
||||
must be displayed or not.
|
||||
|
||||
The string can be:
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2012-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2012-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2012-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -156,14 +156,8 @@ To connect with SSL:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[NOTE]
|
||||
Freenode does not support the default dhkey size of 2048, so it has to be set
|
||||
to 1024.
|
||||
|
||||
// TRANSLATION MISSING
|
||||
If SASL is available on server, you can use it for authentication (you will be
|
||||
identified before you join channels):
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+7
-4
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
@@ -55,9 +55,12 @@ all-local: $(man_targets) $(doc_targets)
|
||||
|
||||
# man page
|
||||
weechat.1: weechat.1.fr.asciidoc cmdline_options.fr.asciidoc
|
||||
cp -f $(abs_top_srcdir)/doc/fr/weechat.1.fr.asciidoc .
|
||||
cp -f $(abs_top_srcdir)/doc/fr/cmdline_options.fr.asciidoc .
|
||||
$(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.fr.asciidoc
|
||||
-mkdir tmp_man
|
||||
cp -f $(abs_top_srcdir)/doc/fr/weechat.1.fr.asciidoc ./tmp_man/
|
||||
cp -f $(abs_top_srcdir)/doc/fr/cmdline_options.fr.asciidoc ./tmp_man/
|
||||
(cd tmp_man && $(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.fr.asciidoc)
|
||||
mv -f tmp_man/weechat.1 .
|
||||
rm -rf tmp_man
|
||||
|
||||
# user's guide
|
||||
weechat_user.fr.html: weechat_user.fr.asciidoc cmdline_options.fr.asciidoc $(wildcard autogen/user/*.asciidoc)
|
||||
|
||||
@@ -675,6 +675,7 @@ raison : raison
|
||||
/server list|listfull [<serveur>]
|
||||
add <serveur> <nom>[/<port>] [-temp] [-<option>[=<valeur>]] [-no<option>]
|
||||
copy|rename <serveur> <nouveau_nom>
|
||||
reorder <serveur> [<serveur>...]
|
||||
del|keep <serveur>
|
||||
deloutq|jump|raw
|
||||
|
||||
@@ -688,6 +689,7 @@ listfull : afficher les serveurs avec de l'info détaillée pour chaque
|
||||
nooption : définir l'option booléenne à 'off' (par exemple : -nossl)
|
||||
copy : dupliquer un serveur
|
||||
rename : renommer un serveur
|
||||
reorder : réordonner la liste des serveurs
|
||||
keep : garder le serveur dans le fichier de configuration (pour les serveurs temporaires seulement)
|
||||
del : supprimer un serveur
|
||||
deloutq : supprimer la file d'attente des messages sortants pour tous les serveurs (tous les messages que WeeChat est actuellement en train d'envoyer)
|
||||
@@ -702,6 +704,7 @@ Exemples :
|
||||
/server add freenode3 chat.freenode.net -password=mypass
|
||||
/server copy oftc oftcbis
|
||||
/server rename oftc newoftc
|
||||
/server reorder oftc freenode
|
||||
/server del freenode
|
||||
/server deloutq
|
||||
----
|
||||
|
||||
@@ -27,7 +27,7 @@ message : message pour l'absence (si pas de message donné, le statut d'absence
|
||||
nom : nom de la barre (doit être unique)
|
||||
type : root : en dehors des fenêtres
|
||||
window : dans les fenêtres, avec condition(s) optionnelle(s) (voir ci-dessous)
|
||||
condition : condition(s) pour afficher cette barre (seulement pour le type "window") :
|
||||
conditions : les conditions pour afficher la barre :
|
||||
active : sur la fenêtre active
|
||||
inactive : sur les fenêtres inactives
|
||||
nicklist : sur les fenêtres avec liste de pseudos
|
||||
|
||||
@@ -368,7 +368,7 @@ Exemple en C :
|
||||
/*
|
||||
* weechat.c - core functions for WeeChat
|
||||
*
|
||||
* Copyright (C) 2014 Your Name <your@email.com>
|
||||
* Copyright (C) 2015 Your Name <your@email.com>
|
||||
*
|
||||
* This file is part of WeeChat, the extensible chat client.
|
||||
*
|
||||
|
||||
@@ -541,12 +541,11 @@ certificats :
|
||||
Vérifiez que vous avez bien ce fichier (fourni généralement par le paquet
|
||||
"ca-certificates").
|
||||
|
||||
Configurez le port du serveur, SSL, dhkey_size, puis connectez-vous :
|
||||
Configurez le port du serveur, SSL, puis connectez-vous :
|
||||
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
/connect freenode
|
||||
----
|
||||
|
||||
|
||||
@@ -150,13 +150,8 @@ Pour se connecter avec SSL :
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Freenode ne supporte pas la clé dhkey par défaut de 2048, donc elle doit être
|
||||
définie à 1024.
|
||||
|
||||
Si SASL est disponible sur le serveur, vous pouvez l'utiliser pour
|
||||
l'authentification (vous serez identifié avant de rejoindre les canaux) :
|
||||
|
||||
|
||||
@@ -876,9 +876,8 @@ Quelques exemples de remplissage pour la barre 'nicklist' :
|
||||
[[bar_conditions]]
|
||||
==== Conditions
|
||||
|
||||
L'option 'conditions' est une chaîne évaluée pour savoir si la barre doit être
|
||||
affichée ou non dans la fenêtre (elle est utilisée seulement pour les barres
|
||||
avec type 'window').
|
||||
L'option 'conditions' est une chaîne qui est évaluée pour savoir si la barre
|
||||
doit être affichée ou non.
|
||||
|
||||
La chaîne peut être :
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+7
-4
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
@@ -50,9 +50,12 @@ all-local: $(man_targets) $(doc_targets)
|
||||
|
||||
# man page
|
||||
weechat.1: weechat.1.it.asciidoc cmdline_options.it.asciidoc
|
||||
cp -f $(abs_top_srcdir)/doc/it/weechat.1.it.asciidoc .
|
||||
cp -f $(abs_top_srcdir)/doc/it/cmdline_options.it.asciidoc .
|
||||
$(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.it.asciidoc
|
||||
-mkdir tmp_man
|
||||
cp -f $(abs_top_srcdir)/doc/it/weechat.1.it.asciidoc ./tmp_man/
|
||||
cp -f $(abs_top_srcdir)/doc/it/cmdline_options.it.asciidoc ./tmp_man/
|
||||
(cd tmp_man && $(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.it.asciidoc)
|
||||
mv -f tmp_man/weechat.1 .
|
||||
rm -rf tmp_man
|
||||
|
||||
# user's guide
|
||||
weechat_user.it.html: weechat_user.it.asciidoc cmdline_options.it.asciidoc $(wildcard autogen/user/*.asciidoc)
|
||||
|
||||
@@ -673,35 +673,38 @@ motivo: motivo
|
||||
|
||||
----
|
||||
/server list|listfull [<server>]
|
||||
add <server> <host>[/<porta>] [-temp] [-<opzione>[=<valore>]] [-no<option>]
|
||||
copy|rename <server> <nuovo_nome>
|
||||
add <server> <hostname>[/<port>] [-temp] [-<option>[=<value>]] [-no<option>]
|
||||
copy|rename <server> <new_name>
|
||||
reorder <server> [<server>...]
|
||||
del|keep <server>
|
||||
deloutq|jump|raw
|
||||
|
||||
list: elenca i server (senza argomento, viene mostrata questa lista)
|
||||
listfull: elenca i server con tutte le informazioni dettagliate
|
||||
add: crea un nuovo server
|
||||
server: nome server, per il solo uso interno e di visualizzazione
|
||||
nome_host: nome o indirizzo IP del server, con porta opzionale (predefinita: 6667), più indirizzi possono essere separati da virgole
|
||||
temp: crea server temporaneo (non salvato)
|
||||
opzione: imposta opzione per il server (per opzioni bool, il valore può essere omesso)
|
||||
nooption: imposta l'opzione bool su 'off' (per esempio: -nossl)
|
||||
copy: duplica un server
|
||||
rename: rinomina un server
|
||||
keep: salva server nel file di configurazione (solo per server temporanei)
|
||||
del: elimina un server
|
||||
deloutq: elimina i messaggi fuori coda per tutti i server (tutti i messaggi che WeeChat sta inviando)
|
||||
jump: passa al buffer del server
|
||||
raw: apri buffer con dati raw IRC
|
||||
list: list servers (without argument, this list is displayed)
|
||||
listfull: list servers with detailed info for each server
|
||||
add: create 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: create 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
|
||||
rename: rename a server
|
||||
reorder: reorder list of servers
|
||||
keep: keep server in config file (for temporary servers only)
|
||||
del: delete a server
|
||||
deloutq: delete messages out queue for all servers (all messages WeeChat is currently sending)
|
||||
jump: jump to server buffer
|
||||
raw: open buffer with raw IRC data
|
||||
|
||||
Esempi:
|
||||
Examples:
|
||||
/server listfull
|
||||
/server add oftc irc.oftc.net/6697 -ssl -autoconnect
|
||||
/server add oftc6 irc6.oftc.net/6697 -ipv6 -ssl
|
||||
/server add freenode2 chat.eu.freenode.net/6667,chat.us.freenode.net/6667
|
||||
/server add freenode3 chat.freenode.net -password=miapassword
|
||||
/server add freenode3 chat.freenode.net -password=mypass
|
||||
/server copy oftc oftcbis
|
||||
/server rename oftc newoftc
|
||||
/server reorder oftc freenode
|
||||
/server del freenode
|
||||
/server deloutq
|
||||
----
|
||||
|
||||
@@ -13,12 +13,12 @@ messaggio: messaggio di assenza (se non specificato, lo stato di assenza viene r
|
||||
|
||||
----
|
||||
/bar list|listfull|listitems
|
||||
add <nome> <type>[,<condizione>] <posizione> <dimensione> <separatore> <item1>[,<item2>...]
|
||||
add <name> <type>[,<conditions>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
default [input|title|status|nicklist]
|
||||
del <nome>|-all
|
||||
set <nome> <opzione> <valore>
|
||||
hide|show|toggle <nome>
|
||||
scroll <nome> <finestra> <scroll_value>
|
||||
del <name>|-all
|
||||
set <name> <option> <value>
|
||||
hide|show|toggle <name>
|
||||
scroll <name> <window> <scroll_value>
|
||||
|
||||
list: list all bars
|
||||
listfull: list all bars (verbose)
|
||||
@@ -27,12 +27,12 @@ messaggio: messaggio di assenza (se non specificato, lo stato di assenza viene r
|
||||
name: name of bar (must be unique)
|
||||
type: root: outside windows,
|
||||
window: inside windows, with optional conditions (see below)
|
||||
condition: condition(s) for displaying bar (only for type "window"):
|
||||
conditions: the conditions to display the bar:
|
||||
active: on active window
|
||||
inactive: on inactive windows
|
||||
nicklist: on windows with nicklist
|
||||
other condition: see /help weechat.bar.xxx.conditions and /help eval
|
||||
without condition, the bar is always displayed
|
||||
without conditions, the bar is always displayed
|
||||
position: bottom, top, left or right
|
||||
size: size of bar (in chars)
|
||||
separator: 1 for using separator (line), 0 or nothing means no separator
|
||||
|
||||
@@ -545,12 +545,11 @@ Impostare l'opzione 'weechat.network.gnutls_ca_file' con il file dei certificati
|
||||
Verificare la presenza di questo file sul sistema (solitamente installato dal
|
||||
pacchetto "ca-certificates").
|
||||
|
||||
Impostare la porta del server, SSL, dhkey_size, poi riconnettersi:
|
||||
Impostare la porta del server, SSL, poi riconnettersi:
|
||||
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
/connect freenode
|
||||
----
|
||||
|
||||
|
||||
@@ -149,14 +149,8 @@ To connect with SSL:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[NOTE]
|
||||
Freenode does not support the default dhkey size of 2048, so it has to be set
|
||||
to 1024.
|
||||
|
||||
Se SASL è disponibile sul server, è possibile usarlo per l'autenticazione
|
||||
(l'autenticazione avviene prima dell'ingresso nei canali):
|
||||
|
||||
|
||||
@@ -895,8 +895,9 @@ Some examples of filling for bar 'nicklist':
|
||||
[[bar_conditions]]
|
||||
==== Conditions
|
||||
|
||||
The option 'conditions' is a string evaluated to know if the bar is displayed
|
||||
or not in the window (it is used only for bars with type 'window').
|
||||
// TRANSLATION MISSING
|
||||
The option 'conditions' is a string which is evaluated to know if the bar
|
||||
must be displayed or not.
|
||||
|
||||
The string can be:
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+7
-4
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
@@ -54,9 +54,12 @@ all-local: $(man_targets) $(doc_targets)
|
||||
|
||||
# man page
|
||||
weechat.1: weechat.1.ja.asciidoc cmdline_options.ja.asciidoc
|
||||
cp -f $(abs_top_srcdir)/doc/ja/weechat.1.ja.asciidoc .
|
||||
cp -f $(abs_top_srcdir)/doc/ja/cmdline_options.ja.asciidoc .
|
||||
$(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.ja.asciidoc
|
||||
-mkdir tmp_man
|
||||
cp -f $(abs_top_srcdir)/doc/ja/weechat.1.ja.asciidoc ./tmp_man/
|
||||
cp -f $(abs_top_srcdir)/doc/ja/cmdline_options.ja.asciidoc ./tmp_man/
|
||||
(cd tmp_man && $(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.ja.asciidoc)
|
||||
mv -f tmp_man/weechat.1 .
|
||||
rm -rf tmp_man
|
||||
|
||||
# user's guide
|
||||
weechat_user.ja.html: weechat_user.ja.asciidoc cmdline_options.ja.asciidoc $(wildcard autogen/user/*.asciidoc)
|
||||
|
||||
@@ -675,6 +675,7 @@ reason: 理由
|
||||
/server list|listfull [<server>]
|
||||
add <server> <hostname>[/<port>] [-temp] [-<option>[=<value>]] [-no<option>]
|
||||
copy|rename <server> <new_name>
|
||||
reorder <server> [<server>...]
|
||||
del|keep <server>
|
||||
deloutq|jump|raw
|
||||
|
||||
@@ -688,6 +689,7 @@ hostname: サーバのホスト名か IP アドレス、ポート番号は任意
|
||||
nooption: ブールオプションを 'off' に設定 (例: -nossl)
|
||||
copy: サーバを複製
|
||||
rename: サーバをリネーム
|
||||
reorder: サーバリストにおける順番を入れ替える
|
||||
keep: 設定ファイルにサーバを保存 (一時的なサーバ用)
|
||||
del: サーバを削除
|
||||
deloutq: 全てのサーバにメッセージの削除を要求 (WeeChat が送信している全てのメッセージ)
|
||||
@@ -702,6 +704,7 @@ nooption: ブールオプションを 'off' に設定 (例: -nossl)
|
||||
/server add freenode3 chat.freenode.net -password=mypass
|
||||
/server copy oftc oftcbis
|
||||
/server rename oftc newoftc
|
||||
/server reorder oftc freenode
|
||||
/server del freenode
|
||||
/server deloutq
|
||||
----
|
||||
|
||||
@@ -69,12 +69,12 @@
|
||||
** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `default`)
|
||||
|
||||
* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin*
|
||||
** 説明: `open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup`
|
||||
** 説明: `自動で参加した場合 ("autojoin" オプションで参加した場合) に、サーバから JOIN を受信する前にチャンネルバッファを開く; チャンネルとバッファ番号の対応を常に一致させたい場合に便利です`
|
||||
** タイプ: ブール
|
||||
** 値: on, off (デフォルト値: `on`)
|
||||
|
||||
* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join*
|
||||
** 説明: `open channel buffer before the JOIN is received from server when it is manually joined (with /join command)`
|
||||
** 説明: `手動で参加した場合 (/join コマンドを実行した場合) に、サーバから JOIN を受信する前にチャンネルバッファを開く`
|
||||
** タイプ: ブール
|
||||
** 値: on, off (デフォルト値: `off`)
|
||||
|
||||
@@ -564,7 +564,7 @@
|
||||
** 値: 未制約文字列 (デフォルト値: `""`)
|
||||
|
||||
* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail*
|
||||
** 説明: `action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server`
|
||||
** 説明: `SASL 認証が失敗した場合の挙動: 認証の問題を無視する場合は "continue"、サーバへの再接続を予定する場合は "reconnect"、サーバから切断する場合は "disconnect"`
|
||||
** タイプ: 整数
|
||||
** 値: continue, reconnect, disconnect (デフォルト値: `continue`)
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ message: 離席メッセージ (メッセージが無い場合は、離席状態
|
||||
|
||||
----
|
||||
/bar list|listfull|listitems
|
||||
add <name> <type>[,<condition>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
add <name> <type>[,<conditions>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
default [input|title|status|nicklist]
|
||||
del <name>|-all
|
||||
set <name> <option> <value>
|
||||
@@ -27,12 +27,12 @@ message: 離席メッセージ (メッセージが無い場合は、離席状態
|
||||
name: バーの名称 (ユニークな)
|
||||
type: root: 外側のウィンドウ、
|
||||
window: 内側のウィンドウ、任意の状態を取れる (以下を参照)
|
||||
condition: バーの表示状態 (タイプが "window" のバー以外は無効):
|
||||
active: アクティブウィンドウに表示
|
||||
inactive: 非アクティブウィンドウに表示
|
||||
nicklist: ニックネームリストを持つウィンドウに表示
|
||||
その他の状態: /help weechat.bar.xxx.conditions と /help eval を参照してください
|
||||
表示状態の指定が無ければ、バーは常に表示されます。
|
||||
conditions: バーを表示する条件:
|
||||
active: アクティブウィンドウの場合に表示
|
||||
inactive: 非アクティブウィンドウの場合に表示
|
||||
nicklist: ニックネームリストを持つウィンドウの場合に表示
|
||||
その他の条件: /help weechat.bar.xxx.conditions と /help eval を参照してください
|
||||
表示条件の指定が無ければ、バーは常に表示されます。
|
||||
position: bottom、top、left、right
|
||||
size: バーのサイズ (文字数で指定)
|
||||
separator: 1 はセパレータ (線) を使用、0 または指定無しはセパレータ無し
|
||||
|
||||
@@ -364,7 +364,7 @@ WeeChat とプラグインの翻訳は gettext で行います、ファイルは
|
||||
/*
|
||||
* weechat.c - core functions for WeeChat
|
||||
*
|
||||
* Copyright (C) 2014 Your Name <your@email.com>
|
||||
* Copyright (C) 2015 Your Name <your@email.com>
|
||||
*
|
||||
* This file is part of WeeChat, the extensible chat client.
|
||||
*
|
||||
|
||||
@@ -516,12 +516,11 @@ gnutls ハンドシェイクに関するエラーの場合、Diffie-Hellman キ
|
||||
設定したファイルが自分のシステムに存在することを確認してください
|
||||
(一般に "ca-certificates" パッケージで提供されます)。
|
||||
|
||||
サーバポート、SSL、dhkey_size を設定の後に接続してください:
|
||||
サーバポート、SSL を設定の後に接続してください:
|
||||
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
/connect freenode
|
||||
----
|
||||
|
||||
|
||||
@@ -143,13 +143,8 @@ SSL を使って接続する場合:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Freenode はデフォルトの鍵サイズ 2048 をサポートしません、鍵サイズを
|
||||
1024 にしてください。
|
||||
|
||||
サーバで SASL を利用可能な場合、SASL を利用してニックネーム認証することができます
|
||||
(チャンネル参加前にニックネーム認証が行われるでしょう):
|
||||
|
||||
|
||||
@@ -853,8 +853,8 @@ WeeChat を起動したターミナルの例:
|
||||
[[bar_conditions]]
|
||||
==== 状態
|
||||
|
||||
'conditions' オプションはバーをウィンドウ内に表示するか否かを評価する文字列です
|
||||
(このオプションは 'window' 型のバーだけに有効です)。
|
||||
'conditions'
|
||||
オプションはバーを表示するか否かを評価する文字列です。
|
||||
|
||||
文字列は以下のいずれか:
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
+7
-4
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2006 Julien Louis <ptitlouis@sysif.net>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
@@ -48,9 +48,12 @@ all-local: $(man_targets) $(doc_targets)
|
||||
|
||||
# man page
|
||||
weechat.1: weechat.1.pl.asciidoc cmdline_options.pl.asciidoc
|
||||
cp -f $(abs_top_srcdir)/doc/pl/weechat.1.pl.asciidoc .
|
||||
cp -f $(abs_top_srcdir)/doc/pl/cmdline_options.pl.asciidoc .
|
||||
$(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.pl.asciidoc
|
||||
-mkdir tmp_man
|
||||
cp -f $(abs_top_srcdir)/doc/pl/weechat.1.pl.asciidoc ./tmp_man/
|
||||
cp -f $(abs_top_srcdir)/doc/pl/cmdline_options.pl.asciidoc ./tmp_man/
|
||||
(cd tmp_man && $(A2X) -a revision="WeeChat $(VERSION)" -d manpage -f manpage -L weechat.1.pl.asciidoc)
|
||||
mv -f tmp_man/weechat.1 .
|
||||
rm -rf tmp_man
|
||||
|
||||
# user's guide
|
||||
weechat_user.pl.html: weechat_user.pl.asciidoc cmdline_options.pl.asciidoc $(wildcard autogen/user/*.asciidoc)
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
| irc | irc_channel | lista kanałów IRC | wskaźnik kanału (opcjonalne) | serwer,kanał (kanał jest opcjonalny)
|
||||
|
||||
| irc | irc_color_weechat | mapping between IRC color codes and WeeChat color names | - | -
|
||||
| irc | irc_color_weechat | mapowanie między kodami kolorów IRC i nazwami kolorów WeeChat | - | -
|
||||
|
||||
| irc | irc_ignore | lista ignorów IRC | wskaźnik ignorowania (opcjonalne) | -
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[width="30%",cols="^2m,3",options="header"]
|
||||
|===
|
||||
| IRC color | WeeChat color
|
||||
| Kolory IRC | Kolory WeeChat
|
||||
|
||||
| 00 | white
|
||||
| 01 | black
|
||||
|
||||
@@ -632,7 +632,7 @@ kanał: nazwa kanału
|
||||
[command]*`samode`* zmienia atrybuty kanału, bez posiadania statusu operatora::
|
||||
|
||||
----
|
||||
/samode [<channel>] <mode>
|
||||
/samode [<kanał>] <atrybuty>
|
||||
|
||||
kanał: nazwa kanału
|
||||
atrybuty: atrybuty kanału
|
||||
@@ -674,6 +674,7 @@ powód: powód
|
||||
----
|
||||
/server list|listfull [<serwer>]
|
||||
add <serwera> <host>[/<port>] [-temp] [-<opcja>[=<wartość>]] [-no<opcja>]|| copy|rename <serwer> <nowa_nazwa>
|
||||
reorder <serwer> [<serwer>...]
|
||||
del|keep <serwer>]
|
||||
deloutq|jump|raw
|
||||
|
||||
@@ -687,6 +688,7 @@ host: nazwa albo adres IP serwera, z opcjonalnym numerem portu (domyślnie: 6667
|
||||
noopcja: ustawia opcje boolowskie na 'off' (na przykład: -nossl)
|
||||
copy: duplikuje serwer
|
||||
rename: zmienia nazwę serwera
|
||||
reorder: zmienia kolejność na liście serwerów
|
||||
keep: zachowuje serwer w pliku konfiguracyjnym (tylko dla serwerów tymczasowych)
|
||||
del: usuwa serwer
|
||||
deloutq: usuń wiadomości z kolejki dla wszystkich serwerów (wszystkie wiadomości jakie WeeChat obecnie wysyła)
|
||||
@@ -701,6 +703,7 @@ Przykłady:
|
||||
/server add freenode3 chat.freenode.net -password=moje_hasło
|
||||
/server copy oftc oftcbis
|
||||
/server rename oftc newoftc
|
||||
/server reorder oftc freenode
|
||||
/server del freenode
|
||||
/server deloutq
|
||||
----
|
||||
|
||||
@@ -69,12 +69,12 @@
|
||||
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `default`)
|
||||
|
||||
* [[option_irc.look.buffer_open_before_autojoin]] *irc.look.buffer_open_before_autojoin*
|
||||
** opis: `open channel buffer before the JOIN is received from server when it is auto joined (with server option "autojoin"); this is useful to open channels with always the same buffer numbers on startup`
|
||||
** opis: `otwórz bufor kanału przed odebraniem JOIN od serwera, kiedy automatyczne wchodzenie na kanały jest włączone (opcja serwera "autojoin"); przydatne żeby bufory kanałów miały zawsze ten sam numer po uruchomieniu`
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `on`)
|
||||
|
||||
* [[option_irc.look.buffer_open_before_join]] *irc.look.buffer_open_before_join*
|
||||
** opis: `open channel buffer before the JOIN is received from server when it is manually joined (with /join command)`
|
||||
** opis: `otwórz bufor kanału przed otrzymaniem JOIN od serwera, przy manualnym wejściu (za pomocą komendy /join)`
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `off`)
|
||||
|
||||
@@ -494,7 +494,7 @@
|
||||
** wartości: 0 .. 1000000 (domyślna wartość: `25`)
|
||||
|
||||
* [[option_irc.server_default.capabilities]] *irc.server_default.capabilities*
|
||||
** opis: `comma-separated list of client capabilities to enable for server if they are available; capabilities supported by WeeChat are: away-notify, extended-join, multi-prefix, server-time, userhost-in-names (example: "away-notify,multi-prefix")`
|
||||
** opis: `oddzielona przecinkami lista opcji klienta do włączenia dla serwera, jeśli są dostępne; opcje wspierane przez WeeChat: away-notify, extended-join, multi-prefix, server-time, userhost-in-names (przykład: "away-notify,multi-prefix")`
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `""`)
|
||||
|
||||
@@ -564,7 +564,7 @@
|
||||
** wartości: dowolny ciąg (domyślna wartość: `""`)
|
||||
|
||||
* [[option_irc.server_default.sasl_fail]] *irc.server_default.sasl_fail*
|
||||
** opis: `action to perform if SASL authentication fails: "continue" to ignore the authentication problem, "reconnect" to schedule a reconnection to the server, "disconnect" to disconnect from server`
|
||||
** opis: `akcja do wykonania jeśli uwierzytelnianie SASL się nie powiedzie: "continue" dla zignorowania problemu, "reconnect" ponownie połącz się z serwerem, "disconnect" odłącz od serwera`
|
||||
** typ: liczba
|
||||
** wartości: continue, reconnect, disconnect (domyślna wartość: `continue`)
|
||||
|
||||
|
||||
@@ -3,52 +3,52 @@
|
||||
|
||||
----
|
||||
/relay list|listfull|listrelay
|
||||
add <name> <port>
|
||||
del|stop|restart <name>
|
||||
add <nazwa> <port>
|
||||
del|stop|restart <nazwa>
|
||||
raw
|
||||
sslcertkey
|
||||
|
||||
list: list relay clients (only active relays)
|
||||
listfull: list relay clients (verbose, all relays)
|
||||
listrelay: list relays (name and port)
|
||||
add: add a relay (listen on a port)
|
||||
del: remove a relay (clients remain connected)
|
||||
stop: close the server socket (clients remain connected)
|
||||
restart: close the server socket and listen again on port (clients remain connected)
|
||||
name: relay name (see format below)
|
||||
port: port used for relay
|
||||
raw: open buffer with raw Relay data
|
||||
sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
|
||||
list: wyświetla klienty pośrednika (tylko aktywne)
|
||||
listfull: wyświetla klienty pośrednika (wszystkie)
|
||||
listrelay: wyświetla pośredników (nazwa i port)
|
||||
add: dodaje relay (nasłuchuje na porcie)
|
||||
del: usuwa relay (klienty zostają połączone)
|
||||
stop: zamyka gniazdo serwera (klienty zostają połączone)
|
||||
restart: zamyka porta serwera i otwiera go ponownie nasłuchując na nim (klienty zostają połączone)
|
||||
nazwa: nazwa pośrednika (format poniżej)
|
||||
port: port używany przez pośrednika
|
||||
raw: otwiera bufor z nieprzetworzonymi danymi pośrednika
|
||||
kluczSSL: ustawia certyfikat SSL/hasło używając ścieżki w opcji relay.network.ssl_cert_key
|
||||
|
||||
Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
|
||||
ipv4: force use of IPv4
|
||||
ipv6: force use of IPv6
|
||||
ssl: enable SSL
|
||||
protocol.name: protocol and name to relay:
|
||||
- protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
|
||||
- protocol "weechat" (name is not used)
|
||||
Nazwa pośrednika to: [ipv4.][ipv6.][ssl.]<protokół.nazwa>
|
||||
ipv4: wymusza użycie IPv4
|
||||
ipv6: wymusza użycie IPv6
|
||||
ssl: włącza SSL
|
||||
protokół.nazwa: protokół i nazwa do przekazywania:
|
||||
- protokół "irc": nazwą jest serwer do współdzielenia (opcjonalne, jeśli nie podane, nazwa serwera musi być wysłana przez klienta w komendzie "PASS", format: "PASS serwer:hasło")
|
||||
- protokół "weechat" (nazwa nie jest używana)
|
||||
|
||||
The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
|
||||
The "weechat" protocol allows a remote interface to connect on the port, see the list here: https://weechat.org/download/
|
||||
Protokół "irc" pozwala dowolnemu klientowi IRC (włączajac w to WeeChat) połączyć się na ustawionym porcie.
|
||||
Protokół "weechat" pozwala na połączenie się zdalnym interfejsem, lista dostępna pod adresem: https://weechat.org/download/
|
||||
|
||||
Without argument, this command opens buffer with list of relay clients.
|
||||
Bez argumentu komenda otwiera bufor z listą klientów.
|
||||
|
||||
Examples:
|
||||
irc proxy, for server "freenode":
|
||||
Przykłady:
|
||||
pośrednik irc dla serwera "freenode":
|
||||
/relay add irc.freenode 8000
|
||||
irc proxy, for server "freenode", with SSL:
|
||||
pośrednik irc dla serwera "freenode", z SSL:
|
||||
/relay add ssl.irc.freenode 8001
|
||||
irc proxy, for all servers (client will choose), with SSL:
|
||||
pośrednik irc dla wszystkich serwerów (klient wybiera) z SSL:
|
||||
/relay add ssl.irc 8002
|
||||
weechat protocol:
|
||||
protokół weechat:
|
||||
/relay add weechat 9000
|
||||
weechat protocol with SSL:
|
||||
protokół weechat z SSL:
|
||||
/relay add ssl.weechat 9001
|
||||
weechat protocol with SSL, using only IPv4:
|
||||
protokół weechat z SSL, używający tylko IPv4:
|
||||
/relay add ipv4.ssl.weechat 9001
|
||||
weechat protocol with SSL, using only IPv6:
|
||||
protokół weechat z SSL, używający tylko IPv6:
|
||||
/relay add ipv6.ssl.weechat 9001
|
||||
weechat protocol with SSL, using IPv4 + IPv6:
|
||||
protokół weechat z SSL, używający IPv4 + IPv6:
|
||||
/relay add ipv4.ipv6.ssl.weechat 9001
|
||||
----
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
** wartości: on, off (domyślna wartość: `on`)
|
||||
|
||||
* [[option_relay.irc.backlog_tags]] *relay.irc.backlog_tags*
|
||||
** opis: `comma-separated list of messages tags which are displayed in backlog per IRC channel (supported tags: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = all supported tags`
|
||||
** opis: `oddzielona przecinkami lista tagów dla wiadomości, które są wyświetlane w backlogu dla kanałów IRC (wspierane tagi: "irc_join", "irc_part", "irc_quit", "irc_nick", "irc_privmsg"), "*" = dla wszystkich wspieranych tagów`
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `"irc_privmsg"`)
|
||||
|
||||
|
||||
@@ -194,7 +194,7 @@
|
||||
** wartości: dowolny ciąg (domyślna wartość: `"http://weechat.org/files/plugins.xml.gz"`)
|
||||
|
||||
* [[option_script.scripts.url_force_https]] *script.scripts.url_force_https*
|
||||
** opis: `force use of HTTPS for downloads (index and scripts); you should disable this option only if you have problems with the downloads`
|
||||
** opis: `wymusza użycie HTTPS do pobierania (listy i skryptów); powinieneś wyłączyć tą opcję tylko jeśli występują problemy z pobieraniem`
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `on`)
|
||||
|
||||
|
||||
@@ -16,65 +16,65 @@
|
||||
default -yes
|
||||
monitor [<filtr>]
|
||||
|
||||
list: list triggers (without argument, this list is displayed)
|
||||
listfull: list triggers with detailed info for each trigger
|
||||
listdefault: list default triggers
|
||||
add: add a trigger
|
||||
addoff: add a trigger (disabled)
|
||||
addreplace: add or replace an existing trigger
|
||||
name: name of trigger
|
||||
hook: signal, hsignal, modifier, print, command, command_run, timer, config, focus
|
||||
arguments: arguments for the hook, depending on hook (separated by semicolons):
|
||||
signal: name(s) of signal (required)
|
||||
hsignal: name(s) of hsignal (required)
|
||||
modifier: name(s) of modifier (required)
|
||||
print: buffer, tags, message, strip colors
|
||||
command: command (required), description, arguments, description of arguments, completion
|
||||
command_run: command(s) (required)
|
||||
timer: interval (required), align on second, max calls
|
||||
config: name(s) of option (required)
|
||||
focus: name(s) of area (required)
|
||||
conditions: evaluated conditions for the trigger
|
||||
regex: one or more regular expressions to replace strings in variables
|
||||
command: command to execute (many commands can be separated by ";"
|
||||
return_code: return code in callback (ok (default), ok_eat, error)
|
||||
addinput: set input with default arguments to create a trigger
|
||||
input: set input with the command used to create the trigger
|
||||
output: send the command to create the trigger on the buffer
|
||||
recreate: same as "input", with option "addreplace" instead of "add"
|
||||
set: set an option in a trigger
|
||||
option: name of option: name, hook, arguments, conditions, regex, command, return_code
|
||||
(for help on option, you can type: /help trigger.trigger.<name>.<option>)
|
||||
value: new value for the option
|
||||
rename: rename a trigger
|
||||
copy: copy a trigger
|
||||
enable: enable trigger(s) (without arguments: enable triggers globally)
|
||||
disable: disable trigger(s) (without arguments: disable triggers globally)
|
||||
toggle: toggle trigger(s) (without arguments: toggle triggers globally)
|
||||
restart: restart trigger(s) (recreate the hooks)
|
||||
show: show detailed info on a trigger (with some stats)
|
||||
del: delete a trigger
|
||||
-all: do action on all triggers
|
||||
restore: restore trigger(s) with the default values (works only for default triggers)
|
||||
default: delete all triggers and restore default ones
|
||||
monitor: open the trigger monitor buffer, with optional filter:
|
||||
filter: filter hooks/triggers to display (a hook must start with "@", for example "@signal"), many filters can be separated by commas; wildcard "*" is allowed in each trigger name
|
||||
list: lista triggerów (jeśli nie podano argumentu, wyświetli się ta lista)
|
||||
listfull: lista triggerów ze szczegółowymi informacjami
|
||||
listdefault: lista domyślnych triggerów
|
||||
add: dodaje trigger
|
||||
addoff: dodaje trigger (wyłączony)
|
||||
addreplace: dodaje lub zastępuje istniejący trigger
|
||||
nazwa: nazwa triggera
|
||||
uchwyt: signal, hsignal, modifier, print, command, command_run, timer, config, focus
|
||||
argumenty: argumenty dla uchwytu, w zależności od jego typu (oddzielone średnikami):
|
||||
signal: nazwa(-y) signal (wymagane)
|
||||
hsignal: nazwa(-y) hsignal (wymagane)
|
||||
modifier: nazwa(-y) modifier (wymagane)
|
||||
print: bufor, tagi, wiadomość, pomiń kolory
|
||||
command: komenda (wymagane), opis, argumenty, opis argumentów, dopełnienie
|
||||
command_run: komenda(-y) (wymagane)
|
||||
timer: interwał (wymagane), wyrównanie sekund, ilość wywołań
|
||||
config: nazwa(-y) opcji (wymagane)
|
||||
focus: nazwa(-y) obszarów (wymagane)
|
||||
warunki: przetwarzane warunki dla triggera
|
||||
regex: jedno lub więcej wyrażeń regularnych do zastępowania ciągów w zmiennych
|
||||
komenda: komenda do wykonania (wiele komend można oddzielić ";"
|
||||
zwracany_kod: kod zwracany w callbacku (ok (domyślne), ok_eat, error)
|
||||
addinput: ustawia wejście z domyślnymi argumentami do stworzenia triggera
|
||||
input: ustawia wejście z komendą użytą do stworzenia triggera
|
||||
output: wysyła komendę do stworzenia triggera do buforu
|
||||
recreate: tak samo jak "input", z opcją "addreplace" zamiast "add"
|
||||
set: ustawia opcje triggera
|
||||
opcja: nazwa opcji: name, hook, arguments, conditions, regex, command, return_code
|
||||
(aby uzyskać pomoc na temat opcji możesz wpisać: /help trigger.trigger.<nazwa>.<opcja>)
|
||||
wartość: nowa wartość dla opcji
|
||||
rename: zmienia nazwę triggera
|
||||
copy: kopiuje trigger
|
||||
enable: włącza trigger(y) (bez argumentów: włącza triggery globalnie)
|
||||
disable: wyłącza trigger(y) (bez argumentów: wyłącza triggery globalnie)
|
||||
toggle: zmienia stan triggera(-ów) (bez argumentów: zmienia stan triggerów globalnie)
|
||||
restart: restartuje trigger(y) (tworzy na nowo uchwyty)
|
||||
show: pokazuje szczegółowe informacje o triggerze (z niektórymi statystykami)
|
||||
del: usuwa trigger
|
||||
-all: wykonaj akcję na wszystkich triggerach
|
||||
restore: przywraca trigger(y) z domyślnymi wartościami (działa tylko dla domyślnych triggerów)
|
||||
default: przywraca domyślne triggery
|
||||
monitor: otwiera bufor monitorowania triggerów, z opcjonalnym filtrem:
|
||||
filtr: filtruje uchwyty/triggery do wyświetlenia (uchwyt musi się zaczynać od "@", na przykład "@signal"), wiele filtrów może być oddzielonych przecinkiem; dzika karta "*" jest dozwolona w nazwie każdego triggera
|
||||
|
||||
When a trigger callback is called, following actions are performed, in this order:
|
||||
1. check conditions; if false, exit
|
||||
2. replace text using POSIX extended regular expression(s) (if defined in trigger)
|
||||
3. execute command(s) (if defined in trigger)
|
||||
4. exit with a return code (except for modifiers and focus)
|
||||
Kiedy callback triggera jest wywoływany, wykonywane są następujące akcje, w kolejności:
|
||||
1. sprawdzenie warunków; jeśli nie są spełnione, wyjście
|
||||
2. zastąpienie tekstu za pomocą rozszerzonych wyrażeń regularnych POSIX (jeśli zdefiniowane)
|
||||
3. wykonanie komend(y) (jeśli zdefiniowane)
|
||||
4. wyjście z kodem wyjścia (poza modifiers i focus)
|
||||
|
||||
Examples (you can also look at default triggers with /trigger listdefault):
|
||||
add text attributes *bold*, _underline_ and /italic/ (only in user messages):
|
||||
Przykłady (możesz też spojrzeć na domyślne triggery za pomocą /trigger listdefault):
|
||||
dodaje atrybuty tekstu *bold*, _underline_ i /italic/ (tylko w wiadomościach użytkowników):
|
||||
/trigger add effects modifier weechat_print "${tg_tag_nick}" "==\*(\S+)\*==*${color:bold}${re:1}${color:-bold}*== ==_(\S+)_==_${color:underline}${re:1}${color:-underline}_== ==/(\S+)/==/${color:italic}${re:1}${color:-italic}/"
|
||||
hide nicklist bar on small terminals:
|
||||
ukrywa pasek z nickami na małych terminalach:
|
||||
/trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist"
|
||||
/trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist"
|
||||
silently save config each hour:
|
||||
cichy zapis plików konfiguracyjnych co każdą godzinę:
|
||||
/trigger add cfgsave timer 3600000;0;0 "" "" "/mute /save"
|
||||
open trigger monitor and show only modifiers and triggers whose name starts with "resize":
|
||||
otwiera monitor triggerów i pokazuje tylko modifiers i triggery, których nazwa zaczyna się od "resize":
|
||||
/trigger monitor @modifier,resize*
|
||||
----
|
||||
|
||||
|
||||
@@ -13,50 +13,50 @@ wiadomość: powód nieobecności (jeśli nie podano wiadomości status nieobecn
|
||||
|
||||
----
|
||||
/bar list|listfull|listitems
|
||||
add <nazwa> <typ>[,<warunek>] <pozycja> <rozmiar> <separator> <element1>[,<element2>...]
|
||||
add <name> <type>[,<conditions>] <position> <size> <separator> <item1>[,<item2>...]
|
||||
default [input|title|status|nicklist]
|
||||
del <nazwa>|-all
|
||||
set <nazwa> <opcja> <wartość>
|
||||
hide|show|toggle <nazwa>
|
||||
scroll <nazwa> <okno> <wartość_przewinięcia>
|
||||
del <name>|-all
|
||||
set <name> <option> <value>
|
||||
hide|show|toggle <name>
|
||||
scroll <name> <window> <scroll_value>
|
||||
|
||||
list: lista wszystkich pasków
|
||||
listfull: lista wszystkich pasków (z polami)
|
||||
listitems: lista wszystkich elementów pasków
|
||||
add: dodaj nowy pasek
|
||||
nazwa: nazwa paska (musi być unikalna)
|
||||
typ: root: poza oknami,
|
||||
window: wewnątrz okien, z opcjonalnymi warunkami (patrz niżej)
|
||||
warunek: warunek(i) dla wyświetlenia paska (tylko dla typu "window"):
|
||||
active: w aktywnym oknie
|
||||
inactive: w nieaktywnym oknie
|
||||
nicklist: w oknach z listą nicków
|
||||
inne warunki: zobacz /help weechat.bar.xxx.conditions oraz /help eval
|
||||
bez warunku pasek jest zawsze wyświetlany
|
||||
pozycja: dół (bottom), góra (top), lewo (left) lub prawo (right)
|
||||
rozmiar: rozmiar paska (w znakach)
|
||||
separator: 1 dla użycia separatora (linia), 0 - brak separatora
|
||||
element1,...: elementy dla tego paska (elementy mogą być oddzielone przecinkiem (przerwa między elementami) lub "+" (sklejone elementy))
|
||||
default: tworzy domyślne paski (wszystkie domyślne paski, jeśli nie podamy nazwy)
|
||||
del: usuwa pasek (lub wszystkie z użyciem -all)
|
||||
set: ustawia wartość dla właściwości paska
|
||||
opcja: opcja do zmiany (listę opcji można zobaczyć dzięki /set weechat.bar.<nazwa paska>.*)
|
||||
wartość: nowa wartość opcji
|
||||
hide: ukrywa pasek
|
||||
show: pokazuje ukryty pasek
|
||||
toggle: ukrywa/pokazuje pasek
|
||||
scroll: przewija pasek
|
||||
okno: numer okna ('*' oznacza obecne okno lub pasek typu root)
|
||||
wartość_przewinięcia: wartość dla przewinięcia: 'x' lub 'y' (opcjonalne), następnie '+', '-', 'b' (początek) lub 'e' (koniec), wartość (dla +/-), oraz opcjonalnie % (w celu przesunięcia % szerokości/wysokości, w przeciwnym wypadku wartość jest ilością znaków)
|
||||
list: list all bars
|
||||
listfull: list all bars (verbose)
|
||||
listitems: list all bar items
|
||||
add: add a new bar
|
||||
name: name of bar (must be unique)
|
||||
type: root: outside windows,
|
||||
window: inside windows, with optional conditions (see below)
|
||||
conditions: the conditions to display the bar:
|
||||
active: on active window
|
||||
inactive: on inactive windows
|
||||
nicklist: on windows with nicklist
|
||||
other condition: see /help weechat.bar.xxx.conditions and /help eval
|
||||
without conditions, the bar is always displayed
|
||||
position: bottom, top, left or right
|
||||
size: size of bar (in chars)
|
||||
separator: 1 for using separator (line), 0 or nothing means no separator
|
||||
item1,...: items for this bar (items can be separated by comma (space between items) or "+" (glued items))
|
||||
default: create a default bar (all default bars if no bar name is given)
|
||||
del: delete a bar (or all bars with -all)
|
||||
set: set a value for a bar property
|
||||
option: option to change (for options list, look at /set weechat.bar.<barname>.*)
|
||||
value: new value for option
|
||||
hide: hide a bar
|
||||
show: show an hidden bar
|
||||
toggle: hide/show a bar
|
||||
scroll: scroll bar
|
||||
window: window number (use '*' for current window or for root bars)
|
||||
scroll_value: value for scroll: 'x' or 'y' (optional), followed by '+', '-', 'b' (beginning) or 'e' (end), value (for +/-), and optional % (to scroll by % of width/height, otherwise value is number of chars)
|
||||
|
||||
Przykłady:
|
||||
tworzy pasek z czasem, numerem + nazwą bufora i dopełnianiem:
|
||||
Examples:
|
||||
create a bar with time, buffer number + name, and completion:
|
||||
/bar add mybar root bottom 1 0 [time],buffer_number+:+buffer_name,completion
|
||||
ukrywa pasek:
|
||||
hide a bar:
|
||||
/bar hide mybar
|
||||
przewija listę nicków a obecnym buforze o 10 linii w dół :
|
||||
scroll nicklist 10 lines down on current buffer:
|
||||
/bar scroll nicklist * y+10
|
||||
przewija do końca listę nicków w obecnym buforze:
|
||||
scroll to end of nicklist on current buffer:
|
||||
/bar scroll nicklist * ye
|
||||
----
|
||||
|
||||
@@ -235,63 +235,63 @@ infolists: wyświetla informacje o infolistach
|
||||
/eval [-n] <wyrażenie>
|
||||
[-n] -c <wyrażenie1> <operator> <wyrażenie2>
|
||||
|
||||
-n: display result without sending it to buffer (debug mode)
|
||||
-c: evaluate as condition: use operators and parentheses, return a boolean value ("0" or "1")
|
||||
expression: expression to evaluate, variables with format ${variable} are replaced (see below); many commands can be separated by semicolons
|
||||
operator: a logical or comparison operator:
|
||||
- logical operators:
|
||||
&& boolean "and"
|
||||
|| boolean "or"
|
||||
- comparison operators:
|
||||
== equal
|
||||
!= not equal
|
||||
<= less or equal
|
||||
< less
|
||||
>= greater or equal
|
||||
> greater
|
||||
=~ is matching POSIX extended regex
|
||||
!~ is NOT matching POSIX extended regex
|
||||
-n: wyświetla wynik bez wysyłania go do buforu (tryb debugowania)
|
||||
-c: przetwarza jako warunek: użyj operatorów i nawiasów, zwraca wartość logiczną ("0" lub "1")
|
||||
wyrażenie: wyrażenie do przetworzenia, zmienne o formacie ${zmienna} są zastępowane (zobacz niżej); wiele komend można oddzielić średnikami
|
||||
operator: operator logiczny lub porównania:
|
||||
- operatory logiczne:
|
||||
&& boolowskie "i"
|
||||
|| boolowskie "lub"
|
||||
- operatory porównania:
|
||||
== równy
|
||||
!= różny
|
||||
<= mniejszy lub równy
|
||||
< mniejszy
|
||||
>= większy lub równy
|
||||
> większy
|
||||
=~ pasuje do rozszerzonego wyrażenia regularnego POSIX
|
||||
!~ NIE pasuje do rozszerzonego wyrażenia regularnego POSIX
|
||||
|
||||
An expression is considered as "true" if it is not NULL, not empty, and different from "0".
|
||||
The comparison is made using integers if the two expressions are valid integers.
|
||||
To force a string comparison, add double quotes around each expression, for example:
|
||||
Wyrażenie jest uznawane za "prawdziwe" jeśli nie jest NULL, nie jest puste, oraz różni się od "0".
|
||||
Porównania dokonuje się z użyciem liczb całkowitych jeśli oba wyrażenia są liczbami całkowitymi.
|
||||
W celu wymuszenia porównywania ciągów, należy umieścić każde wyrażenie w cudzysłowie, na przykład:
|
||||
50 > 100 ==> 0
|
||||
"50" > "100" ==> 1
|
||||
|
||||
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority:
|
||||
1. a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
2. a string with chars to hide (format: "hide:char,string")
|
||||
3. a color (format: "color:xxx")
|
||||
4. an info (format: "info:name,arguments", arguments are optional)
|
||||
5. an option (format: "file.section.option")
|
||||
6. a local variable in buffer
|
||||
7. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
Format for hdata can be one of following:
|
||||
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
|
||||
hdata[list].var1.var2...: start with a hdata using a list, for example:
|
||||
${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers
|
||||
${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins
|
||||
For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get".
|
||||
Niektóre zmienne w wyrażeniach są zamieniane, poprzez zastosowanie formatu ${zmienna}, według priorytetu zmienną może być:
|
||||
1. ciąg z wyescapowanymi znakami (format: "esc:xxx" lub "\xxx")
|
||||
2. ciąg ze znakami do ukrycia (format: "hide:char,string")
|
||||
3. kolor (format color:xxx)
|
||||
4. informacja (format: "info:nazwa,argumenty", argumenty są opcjonalne)
|
||||
5. opcja (format: plik.sekcja.opcja)
|
||||
6. zmienna lokalna w buforze
|
||||
7. nazwa hdatay/zmiennej (wartość jest automatycznie konwertowana na ciąg znaków), domyślnie "window" i "buffer" wskazują na aktualne okno/bufor.
|
||||
Format dla hdata może być jednym z poniższych:
|
||||
hdata.zmienna1.zmienna2...: inicjuje hdata (wskaźnik musi być znany), następnie wypytuje zmienne jedna po drugiej (inne hdata mogą być następne)
|
||||
hdata[list].zmienna1.zmienna2...: inicjuje hdata z wykorzystaniem listy, na przykład:
|
||||
${buffer[gui_buffers].full_name}: pełna nazwa buforu w połączonej liście buforów
|
||||
${plugin[weechat_plugins].name}: nazwa pierwszej wtyczki w połączonej liście wtyczek
|
||||
Nazwy hdata i zmiennych, można znaleźć w "Opisie API wtyczek", fukcja "weechat_hdata_get".
|
||||
|
||||
Examples (simple strings):
|
||||
/eval -n ${info:version} ==> 0.4.3
|
||||
/eval -n ${weechat.look.scroll_amount} ==> 3
|
||||
/eval -n ${window} ==> 0x2549aa0
|
||||
/eval -n ${window.buffer} ==> 0x2549320
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
Przykłady (proste ciągi):
|
||||
/eval -n ${info:version} ==> 0.4.3
|
||||
/eval -n ${weechat.look.scroll_amount} ==> 3
|
||||
/eval -n ${window} ==> 0x2549aa0
|
||||
/eval -n ${window.buffer} ==> 0x2549320
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
/eval -n ${hide:-,${relay.network.password}} ==> --------
|
||||
|
||||
Examples (conditions):
|
||||
/eval -n -c ${window.buffer.number} > 2 ==> 0
|
||||
/eval -n -c ${window.win_width} > 100 ==> 1
|
||||
/eval -n -c (8 > 12) || (5 > 2) ==> 1
|
||||
/eval -n -c (8 > 12) && (5 > 2) ==> 0
|
||||
/eval -n -c abcd =~ ^ABC ==> 1
|
||||
/eval -n -c abcd =~ (?-i)^ABC ==> 0
|
||||
/eval -n -c abcd =~ (?-i)^abc ==> 1
|
||||
/eval -n -c abcd !~ abc ==> 0
|
||||
Przykłady (warunki):
|
||||
/eval -n -c ${window.buffer.number} > 2 ==> 0
|
||||
/eval -n -c ${window.win_width} > 100 ==> 1
|
||||
/eval -n -c (8 > 12) || (5 > 2) ==> 1
|
||||
/eval -n -c (8 > 12) && (5 > 2) ==> 0
|
||||
/eval -n -c abcd =~ ^ABC ==> 1
|
||||
/eval -n -c abcd =~ (?-i)^ABC ==> 0
|
||||
/eval -n -c abcd =~ (?-i)^abc ==> 1
|
||||
/eval -n -c abcd !~ abc ==> 0
|
||||
----
|
||||
|
||||
[[command_weechat_filter]]
|
||||
|
||||
@@ -69,17 +69,17 @@
|
||||
** wartości: dowolny ciąg (domyślna wartość: `"cyan,magenta,green,brown,lightblue,default,lightcyan,lightmagenta,lightgreen,blue"`)
|
||||
|
||||
* [[option_weechat.color.chat_nick_offline]] *weechat.color.chat_nick_offline*
|
||||
** opis: `text color for offline nick (not in nicklist any more); this color is used only if option weechat.look.color_nick_offline is enabled`
|
||||
** opis: `kolor tekstu dla nieobecnego nicka (nie występuje już na liście nicków); ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline`
|
||||
** typ: kolor
|
||||
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `default`)
|
||||
|
||||
* [[option_weechat.color.chat_nick_offline_highlight]] *weechat.color.chat_nick_offline_highlight*
|
||||
** opis: `text color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled`
|
||||
** opis: `kolor tekstu dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline`
|
||||
** typ: kolor
|
||||
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `default`)
|
||||
|
||||
* [[option_weechat.color.chat_nick_offline_highlight_bg]] *weechat.color.chat_nick_offline_highlight_bg*
|
||||
** opis: `background color for offline nick with highlight; this color is used only if option weechat.look.color_nick_offline is enabled`
|
||||
** opis: `kolor tła dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko jeśli włączona jest opcja weechat.look.color_nick_offline`
|
||||
** typ: kolor
|
||||
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `blue`)
|
||||
|
||||
@@ -284,7 +284,7 @@
|
||||
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `yellow`)
|
||||
|
||||
* [[option_weechat.color.status_mouse]] *weechat.color.status_mouse*
|
||||
** opis: `text color for mouse indicator in status bar`
|
||||
** opis: `kolor wskaźnika myszy w pasku statusu`
|
||||
** typ: kolor
|
||||
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `green`)
|
||||
|
||||
@@ -319,7 +319,7 @@
|
||||
** wartości: on, off (domyślna wartość: `on`)
|
||||
|
||||
* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
|
||||
** opis: `if enabled, the commands inside command line are completed (the command at beginning of line has higher priority and is used first); note: when this option is enabled, there is no more automatic completion of paths beginning with '/' (outside commands arguments)`
|
||||
** opis: `jeśli włączone, komendy wewnątrz linii komend są dopełniane (komenda na początku linii ma wyższy priorytet i zostanie użyta pierwsza); uwaga: włączenie tej opcji wyłącza automatyczne dopełnianie ścieżek zaczynających się od '/' (poza argumentami komend)`
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `on`)
|
||||
|
||||
@@ -679,7 +679,7 @@
|
||||
** wartości: dowolny ciąg (domyślna wartość: `"!"`)
|
||||
|
||||
* [[option_weechat.look.item_mouse_status]] *weechat.look.item_mouse_status*
|
||||
** opis: `string used to show if mouse is enabled (bar item "mouse_status")`
|
||||
** opis: `ciąg użyty do pokazania czy obsługa myszy jest włączona (element paska "mouse_status")`
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `"M"`)
|
||||
|
||||
|
||||
@@ -51,19 +51,16 @@ zależności. Ten pakiet jest budowany prawie codziennie z użyciem repozytorium
|
||||
git. Ten pakiet może odpowiadać dokładnie wersji z gita i jest mniej wygodny
|
||||
przy aktualizowaniu jak klonowanie z gita.
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[[compile_osx]]
|
||||
=== How can I install WeeChat on OS X?
|
||||
=== Jak zainstalować WeeChat na OS X?
|
||||
|
||||
// TRANSLATION MISSING
|
||||
It is recommended to use http://brew.sh/[Homebrew], you can get help with:
|
||||
Zaleca się użycie http://brew.sh/[Homebrew], pomoc uzyskasz za pomocą komendy:
|
||||
|
||||
----
|
||||
brew info weechat
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
You can install WeeChat with this command:
|
||||
Możesz zainstalować WeeChat za pomocą komendy:
|
||||
|
||||
----
|
||||
brew install weechat --with-python --with-perl
|
||||
@@ -524,11 +521,11 @@ Ustaw opcję 'weechat.network.gnutls_ca_file' do pliku z certyfikatami:
|
||||
Należy sprawdzić czy plik znajduje się w systemie (zazwyczaj dostarczany
|
||||
przez pakiet "ca-certificates").
|
||||
|
||||
Ustaw port serwera, SSL, dhkey_size, następnie się połącz:
|
||||
Ustaw port serwera, SSL, następnie się połącz:
|
||||
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
/connect freenode
|
||||
----
|
||||
|
||||
@@ -668,21 +665,19 @@ Dla WeeChat ≤ 0.3.3, opcje te to 'irc.network.away_check' oraz
|
||||
[[highlight_notification]]
|
||||
=== Jak mogę zostać powiadomiony, jeśli ktoś będzie chciał przyciągnąć moją uwagę na kanale?
|
||||
|
||||
// TRANSLATION MISSING
|
||||
With WeeChat ≥ 1.0, there is a default trigger "beep" which sends a 'BEL' to
|
||||
the terminal on a highlight or private message. Thus you can configure your
|
||||
terminal (or multiplexer like screen/tmux) to run a command or play a sound
|
||||
when a 'BEL' occurs.
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Or you can add a command in "beep" trigger:
|
||||
W wersji WeeChat ≥ 1.0, domyślnie dodany jest trigger "beep" wysyłający 'BEL' do
|
||||
terminala przy podświetleniu lub prywatnej wiadomości. Dzięki temu możesz skonfigurować
|
||||
swój terminal (lub multiplekser jak screen/tmux) do wykonania komendy lub odtworzenia
|
||||
dźwięku, kiedy 'BEL' zostanie odebrany.
|
||||
|
||||
Lub możesz dodać komendę w triggerze "beep":
|
||||
|
||||
----
|
||||
/set trigger.trigger.beep.command "/print -beep;/exec -bg /ścieżka/do/komendy argumenty"
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
With an older WeeChat, you can use a script like 'beep.pl' or 'launcher.pl'.
|
||||
W starszych wersjach WeeChat, możesz użyć skryptu jak 'beep.pl' lub 'launcher.pl'.
|
||||
|
||||
Dla 'launcher.pl', należ przeprowadzić konfigurację:
|
||||
|
||||
|
||||
@@ -143,13 +143,8 @@ W celu połączenia z użyciem SSL:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Freenode nie wspiera domyślnego rozmiaru klucza dhkey 2048, dlatego należy go
|
||||
ustawić na 1024.
|
||||
|
||||
Jeśli SASL jest dostępny na serwerze, można użyć go do uwierzytelnienia (zostaniesz
|
||||
zidentyfikowany przed wejściem na kanał):
|
||||
|
||||
|
||||
@@ -45,8 +45,7 @@ Strona domowa WeeChat: https://weechat.org/
|
||||
* działający system GNU/Linux (z narzędziami kompilatora dla kompilacji ze
|
||||
źródeł), lub kompatybilny system
|
||||
* przywileje 'roota' (do instalacji w katalogu systemowym)
|
||||
// TRANSLATION MISSING
|
||||
* some libraries (see <<dependencies,dependencies>>).
|
||||
* niektóre biblioteki (zobacz <<dependencies,zależności>>).
|
||||
|
||||
[[install]]
|
||||
== Instalacja
|
||||
@@ -75,11 +74,10 @@ pakietów.
|
||||
|
||||
WeeChat może być kompilowany za pomocą cmake lub autotools (cmake jest zalecany).
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[NOTE]
|
||||
On OS X, you can use http://brew.sh/[Homebrew]:
|
||||
Na OS X możesz użyć http://brew.sh/[Homebrew]:
|
||||
`brew install weechat --with-python --with-perl`
|
||||
(for help: `brew info weechat`).
|
||||
(pomoc można uzyskać za pomocą komendy: `brew info weechat`).
|
||||
|
||||
[[dependencies]]
|
||||
==== Zależności
|
||||
@@ -91,8 +89,7 @@ WeeChat.
|
||||
|===
|
||||
| Pakiet ^(1)^ | Wersja | Wymagany | Opis
|
||||
| cmake | | *tak* | Kompilacja (możliwe jest użycie autotools, jednak cmake jest zalecany)
|
||||
// TRANSLATION MISSING
|
||||
| pkg-config | | *tak* | Detect installed libraries
|
||||
| pkg-config | | *tak* | Wykrywa zainstalowane biblioteki
|
||||
| libncursesw5-dev ^(2)^ | | *tak* | Interfejs ncurses
|
||||
| libcurl4-gnutls-dev | | *tak* | Transfer URL
|
||||
| zlib1g-dev | | *tak* | Kompresja pakietów we wtyczce relay (protokół weechat), wtyczka script
|
||||
@@ -516,8 +513,7 @@ Pasek 'status' posiada następujące domyślne elementy:
|
||||
|===
|
||||
| Element | Przykład | Opis
|
||||
| time | `[12:55]` | Czas
|
||||
// TRANSLATION MISSING
|
||||
| buffer_last_number | `[6]` | Number of last buffer in list
|
||||
| buffer_last_number | `[6]` | Numer ostatniego buforu na liście
|
||||
| buffer_plugin | `[irc/freenode]` | Wtyczka dla obecnego bufora (wtyczka irc może dodać nazwę serwera IRC używanego przez bufor)
|
||||
| buffer_number | `3` | Numer obecnego buforu
|
||||
| buffer_name | `#test` | Nazwa obecnego buforu
|
||||
@@ -543,21 +539,19 @@ Pasek 'input' posiada następujące domyślne elementy:
|
||||
| input_text | `hi peter!` | Wprowadzony tekst
|
||||
|===
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Other items available (not used in bars by default):
|
||||
Inne dostępne elementy (nie używane domyślnie w paskach):
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[width="100%",cols="^3,^4,10",options="header"]
|
||||
|===
|
||||
| Item | Example | Description
|
||||
| aspell_dict | `fr,en` | Spelling dictionaries used on current buffer
|
||||
| aspell_suggest | `print,prone,prune` | Spelling suggestions for word under cursor (if misspelled)
|
||||
| buffer_count | `10` | Total number of buffers opened
|
||||
| buffer_short_name | `#test` | Current buffer short name
|
||||
| irc_channel | `#test` | Current IRC channel name
|
||||
| irc_nick_modes | `@` | IRC modes for self nick
|
||||
| mouse_status | `M` | Mouse status (empty if mouse is disabled)
|
||||
| window_number | `2` | Current window number
|
||||
| Element | Przykład | Opis
|
||||
| aspell_dict | `fr,en` | Słowniki używane w obecnym buforze
|
||||
| aspell_suggest | `print,prone,prune` | Sugestie dla słowa pod kursorem (jeśli zawiera błąd)
|
||||
| buffer_count | `10` | Liczba otwartych buforów
|
||||
| buffer_short_name | `#test` | Skrócona nazwa obecnego buforu
|
||||
| irc_channel | `#test` | Nazwa bieżącego kanału IRC
|
||||
| irc_nick_modes | `@` | Atrybuty IRC dla własnego nicka
|
||||
| mouse_status | `M` | Status obsługi myszy (pusty jeśli obsługa myszy jest wyłączona)
|
||||
| window_number | `2` | Numer obecnego okna
|
||||
|===
|
||||
|
||||
[[buffers_and_windows]]
|
||||
@@ -866,15 +860,15 @@ Przykłady wypełnień paska 'nicklist':
|
||||
[[bar_conditions]]
|
||||
==== Warunki
|
||||
|
||||
Opcja 'conditions' jest ciągiem przetwarzanym w celu ustalenia czy pasek ma
|
||||
zostać wyświetlony w oknie (jest używany tylko dla pasków z typem 'window').
|
||||
Opcja 'conditions' jest jest przetwarzana w celu sprawdzenia czy pasek ma być
|
||||
wyświetlony czy nie.
|
||||
|
||||
Ciąg może być:
|
||||
Dostępne opcje:
|
||||
|
||||
* 'active': okno musi być aktywne
|
||||
* 'inactive': okno musi być nieaktywne
|
||||
* 'nicklist': bufor wyświetlany w oknie musi mieć listę nicków
|
||||
* wyrażenie: jest wykonywane jako logiczne (zobacz komendę
|
||||
* wyrażenie: jest wykonywane jako wyrażenie logiczne (zobacz komendę
|
||||
<<command_weechat_eval,/eval>>)
|
||||
|
||||
Dla wyrażeń dostępne są następujące zmienne:
|
||||
@@ -1411,10 +1405,10 @@ Kody kolorów dla key[ctrl-c,c]:
|
||||
|
||||
include::autogen/user/irc_colors.asciidoc[]
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[NOTE]
|
||||
To show all available colors in your terminal, you can do `/color` then
|
||||
key[alt-c] in WeeChat or run this command in terminal: `weechat --colors`.
|
||||
W celu wyświetlenia wszystkich dostępnych kolorów dla terminala możesz wykonać
|
||||
komendę `/color` następnie key[alt-c] (w WeeChat) lub wywołać w terminalu:
|
||||
`weechat --colors`.
|
||||
|
||||
Przykład: wyświetlenie "hello everybody!" z pogrubionym jasno niebieskim "hello"
|
||||
i podkreślonym jasno czerwonym "everybody":
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -144,14 +144,8 @@ To connect with SSL:
|
||||
----
|
||||
/set irc.server.freenode.addresses "chat.freenode.net/7000"
|
||||
/set irc.server.freenode.ssl on
|
||||
/set irc.server.freenode.ssl_dhkey_size 1024
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[NOTE]
|
||||
Freenode does not support the default dhkey size of 2048, so it has to be set
|
||||
to 1024.
|
||||
|
||||
Если сервер предоставляет SASL, то можно использовать его для аутентификации
|
||||
(вы будете идентифицированы до того, как присоединиться к каналам):
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-11-09 16:23+0100\n"
|
||||
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1016,10 +1016,10 @@ msgstr "řídit pole"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <jméno> <typ>[,<podmínka1>[,<podmínka2>...]] "
|
||||
"<pozice> <velikost> <oddělovac> <položka1>[,<položka2>...] || default [input|"
|
||||
@@ -1036,13 +1036,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -4154,11 +4154,11 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "typ pole (root, window, window_active, window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
|
||||
@@ -23,8 +23,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"PO-Revision-Date: 2014-12-15 20:36+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-12-28 13:06+0100\n"
|
||||
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
|
||||
"Language-Team: German <>\n"
|
||||
"Language: de_DE\n"
|
||||
@@ -32,7 +32,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 1.5\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-Bookmarks: -1,-1,180,-1,-1,-1,-1,-1,-1,-1\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
|
||||
@@ -1030,15 +1030,15 @@ msgid "manage bars"
|
||||
msgstr "Infobars verwalten"
|
||||
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
|
||||
msgid ""
|
||||
" list: list all bars\n"
|
||||
@@ -1048,13 +1048,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -1095,16 +1095,15 @@ msgstr ""
|
||||
" add: füge eine neue Infobar hinzu\n"
|
||||
" name: Name der Infobar (muss einmalig sein)\n"
|
||||
" type: root: außerhalb eines Fensters,\n"
|
||||
" window: innerhalb eines Fensters, mit optionalen Merkmalen "
|
||||
" window: innerhalb eines Fensters, mit optionalen Bedingungen "
|
||||
"(siehe unten)\n"
|
||||
" condition: Merkmal(e) für eine Infobar (nur nutzbar mit Bars vom Typ "
|
||||
"\"window\"):\n"
|
||||
" conditions: Bedingungen für eine Infobar:\n"
|
||||
" active: in einem aktiven Fenster\n"
|
||||
" inactive: in einem inaktiven Fenster\n"
|
||||
" nicklist: in Fenstern mit einer Benutzerliste\n"
|
||||
" weitere Merkmale: siehe /help weechat.bar.xxx.conditions und /"
|
||||
"help eval\n"
|
||||
" ohne Angabe von Merkmalen wird die Infobar immer angezeigt\n"
|
||||
" weitere mögliche Bedingungen: siehe /help weechat.bar.xxx."
|
||||
"conditions und /help eval\n"
|
||||
" ohne Angabe von Bedingungen wird die Infobar immer angezeigt\n"
|
||||
" position: bottom (unten), top (oben), left (links) oder right (rechts)\n"
|
||||
" size: Größe der Infobar (in Zeichen)\n"
|
||||
" separator: 1 um eine Trennlinien zu zeichnen, bei 0 oder ohne eine "
|
||||
@@ -4869,18 +4868,18 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "Bar-Typ (root, window, window_active, window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
"Bedingung(en), damit eine Infobar angezeigt wird (Infobars vom Typ \"window"
|
||||
"\"). Eine einfache Bedingung: \"active\", \"inactive\", \"nicklist"
|
||||
"\" (Fenster muss aktiv/inaktiv sein oder der Buffer enthält eine "
|
||||
"Benutzerliste), oder man nutzt einen Ausdruck mit Bedingungen (siehe /help "
|
||||
"eval). Zum Beispiel: \"${nicklist} && ${window.win_width} > 100\" (lokale "
|
||||
"Variablen für den Ausdruck sind ${active}, ${inactive} und ${nicklist})"
|
||||
"Bedingungen um eine Infobar anzuzeigen. Eine einfache Bedingung: \"active\", "
|
||||
"\"inactive\", \"nicklist\" (Fenster muss aktiv/inaktiv sein oder der Buffer "
|
||||
"enthält eine Benutzerliste), oder man nutzt einen Ausdruck mit Bedingungen "
|
||||
"(siehe /help eval). Beispiele: \"${nicklist} && ${window.win_width} > "
|
||||
"100\" (lokale Variablen für den Ausdruck sind ${active}, ${inactive} und "
|
||||
"${nicklist})"
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
msgstr "Position der Infobar (unten, oben, links, rechts)"
|
||||
@@ -6138,11 +6137,11 @@ msgstr "%s: Server %s%s%s wurde nach %s%s%s kopiert"
|
||||
msgid "%s: server %s%s%s has been renamed to %s%s%s"
|
||||
msgstr "%s: Server %s%s%s wurde in %s%s%s umbenannt"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%d server moved"
|
||||
msgid_plural "%d servers moved"
|
||||
msgstr[0] "%d Trigger entfernt"
|
||||
msgstr[1] "%d Trigger entfernt"
|
||||
msgstr[0] "%d Server verschoben"
|
||||
msgstr[1] "%d Server verschoben"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: server \"%s\" is not a temporary server"
|
||||
@@ -7140,17 +7139,15 @@ msgstr ""
|
||||
msgid "list, add or remove IRC servers"
|
||||
msgstr "auflisten, hinzufügen oder entfernen von IRC-Servern"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull [<server>] || add <server> <hostname>[/<port>] [-temp] [-"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || "
|
||||
"reorder <server> [<server>...] || del|keep <server> || deloutq|jump|raw"
|
||||
msgstr ""
|
||||
"list|listfull [<server>] || add <server> <hostname>[/<port>] [-temp] [-"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || del|"
|
||||
"keep <server> || deloutq|jump|raw"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || "
|
||||
"reorder <server> [<server>...] || del|keep <server> || deloutq|jump|raw"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list servers (without argument, this list is displayed)\n"
|
||||
"listfull: list servers with detailed info for each server\n"
|
||||
@@ -7198,6 +7195,7 @@ msgstr ""
|
||||
"nooption: stellt die Boolean Einstellung auf \"off\" (Beispiel: -nossl)\n"
|
||||
" copy: erstellt eine Kopie des Servers\n"
|
||||
" rename: benennt den Server um\n"
|
||||
" reorder: Anordnung der Server ändern\n"
|
||||
" keep: behält den Server in der Konfigurationsdatei (ausschließlich für "
|
||||
"die Nutzung bei temporären Servern)\n"
|
||||
" del: entfernt einen Server\n"
|
||||
@@ -7215,6 +7213,7 @@ msgstr ""
|
||||
" /server add freenode3 chat.freenode.net -password=mypass\n"
|
||||
" /server copy oftc oftcbis\n"
|
||||
" /server rename oftc newoftc\n"
|
||||
" /server reorder oftc freenode\n"
|
||||
" /server del freenode\n"
|
||||
" /server deloutq"
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-11-09 16:23+0100\n"
|
||||
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1018,10 +1018,10 @@ msgstr "gestionar las barras"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <nombre> <tipo>[,<cond1>[,<cond2>...]] "
|
||||
"<posición> <tamaño> <separador> <elemento1>[,<elemento2>...] || default "
|
||||
@@ -1038,13 +1038,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -4371,11 +4371,11 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "tipo de barra (root, window, window_active, window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2003-2014 Sébastien Helleu <flashcode@flashtux.org>
|
||||
# Copyright (C) 2003-2015 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: 2014-12-21 11:09+0100\n"
|
||||
"PO-Revision-Date: 2014-12-21 11:10+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-12-28 10:53+0100\n"
|
||||
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: fr\n"
|
||||
@@ -1012,10 +1012,10 @@ msgid "manage bars"
|
||||
msgstr "gestion des barres"
|
||||
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <nom> <type>[,<conditions>] <position> "
|
||||
"<taille> <séparateur> <objet1>[,<objet2>...] || default [input|title|status|"
|
||||
@@ -1030,13 +1030,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -1078,8 +1078,7 @@ msgstr ""
|
||||
" type : root : en dehors des fenêtres\n"
|
||||
" window : dans les fenêtres, avec condition(s) optionnelle(s) "
|
||||
"(voir ci-dessous)\n"
|
||||
" condition : condition(s) pour afficher cette barre (seulement pour le "
|
||||
"type \"window\") :\n"
|
||||
" conditions : les conditions pour afficher la barre :\n"
|
||||
" active : sur la fenêtre active\n"
|
||||
" inactive : sur les fenêtres inactives\n"
|
||||
" nicklist : sur les fenêtres avec liste de pseudos\n"
|
||||
@@ -4758,18 +4757,18 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "type de barre (root, window, window_active, window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
"condition(s) pour afficher la barre (pour les barres de type \"window\") : "
|
||||
"une simple condition : \"active\", \"inactive\", \"nicklist\" (la fenêtre "
|
||||
"doit être active/inactive, le tampon doit avoir une liste de pseudos), ou "
|
||||
"une expression avec condition(s) (voir /help eval), comme : \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (les variables locales pour l'expression sont "
|
||||
"${active}, ${inactive} et ${nicklist})"
|
||||
"conditions pour afficher la barre : une simple condition : \"active\", "
|
||||
"\"inactive\", \"nicklist\" (la fenêtre doit être active/inactive, le tampon "
|
||||
"doit avoir une liste de pseudos), ou une expression avec condition(s) (voir /"
|
||||
"help eval), comme : \"${nicklist} && ${window.win_width} > 100\" (les "
|
||||
"variables locales pour l'expression sont ${active}, ${inactive} et "
|
||||
"${nicklist})"
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-11-09 16:23+0100\n"
|
||||
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1050,10 +1050,10 @@ msgid "manage bars"
|
||||
msgstr "pufferek kezelése"
|
||||
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -1064,13 +1064,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -3776,11 +3776,11 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-11-09 16:23+0100\n"
|
||||
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -998,11 +998,12 @@ msgstr ""
|
||||
msgid "manage bars"
|
||||
msgstr "gestione delle barre"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <nome> <type>[,<condizione>] <posizione> "
|
||||
"<dimensione> <separatore> <item1>[,<item2>...] || default [input|title|"
|
||||
@@ -1018,13 +1019,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -4497,11 +4498,11 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "tipo di barra (root, window, window_active, window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2012-2014 Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>
|
||||
# Copyright (C) 2012-2015 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: 2014-12-21 11:09+0100\n"
|
||||
"PO-Revision-Date: 2014-12-15 14:22+0900\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2015-01-02 09:23+0900\n"
|
||||
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
|
||||
"Language-Team: Japanese <https://github.com/l/weechat/tree/translation_ja>\n"
|
||||
"Language: ja\n"
|
||||
@@ -40,11 +40,11 @@ msgid "max chars"
|
||||
msgstr "最大文字数"
|
||||
|
||||
msgid ""
|
||||
"a WeeChat color name (default, black, (dark)gray, white, (light)red, "
|
||||
"(light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a "
|
||||
"terminal color number or an alias; attributes are allowed before color (for "
|
||||
"text color only, not background): \"*\" for bold, \"!\" for reverse, \"/\" "
|
||||
"for italic, \"_\" for underline"
|
||||
"a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)"
|
||||
"green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal "
|
||||
"color number or an alias; attributes are allowed before color (for text "
|
||||
"color only, not background): \"*\" for bold, \"!\" for reverse, \"/\" for "
|
||||
"italic, \"_\" for underline"
|
||||
msgstr ""
|
||||
"WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、"
|
||||
"brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号ま"
|
||||
@@ -993,15 +993,15 @@ msgid "manage bars"
|
||||
msgstr "バーの管理"
|
||||
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
|
||||
msgid ""
|
||||
" list: list all bars\n"
|
||||
@@ -1011,13 +1011,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -1058,13 +1058,13 @@ msgstr ""
|
||||
" name: バーの名称 (ユニークな)\n"
|
||||
" type: root: 外側のウィンドウ、\n"
|
||||
" window: 内側のウィンドウ、任意の状態を取れる (以下を参照)\n"
|
||||
" condition: バーの表示状態 (タイプが \"window\" のバー以外は無効):\n"
|
||||
" active: アクティブウィンドウに表示\n"
|
||||
" inactive: 非アクティブウィンドウに表示\n"
|
||||
" nicklist: ニックネームリストを持つウィンドウに表示\n"
|
||||
" その他の状態: /help weechat.bar.xxx.conditions と /help eval "
|
||||
" conditions: バーを表示する条件:\n"
|
||||
" active: アクティブウィンドウの場合に表示\n"
|
||||
" inactive: 非アクティブウィンドウの場合に表示\n"
|
||||
" nicklist: ニックネームリストを持つウィンドウの場合に表示\n"
|
||||
" その他の条件: /help weechat.bar.xxx.conditions と /help eval "
|
||||
"を参照してください\n"
|
||||
" 表示状態の指定が無ければ、バーは常に表示されます。\n"
|
||||
" 表示条件の指定が無ければ、バーは常に表示されます。\n"
|
||||
" position: bottom、top、left、right\n"
|
||||
" size: バーのサイズ (文字数で指定)\n"
|
||||
" separator: 1 はセパレータ (線) を使用、0 または指定無しはセパレータ無し\n"
|
||||
@@ -4555,16 +4555,16 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "バー型 (root、window、window_active、window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
"バーを表示する条件 (\"window\" タイプのバー): 単純な条件: \"active"
|
||||
"\"、\"inactive\"、\"nicklist\" (ウィンドウはアクティブ/非アクティブ、バッファ"
|
||||
"にはニックネームリストが含まれる)、条件式 (/help eval を参照)、例: "
|
||||
"\"${nicklist} && ${window.win_width} > 100\" (式のローカル変数は "
|
||||
"バーを表示する条件: 単純な条件: \"active\"、\"inactive\"、\"nicklist\" (ウィ"
|
||||
"ンドウがアクティブの場合、非アクティブの場合、バッファにニックネームリストが"
|
||||
"含まれる場合)、または条件式 (/help eval を参照)、例: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (式中のローカル変数は "
|
||||
"${active}、${inactive}、${nicklist})"
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
@@ -5745,10 +5745,10 @@ msgstr "%s: サーバ %s%s%s を %s%s%s にコピーしました"
|
||||
msgid "%s: server %s%s%s has been renamed to %s%s%s"
|
||||
msgstr "%s: サーバ %s%s%s を %s%s%s にリネームしました"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%d server moved"
|
||||
msgid_plural "%d servers moved"
|
||||
msgstr[0] "%d 個のトリガを削除"
|
||||
msgstr[0] "%d 個のサーバを移動しました"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: server \"%s\" is not a temporary server"
|
||||
@@ -5963,8 +5963,8 @@ msgstr ""
|
||||
" - 内部サーバ名 (/server add で作成されたもの、利用推奨)\n"
|
||||
" - ホスト名/ポート番号又は IP アドレス/ポート番号、デフォルトの"
|
||||
"ポート番号は 6667\n"
|
||||
" - 次のフォーマットに従う URL: irc[6][s]://[nickname[:"
|
||||
"password]@]irc.example.org[:port][/#channel1][,#channel2[...]]\n"
|
||||
" - 次のフォーマットに従う URL: irc[6][s]://[nickname[:password]@]"
|
||||
"irc.example.org[:port][/#channel1][,#channel2[...]]\n"
|
||||
" 注意: アドレス/IP/URL を指定した場合、サーバを一時的に作ります "
|
||||
"(保存しません)、/help irc.look.temporary_servers を参照してください。\n"
|
||||
" option: サーバに関するオプション (ブール型オプションでは、value は無視さ"
|
||||
@@ -6706,17 +6706,15 @@ msgstr ""
|
||||
msgid "list, add or remove IRC servers"
|
||||
msgstr "IRC サーバのリストアップ、追加、削除"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull [<server>] || add <server> <hostname>[/<port>] [-temp] [-"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || "
|
||||
"reorder <server> [<server>...] || del|keep <server> || deloutq|jump|raw"
|
||||
msgstr ""
|
||||
"list|listfull [<server>] || add <server> <hostname>[/<port>] [-temp] [-"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || del|"
|
||||
"keep <server> || deloutq|jump|raw"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || "
|
||||
"reorder <server> [<server>...] || del|keep <server> || deloutq|jump|raw"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list servers (without argument, this list is displayed)\n"
|
||||
"listfull: list servers with detailed info for each server\n"
|
||||
@@ -6760,6 +6758,7 @@ msgstr ""
|
||||
"nooption: ブールオプションを 'off' に設定 (例: -nossl)\n"
|
||||
" copy: サーバを複製\n"
|
||||
" rename: サーバをリネーム\n"
|
||||
" reorder: サーバリストにおける順番を入れ替える\n"
|
||||
" keep: 設定ファイルにサーバを保存 (一時的なサーバ用)\n"
|
||||
" del: サーバを削除\n"
|
||||
" deloutq: 全てのサーバにメッセージの削除を要求 (WeeChat が送信している全ての"
|
||||
@@ -6775,6 +6774,7 @@ msgstr ""
|
||||
" /server add freenode3 chat.freenode.net -password=mypass\n"
|
||||
" /server copy oftc oftcbis\n"
|
||||
" /server rename oftc newoftc\n"
|
||||
" /server reorder oftc freenode\n"
|
||||
" /server del freenode\n"
|
||||
" /server deloutq"
|
||||
|
||||
@@ -10950,8 +10950,8 @@ msgid ""
|
||||
"Examples (you can also look at default triggers with /trigger listdefault):\n"
|
||||
" add text attributes *bold*, _underline_ and /italic/ (only in user "
|
||||
"messages):\n"
|
||||
" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"=="
|
||||
"\\*(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_(\\S+)_==_${color:"
|
||||
" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"==\\*"
|
||||
"(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_(\\S+)_==_${color:"
|
||||
"underline}${re:1}${color:-underline}_== ==/(\\S+)/==/${color:"
|
||||
"italic}${re:1}${color:-italic}/\"\n"
|
||||
" hide nicklist bar on small terminals:\n"
|
||||
@@ -11027,8 +11027,8 @@ msgstr ""
|
||||
"\n"
|
||||
"例 (/trigger listdefault でデフォルトトリガを見ることができます):\n"
|
||||
" テキスト属性 *太字*、_下線_、/イタリック/ を追加 (ユーザメッセージのみ):\n"
|
||||
" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"=="
|
||||
"\\*(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_(\\S+)_==_${color:"
|
||||
" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"==\\*"
|
||||
"(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_(\\S+)_==_${color:"
|
||||
"underline}${re:1}${color:-underline}_== ==/(\\S+)/==/${color:"
|
||||
"italic}${re:1}${color:-italic}/\"\n"
|
||||
" 狭い端末ではニックネームリストバーを隠す:\n"
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"PO-Revision-Date: 2014-12-13 09:13+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-12-26 19:51+0100\n"
|
||||
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: pl\n"
|
||||
@@ -113,13 +113,11 @@ msgstr "Typ"
|
||||
msgid "Constants"
|
||||
msgstr "Stałe"
|
||||
|
||||
#, fuzzy
|
||||
msgid "IRC color"
|
||||
msgstr "kolor"
|
||||
msgstr "Kolory IRC"
|
||||
|
||||
#, fuzzy
|
||||
msgid "WeeChat color"
|
||||
msgstr "Podstawowe kolory WeeChat:"
|
||||
msgstr "Kolory WeeChat"
|
||||
|
||||
#. TRANSLATORS: "%s %s" after "compiled on" is date and time
|
||||
#, c-format
|
||||
@@ -1020,17 +1018,19 @@ msgstr ""
|
||||
msgid "manage bars"
|
||||
msgstr "zarządzaj paskami"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <nazwa> <typ>[,<warunek>] <pozycja> <rozmiar> "
|
||||
"<separator> <element1>[,<element2>...] || default [input|title|status|"
|
||||
"nicklist] || del <nazwa>|-all || set <nazwa> <opcja> <wartość> || hide|show|"
|
||||
"toggle <nazwa> || scroll <nazwa> <okno> <wartość_przewinięcia>"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all bars\n"
|
||||
" listfull: list all bars (verbose)\n"
|
||||
@@ -1039,13 +1039,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -1450,7 +1450,6 @@ msgstr "przetwórz wyrażenie"
|
||||
msgid "[-n] <expression> || [-n] -c <expression1> <operator> <expression2>"
|
||||
msgstr "[-n] <wyrażenie> || [-n] -c <wyrażenie1> <operator> <wyrażenie2>"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" -n: display result without sending it to buffer (debug mode)\n"
|
||||
" -c: evaluate as condition: use operators and parentheses, return a "
|
||||
@@ -1552,11 +1551,12 @@ msgstr ""
|
||||
"Niektóre zmienne w wyrażeniach są zamieniane, poprzez zastosowanie formatu "
|
||||
"${zmienna}, według priorytetu zmienną może być:\n"
|
||||
" 1. ciąg z wyescapowanymi znakami (format: \"esc:xxx\" lub \"\\xxx\")\n"
|
||||
" 2. kolor (format color:xxx)\n"
|
||||
" 3. informacja (format: \"info:nazwa,argumenty\", argumenty są opcjonalne)\n"
|
||||
" 4. opcja (format: plik.sekcja.opcja)\n"
|
||||
" 5. zmienna lokalna w buforze\n"
|
||||
" 6. nazwa hdatay/zmiennej (wartość jest automatycznie konwertowana na ciąg "
|
||||
" 2. ciąg ze znakami do ukrycia (format: \"hide:char,string\")\n"
|
||||
" 3. kolor (format color:xxx)\n"
|
||||
" 4. informacja (format: \"info:nazwa,argumenty\", argumenty są opcjonalne)\n"
|
||||
" 5. opcja (format: plik.sekcja.opcja)\n"
|
||||
" 6. zmienna lokalna w buforze\n"
|
||||
" 7. nazwa hdatay/zmiennej (wartość jest automatycznie konwertowana na ciąg "
|
||||
"znaków), domyślnie \"window\" i \"buffer\" wskazują na aktualne okno/bufor.\n"
|
||||
"Format dla hdata może być jednym z poniższych:\n"
|
||||
" hdata.zmienna1.zmienna2...: inicjuje hdata (wskaźnik musi być znany), "
|
||||
@@ -1578,6 +1578,7 @@ msgstr ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
"\n"
|
||||
"Przykłady (warunki):\n"
|
||||
" /eval -n -c ${window.buffer.number} > 2 ==> 0\n"
|
||||
@@ -2879,9 +2880,10 @@ msgstr ""
|
||||
" włączenie trybu niesformatowanego na 2 sekundy:\n"
|
||||
" /window bare 2"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%sToo few arguments for command \"%s%s%s\" (help on command: /help %s)"
|
||||
msgstr "%sBłąd komendy \"%s\" (pomoc dla komendy: /help %s)"
|
||||
msgstr ""
|
||||
"%sZa mało argumentów dla komendy \"%s%s%s\" (pomoc dla komendy: /help %s)"
|
||||
|
||||
#, c-format
|
||||
msgid "%sError with command \"%s\" (help on command: /help %s)"
|
||||
@@ -3495,11 +3497,10 @@ msgstr ""
|
||||
"ciąg użyty do pokazania przybliżenia w połączonym buforze (element paska "
|
||||
"\"buffer_zoom\")"
|
||||
|
||||
#, fuzzy
|
||||
msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
"ciąg użyty do pokazania przybliżenia w połączonym buforze (element paska "
|
||||
"\"buffer_zoom\")"
|
||||
"ciąg użyty do pokazania czy obsługa myszy jest włączona (element paska "
|
||||
"\"mouse_status\")"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -3826,16 +3827,23 @@ msgid ""
|
||||
"text color for offline nick (not in nicklist any more); this color is used "
|
||||
"only if option weechat.look.color_nick_offline is enabled"
|
||||
msgstr ""
|
||||
"kolor tekstu dla nieobecnego nicka (nie występuje już na liście nicków); ten "
|
||||
"kolor używany jest tylko jeśli włączona jest opcja weechat.look."
|
||||
"color_nick_offline"
|
||||
|
||||
msgid ""
|
||||
"text color for offline nick with highlight; this color is used only if "
|
||||
"option weechat.look.color_nick_offline is enabled"
|
||||
msgstr ""
|
||||
"kolor tekstu dla podświetlenia nieobecnego nicka; ten kolor używany jest "
|
||||
"tylko jeśli włączona jest opcja weechat.look.color_nick_offline"
|
||||
|
||||
msgid ""
|
||||
"background color for offline nick with highlight; this color is used only if "
|
||||
"option weechat.look.color_nick_offline is enabled"
|
||||
msgstr ""
|
||||
"kolor tła dla podświetlenia nieobecnego nicka; ten kolor używany jest tylko "
|
||||
"jeśli włączona jest opcja weechat.look.color_nick_offline"
|
||||
|
||||
msgid "text color for other nick in private buffer"
|
||||
msgstr "kolor innego nicka w prywatnym buforze"
|
||||
@@ -3982,9 +3990,8 @@ msgstr "kolor bufora z prywatną wiadomością (pasek statusu)"
|
||||
msgid "text color for filter indicator in status bar"
|
||||
msgstr "kolor wskaźnika filtru w pasku statusu"
|
||||
|
||||
#, fuzzy
|
||||
msgid "text color for mouse indicator in status bar"
|
||||
msgstr "kolor wskaźnika filtru w pasku statusu"
|
||||
msgstr "kolor wskaźnika myszy w pasku statusu"
|
||||
|
||||
msgid "text color for current buffer name in status bar"
|
||||
msgstr "kolor nazwy obecnego bufora w pasku statusu"
|
||||
@@ -4031,6 +4038,10 @@ msgid ""
|
||||
"option is enabled, there is no more automatic completion of paths beginning "
|
||||
"with '/' (outside commands arguments)"
|
||||
msgstr ""
|
||||
"jeśli włączone, komendy wewnątrz linii komend są dopełniane (komenda na "
|
||||
"początku linii ma wyższy priorytet i zostanie użyta pierwsza); uwaga: "
|
||||
"włączenie tej opcji wyłącza automatyczne dopełnianie ścieżek zaczynających "
|
||||
"się od '/' (poza argumentami komend)"
|
||||
|
||||
msgid ""
|
||||
"default completion template (please see documentation for template codes and "
|
||||
@@ -4652,12 +4663,13 @@ msgstr ""
|
||||
msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "typ paska (root, window, window_active, window_inactive)"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
"warunek(i) dla wyświetlania paska (dla pasków o typie \"window\"): prosty "
|
||||
"warunek: \"active\", \"inactive\", \"nicklist\" (okna muszą być aktywne/"
|
||||
@@ -5869,12 +5881,12 @@ msgstr "%s: serwer %s%s%s został skopiowany do %s%s%s"
|
||||
msgid "%s: server %s%s%s has been renamed to %s%s%s"
|
||||
msgstr "%s: nazwę serwer %s%s%s zmieniono na %s%s%s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%d server moved"
|
||||
msgid_plural "%d servers moved"
|
||||
msgstr[0] "%d triggerów usunięto"
|
||||
msgstr[1] "%d triggerów usunięto"
|
||||
msgstr[2] "%d triggerów usunięto"
|
||||
msgstr[0] "%d serwer przesunięto"
|
||||
msgstr[1] "%d serwery przesunięto"
|
||||
msgstr[2] "%d serwerów przesunięto"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: server \"%s\" is not a temporary server"
|
||||
@@ -6793,9 +6805,8 @@ msgstr "<nick> <kanał>[,<kanał>...]"
|
||||
msgid "change mode on channel, without having operator status"
|
||||
msgstr "zmienia atrybuty kanału, bez posiadania statusu operatora"
|
||||
|
||||
#, fuzzy
|
||||
msgid "[<channel>] <mode>"
|
||||
msgstr "<kanał> <atrybuty>"
|
||||
msgstr "[<kanał>] <atrybuty>"
|
||||
|
||||
msgid ""
|
||||
"channel: channel name\n"
|
||||
@@ -6842,17 +6853,15 @@ msgstr ""
|
||||
msgid "list, add or remove IRC servers"
|
||||
msgstr "wyświetla, dodaje lub usuwa serwery IRC"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull [<server>] || add <server> <hostname>[/<port>] [-temp] [-"
|
||||
"<option>[=<value>]] [-no<option>] || copy|rename <server> <new_name> || "
|
||||
"reorder <server> [<server>...] || del|keep <server> || deloutq|jump|raw"
|
||||
msgstr ""
|
||||
"list|listfull [<serwer>] || add <serwera> <host>[/<port>] [-temp] [-"
|
||||
"<opcja>[=<wartość>]] [-no<opcja>]|| copy|rename <serwer> <nowa_nazwa> || del|"
|
||||
"keep <serwer>] || deloutq|jump|raw"
|
||||
"<opcja>[=<wartość>]] [-no<opcja>]|| copy|rename <serwer> <nowa_nazwa> || "
|
||||
"reorder <serwer> [<serwer>...] || del|keep <serwer>] || deloutq|jump|raw"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list servers (without argument, this list is displayed)\n"
|
||||
"listfull: list servers with detailed info for each server\n"
|
||||
@@ -6899,6 +6908,7 @@ msgstr ""
|
||||
"noopcja: ustawia opcje boolowskie na 'off' (na przykład: -nossl)\n"
|
||||
" copy: duplikuje serwer\n"
|
||||
" rename: zmienia nazwę serwera\n"
|
||||
" reorder: zmienia kolejność na liście serwerów\n"
|
||||
" keep: zachowuje serwer w pliku konfiguracyjnym (tylko dla serwerów "
|
||||
"tymczasowych)\n"
|
||||
" del: usuwa serwer\n"
|
||||
@@ -6915,6 +6925,7 @@ msgstr ""
|
||||
" /server add freenode3 chat.freenode.net -password=moje_hasło\n"
|
||||
" /server copy oftc oftcbis\n"
|
||||
" /server rename oftc newoftc\n"
|
||||
" /server reorder oftc freenode\n"
|
||||
" /server del freenode\n"
|
||||
" /server deloutq"
|
||||
|
||||
@@ -7301,7 +7312,6 @@ msgid "password for server (note: content is evaluated, see /help eval)"
|
||||
msgstr "hasło dla serwera ( zawartość jest przetwarzana, zobacz /help eval)"
|
||||
|
||||
#. TRANSLATORS: please keep words "client capabilities" between brackets if translation is different (see fr.po)
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"comma-separated list of client capabilities to enable for server if they are "
|
||||
"available; capabilities supported by WeeChat are: away-notify, extended-"
|
||||
@@ -7309,8 +7319,9 @@ msgid ""
|
||||
"multi-prefix\")"
|
||||
msgstr ""
|
||||
"oddzielona przecinkami lista opcji klienta do włączenia dla serwera, jeśli "
|
||||
"są dostępne; opcje wspierane przez WeeChat: away-notify, multi-prefix, "
|
||||
"server-time, userhost-in-names (przykład: \"away-notify,multi-prefix\")"
|
||||
"są dostępne; opcje wspierane przez WeeChat: away-notify, extended-join, "
|
||||
"multi-prefix, server-time, userhost-in-names (przykład: \"away-notify,multi-"
|
||||
"prefix\")"
|
||||
|
||||
msgid ""
|
||||
"mechanism for SASL authentication: \"plain\" for plain text password, \"dh-"
|
||||
@@ -7343,6 +7354,9 @@ msgid ""
|
||||
"authentication problem, \"reconnect\" to schedule a reconnection to the "
|
||||
"server, \"disconnect\" to disconnect from server"
|
||||
msgstr ""
|
||||
"akcja do wykonania jeśli uwierzytelnianie SASL się nie powiedzie: \"continue"
|
||||
"\" dla zignorowania problemu, \"reconnect\" ponownie połącz się z serwerem, "
|
||||
"\"disconnect\" odłącz od serwera"
|
||||
|
||||
msgid "automatically connect to server when WeeChat is starting"
|
||||
msgstr "automatycznie połącz się z serwerem przy uruchamianiu WeeChat"
|
||||
@@ -7499,14 +7513,16 @@ msgid ""
|
||||
"joined (with server option \"autojoin\"); this is useful to open channels "
|
||||
"with always the same buffer numbers on startup"
|
||||
msgstr ""
|
||||
"otwórz bufor kanału przed odebraniem JOIN od serwera, kiedy automatyczne "
|
||||
"wchodzenie na kanały jest włączone (opcja serwera \"autojoin\"); przydatne "
|
||||
"żeby bufory kanałów miały zawsze ten sam numer po uruchomieniu"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"open channel buffer before the JOIN is received from server when it is "
|
||||
"manually joined (with /join command)"
|
||||
msgstr ""
|
||||
"automatycznie przełącz się na bufor kanału po ręcznym wejściu (za pomocą "
|
||||
"komendy /join)"
|
||||
"otwórz bufor kanału przed otrzymaniem JOIN od serwera, przy manualnym "
|
||||
"wejściu (za pomocą komendy /join)"
|
||||
|
||||
msgid ""
|
||||
"auto switch to channel buffer when it is auto joined (with server option "
|
||||
@@ -8230,7 +8246,7 @@ msgid "notify pointer (optional)"
|
||||
msgstr "wskaźnik powiadomienia (opcjonalne)"
|
||||
|
||||
msgid "mapping between IRC color codes and WeeChat color names"
|
||||
msgstr ""
|
||||
msgstr "mapowanie między kodami kolorów IRC i nazwami kolorów WeeChat"
|
||||
|
||||
msgid "irc nick"
|
||||
msgstr "nazwa użytkownika irc"
|
||||
@@ -8354,9 +8370,9 @@ msgstr "%sZostałeś zaproszony na %s%s%s przez %s%s%s"
|
||||
msgid "%s%s: cannot create new channel \"%s\""
|
||||
msgstr "%s%s: nie można utworzyć nowego kanału \"%s\""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s%s%s%s%s%s%s%s%s%s%s has joined %s%s%s"
|
||||
msgstr "%s%s%s%s%s%s%s%s%s%s wszedł na %s%s%s"
|
||||
msgstr "%s%s%s%s%s%s%s%s%s%s%s%s wszedł na %s%s%s"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s%s%s has kicked %s%s%s %s(%s%s%s)"
|
||||
@@ -8522,26 +8538,26 @@ msgid "%sChannel reop %s%s%s: %s%s"
|
||||
msgstr "%sReop kanału %s%s%s: %s%s"
|
||||
|
||||
#. TRANSLATORS: "%s" after "on" is a date
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s invited by %s on %s"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony przez %s%s %s(%s%s%s)"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony przez %s na %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s invited by %s"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony przez %s"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s invited"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony"
|
||||
|
||||
#. TRANSLATORS: "%s" after "on" is a date
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s]%s exception %s%s%s by %s on %s"
|
||||
msgstr "%s%s[%s%s%s]%s wyjątek %s%s%s ustawiony przez %s%s %s(%s%s%s)%s na %s"
|
||||
msgstr "%s%s[%s%s%s]%s wyjątek %s%s%s ustawiony przez %s na %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s]%s exception %s%s%s by %s"
|
||||
msgstr "%s%s[%s%s%s]%s wyjątek %s%s"
|
||||
msgstr "%s%s[%s%s%s]%s wyjątek %s%s%s ustawiony przez %s"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s]%s exception %s%s"
|
||||
@@ -8588,17 +8604,17 @@ msgstr[1] "nick"
|
||||
msgstr[2] "nick"
|
||||
|
||||
#. TRANSLATORS: "%s" after "on" is a date
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s banned by %s on %s"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zbanowany przez %s%s %s(%s%s%s)"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zbanowany przez %s na %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s banned by %s"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zbanowany przez %s%s %s(%s%s%s)"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zbanowany przez %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s banned"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zbanowany"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
@@ -8629,17 +8645,17 @@ msgid "%s%s: nickname \"%s\" is unavailable, trying nickname \"%s\""
|
||||
msgstr "%s%s: nick \"%s\" jest niedostępny, próbuje nicku \"%s\""
|
||||
|
||||
#. TRANSLATORS: "%s" after "on" is a date
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s quieted by %s on %s"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s uciszony przez %s%s %s(%s%s%s)"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s uciszony przez %s na %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s quieted by %s"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s uciszony przez %s%s %s(%s%s%s)"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s uciszony przez %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s[%s%s%s] %s%s%s quieted"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s zaproszony"
|
||||
msgstr "%s%s[%s%s%s] %s%s%s uciszony"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: command \"%s\" not found:"
|
||||
@@ -9866,9 +9882,9 @@ msgstr "Brak klientów do przekazywania"
|
||||
msgid "Listening on ports:"
|
||||
msgstr "Nasłuchuję na portach:"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid " port %s%d%s, relay: %s%s%s, %s (not started)"
|
||||
msgstr " port %s%d%s, relay:%s%s%s, %s, rozpoczęto: %s"
|
||||
msgstr " port %s%d%s, pośrednik: %s%s%s, %s, (nie rozpoczęto)"
|
||||
|
||||
#, c-format
|
||||
msgid " port %s%d%s, relay: %s%s%s, %s, started on: %s"
|
||||
@@ -9892,15 +9908,13 @@ msgstr "%s%s: relay \"%s\" nie został znaleziony"
|
||||
msgid "relay control"
|
||||
msgstr "zarządzanie przesyłaniem"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listrelay || add <name> <port> || del|stop|restart <name> || "
|
||||
"raw || sslcertkey"
|
||||
msgstr ""
|
||||
"list|listfull|listrelay || add [ipv4.][ipv6.][ssl.]<protokół.nazwa> <port> "
|
||||
"|| del [ipv4.][ipv6.][ssl.]<protokół.nazwa> || raw || kluczSSL"
|
||||
"list|listfull|listrelay || add <nazwa> <port> || del|stop|restart <nazwa> || "
|
||||
"raw || sslcertkey"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list relay clients (only active relays)\n"
|
||||
" listfull: list relay clients (verbose, all relays)\n"
|
||||
@@ -9951,26 +9965,36 @@ msgid ""
|
||||
" weechat protocol with SSL, using IPv4 + IPv6:\n"
|
||||
" /relay add ipv4.ipv6.ssl.weechat 9001"
|
||||
msgstr ""
|
||||
" list: wyświetla klienty relay (tylko aktywne)\n"
|
||||
" listfull: wyświetla klienty relay (wszystkie)\n"
|
||||
" listrelay: wyświetla relaye (nazwa i port)\n"
|
||||
" add: dodaje relay dla protokołu + nazwa\n"
|
||||
" del: usuwa relay dla protokołu + nazwa\n"
|
||||
" ipv4: wymusza użycie IPv4\n"
|
||||
" ipv6: wymusza użycie IPv6\n"
|
||||
" ssl: włącza SSL\n"
|
||||
"protokół.nazwa: protokół i nazwa dla relay:\n"
|
||||
" - protokół \"irc\": nazwą jest dzielony serwer "
|
||||
"(opcjonalnie, jeśli nie zostanie podana, nazwa serwera musi zostać "
|
||||
"wysłanaprzez klienta w komendzie\"PASS\", w formacie: \"PASS serwer:hasło"
|
||||
"\")\n"
|
||||
" - protokół \"weechat\" (nazwa nie jest używana)\n"
|
||||
" port: port używany przez relay\n"
|
||||
" raw: otwiera bufor z nieprzetworzonymi danymi Relay\n"
|
||||
" list: wyświetla klienty pośrednika (tylko aktywne)\n"
|
||||
" listfull: wyświetla klienty pośrednika (wszystkie)\n"
|
||||
" listrelay: wyświetla pośredników (nazwa i port)\n"
|
||||
" add: dodaje relay (nasłuchuje na porcie)\n"
|
||||
" del: usuwa relay (klienty zostają połączone)\n"
|
||||
" stop: zamyka gniazdo serwera (klienty zostają połączone)\n"
|
||||
" restart: zamyka porta serwera i otwiera go ponownie nasłuchując na nim "
|
||||
"(klienty zostają połączone)\n"
|
||||
" nazwa: nazwa pośrednika (format poniżej)\n"
|
||||
" port: port używany przez pośrednika\n"
|
||||
" raw: otwiera bufor z nieprzetworzonymi danymi pośrednika\n"
|
||||
" kluczSSL: ustawia certyfikat SSL/hasło używając ścieżki w opcji relay."
|
||||
"network.ssl_cert_key\n"
|
||||
"\n"
|
||||
"Bez argumentu komenda otwiera bufor z listą klientów relay.\n"
|
||||
"Nazwa pośrednika to: [ipv4.][ipv6.][ssl.]<protokół.nazwa>\n"
|
||||
" ipv4: wymusza użycie IPv4\n"
|
||||
" ipv6: wymusza użycie IPv6\n"
|
||||
" ssl: włącza SSL\n"
|
||||
"protokół.nazwa: protokół i nazwa do przekazywania:\n"
|
||||
" - protokół \"irc\": nazwą jest serwer do współdzielenia "
|
||||
"(opcjonalne, jeśli nie podane, nazwa serwera musi być wysłana przez klienta "
|
||||
"w komendzie \"PASS\", format: \"PASS serwer:hasło\")\n"
|
||||
" - protokół \"weechat\" (nazwa nie jest używana)\n"
|
||||
"\n"
|
||||
"Protokół \"irc\" pozwala dowolnemu klientowi IRC (włączajac w to WeeChat) "
|
||||
"połączyć się na ustawionym porcie.\n"
|
||||
"Protokół \"weechat\" pozwala na połączenie się zdalnym interfejsem, lista "
|
||||
"dostępna pod adresem: https://weechat.org/download/\n"
|
||||
"\n"
|
||||
"Bez argumentu komenda otwiera bufor z listą klientów.\n"
|
||||
"\n"
|
||||
"Przykłady:\n"
|
||||
" pośrednik irc dla serwera \"freenode\":\n"
|
||||
@@ -10140,15 +10164,15 @@ msgstr ""
|
||||
msgid "display backlog starting from last client disconnect"
|
||||
msgstr "wyświetlaj backlog zaczynając od ostatniego rozłączenia klienta"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"comma-separated list of messages tags which are displayed in backlog per IRC "
|
||||
"channel (supported tags: \"irc_join\", \"irc_part\", \"irc_quit\", \"irc_nick"
|
||||
"\", \"irc_privmsg\"), \"*\" = all supported tags"
|
||||
msgstr ""
|
||||
"tagi dla wiadomości, które są wyświetlane w backlogu dla kanałów IRC "
|
||||
"(wspierane tagi: \"irc_join\", \"irc_part\", \"irc_quit\", \"irc_nick\", "
|
||||
"\"irc_privmsg\"), \"*\" = dla wszystkich wspieranych tagów"
|
||||
"oddzielona przecinkami lista tagów dla wiadomości, które są wyświetlane w "
|
||||
"backlogu dla kanałów IRC (wspierane tagi: \"irc_join\", \"irc_part\", "
|
||||
"\"irc_quit\", \"irc_nick\", \"irc_privmsg\"), \"*\" = dla wszystkich "
|
||||
"wspieranych tagów"
|
||||
|
||||
msgid ""
|
||||
"format for time in backlog messages (see man strftime for format) (not used "
|
||||
@@ -10798,6 +10822,8 @@ msgid ""
|
||||
"force use of HTTPS for downloads (index and scripts); you should disable "
|
||||
"this option only if you have problems with the downloads"
|
||||
msgstr ""
|
||||
"wymusza użycie HTTPS do pobierania (listy i skryptów); powinieneś wyłączyć "
|
||||
"tą opcję tylko jeśli występują problemy z pobieraniem"
|
||||
|
||||
msgid "script name with extension (wildcard \"*\" is allowed) (optional)"
|
||||
msgstr ""
|
||||
@@ -10914,6 +10940,8 @@ msgid ""
|
||||
"%s%s: action \"%s\" can not be executed on trigger \"%s\" because it is "
|
||||
"currently running"
|
||||
msgstr ""
|
||||
"%s%s: akcja \"%s\" nie może być wykonana na triggerze \"%s\" ponieważ jest "
|
||||
"on aktualnie wykonywany"
|
||||
|
||||
#, c-format
|
||||
msgid "Trigger \"%s\" restarted"
|
||||
@@ -11056,7 +11084,6 @@ msgstr ""
|
||||
"[<nazwa>...] || show <nazwa> || del <nazwa>|-all [<nazwa>...] || restore "
|
||||
"<nazwa> [<nazwa>...] || default -yes || monitor [<filtr>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list triggers (without argument, this list is displayed)\n"
|
||||
" listfull: list triggers with detailed info for each trigger\n"
|
||||
@@ -11213,9 +11240,9 @@ msgstr ""
|
||||
" dodaje atrybuty tekstu *bold*, _underline_ i /italic/ (tylko w "
|
||||
"wiadomościach użytkowników):\n"
|
||||
" /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"=="
|
||||
"\\*(\\S+)\\*==*${color:bold}$1${color:-bold}*== ==_(\\S+)_==_${color:"
|
||||
"underline}$1${color:-underline}_== ==/(\\S+)/==/${color:italic}$1${color:-"
|
||||
"italic}/\"\n"
|
||||
"\\*(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_(\\S+)_==_${color:"
|
||||
"underline}${re:1}${color:-underline}_== ==/(\\S+)/==/${color:"
|
||||
"italic}${re:1}${color:-italic}/\"\n"
|
||||
" ukrywa pasek z nickami na małych terminalach:\n"
|
||||
" /trigger add resize_small signal signal_sigwinch \"${info:term_width} < "
|
||||
"100\" \"\" \"/bar hide nicklist\"\n"
|
||||
@@ -11295,7 +11322,6 @@ msgstr ""
|
||||
"(uwaga: zawartość jest przetwarzana, podczas wykonania triggera, zobacz /"
|
||||
"help eval)"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"replace text with a POSIX extended regular expression (it is done only if "
|
||||
"conditions are OK, and before running the command) (note: content is "
|
||||
@@ -11317,8 +11343,8 @@ msgstr ""
|
||||
"regex2/replace2/var2\"; wyescapowane znaki są interpretowane w wyrażeniu (na "
|
||||
"przykład \"\\n\"); separator \"/\" może być zastąpiony dowolnym znakiem "
|
||||
"(jednym lub więcej identycznych znaków); pasujące grupy mogą być użyte w "
|
||||
"zastępowaniu: $0 - $99, $+ dla ostatniego dopasowania i $.cN do zastąpienia "
|
||||
"wszystkich znaków w grupie N znakiem c"
|
||||
"zastępowaniu: ${re:0} do ${re:99}, ${re:+} dla ostatniego dopasowania i "
|
||||
"${hide:c,${re:N}} do zastąpienia wszystkich znaków w grupie N znakiem 'c'"
|
||||
|
||||
msgid ""
|
||||
"command(s) to run if conditions are OK, after regex replacements (many "
|
||||
@@ -11478,11 +11504,11 @@ msgstr "%s: plik %s (lokalna nazwa: %s) zostanie wznowiony od pozycji%llu"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: address \"%s\" resolved to a larger sockaddr than expected"
|
||||
msgstr ""
|
||||
msgstr "%s%s: adres \"%s\" wskazuje na większy sockaddr niż przypuszczano"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s: invalid address \"%s\": error %d %s"
|
||||
msgstr "%s%s: niemożna znaleźć adresu dla \"%s\": błąd %d %s"
|
||||
msgstr "%s%s: niewłaściwy adres \"%s\": błąd %d %s"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: missing arguments (%s)"
|
||||
@@ -11790,6 +11816,6 @@ msgstr "%s%s: nie można ustawić opcji \"nonblock\" dla gniazda: błąd %d %s"
|
||||
msgid "%s%s: timeout for \"%s\" with %s"
|
||||
msgstr "%s%s: przekroczono czas na \"%s\" z %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: nie można połączyć z nadawcą"
|
||||
msgstr "%s%s: nie można połączyć: niespodziewany błąd (%d)"
|
||||
|
||||
+13
-12
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-12-21 11:09+0100\n"
|
||||
"POT-Creation-Date: 2014-12-28 10:50+0100\n"
|
||||
"PO-Revision-Date: 2014-11-09 16:23+0100\n"
|
||||
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1035,11 +1035,12 @@ msgstr ""
|
||||
msgid "manage bars"
|
||||
msgstr "gerenciar barras"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listitems || add <name> <type>[,<condition>] <position> <size> "
|
||||
"<separator> <item1>[,<item2>...] || default [input|title|status|nicklist] || "
|
||||
"del <name>|-all || set <name> <option> <value> || hide|show|toggle <name> || "
|
||||
"scroll <name> <window> <scroll_value>"
|
||||
"list|listfull|listitems || add <name> <type>[,<conditions>] <position> "
|
||||
"<size> <separator> <item1>[,<item2>...] || default [input|title|status|"
|
||||
"nicklist] || del <name>|-all || set <name> <option> <value> || hide|show|"
|
||||
"toggle <name> || scroll <name> <window> <scroll_value>"
|
||||
msgstr ""
|
||||
"list|listfull|listitems || add <nome> <tipo>[,<cond1>[,<cond2>...]] "
|
||||
"<posição> <tamanho> <separador> <item1>[,<item2>...] || default [input|title|"
|
||||
@@ -1057,13 +1058,13 @@ msgid ""
|
||||
" name: name of bar (must be unique)\n"
|
||||
" type: root: outside windows,\n"
|
||||
" window: inside windows, with optional conditions (see below)\n"
|
||||
" condition: condition(s) for displaying bar (only for type \"window\"):\n"
|
||||
" conditions: the conditions to display the bar:\n"
|
||||
" active: on active window\n"
|
||||
" inactive: on inactive windows\n"
|
||||
" nicklist: on windows with nicklist\n"
|
||||
" other condition: see /help weechat.bar.xxx.conditions and /"
|
||||
"help eval\n"
|
||||
" without condition, the bar is always displayed\n"
|
||||
" without conditions, the bar is always displayed\n"
|
||||
" position: bottom, top, left or right\n"
|
||||
" size: size of bar (in chars)\n"
|
||||
" separator: 1 for using separator (line), 0 or nothing means no "
|
||||
@@ -4252,11 +4253,11 @@ msgid "bar type (root, window, window_active, window_inactive)"
|
||||
msgstr "tipo da barra (root, window, window_active, window_inactive)"
|
||||
|
||||
msgid ""
|
||||
"condition(s) for displaying bar (for bars of type \"window\"): a simple "
|
||||
"condition: \"active\", \"inactive\", \"nicklist\" (window must be active/"
|
||||
"inactive, buffer must have a nicklist), or an expression with condition(s) "
|
||||
"(see /help eval), like: \"${nicklist} && ${window.win_width} > 100\" (local "
|
||||
"variables for expression are ${active}, ${inactive} and ${nicklist})"
|
||||
"conditions to display the bar: a simple condition: \"active\", \"inactive\", "
|
||||
"\"nicklist\" (window must be active/inactive, buffer must have a nicklist), "
|
||||
"or an expression with condition(s) (see /help eval), like: \"${nicklist} && "
|
||||
"${window.win_width} > 100\" (local variables for expression are ${active}, "
|
||||
"${inactive} and ${nicklist})"
|
||||
msgstr ""
|
||||
|
||||
msgid "bar position (bottom, top, left, right)"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user