mirror of
https://github.com/weechat/weechat.git
synced 2026-06-21 18:36:39 +02:00
Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cc0337bbe1 | |||
| fe0e554d2a | |||
| 54841f6294 | |||
| f98d50ebab | |||
| f9f7525e23 | |||
| 8a755ef0d7 | |||
| a842f24b6d | |||
| 9f4dddcf75 | |||
| 47019c3d15 | |||
| f2b74fabc2 | |||
| 7ce4fb1b5d | |||
| ec3c08e7ab | |||
| 1d5fb8123c | |||
| 1c626ab946 | |||
| d0b1d4f6ad | |||
| 292bad719a | |||
| cb382a0174 | |||
| 58ce36c2c9 | |||
| 95ff8c97fa | |||
| 616d2ae295 | |||
| e45593e00c | |||
| 34a09d1a16 | |||
| 117ac60c74 | |||
| 20df8b89a0 | |||
| 63dc51bd7b | |||
| 131cc6a2f2 | |||
| 54038f181c | |||
| e0c5507a7f | |||
| ce17b2ea17 | |||
| 466921fdcf | |||
| bec42589e0 | |||
| 1525b50e3b | |||
| 726805b7b1 | |||
| 27c9339c34 | |||
| 6d8bddc5fb | |||
| df10556d5e | |||
| 340389ccd5 | |||
| 0572d0c4f5 | |||
| f4b96dfa0f | |||
| fa9c17660f | |||
| 482a2209d1 | |||
| 6eb50f3dbb | |||
| 65cd1b4c19 |
@@ -80,6 +80,7 @@ Alphabetically:
|
||||
* Quico Noizeux
|
||||
* Raghavendra Prabhu
|
||||
* Rettub
|
||||
* Rob Campbell
|
||||
* Rudolf Polzer (divVerent)
|
||||
* Ryuunosuke Ayanokouzi
|
||||
* scumjr
|
||||
|
||||
+4
-2
@@ -16,7 +16,7 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
|
||||
|
||||
[[v1.6]]
|
||||
== Version 1.6 (under dev)
|
||||
== Version 1.6 (2016-10-02)
|
||||
|
||||
New features::
|
||||
|
||||
@@ -36,9 +36,11 @@ Improvements::
|
||||
Bug fixes::
|
||||
|
||||
* core, irc, xfer: refresh domain name and name server addresses before connection to servers (fix connection to servers after suspend mode) (issue #771)
|
||||
* api: fix return of function string_match() when there are multiple masks in the string (issue #812)
|
||||
* api: fix crash in function network_connect_to() if address is NULL
|
||||
* api: fix connection to servers with hook_connect() on Windows 10 with Windows subsystem for Linux (issue #770)
|
||||
* api: fix crash in function string_split_command() when the separator is not a semicolon (issue #731)
|
||||
* irc: fix socket leak in connection to server (issue #358, issue #801)
|
||||
* irc: fix display of service notice mask (message 008) (issue #429)
|
||||
* irc: fix NULL pointer dereference in 734 command callback (issue #738)
|
||||
* relay: return an empty hdata when the requested hdata or pointer is not found (issue #767)
|
||||
@@ -50,7 +52,6 @@ Documentation::
|
||||
|
||||
Build::
|
||||
|
||||
* cygwin: disable build of man page and documentation
|
||||
* python: add detection of Python 3.5
|
||||
|
||||
[[v1.5]]
|
||||
@@ -63,6 +64,7 @@ New features::
|
||||
|
||||
Improvements::
|
||||
|
||||
* core: evaluate content of option "weechat.look.item_time_format" (issue #791)
|
||||
* core: change default value of option weechat.look.nick_color_hash to "djb2"
|
||||
* core: move nick coloring from irc plugin to core, move options irc.look.nick_color_force, irc.look.nick_color_hash and irc.look.nick_color_stop_chars to core, add info "nick_color" and "nick_color_name", deprecate info "irc_nick_color" and "irc_color_name" (issue #262)
|
||||
* core: move irc bar item "away" to core, move options irc.look.item_away_message and irc.color.item_away to core (issue #692)
|
||||
|
||||
+1
-1
@@ -18,7 +18,7 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
|
||||
|
||||
|
||||
[[v1.6]]
|
||||
== Version 1.6 (under dev)
|
||||
== Version 1.6 (2016-10-02)
|
||||
|
||||
[[v1.6_irc_server_default_msg]]
|
||||
=== IRC kick/part/quit default messages
|
||||
|
||||
+5
-5
@@ -26,15 +26,15 @@ if(ENABLE_MAN OR ENABLE_DOC)
|
||||
|
||||
set(ASCIIDOCTOR_ARGS -a experimental -a icons=font -a revnumber="${VERSION}" -a sectanchors -a source-highlighter=prettify)
|
||||
|
||||
add_subdirectory(cs)
|
||||
add_subdirectory(de)
|
||||
add_subdirectory(en)
|
||||
add_subdirectory(es)
|
||||
add_subdirectory(fr)
|
||||
add_subdirectory(it)
|
||||
add_subdirectory(de)
|
||||
add_subdirectory(pl)
|
||||
add_subdirectory(es)
|
||||
add_subdirectory(ru)
|
||||
add_subdirectory(ja)
|
||||
add_subdirectory(cs)
|
||||
add_subdirectory(pl)
|
||||
add_subdirectory(ru)
|
||||
|
||||
endif()
|
||||
|
||||
|
||||
+2
-1
@@ -18,9 +18,10 @@
|
||||
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
SUBDIRS = . en fr it de pl es ru ja cs
|
||||
SUBDIRS = . cs de en es fr it ja pl ru
|
||||
|
||||
EXTRA_DIST = docgen.py \
|
||||
docinfo.html \
|
||||
CMakeLists.txt
|
||||
|
||||
uninstall-hook:
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.cs.adoc \
|
||||
cmdline_options.cs.adoc \
|
||||
weechat_quickstart.cs.adoc \
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.de.adoc \
|
||||
cmdline_options.de.adoc \
|
||||
weechat_user.de.adoc \
|
||||
|
||||
@@ -438,7 +438,7 @@ Auflistung der möglichen Aktionen:
|
||||
delete_beginning_of_line: entfernt alle Zeichen ab Zeilenanfang bis zum Cursor
|
||||
delete_end_of_line: entfernt alle Zeichen ab Cursor bis zum Ende der Zeile
|
||||
delete_line: löscht die komplette Eingabezeile
|
||||
clipboard_paste: fügt Zeichenkette aus der Zwischenablage ein
|
||||
clipboard_paste: fügt Zeichenkette aus der internen Zwischenablage ein
|
||||
transpose_chars: Zeichen austauschen
|
||||
undo: letzten Befehl in der Eingabezeile rückgängig machen
|
||||
redo: letzten Befehl in der Eingabezeile wiederherstellen
|
||||
@@ -949,54 +949,54 @@ Beispiele:
|
||||
zoom [-window <number>]
|
||||
bare [<delay>]
|
||||
|
||||
list: list opened windows (without argument, this list is displayed)
|
||||
-1: jump to previous window
|
||||
+1: jump to next window
|
||||
b#: jump to next window displaying buffer number #
|
||||
up: switch to window above current one
|
||||
down: switch to window below current one
|
||||
left: switch to window on the left
|
||||
right: switch to window on the right
|
||||
number: window number (see /window list)
|
||||
splith: split current window horizontally (to undo: /window merge)
|
||||
splitv: split current window vertically (to undo: /window merge)
|
||||
resize: resize window size, new size is <pct> percentage of parent window
|
||||
balance: balance the sizes of all windows
|
||||
merge: merge window with another (all = keep only one window)
|
||||
page_up: scroll one page up
|
||||
page_down: scroll one page down
|
||||
refresh: refresh screen
|
||||
scroll: scroll a number of lines (+/-N) or with time: s=seconds, m=minutes, h=hours, d=days, M=months, y=years
|
||||
scroll_horiz: scroll horizontally a number of columns (+/-N) or percentage of window size (this scrolling is possible only on buffers with free content)
|
||||
scroll_up: scroll a few lines up
|
||||
scroll_down: scroll a few lines down
|
||||
scroll_top: scroll to top of buffer
|
||||
scroll_bottom: scroll to bottom of buffer
|
||||
scroll_beyond_end: scroll beyond the end of buffer
|
||||
scroll_previous_highlight: scroll to previous highlight
|
||||
scroll_next_highlight: scroll to next highlight
|
||||
scroll_unread: scroll to unread marker
|
||||
swap: swap buffers of two windows (with optional direction for target window)
|
||||
zoom: zoom on window
|
||||
bare: toggle bare display (with optional delay in seconds for automatic return to standard display mode)
|
||||
list: listet die geöffneten Fenster (ohne Angabe von Argumente wird diese Liste standardmäßig ausgegeben)
|
||||
-1: springt zum vorherigen Fenster
|
||||
+1: springt zum nächsten Fenster
|
||||
b#: springt zum nächsten Fenster, welches die Buffer Nummer # besitzt
|
||||
up: wechselt zum Fenster über dem aktuellen
|
||||
down: wechselt zum Fenster unter dem aktuellen
|
||||
left: wechselt zum linken Fenster
|
||||
right: wechselt zum rechten Fenster
|
||||
number: Nummer des Fensters (siehe /window list)
|
||||
splith: teilt das aktuelle Fenster horizontal (um den Vorgang rückgängig zu machen: /window merge)
|
||||
splitv: teilt das aktuelle Fenster vertikal (um den Vorgang rückgängig zu machen: /window merge)
|
||||
resize: verändert die Größe des aktuellen Fensters. Die neue Größe des Fensters ist prozentual <pct> zum Stammfensters groß
|
||||
balance: passt die Größe aller Fenster an
|
||||
merge: vereinigt Fenster miteinander (all = alle Fenster vereinigen)
|
||||
page_up: scrollt eine Seite nach oben
|
||||
page_down: scrollt eine Seite nach unten
|
||||
refresh: Seite wird neu aufgebaut
|
||||
scroll: scrollt eine Anzahl an Zeilen (+/-N) oder zu einer angegebenen Zeit: s=Sekunden, m=Minuten, h=Stunden, d=Tage, M=Monate, y=Jahre
|
||||
scroll_horiz: scrollt horizontal eine Anzahl an Spalten (+/-N) oder prozentual von der Fenstergröße ausgehend (dieses scrolling ist nur in Buffern möglich die über einen freien Inhalt verfügen)
|
||||
scroll_up: scrollt ein paar Zeilen nach oben
|
||||
scroll_down: scrollt ein paar Zeilen nach unten
|
||||
scroll_top: scrollt zum Anfang des Buffers
|
||||
scroll_bottom: scrollt zum Ende des Buffers
|
||||
scroll_beyond_end: scrollt über das Ende des Buffers hinaus
|
||||
scroll_previous_highlight: scrollt zum vorherigen Hightlight
|
||||
scroll_next_highlight: scrollt zum nächsten Highlight
|
||||
scroll_unread: springt zur ersten ungelesenen Zeile in einem Buffer
|
||||
swap: tauscht die Buffer von zwei Fenstern (mit optionaler Angabe für das Zielfenster)
|
||||
zoom: vergrößert ein Fenster auf 100%%
|
||||
bare: wechselt zum einfachen Anzeigemodus (optional kann eine Wartezeit, in Sekunden, angegeben werden, wann zum Standardmodus zurück gewechselt werden soll)
|
||||
|
||||
For splith and splitv, pct is a percentage which represents size of new window, computed with current window as size reference. For example 25 means create a new window with size = current_size / 4
|
||||
Bei splith und splitv gibt "pct" die neue Größe des Fensters im Verhältnis zur aktuellen Größe an. Zum Beispiel würde ein Wert von 25 bedeuten, dass das neue Fenster nur noch ein Viertel der Größe des alten Fensters besitzt.
|
||||
|
||||
Examples:
|
||||
jump to window displaying buffer #1:
|
||||
Beispiele:
|
||||
springt zum Fenster mit dem Buffer #1:
|
||||
/window b1
|
||||
scroll 2 lines up:
|
||||
scrollt zwei Zeilen hoch:
|
||||
/window scroll -2
|
||||
scroll 2 days up:
|
||||
scrollt zwei Tage hoch: /window scroll -2d
|
||||
/window scroll -2d
|
||||
scroll to beginning of current day:
|
||||
scrollt zum Beginn des aktuellen Tages:
|
||||
/window scroll -d
|
||||
zoom on window #2:
|
||||
Fenster #2 wird vergrößert:
|
||||
/window zoom -window 2
|
||||
split window horizontally using 30%% of space for the window on top:
|
||||
teilt das Fenster horizontal, wobei das obere Fenster 30%% an Platz zugeteilt bekommt:
|
||||
/window splith 30
|
||||
remove the split:
|
||||
eine Teilung wird rückgängig gemacht:
|
||||
/window merge
|
||||
enable bare display for 2 seconds:
|
||||
aktiviert den einfachen Anzeigemodus für zwei Sekunden:
|
||||
/window bare 2
|
||||
----
|
||||
|
||||
@@ -703,7 +703,7 @@
|
||||
** Werte: beliebige Zeichenkette (Standardwert: `+"M"+`)
|
||||
|
||||
* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
|
||||
** Beschreibung: pass:none[Format für die Zeitanzeige des Bar-Items, "time" (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)]
|
||||
** Beschreibung: pass:none[Format für die Zeitanzeige des Bar-Items, "time" (siehe man strftime, welche Platzhalter für das Datum und die Uhrzeit verwendet werden)(Hinweis: Inhalt wird evaluiert, somit kann mittels des Formats "${color:xxx} Farben gesetzt werden, siehe /help eval)]
|
||||
** Typ: Zeichenkette
|
||||
** Werte: beliebige Zeichenkette (Standardwert: `+"%H:%M"+`)
|
||||
|
||||
|
||||
@@ -208,6 +208,23 @@ Um die Bar nach oben zu verschieben:
|
||||
/set weechat.bar.buffers.position bottom
|
||||
----
|
||||
|
||||
um den Inhalt der Bar zu scollen: sollte die Mausunterstützung aktiviert sein (Taste: kbd:[Alt+m]),
|
||||
kann man den Inhalt der Bar ganz einfach mit dem Mausrad vor- und zurück scrollen.
|
||||
|
||||
man kann aber auch Tastenbefehle nutzen, ähnlich den schon existierenden Tastenbefehlen mit welchen
|
||||
man die Nickliste vor- und zurück scrollen kann: kbd:[F1], kbd:[F2], kbd:[Alt+F1] und kbd:[Alt+F2]:
|
||||
|
||||
----
|
||||
/key bind meta-OP /bar scroll buffers * -100%
|
||||
/key bind meta-OQ /bar scroll buffers * +100%
|
||||
/key bind meta-meta-OP /bar scroll buffers * b
|
||||
/key bind meta-meta-OQ /bar scroll buffers * e
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Die Tasten "meta-OP" und "meta-OQ" können nach dem jeweils genutzten Terminal variieren. Um die
|
||||
korrekten Tasten zu finden sollte man kbd:[Alt+k] und dann drücken.
|
||||
|
||||
[[customize_prefix]]
|
||||
=== Wie kann ich die Länge eines Nicknamens begrenzen oder die Ausrichtung des Nicks im Chatbereich entfernen?
|
||||
|
||||
@@ -478,7 +495,7 @@ Beispiele:
|
||||
|
||||
[NOTE]
|
||||
Die Tasten "meta2-A" und "meta2-B" können nach dem jeweils genutzten Terminal variieren. Um die
|
||||
korrekten Tasten zu finden sollte man kbd:[Alt+k] und dann (Up- oder die Down-Taste) drücken.
|
||||
korrekten Tasten zu finden sollte man kbd:[Alt+k] und dann drücken.
|
||||
|
||||
[[mouse]]
|
||||
== Mausunterstützung
|
||||
@@ -830,6 +847,8 @@ und zusätzlich diese Tipps beherzigen:
|
||||
* "nicklist"-Bar sollte versteckt werden: `/bar hide nicklist`
|
||||
* die Sekundenanzeigen in der Statusbar sollte deaktiviert werden:
|
||||
`/set weechat.look.item_time_format "%H:%M"` (dies ist die Standardeinstellung)
|
||||
* die Echtzeit Rechtschreibkorrektur sollte deaktiviert werden (falls sie aktiviert wurde):
|
||||
`/set aspell.check.real_time off`
|
||||
* die Umgebungsvariable _TZ_ sollte gesetzt sein (zum Beispiel: `export TZ="Europe/Berlin"`). Dadurch wird
|
||||
verhindert, dass auf die Datei _/etc/localtime_ häufig zugegriffen wird.
|
||||
|
||||
|
||||
@@ -317,8 +317,7 @@ Befehle, zum Verwalten von Buffern und Fenstern:
|
||||
/window
|
||||
----
|
||||
|
||||
(Ich muss nicht erwähnen, dass man zu diesen Befehlen eine Hilfe mit /help
|
||||
erhält)
|
||||
(Ich muss nicht erwähnen, dass man mit /help einen Hilfstext zu dem Befehl erhält)
|
||||
|
||||
Beispiel: Um den Bildschirm vertikal in ein kleineres Fenster (1/3 Bildschirmbreite)
|
||||
und ein größeres Fenster (2/3 Bildschirmbreite) aufzuteilen:
|
||||
@@ -327,8 +326,7 @@ und ein größeres Fenster (2/3 Bildschirmbreite) aufzuteilen:
|
||||
/window splitv 33
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
To remove the split:
|
||||
Um die Teilung des Bildschirms rückgängig zu machen:
|
||||
|
||||
----
|
||||
/window merge
|
||||
|
||||
@@ -1083,12 +1083,12 @@ Befehl festgelegt werden:
|
||||
kbd:[Ctrl+d] | entfernt in der Befehlszeile das nächste Zeichen | `/input delete_next_char`
|
||||
| kbd:[Backsp.] +
|
||||
kbd:[Ctrl+h] | entfernt in der Befehlszeile das vorherige Zeichen | `/input delete_previous_char`
|
||||
| kbd:[Ctrl+k] | entfernt alle Zeichen vom Cursor bis zum Ende der Zeile (Zeichenkette wird in Zwischenablage kopiert) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+k] | entfernt alle Zeichen vom Cursor bis zum Ende der Zeile (die Zeichenkette wird dabei in die interne Zwischenablage kopiert) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+r] | Textsuche im Verlaufsspeicher des Buffers (siehe <<key_bindings_search_context,Tasten für Such-Kontext>>) | `/input search_text_here`
|
||||
| kbd:[Ctrl+t] | Zeichen austauschen | `/input transpose_chars`
|
||||
| kbd:[Ctrl+u] | entfernt alle Zeichen vom Cursor bis zum Anfang der Zeile (Zeichenkette wird in Zwischenablage kopiert) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | entfernt das Wort links vom Cursor (entferntes Wort wird in Zwischenablage kopiert) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | fügt Zeichenkette aus Zwischenablage ein | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+u] | entfernt alle Zeichen vom Cursor bis zum Anfang der Zeile (die Zeichenkette wird dabei in die interne Zwischenablage kopiert) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | entfernt das Wort links vom Cursor (die Zeichenkette wird dabei in die interne Zwischenablage kopiert) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | fügt den Inhalt der internen Zwischenablage ein | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+_] | Rückgängig machen der letzten Aktion, in der Befehlszeile | `/input undo`
|
||||
| kbd:[Alt+_] | Wiederherstellen der letzten Aktion, in der Befehlszeile | `/input redo`
|
||||
| kbd:[Tab] | Vervollständigung von Befehlen oder Nicks (nochmaliges kbd:[Tab]: findet nächste Vervollständigung) | `/input complete_next`
|
||||
@@ -1100,7 +1100,7 @@ Befehl festgelegt werden:
|
||||
| kbd:[↓] | ruft nächsten Befehl oder Nachricht aus dem Verlaufsspeicher auf (im Such-Modus: vorwärts suchen) | `/input history_next`
|
||||
| kbd:[Ctrl+↑] | ruft vorherigen Befehl/Nachricht aus dem globalen Verlaufsspeicher auf (für alle Buffer) | `/input history_global_previous`
|
||||
| kbd:[Ctrl+↓] | ruft nächsten Befehl/Nachricht aus dem globalen Verlaufsspeicher auf (für alle Buffer) | `/input history_global_next`
|
||||
| kbd:[Alt+d] | löscht das Wort rechts vom Cursor (Zeichenkette wird in Zwischenablage kopiert) | `/input delete_next_word`
|
||||
| kbd:[Alt+d] | löscht das Wort rechts vom Cursor (die Zeichenkette wird dabei in die interne Zwischenablage kopiert) | `/input delete_next_word`
|
||||
| kbd:[Alt+k] | zeigt den Tastencode, einschließlich des eingebundenen Befehls, einer Tastenkombination an und fügt diesen in die Befehlszeile ein | `/input grab_key_command`
|
||||
| kbd:[Alt+r] | komplette Eingabezeile löschen| `/input delete_line`
|
||||
| kbd:[Alt+s] | schaltet die Aspell Funktion an/aus | `/mute aspell toggle`
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.en.adoc \
|
||||
cmdline_options.en.adoc \
|
||||
weechat_user.en.adoc \
|
||||
|
||||
@@ -438,7 +438,7 @@ list of actions:
|
||||
delete_beginning_of_line: delete from beginning of line until cursor
|
||||
delete_end_of_line: delete from cursor until end of line
|
||||
delete_line: delete entire line
|
||||
clipboard_paste: paste from clipboard
|
||||
clipboard_paste: paste from the internal clipboard
|
||||
transpose_chars: transpose two chars
|
||||
undo: undo last command line action
|
||||
redo: redo last command line action
|
||||
|
||||
@@ -703,7 +703,7 @@
|
||||
** values: any string (default value: `+"M"+`)
|
||||
|
||||
* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
|
||||
** description: pass:none[time format for "time" bar item (see man strftime for date/time specifiers)]
|
||||
** description: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
|
||||
** type: string
|
||||
** values: any string (default value: `+"%H:%M"+`)
|
||||
|
||||
|
||||
@@ -190,6 +190,23 @@ To move bar to bottom:
|
||||
/set weechat.bar.buffers.position bottom
|
||||
----
|
||||
|
||||
To scroll the bar: if mouse is enabled (key: kbd:[Alt+m]), you can scroll the
|
||||
bar with your mouse wheel.
|
||||
|
||||
Or you can define keys, similar to the existing keys to scroll nicklist.
|
||||
For example to use kbd:[F1], kbd:[F2], kbd:[Alt+F1] and kbd:[Alt+F2]:
|
||||
|
||||
----
|
||||
/key bind meta-OP /bar scroll buffers * -100%
|
||||
/key bind meta-OQ /bar scroll buffers * +100%
|
||||
/key bind meta-meta-OP /bar scroll buffers * b
|
||||
/key bind meta-meta-OQ /bar scroll buffers * e
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Keys "meta-OP" and "meta-OQ" may be different in your terminal. To find key
|
||||
code press kbd:[Alt+k] then key.
|
||||
|
||||
[[customize_prefix]]
|
||||
=== How can I reduce length of nicks or remove nick alignment in chat area?
|
||||
|
||||
@@ -448,7 +465,7 @@ Example:
|
||||
|
||||
[NOTE]
|
||||
Keys "meta2-A" and "meta2-B" may be different in your terminal. To find key
|
||||
code press kbd:[Alt+k] then key (up or down).
|
||||
code press kbd:[Alt+k] then key.
|
||||
|
||||
[[mouse]]
|
||||
== Mouse
|
||||
@@ -779,6 +796,8 @@ You can follow same tips as for <<memory_usage,memory>>, and these ones:
|
||||
* hide "nicklist" bar: `/bar hide nicklist`
|
||||
* remove display of seconds in status bar time:
|
||||
`/set weechat.look.item_time_format "%H:%M"` (this is the default value)
|
||||
* disable real time check of misspelled words in command line (if you enabled it):
|
||||
`/set aspell.check.real_time off`
|
||||
* set the _TZ_ variable (for example: `export TZ="Europe/Paris"`), to prevent
|
||||
frequent access to file _/etc/localtime_
|
||||
|
||||
|
||||
@@ -962,7 +962,7 @@ C example:
|
||||
|
||||
[source,C]
|
||||
----
|
||||
char *str = weechat_string_expand_home ("%h/test");
|
||||
char *str = weechat_string_eval_path_home ("%h/test", NULL, NULL, NULL);
|
||||
/* result: "/home/xxx/.weechat/test" */
|
||||
/* ... */
|
||||
free (str);
|
||||
@@ -976,7 +976,7 @@ Script (Python):
|
||||
path = weechat.string_eval_path_home(path, pointers, extra_vars, options)
|
||||
|
||||
# example
|
||||
path = weechat.string_eval_path_home("%h/test", "", "", "")
|
||||
path = weechat.string_eval_path_home("%h/test", {}, {}, {})
|
||||
# path == "/home/xxx/.weechat/test"
|
||||
----
|
||||
|
||||
@@ -3588,7 +3588,7 @@ weechat.list_remove(list, item)
|
||||
|
||||
==== list_remove_all
|
||||
|
||||
Remove all items in a list.
|
||||
Remove all items from a list.
|
||||
|
||||
Prototype:
|
||||
|
||||
@@ -4178,7 +4178,7 @@ This function is not available in scripting API.
|
||||
|
||||
_WeeChat ≥ 0.3.3._
|
||||
|
||||
Remove an item in a hashtable.
|
||||
Remove an item from a hashtable.
|
||||
|
||||
Prototype:
|
||||
|
||||
@@ -4206,7 +4206,7 @@ This function is not available in scripting API.
|
||||
|
||||
_WeeChat ≥ 0.3.3._
|
||||
|
||||
Remove all items in a hashtable.
|
||||
Remove all items from a hashtable.
|
||||
|
||||
Prototype:
|
||||
|
||||
|
||||
@@ -1062,12 +1062,12 @@ The notify level for a buffer can be set with command `/buffer`:
|
||||
kbd:[Ctrl+d] | Delete next char in command line | `/input delete_next_char`
|
||||
| kbd:[Backsp.] +
|
||||
kbd:[Ctrl+h] | Delete previous char in command line | `/input delete_previous_char`
|
||||
| kbd:[Ctrl+k] | Delete from cursor until end of command line (deleted string is copied to clipboard) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+k] | Delete from cursor until end of command line (deleted string is copied to the internal clipboard) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+r] | Search for text in buffer history (see <<key_bindings_search_context,keys for search context>>) | `/input search_text_here`
|
||||
| kbd:[Ctrl+t] | Transpose chars | `/input transpose_chars`
|
||||
| kbd:[Ctrl+u] | Delete from cursor until beginning of command line (deleted string is copied to clipboard) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Delete previous word of command line (deleted string is copied to clipboard) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Paste clipboard content | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+u] | Delete from cursor until beginning of command line (deleted string is copied to the internal clipboard) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Delete previous word of command line (deleted string is copied to the internal clipboard) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Paste the internal clipboard content | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+_] | Undo last action on command line | `/input undo`
|
||||
| kbd:[Alt+_] | Redo last action on command line | `/input redo`
|
||||
| kbd:[Tab] | Complete command or nick (kbd:[Tab] again: find next completion) | `/input complete_next`
|
||||
@@ -1079,7 +1079,7 @@ The notify level for a buffer can be set with command `/buffer`:
|
||||
| kbd:[↓] | Call next command/message (in search mode: search down) | `/input history_next`
|
||||
| kbd:[Ctrl+↑] | Call previous command/message in global history (common for all buffers) | `/input history_global_previous`
|
||||
| kbd:[Ctrl+↓] | Call next command/message in global history (common for all buffers) | `/input history_global_next`
|
||||
| kbd:[Alt+d] | Delete next word in command line (deleted string is copied to clipboard) | `/input delete_next_word`
|
||||
| kbd:[Alt+d] | Delete next word in command line (deleted string is copied to the internal clipboard) | `/input delete_next_word`
|
||||
| kbd:[Alt+k] | Grab a key and insert its code (and command bound if key exists) in command line | `/input grab_key_command`
|
||||
| kbd:[Alt+r] | Delete entire command line | `/input delete_line`
|
||||
| kbd:[Alt+s] | Toggle aspell | `/mute aspell toggle`
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat_quickstart.es.adoc
|
||||
|
||||
if MAN
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.fr.adoc \
|
||||
cmdline_options.fr.adoc \
|
||||
weechat_user.fr.adoc \
|
||||
|
||||
@@ -438,7 +438,7 @@ liste des actions :
|
||||
delete_beginning_of_line : effacer du début de la ligne jusqu'au curseur
|
||||
delete_end_of_line : effacer du curseur jusqu'à la fin de la ligne
|
||||
delete_line : effacer la ligne entière
|
||||
clipboard_paste : coller depuis le presse-papiers
|
||||
clipboard_paste : coller depuis le presse-papiers interne
|
||||
transpose_chars : inverser deux caractères
|
||||
undo : défaire la dernière action de la ligne de commande
|
||||
redo : refaire la dernière action de la ligne de commande
|
||||
|
||||
@@ -703,7 +703,7 @@
|
||||
** valeurs: toute chaîne (valeur par défaut: `+"M"+`)
|
||||
|
||||
* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
|
||||
** description: pass:none[format de date/heure pour l'objet de barre "time" (voir man strftime pour le format de date/heure)]
|
||||
** description: pass:none[format de date/heure pour l'objet de barre "time" (voir man strftime pour le format de date/heure) (note : le contenu est évalué, donc vous pouvez utiliser des couleurs avec le format "${color:xxx}", voir /help eval)]
|
||||
** type: chaîne
|
||||
** valeurs: toute chaîne (valeur par défaut: `+"%H:%M"+`)
|
||||
|
||||
|
||||
@@ -198,6 +198,24 @@ Pour déplacer la barre en bas :
|
||||
/set weechat.bar.buffers.position bottom
|
||||
----
|
||||
|
||||
Pour faire défiler la barre : si la souris est activée (touche : kbd:[Alt+m]),
|
||||
vous pouvez faire défiler avec la roulette de votre souris.
|
||||
|
||||
Ou vous pouvez définir des touches, comme les touches déjà existantes pour faire
|
||||
défiler la liste de pseudos.
|
||||
Par exemple pour utiliser kbd:[F1], kbd:[F2], kbd:[Alt+F1] et kbd:[Alt+F2] :
|
||||
|
||||
----
|
||||
/key bind meta-OP /bar scroll buffers * -100%
|
||||
/key bind meta-OQ /bar scroll buffers * +100%
|
||||
/key bind meta-meta-OP /bar scroll buffers * b
|
||||
/key bind meta-meta-OQ /bar scroll buffers * e
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Les touches "meta-OP" et "meta-OQ" peuvent être différentes dans votre terminal.
|
||||
Pour trouver le code de la touche appuyez sur kbd:[Alt+k] puis la touche.
|
||||
|
||||
[[customize_prefix]]
|
||||
=== Comment puis-je réduire la longueur des pseudos ou supprimer l'alignement des pseudos dans la zone de discussion ?
|
||||
|
||||
@@ -470,8 +488,7 @@ Exemple :
|
||||
|
||||
[NOTE]
|
||||
Les touches "meta2-A" et "meta2-B" peuvent être différentes dans votre terminal.
|
||||
Pour trouver le code de la touche appuyez sur kbd:[Alt+k] puis la touche (haut
|
||||
ou bas).
|
||||
Pour trouver le code de la touche appuyez sur kbd:[Alt+k] puis la touche.
|
||||
|
||||
[[mouse]]
|
||||
== Souris
|
||||
@@ -817,6 +834,8 @@ celles-ci :
|
||||
* cacher la barre "nicklist" : `/bar hide nicklist`
|
||||
* supprimer l'affichage des secondes dans l'heure de la barre de statut :
|
||||
`/set weechat.look.item_time_format "%H:%M"` (ceci est la valeur par défaut)
|
||||
* désactiver la vérification en temps réel des mots mal orthographiés dans la
|
||||
ligne de commande (si vous l'avez activée) : `/set aspell.check.real_time off`
|
||||
* définir la variable _TZ_ (par exemple : `export TZ="Europe/Paris"`), pour
|
||||
éviter un accès fréquent au fichier _/etc/localtime_
|
||||
|
||||
|
||||
@@ -974,7 +974,7 @@ Exemple en C :
|
||||
|
||||
[source,C]
|
||||
----
|
||||
char *str = weechat_string_expand_home ("%h/test");
|
||||
char *str = weechat_string_eval_path_home ("%h/test", NULL, NULL, NULL);
|
||||
/* résultat : "/home/xxx/.weechat/test" */
|
||||
/* ... */
|
||||
free (str);
|
||||
@@ -988,7 +988,7 @@ Script (Python) :
|
||||
path = weechat.string_eval_path_home(path, pointers, extra_vars, options)
|
||||
|
||||
# exemple
|
||||
path = weechat.string_eval_path_home("%h/test", "", "", "")
|
||||
path = weechat.string_eval_path_home("%h/test", {}, {}, {})
|
||||
# path == "/home/xxx/.weechat/test"
|
||||
----
|
||||
|
||||
|
||||
@@ -1090,12 +1090,12 @@ commande `/buffer` :
|
||||
kbd:[Ctrl+d] | Effacer le caractère suivant sur la ligne de commande | `/input delete_next_char`
|
||||
| kbd:[Backsp.] +
|
||||
kbd:[Ctrl+h] | Effacer le caractère précédent sur la ligne de commande | `/input delete_previous_char`
|
||||
| kbd:[Ctrl+k] | Effacer du curseur jusqu'à la fin de la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+k] | Effacer du curseur jusqu'à la fin de la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers interne) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+r] | Chercher du texte dans l'historique du tampon (voir <<key_bindings_search_context,les touches pour le contexte de recherche>>) | `/input search_text_here`
|
||||
| kbd:[Ctrl+t] | Inverser deux caractères | `/input transpose_chars`
|
||||
| kbd:[Ctrl+u] | Effacer du curseur jusqu'au début de la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Effacer le mot précédent sur la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Coller le contenu du presse-papiers | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+u] | Effacer du curseur jusqu'au début de la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers interne) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Effacer le mot précédent sur la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers interne) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Coller le contenu du presse-papiers interne | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+_] | Défaire la dernière action sur la ligne de commande | `/input undo`
|
||||
| kbd:[Alt+_] | Refaire la dernière action sur la ligne de commande | `/input redo`
|
||||
| kbd:[Tab] | Compléter la commande ou le pseudo (kbd:[Tab] de nouveau : trouver la complétion suivante) | `/input complete_next`
|
||||
@@ -1107,7 +1107,7 @@ commande `/buffer` :
|
||||
| kbd:[↓] | Rappeler la commande suivante (en mode recherche : chercher plus bas) | `/input history_next`
|
||||
| kbd:[Ctrl+↑] | Rappeler la commande précédente dans l'historique global (commun à tous les tampons) | `/input history_global_previous`
|
||||
| kbd:[Ctrl+↓] | Rappeler la commande suivante dans l'historique global (commun à tous les tampons) | `/input history_global_next`
|
||||
| kbd:[Alt+d] | Effacer le mot suivant (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_next_word`
|
||||
| kbd:[Alt+d] | Effacer le mot suivant (la chaîne supprimée est copiée dans le presse-papiers interne) | `/input delete_next_word`
|
||||
| kbd:[Alt+k] | Capturer une touche et insérer son code (et la commande associée si la commande existe) sur la ligne de commande | `/input grab_key_command`
|
||||
| kbd:[Alt+r] | Effacer entièrement la ligne de commande | `/input delete_line`
|
||||
| kbd:[Alt+s] | Activer/désactiver aspell | `/mute aspell toggle`
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.it.adoc \
|
||||
cmdline_options.it.adoc \
|
||||
weechat_user.it.adoc \
|
||||
|
||||
@@ -438,7 +438,7 @@ list of actions:
|
||||
delete_beginning_of_line: delete from beginning of line until cursor
|
||||
delete_end_of_line: delete from cursor until end of line
|
||||
delete_line: delete entire line
|
||||
clipboard_paste: paste from clipboard
|
||||
clipboard_paste: paste from the internal clipboard
|
||||
transpose_chars: transpose two chars
|
||||
undo: undo last command line action
|
||||
redo: redo last command line action
|
||||
|
||||
@@ -703,7 +703,7 @@
|
||||
** valori: qualsiasi stringa (valore predefinito: `+"M"+`)
|
||||
|
||||
* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
|
||||
** descrizione: pass:none[formato dell'ora per l'elemento barra "time" (consultare man strftime per gli specificatori data/ora)]
|
||||
** descrizione: pass:none[time format for "time" bar item (see man strftime for date/time specifiers) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval)]
|
||||
** tipo: stringa
|
||||
** valori: qualsiasi stringa (valore predefinito: `+"%H:%M"+`)
|
||||
|
||||
|
||||
@@ -210,6 +210,25 @@ Per spostare la barra in basso:
|
||||
/set weechat.bar.buffers.position bottom
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
To scroll the bar: if mouse is enabled (key: kbd:[Alt+m]), you can scroll the
|
||||
bar with your mouse wheel.
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Or you can define keys, similar to the existing keys to scroll nicklist.
|
||||
For example to use kbd:[F1], kbd:[F2], kbd:[Alt+F1] and kbd:[Alt+F2]:
|
||||
|
||||
----
|
||||
/key bind meta-OP /bar scroll buffers * -100%
|
||||
/key bind meta-OQ /bar scroll buffers * +100%
|
||||
/key bind meta-meta-OP /bar scroll buffers * b
|
||||
/key bind meta-meta-OQ /bar scroll buffers * e
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
I tasti "meta-OP" e "meta-OQ" possono essere differenti nel proprio terminale.
|
||||
Per trovare il codice tasto digitare kbd:[Alt+k] poi il tast.
|
||||
|
||||
[[customize_prefix]]
|
||||
=== Come si può ridurre la lunghezza dei nick o rimuovere l'allineamento nella finestra di chat?
|
||||
|
||||
@@ -485,7 +504,7 @@ Esempio:
|
||||
|
||||
[NOTE]
|
||||
I tasti "meta2-A" e "meta2-B" possono essere differenti nel proprio terminale.
|
||||
Per trovare il codice tasto digitare kbd:[Alt+k] poi il tast (su o giù).
|
||||
Per trovare il codice tasto digitare kbd:[Alt+k] poi il tast.
|
||||
|
||||
[[mouse]]
|
||||
== Mouse
|
||||
@@ -834,6 +853,9 @@ You can follow same tips as for <<memory_usage,memory>>, and these ones:
|
||||
* hide "nicklist" bar: `/bar hide nicklist`
|
||||
* remove display of seconds in status bar time:
|
||||
`/set weechat.look.item_time_format "%H:%M"` (this is the default value)
|
||||
// TRANSLATION MISSING
|
||||
* disable real time check of misspelled words in command line (if you enabled it):
|
||||
`/set aspell.check.real_time off`
|
||||
* set the _TZ_ variable (for example: `export TZ="Europe/Paris"`), to prevent
|
||||
frequent access to file _/etc/localtime_
|
||||
|
||||
|
||||
@@ -1006,7 +1006,7 @@ Esempio in C:
|
||||
|
||||
[source,C]
|
||||
----
|
||||
char *str = weechat_string_expand_home ("%h/test");
|
||||
char *str = weechat_string_eval_path_home ("%h/test", NULL, NULL, NULL);
|
||||
/* result: "/home/xxx/.weechat/test" */
|
||||
/* ... */
|
||||
free (str);
|
||||
@@ -1020,7 +1020,7 @@ Script (Python):
|
||||
path = weechat.string_eval_path_home(path, pointers, extra_vars, options)
|
||||
|
||||
# esempio
|
||||
path = weechat.string_eval_path_home("%h/test", "", "", "")
|
||||
path = weechat.string_eval_path_home("%h/test", {}, {}, {})
|
||||
# path == "/home/xxx/.weechat/test"
|
||||
----
|
||||
|
||||
|
||||
@@ -1117,12 +1117,16 @@ Il livello di notifica per un buffer può essere impostato con il comando `/buff
|
||||
kbd:[Ctrl+d] | Elimina il carattere successivo nella riga di comando | `/input delete_next_char`
|
||||
| kbd:[Backsp.] +
|
||||
kbd:[Ctrl+h] | Elimina il carattere precedente nella riga di comando | `/input delete_previous_char`
|
||||
| kbd:[Ctrl+k] | Elimina dal cursore fino alla fine della riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_end_of_line`
|
||||
// TRANSLATION MISSING
|
||||
| kbd:[Ctrl+k] | Elimina dal cursore fino alla fine della riga di comando (deleted string is copied to the internal clipboard) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+r] | Cerca del testo nella cronologia del buffer (consultare <<key_bindings_search_context,tasti per il contesto search>>) | `/input search_text_here`
|
||||
| kbd:[Ctrl+t] | Inverti caratteri | `/input transpose_chars`
|
||||
| kbd:[Ctrl+u] | Elimina dal cursore fino all'inizio della riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Elimina la parola precedente nella riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Incolla il contenuto degli appunti | `/input clipboard_paste`
|
||||
// TRANSLATION MISSING
|
||||
| kbd:[Ctrl+u] | Elimina dal cursore fino all'inizio della riga di comando (deleted string is copied to the internal clipboard) | `/input delete_beginning_of_line`
|
||||
// TRANSLATION MISSING
|
||||
| kbd:[Ctrl+w] | Elimina la parola precedente nella riga di comando (deleted string is copied to the internal clipboard) | `/input delete_previous_word`
|
||||
// TRANSLATION MISSING
|
||||
| kbd:[Ctrl+y] | Paste the internal clipboard content | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+_] | Annulla l'ultima azione sulla riga di comando | `/input undo`
|
||||
| kbd:[Alt+_] | Ripete l'ultima azione sulla riga di comando | `/input redo`
|
||||
| kbd:[Tab] | Completa comando o nick (kbd:[Tab] di nuovo: trova prossimo completamento) | `/input complete_next`
|
||||
@@ -1134,7 +1138,8 @@ Il livello di notifica per un buffer può essere impostato con il comando `/buff
|
||||
| kbd:[↓] | Chiama comando/messaggio precedente (in modalità ricerca: cerca in basso) | `/input history_next`
|
||||
| kbd:[Ctrl+↑] | Chiama il comando/messaggio precedente nella cronologia globale (identico per tutti i buffer) | `/input history_global_previous`
|
||||
| kbd:[Ctrl+↓] | Chiama il comando/messaggio successivo nella cronologia globale (identico per tutti i buffer) | `/input history_global_next`
|
||||
| kbd:[Alt+d] | Elimina la parola successiva nella riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_next_word`
|
||||
// TRANSLATION MISSING
|
||||
| kbd:[Alt+d] | Elimina la parola successiva nella riga di comando (deleted string is copied to the internal clipboard) | `/input delete_next_word`
|
||||
| kbd:[Alt+k] | Cattura un tasto ed inserisce il suo codice (e il comando associato se il tasto esiste) nella riga di comando | `/input grab_key_command`
|
||||
| kbd:[Alt+r] | Elimina l'intera riga di comando | `/input delete_line`
|
||||
| kbd:[Alt+s] | Abilita/disabilita aspell | `/mute aspell toggle`
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.ja.adoc \
|
||||
cmdline_options.ja.adoc \
|
||||
weechat_user.ja.adoc \
|
||||
|
||||
@@ -438,7 +438,7 @@ value: 表示する履歴エントリの数
|
||||
delete_beginning_of_line: 行の最初からカーソル位置までを削除
|
||||
delete_end_of_line: カーソルから行の最後までを削除
|
||||
delete_line: 行を削除
|
||||
clipboard_paste: クリップボードからペースト
|
||||
clipboard_paste: WeeChat 専用の内部クリップボードの内容をペースト
|
||||
transpose_chars: 2 つの文字を入れ替え
|
||||
undo: 最新のコマンドラインアクションまで元に戻す
|
||||
redo: 最新のコマンドラインアクションまでやり直す
|
||||
@@ -949,54 +949,54 @@ command: 実行するコマンド (コマンドが '/' で始まらない場合
|
||||
zoom [-window <number>]
|
||||
bare [<delay>]
|
||||
|
||||
list: list opened windows (without argument, this list is displayed)
|
||||
-1: jump to previous window
|
||||
+1: jump to next window
|
||||
b#: jump to next window displaying buffer number #
|
||||
up: switch to window above current one
|
||||
down: switch to window below current one
|
||||
left: switch to window on the left
|
||||
right: switch to window on the right
|
||||
number: window number (see /window list)
|
||||
splith: split current window horizontally (to undo: /window merge)
|
||||
splitv: split current window vertically (to undo: /window merge)
|
||||
resize: resize window size, new size is <pct> percentage of parent window
|
||||
balance: balance the sizes of all windows
|
||||
merge: merge window with another (all = keep only one window)
|
||||
page_up: scroll one page up
|
||||
page_down: scroll one page down
|
||||
refresh: refresh screen
|
||||
scroll: scroll a number of lines (+/-N) or with time: s=seconds, m=minutes, h=hours, d=days, M=months, y=years
|
||||
scroll_horiz: scroll horizontally a number of columns (+/-N) or percentage of window size (this scrolling is possible only on buffers with free content)
|
||||
scroll_up: scroll a few lines up
|
||||
scroll_down: scroll a few lines down
|
||||
scroll_top: scroll to top of buffer
|
||||
scroll_bottom: scroll to bottom of buffer
|
||||
scroll_beyond_end: scroll beyond the end of buffer
|
||||
scroll_previous_highlight: scroll to previous highlight
|
||||
scroll_next_highlight: scroll to next highlight
|
||||
scroll_unread: scroll to unread marker
|
||||
swap: swap buffers of two windows (with optional direction for target window)
|
||||
zoom: zoom on window
|
||||
bare: toggle bare display (with optional delay in seconds for automatic return to standard display mode)
|
||||
list: 開けられたウィンドウのリストアップ (引数無しの場合、このリストが表示されます)
|
||||
-1: 前のウィンドウに移動
|
||||
+1: 次のウィンドウに移動
|
||||
b#: バッファ番号 # のウィンドウに移動
|
||||
up: 現在のウィンドウの上のウィンドウに移動
|
||||
down: 現在のウィンドウの下のウィンドウに移動
|
||||
left: 左のウィンドウに移動
|
||||
right: 右のウィンドウに移動
|
||||
number: ウィンドウ番号 (/window list を参照)
|
||||
splith: 現在のウィンドウを水平分割 (/window merge で元に戻る)
|
||||
splitv: 現在のウィンドウを垂直分割 (/window merge で元に戻る)
|
||||
resize: ウィンドウサイズの変更、新しいサイズは親ウィンドウの <pct> パーセントで指定
|
||||
balance: 全てのウィンドウのサイズを均等にする
|
||||
merge: ウィンドウを他のものをマージする (all = 一つのウィンドウにまとめる)
|
||||
page_up: 1 ページ分上方向にスクロール
|
||||
page_down: 1 ページ分下方向にスクロール
|
||||
refresh: 画面のリフレッシュ
|
||||
scroll: 指定行数 (+/-N) か指定期間 (s=秒、m=分、h=時間、d=日、M=月、y=年) スクロール
|
||||
scroll_horiz: 指定列数 (+/-N) かウィンドウサイズの割合で水平方向にスクロール (フリーコンテンツを含むバッファ以外は無効)
|
||||
scroll_up: 数行分上方向にスクロール
|
||||
scroll_down: 数行分下方向にスクロール
|
||||
scroll_top: バッファの一番上にスクロール
|
||||
scroll_bottom: バッファの一番下にスクロール
|
||||
scroll_beyond_end: バッファの末尾を越えてスクロール
|
||||
scroll_previous_highlight: 一つ前のハイライトにスクロール
|
||||
scroll_next_highlight: 次のハイライトにスクロール
|
||||
scroll_unread: 未読マーカにスクロール
|
||||
swap: 2 つのウィンドウのバッファを入れ替え (ターゲットウィンドウの方向を任意指定)
|
||||
zoom: ウィンドウを拡大
|
||||
bare: 最小限表示を切り替える (自動的に標準表示モードに戻るまでの時間を秒単位で任意指定)
|
||||
|
||||
For splith and splitv, pct is a percentage which represents size of new window, computed with current window as size reference. For example 25 means create a new window with size = current_size / 4
|
||||
splith と splitv に関しては、pct は新しいウィンドウのパーセンテージで、現在のウィンドウサイズに対する割合で計算されます。例えば 25 は size = current_size / 4 の新しいウィンドウを作成します。
|
||||
|
||||
Examples:
|
||||
jump to window displaying buffer #1:
|
||||
例:
|
||||
バッファ #1 を表示しているウィンドウに移動:
|
||||
/window b1
|
||||
scroll 2 lines up:
|
||||
2 行分上方向にスクロール:
|
||||
/window scroll -2
|
||||
scroll 2 days up:
|
||||
2 日分上方向にスクロール:
|
||||
/window scroll -2d
|
||||
scroll to beginning of current day:
|
||||
今日の最初にスクロール:
|
||||
/window scroll -d
|
||||
zoom on window #2:
|
||||
ウィンドウ #2 を拡大:
|
||||
/window zoom -window 2
|
||||
split window horizontally using 30%% of space for the window on top:
|
||||
ウィンドウを水平分割 (上側ウィンドウの縦幅は現在のウィンドウの縦幅の 30%%):
|
||||
/window splith 30
|
||||
remove the split:
|
||||
分割を元に戻す:
|
||||
/window merge
|
||||
enable bare display for 2 seconds:
|
||||
最小限表示を 2 秒間有効にする:
|
||||
/window bare 2
|
||||
----
|
||||
|
||||
@@ -703,7 +703,7 @@
|
||||
** 値: 未制約文字列 (デフォルト値: `+"M"+`)
|
||||
|
||||
* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
|
||||
** 説明: pass:none["time" バー要素の時間書式 (日付/時間指定子は strftime の man を参照)]
|
||||
** 説明: pass:none["time" バー要素の時間書式 (日付/時間指定子は strftime の man を参照) (注意: 値は評価されるため、"${color:xxx}" 書式を使えば色を指定することも出来ます、/help eval を参照)]
|
||||
** タイプ: 文字列
|
||||
** 値: 未制約文字列 (デフォルト値: `+"%H:%M"+`)
|
||||
|
||||
|
||||
@@ -195,6 +195,23 @@ _buffers.pl_ スクリプトを使ってください:
|
||||
/set weechat.bar.buffers.position bottom
|
||||
----
|
||||
|
||||
バーをスクロールするには: マウスが有効化されているならば
|
||||
(キー: kbd:[Alt+m])、マウスホイールでバーをスクロールできます。
|
||||
|
||||
スクロール機能を果たすキーが割り当てられているならば、それらを使ってスクロールすることも可能です。以下ではニックネームリストをスクロールする既存のキーに合わせて
|
||||
kbd:[F1]、kbd:[F2]、kbd:[Alt+F1]、kbd:[Alt+F2] を定義しています:
|
||||
|
||||
----
|
||||
/key bind meta-OP /bar scroll buffers * -100%
|
||||
/key bind meta-OQ /bar scroll buffers * +100%
|
||||
/key bind meta-meta-OP /bar scroll buffers * b
|
||||
/key bind meta-meta-OQ /bar scroll buffers * e
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
"meta-OP" と "meta-OQ" キーは端末によって異なります。キーコードを見つけるには
|
||||
kbd:[Alt+k] の後にキーを押してください。
|
||||
|
||||
[[customize_prefix]]
|
||||
=== どうすればチャットエリア内のニックネームの最大長さを短く、又はニックネーム整列機能を無効化できますか。
|
||||
|
||||
@@ -452,7 +469,7 @@ UXTerm*metaSendsEscape: true
|
||||
|
||||
[NOTE]
|
||||
"meta2-A" と "meta2-B" キーは端末によって異なります。キーコードを見つけるには
|
||||
kbd:[Alt+k] の後にキー (上矢印又は下矢印) を押してください。
|
||||
kbd:[Alt+k] の後にキー を押してください。
|
||||
|
||||
[[mouse]]
|
||||
== マウス
|
||||
@@ -783,6 +800,8 @@ OpenBSD では、プラグインファイル名の末尾が ".so.0.0" です (Li
|
||||
* "nicklist" バーを非表示にする: `/bar hide nicklist`
|
||||
* ステータスバー時間に秒の表示を止める:
|
||||
`/set weechat.look.item_time_format "%H:%M"` (これはデフォルト値です)
|
||||
* コマンドライン内の単語スペルミスのリアルタイムチェックを無効にする (有効にしていた場合):
|
||||
`/set aspell.check.real_time off`
|
||||
* _TZ_ 変数を設定する (例: `export TZ="Europe/Paris"`)、こうすることで
|
||||
_/etc/localtime_ ファイルへ頻繁にアクセスしないようになります。
|
||||
|
||||
|
||||
@@ -968,7 +968,7 @@ C 言語での使用例:
|
||||
|
||||
[source,C]
|
||||
----
|
||||
char *str = weechat_string_expand_home ("%h/test");
|
||||
char *str = weechat_string_eval_path_home ("%h/test", NULL, NULL, NULL);
|
||||
/* result: "/home/xxx/.weechat/test" */
|
||||
/* ... */
|
||||
free (str);
|
||||
@@ -982,7 +982,7 @@ free (str);
|
||||
path = weechat.string_eval_path_home(path, pointers, extra_vars, options)
|
||||
|
||||
# 例
|
||||
path = weechat.string_eval_path_home("%h/test", "", "", "")
|
||||
path = weechat.string_eval_path_home("%h/test", {}, {}, {})
|
||||
# path == "/home/xxx/.weechat/test"
|
||||
----
|
||||
|
||||
|
||||
@@ -304,8 +304,7 @@ _command_ オプションに複数のコマンドを含める場合は `;` (セ
|
||||
/window splitv 33
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
To remove the split:
|
||||
分割を元に戻す:
|
||||
|
||||
----
|
||||
/window merge
|
||||
|
||||
@@ -1064,12 +1064,12 @@ irc サーバ "freenode" に含まれる全てのバッファに対して設定
|
||||
kbd:[Ctrl+d] | コマンドラインで次の文字を削除 | `/input delete_next_char`
|
||||
| kbd:[Backsp.] +
|
||||
kbd:[Ctrl+h] | コマンドラインで前の文字を削除 | `/input delete_previous_char`
|
||||
| kbd:[Ctrl+k] | コマンドラインでカーソルより後の文字列を削除 (削除された文字列はクリップボードに保存) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+k] | コマンドラインでカーソルより後の文字列を削除 (削除された文字列は WeeChat 専用の内部クリップボードに保存) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+r] | バッファ中の履歴からテキスト検索 (<<key_bindings_search_context,検索モード用のキー>>を参照) | `/input search_text_here`
|
||||
| kbd:[Ctrl+t] | 文字の入れ替え | `/input transpose_chars`
|
||||
| kbd:[Ctrl+u] | コマンドラインでカーソルより前の文字列を削除 (削除された文字列はクリップボードに保存) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | コマンドラインで前の単語を削除 (削除された文字列はクリップボードに保存) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | クリップボードの内容をペースト | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+u] | コマンドラインでカーソルより前の文字列を削除 (削除された文字列は WeeChat 専用の内部クリップボードに保存) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | コマンドラインで前の単語を削除 (削除された文字列は WeeChat 専用の内部クリップボードに保存) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | WeeChat 専用の内部クリップボードの内容をペースト | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+_] | コマンドラインの最後の動作をやり直す | `/input undo`
|
||||
| kbd:[Alt+_] | コマンドラインの最後の動作を取り消す | `/input redo`
|
||||
| kbd:[Tab] | コマンドやニックネームを補完 (再度 kbd:[Tab] することで次の補完候補を表示) | `/input complete_next`
|
||||
@@ -1081,7 +1081,7 @@ irc サーバ "freenode" に含まれる全てのバッファに対して設定
|
||||
| kbd:[↓] | 次のコマンド/メッセージを呼び出す (検索モードの場合: 下方向に検索) | `/input history_next`
|
||||
| kbd:[Ctrl+↑] | グローバル履歴から前のコマンド/メッセージを呼び出す (すべてのバッファに対して共通の履歴) | `/input history_global_previous`
|
||||
| kbd:[Ctrl+↓] | グローバル履歴から次のコマンド/メッセージを呼び出す (すべてのバッファに対して共通の履歴) | `/input history_global_next`
|
||||
| kbd:[Alt+d] | コマンドラインで次の単語を削除 (削除された文字列はクリップボードに保存) | `/input delete_next_word`
|
||||
| kbd:[Alt+d] | コマンドラインで次の単語を削除 (削除された文字列は WeeChat 専用の内部クリップボードに保存) | `/input delete_next_word`
|
||||
| kbd:[Alt+k] | キー入力を奪って、コマンドラインにコード (キーが割り当てられていればコマンド) を入力 | `/input grab_key_command`
|
||||
| kbd:[Alt+r] | コマンドラインへの入力をすべて削除 | `/input delete_line`
|
||||
| kbd:[Alt+s] | aspell の有効無効を切り替え | `/mute aspell toggle`
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.pl.adoc \
|
||||
cmdline_options.pl.adoc \
|
||||
weechat_user.pl.adoc \
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
|
||||
| trigger | trigger_options | opcje dla triggerów
|
||||
|
||||
| trigger | trigger_post_action | trigger post actions
|
||||
| trigger | trigger_post_action | triggeruje akcje końcowe
|
||||
|
||||
| weechat | bars_names | nazwy pasków
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
:hdata_update_delete: __delete
|
||||
[width="100%",cols="^1,^2,2,2,5",options="header"]
|
||||
|===
|
||||
| Wtyczka | Nazwa | Opis | Lists | Variables
|
||||
| Wtyczka | Nazwa | Opis | Listy | Zmienne
|
||||
|
||||
| guile
|
||||
| [[hdata_guile_script]]<<hdata_guile_script,guile_script>>
|
||||
@@ -694,7 +694,7 @@ _last_gui_history_ +
|
||||
_next_history_ (pointer, hdata: "history") +
|
||||
_prev_history_ (pointer, hdata: "history") +
|
||||
|
||||
*Update allowed:* +
|
||||
*Aktualizacja dozwolona:* +
|
||||
_{hdata_update_create}_ +
|
||||
_{hdata_update_delete}_ +
|
||||
|
||||
@@ -822,7 +822,7 @@ _prefix_ (shared_string) +
|
||||
_prefix_length_ (integer) +
|
||||
_message_ (string) +
|
||||
|
||||
*Update allowed:* +
|
||||
*Aktualizacja dozwolona:* +
|
||||
_date_ (time) +
|
||||
_date_printed_ (time) +
|
||||
_tags_array_ (shared_string) +
|
||||
|
||||
@@ -513,17 +513,17 @@
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+""+`)
|
||||
|
||||
* [[option_irc.server_default.msg_kick]] *irc.server_default.msg_kick*
|
||||
** opis: pass:none[default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their value)]
|
||||
** opis: pass:none[domyślna wiadomość dla wykopania z kanału używana przez komendy "/kick" i "/kickban" (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości)]
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+""+`)
|
||||
|
||||
* [[option_irc.server_default.msg_part]] *irc.server_default.msg_part*
|
||||
** opis: pass:none[default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their value; "%v" is replaced by WeeChat version if there is no ${...} in string)]
|
||||
** opis: pass:none[domyślna wiadomość przy wyjściu z kanału (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości); "%v" jest zamieniane na wersję WeeChat jeśli w ciągu nie ma ${...})]
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+"WeeChat ${info:version}"+`)
|
||||
|
||||
* [[option_irc.server_default.msg_quit]] *irc.server_default.msg_quit*
|
||||
** opis: pass:none[default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their value; "%v" is replaced by WeeChat version if there is no ${...} in string)]
|
||||
** opis: pass:none[domyślna wiadomość przy odłączeniu od serwera (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości); "%v" jest zamieniane na wersję WeeChat jeśli w ciągu nie ma ${...})]
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+"WeeChat ${info:version}"+`)
|
||||
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
** wartości: 0 .. 65535 (domyślna wartość: `+256+`)
|
||||
|
||||
* [[option_relay.network.allow_empty_password]] *relay.network.allow_empty_password*
|
||||
** opis: pass:none[allow empty password in relay (it should be enabled only for tests or local network)]
|
||||
** opis: pass:none[zezwala na puste haslo dla pośrednika (zaleca się włączać tylko dla testów albo dla sieci lokalnej)]
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `+off+`)
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
** wartości: 0 .. 2147483647 (domyślna wartość: `+5+`)
|
||||
|
||||
* [[option_relay.network.password]] *relay.network.password*
|
||||
** opis: pass:none[password required by clients to access this relay (empty value means no password required, see option relay.network.allow_empty_password) (note: content is evaluated, see /help eval)]
|
||||
** opis: pass:none[hasło wymagane od klientów do połączenia z tym pośrednikiem (pusta wartość oznacza brak hasła, zobacz opcję relay.network.allow_empty_password) (uwaga: zawartość jest przetwarzana, zobacz /help eval)]
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+""+`)
|
||||
|
||||
|
||||
@@ -7,79 +7,79 @@
|
||||
|
||||
----
|
||||
/trigger list|listfull|listdefault
|
||||
add|addoff|addreplace <name> <hook> ["<arguments>" ["<conditions>" ["<regex>" ["<command>" ["<return_code>" ["<post_action>"]]]]]]
|
||||
add|addoff|addreplace <nazwa> <hook> ["<argumenty>" ["<warunki>" ["<regex>" ["<komenda>" ["<zwracany_kod>" ["<post_action>"]]]]]]
|
||||
addinput [<hook>]
|
||||
input|output|recreate <name>
|
||||
set <name> <option> <value>
|
||||
rename|copy <name> <new_name>
|
||||
enable|disable|toggle [<name>|-all [<name>...]]
|
||||
restart <name>|-all [<name>...]
|
||||
show <name>
|
||||
del <name>|-all [<name>...]
|
||||
restore <name> [<name>...]
|
||||
input|output|recreate <nazwa>
|
||||
set <nazwa> <opcja> <wartość>
|
||||
rename|copy <nazwa> <nowa_nazwa>
|
||||
enable|disable|toggle [<nazwa>|-all [<nazwa>...]]
|
||||
restart <nazwa>|-all [<nazwa>...]
|
||||
show <nazwa>
|
||||
del <nazwa>|-all [<nazwa>...]
|
||||
restore <nazwa> [<nazwa>...]
|
||||
default -yes
|
||||
monitor [<filter>]
|
||||
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
|
||||
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
|
||||
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)
|
||||
post_action: action to take after execution (none (default), disable, delete)
|
||||
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
|
||||
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)
|
||||
post_action: akcja do wykonania po zakończeniu (none (domylślne), disable, delete)
|
||||
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)
|
||||
5. perform post action
|
||||
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)
|
||||
5. wykonanie akcji kończącej
|
||||
|
||||
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,7 +13,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_trigger.color.flag_post_action]] *trigger.color.flag_post_action*
|
||||
** opis: pass:none[text color for post action flag (in /trigger list)]
|
||||
** opis: pass:none[kolor tekstu dla flagi końca akcji (w /trigger list)]
|
||||
** 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ść: `+lightblue+`)
|
||||
|
||||
|
||||
@@ -69,75 +69,75 @@ Przykłady:
|
||||
|
||||
----
|
||||
/buffer list
|
||||
clear [<number>|<name>|-merged|-all [<number>|<name>...]]
|
||||
move <number>|-|+
|
||||
swap <number1>|<name1> [<number2>|<name2>]
|
||||
cycle <number>|<name> [<number>|<name>...]]
|
||||
merge <number>
|
||||
unmerge [<number>|-all]
|
||||
hide [<number>|<name>|-all [<number>|<name>...]]
|
||||
unhide [<number>|<name>|-all [<number>|<name>...]]
|
||||
renumber [<number1> [<number2> [<start>]]]
|
||||
close [<n1>[-<n2>]|<name>]
|
||||
notify <level>
|
||||
clear [<numer>|<nazwa>|-merged|-all [<numer>|<nazwa>...]]
|
||||
move <numer>|-|+
|
||||
swap <numer1>|<nazwa1> [<numer2>|<nazwa2>]
|
||||
cycle <numer>|<nazwa> [<numer>|<nazwa>...]]
|
||||
merge <numer>
|
||||
unmerge [<numer>|-all]
|
||||
hide [<numer>|<nazwa>|-all [<numer>|<nazwa>...]]
|
||||
unhide [<numer>|<nazwa>|-all [<numer>|<nazwa>...]]
|
||||
renumber [<numer1> [<numer2> [<start>]]]
|
||||
close [<n1>[-<n2>]|<nazwa>]
|
||||
notify <poziom>
|
||||
localvar
|
||||
set <property> <value>
|
||||
get <property>
|
||||
<number>|-|+|<name>
|
||||
set <opcja> <wartość>
|
||||
get <opcja>
|
||||
<numer>|-|+|<nazwa>
|
||||
|
||||
list: list buffers (without argument, this list is displayed)
|
||||
clear: clear buffer content (number for a buffer, -merged for merged buffers, -all for all buffers, or nothing for current buffer)
|
||||
move: move buffer in the list (may be relative, for example -1); "-" = move to first buffer number, "+" = move to last buffer number + 1
|
||||
swap: swap two buffers (swap with current buffer if only one number/name given)
|
||||
cycle: jump loop between a list of buffers
|
||||
merge: merge current buffer to another buffer (chat area will be mix of both buffers)
|
||||
(by default ctrl-x switches between merged buffers)
|
||||
unmerge: unmerge buffer from other buffers which have same number
|
||||
hide: hide the buffer
|
||||
unhide: unhide the buffer
|
||||
renumber: renumber buffers (works only if option weechat.look.buffer_auto_renumber is off)
|
||||
close: close buffer (number/range or name is optional)
|
||||
notify: set notify level for current buffer: this level determines whether buffer will be added to hotlist or not:
|
||||
none: never
|
||||
highlight: for highlights only
|
||||
message: for messages from users + highlights
|
||||
all: all messages
|
||||
reset: reset to default value (all)
|
||||
localvar: display local variables for current buffer
|
||||
set: set a property for current buffer
|
||||
get: display a property of current buffer
|
||||
number: jump to buffer by number, possible prefix:
|
||||
'+': relative jump, add number to current
|
||||
'-': relative jump, sub number to current
|
||||
'*': jump to number, using option "weechat.look.jump_current_to_previous_buffer"
|
||||
-: jump to first buffer number
|
||||
+: jump to last buffer number
|
||||
name: jump to buffer by (partial) name
|
||||
list: wyświetla listę buforów (bez podania argumenty wyświetlana jest ta lista)
|
||||
clear: czyści zawartość bufora (numer bufora, -merged dla połączonych buforów, -all dla wszystkich buforów, lub nic dla obecnego bufora)
|
||||
move: przesuwa bufor na liście (może być względne, np -1); "-" = przesuwa na pierwszy numer, "+" = przesuwa na ostatni numer bufora +1
|
||||
swap: zamienia miejscami dwa bufory (zamienia z obecnym buforem, jeśli podano tylko jeden numer/nazwę)
|
||||
cycle: przełącza w pętli między listą buforów
|
||||
merge: łączy obecny bufor z innym (obszar rozmowy zostanie pomieszany między oba bufory)
|
||||
(domyślnie ctrl-x przełącza pomiędzy połączonymi buforami)
|
||||
unmerge: odłącza bufor od innych mających taki sam numer
|
||||
hide: ukrywa bufor
|
||||
unhide: przywraca ukryty bufor
|
||||
renumber: zmienia numer bufora (działa tylko, jeśli opcja weechat.look.buffer_auto_renumber jest wyłączona)
|
||||
close: zamyka bufor (numer/przedział są opcjonalne)
|
||||
notify: ustawia poziom powiadomień dla obecnego bufora: ten poziom określa czy bufor zostanie dodany do hotlisty czy nie:
|
||||
none: nigdy
|
||||
highlight: tylko dla higlightów
|
||||
message: wiadomości od użytkowników + highlighty
|
||||
all: wszystkie wiadomości
|
||||
reset: przywraca wartości domyślne (all)
|
||||
localvar: wyświetla zmienne lokalne obecnego bufora
|
||||
set: ustawia właściwość obecnego bufora
|
||||
get: wyświetla właściwości obecnego bufora
|
||||
numer: przechodzi do bufora o numerze, dostępne prefiksy:
|
||||
'+': przejście względne, dodaje numer do obecnego
|
||||
'-': przejście względne, odejmuje numer od obecnego
|
||||
'*': przejście do numeru, używając opcji "weechat.look.jump_current_to_previous_buffer"
|
||||
-: przejście do pierwszego bufora
|
||||
+: przejście do ostatniego bufora
|
||||
nazwa: przejście do bufora o (częściowej) nazwie
|
||||
|
||||
Examples:
|
||||
clear current buffer:
|
||||
Przykłady:
|
||||
czyści zawartość obecnego bufora:
|
||||
/buffer clear
|
||||
move buffer to number 5:
|
||||
przenosi bufor na numer 5:
|
||||
/buffer move 5
|
||||
swap buffer 1 with 3:
|
||||
zamienia bufor 1 z 3:
|
||||
/buffer swap 1 3
|
||||
swap buffer #weechat with current buffer:
|
||||
zamienia bufor #weechat z obecnym buforem:
|
||||
/buffer swap #weechat
|
||||
jump on #chan1, #chan2, #chan3 and loop:
|
||||
przełączajw pętli między #chan1, #chan2, #chan3:
|
||||
/buffer cycle #chan1 #chan2 #chan3
|
||||
merge with core buffer:
|
||||
łączy z głównym buforem:
|
||||
/buffer merge 1
|
||||
unmerge buffer:
|
||||
odłącza bufory:
|
||||
/buffer unmerge
|
||||
close current buffer:
|
||||
zamyka obecny bufor:
|
||||
/buffer close
|
||||
close buffers 5 to 7:
|
||||
zamyka bufory od 5 do 7:
|
||||
/buffer close 5-7
|
||||
jump to #weechat:
|
||||
przechodzi do #weechat:
|
||||
/buffer #weechat
|
||||
jump to next buffer:
|
||||
przechodzi do następnego bufora:
|
||||
/buffer +1
|
||||
jump to last buffer number:
|
||||
przechodzi do ostatniego bufora:
|
||||
/buffer +
|
||||
----
|
||||
|
||||
@@ -418,60 +418,60 @@ Wartość: ilość elementów historii do pokazania
|
||||
----
|
||||
/input <akcja> [<argumenty>]
|
||||
|
||||
list of actions:
|
||||
return: simulate key "enter"
|
||||
complete_next: complete word with next completion
|
||||
complete_previous: complete word with previous completion
|
||||
search_text_here: search text in buffer at current position
|
||||
search_text: search text in buffer
|
||||
search_switch_case: switch exact case for search
|
||||
search_switch_regex: switch search type: string/regular expression
|
||||
search_switch_where: switch search in messages/prefixes
|
||||
search_previous: search previous line
|
||||
search_next: search next line
|
||||
search_stop_here: stop search at current position
|
||||
search_stop: stop search
|
||||
delete_previous_char: delete previous char
|
||||
delete_next_char: delete next char
|
||||
delete_previous_word: delete previous word
|
||||
delete_next_word: delete next word
|
||||
delete_beginning_of_line: delete from beginning of line until cursor
|
||||
delete_end_of_line: delete from cursor until end of line
|
||||
delete_line: delete entire line
|
||||
clipboard_paste: paste from clipboard
|
||||
transpose_chars: transpose two chars
|
||||
undo: undo last command line action
|
||||
redo: redo last command line action
|
||||
move_beginning_of_line: move cursor to beginning of line
|
||||
move_end_of_line: move cursor to end of line
|
||||
move_previous_char: move cursor to previous char
|
||||
move_next_char: move cursor to next char
|
||||
move_previous_word: move cursor to previous word
|
||||
move_next_word: move cursor to next word
|
||||
history_previous: recall previous command in current buffer history
|
||||
history_next: recall next command in current buffer history
|
||||
history_global_previous: recall previous command in global history
|
||||
history_global_next: recall next command in global history
|
||||
jump_smart: jump to next buffer with activity
|
||||
jump_last_buffer_displayed: jump to last buffer displayed (before last jump to a buffer)
|
||||
jump_previously_visited_buffer: jump to previously visited buffer
|
||||
jump_next_visited_buffer: jump to next visited buffer
|
||||
hotlist_clear: clear hotlist (optional argument: "lowest" to clear only lowest level in hotlist, "highest" to clear only highest level in hotlist, or level mask: integer which is a combination of 1=join/part, 2=message, 4=private, 8=highlight)
|
||||
grab_key: grab a key (optional argument: delay for end of grab, default is 500 milliseconds)
|
||||
grab_key_command: grab a key with its associated command (optional argument: delay for end of grab, default is 500 milliseconds)
|
||||
grab_mouse: grab mouse event code
|
||||
grab_mouse_area: grab mouse event code with area
|
||||
set_unread: set unread marker for all buffers
|
||||
set_unread_current_buffer: set unread marker for current buffer
|
||||
switch_active_buffer: switch to next merged buffer
|
||||
switch_active_buffer_previous: switch to previous merged buffer
|
||||
zoom_merged_buffer: zoom on merged buffer
|
||||
insert: insert text in command line (escaped chars are allowed, see /help print)
|
||||
send: send text to the buffer
|
||||
paste_start: start paste (bracketed paste mode)
|
||||
paste_stop: stop paste (bracketed paste mode)
|
||||
lista akcji:
|
||||
return: symuluje klawisz "enter"
|
||||
complete_next: dopełnia słowo następnym dopełnieniem
|
||||
complete_previous: dopełnia słowo poprzednim dopełnieniem
|
||||
search_text_here: szuka testu w obecnej pozycji w buforze
|
||||
search_text: szuka tekstu w buforze
|
||||
search_switch_case: przełącza na dokładne dopasowanie przy szukaniu
|
||||
search_switch_regex: przełącza typy wyszukiwania ciąg/wyrażenie regularne
|
||||
search_switch_where: zmienia miejsce przeszukiwania na wiadomości/przedrostki
|
||||
search_previous: szuka poprzednich linii
|
||||
search_next: szuka następnych linii
|
||||
search_stop_here: zatrzymuje wyszukiwanie na obecnej pozycji
|
||||
search_stop: zatrzymuje wyszukiwanie
|
||||
delete_previous_char: usuwa poprzedni znak
|
||||
delete_next_char: usuwa następny znak
|
||||
delete_previous_word: usuwa poprzednie słowo
|
||||
delete_next_word: usuwa następne słowo
|
||||
delete_beginning_of_line: usuwa od początku linii do kursora
|
||||
delete_end_of_line: usuwa od kursora do końca linii
|
||||
delete_line: usuwa cała linię
|
||||
clipboard_paste: wkleja ze schowka
|
||||
transpose_chars: zamienia dwa znaki
|
||||
undo: cofa ostatnia akcję w linii poleceń
|
||||
redo: ponownie wykonuje cofniętą akcję w linii poleceń
|
||||
move_beginning_of_line: przesuwa kursor na początek linii
|
||||
move_end_of_line: przesuwa kursor na koniec linii
|
||||
move_previous_char: przesuwa kursor do poprzedniego znaku
|
||||
move_next_char: przesuwa kursor do następnego znaku
|
||||
move_previous_word: przesuwa kursor do poprzedniego słowa
|
||||
move_next_word: przesuwa kursor do następnego słowa
|
||||
history_previous: przywołuje poprzednia komendę z historii obecnego bufora
|
||||
history_next: przywołuje następną komendę z historii obecnego bufora
|
||||
history_global_previous: przywołuje poprzednią komendę z globalnej historii
|
||||
history_global_next: przywołuje następną komendę z globalnej historii
|
||||
jump_smart: przechodzi do następnego bufora z aktywnością
|
||||
jump_last_buffer_displayed: przechodzi do ostatnio wyświetlanego bufora (przed ostatnim przeskoczeniem do bufora)
|
||||
jump_previously_visited_buffer: przeskakuje do poprzedniego bufora
|
||||
jump_next_visited_buffer: przeskakuje to następnego bufora
|
||||
hotlist_clear: czyści hotlistę (opcjonaly argument: "lowest" czyści najniższy poziom na hotliście, "highest" czyści najwyższy poziom na hotliście, albo maska poziomu: liczba będąca kombinacją 1=join/part, 2=wiadomość, 4=prywatny, 8=podświetlenie)
|
||||
grab_key: przechwytuje klawisz (opcjonalny argument: opóźnienie końca przechwycenia, domyślnie jest to 500 milisekund)
|
||||
grab_key_command: przechwytuje klawisz z przypisaną komendą (opcjonalny argument: opóźnienie końca przechwycenia, domyślnie jest to 500 milisekund)
|
||||
grab_mouse: przechwytuje kod zdarzenia myszy
|
||||
grab_mouse_area: przechwytuje kod zdarzenia myszy z obszarem
|
||||
set_unread: ustawia znacznik nie przeczytania dla wszystkich buforów
|
||||
set_unread_current_buffer: ustawia znacznik nie przeczytania dla obecnego bufora
|
||||
switch_active_buffer: przełącza do następnego połączonego buforu
|
||||
switch_active_buffer_previous: przełącza do poprzedniego połączonego buforu
|
||||
zoom_merged_buffer: zoom na połączony bufor
|
||||
insert: wkleja tekst do linii poleceń (dozwolone są wyescapowane znaki, zobacz /help print)
|
||||
send: wysyła tekst do bufora
|
||||
paste_start: zaczyna wklejanie (tryb z rozpoznawaniem wklejanego tekstu)
|
||||
paste_stop: kończy wklejanie (tryb z rozpoznawaniem wklejanego tekstu)
|
||||
|
||||
This command is used by key bindings or plugins.
|
||||
Ta komenda jest używana do przypisywania klawiszy lub przez wtyczki.
|
||||
----
|
||||
|
||||
[[command_weechat_key]]
|
||||
@@ -761,38 +761,38 @@ Domyślnie zapisywane na dysku są wszystkie pliki konfiguracyjne podczas wykony
|
||||
set <nazwa> <wartość>
|
||||
del <nazwa>
|
||||
|
||||
passphrase: change the passphrase (without passphrase, data is stored as plain text in file sec.conf)
|
||||
-delete: delete passphrase
|
||||
decrypt: decrypt data still encrypted (it happens only if passphrase was not given on startup)
|
||||
-discard: discard all data still encrypted
|
||||
set: add or change secured data
|
||||
del: delete secured data
|
||||
passphrase: zmienia hasło (bez hasła dane są przechowywane w postaci tekstu w pliku sec.conf)
|
||||
-delete: kasuje hasło
|
||||
decrypt: rozszyfrowuje dane będące ciągle zaszyfrowane (zdarza się to tylko jeśli hasło nie zostało podane przy uruchomieniu)
|
||||
-discard: odrzuca wszystkie nadal zaszyfrowane dane
|
||||
set: dodaje lub zmienia zaszyfrowane dane
|
||||
del: kasuje zaszyfrowane dane
|
||||
|
||||
Without argument, this command displays secured data in a new buffer.
|
||||
Bez argumentu, komenda wyświetli zabezpieczone dane w nowym buforze.
|
||||
|
||||
Keys on secure buffer:
|
||||
alt+v toggle values
|
||||
Kombinacje klawiszy w bezpiecznym buforze:
|
||||
alt+v przełącza wartości
|
||||
|
||||
When a passphrase is used (data encrypted), it is asked by WeeChat on startup.
|
||||
It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade).
|
||||
Jeśli używane jest hasło (dane zaszyfrowane), należy je podać podczas startu WeeChat.
|
||||
Jest możliwe ustawienie zmiennej środowiskowej "WEECHAT_PASSPHRASE", aby nie podawać hasła przy uruchomieniu (ta sama zmienna jest używana przez WeeChat podczas wykonywania /upgrade).
|
||||
|
||||
Secured data with format ${sec.data.xxx} can be used in:
|
||||
- command /eval
|
||||
- command line argument "--run-command"
|
||||
- options weechat.startup.command_{before|after}_plugins
|
||||
- other options that may contain a password or sensitive data (for example proxy, irc server and relay); see /help on the options to check if they are evaluated.
|
||||
Zabezpieczone dane w formacie ${sec.data.xxx} można użyć w:
|
||||
- komendzie /eval
|
||||
- argumencie w linii poleceń "--run-command"
|
||||
- opcjach weechat.startup.command_{before|after}_plugins
|
||||
- innych opcjach, które mogą zawierać hasło lub wrażliwe dane (na przykład proxy, serwer irc i relay); zobacz /help na opcjach żeby sprawdzić czy są przetwarzane.
|
||||
|
||||
Examples:
|
||||
set a passphrase:
|
||||
/secure passphrase this is my passphrase
|
||||
encrypt freenode SASL password:
|
||||
/secure set freenode mypassword
|
||||
Przykłady:
|
||||
ustawienie hasła:
|
||||
/secure passphrase to jest moje hasło
|
||||
zaszyfrowanie hasła dla freenode SASL:
|
||||
/secure set freenode mojehasło
|
||||
/set irc.server.freenode.sasl_password "${sec.data.freenode}"
|
||||
encrypt oftc password for nickserv:
|
||||
/secure set oftc mypassword
|
||||
zaszyfrowanie hasła dla nickserva na serwerze oftc:
|
||||
/secure set oftc mojehasło
|
||||
/set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}"
|
||||
alias to ghost the nick "mynick":
|
||||
/alias add ghost /eval /msg -server freenode nickserv ghost mynick ${sec.data.freenode}
|
||||
alias dla polecenia ghost dla nicka "mójnick":
|
||||
/alias ghost /eval /msg -server freenode nickserv ghost mójnick ${sec.data.freenode}
|
||||
----
|
||||
|
||||
[[command_weechat_set]]
|
||||
@@ -949,54 +949,54 @@ Przykłady:
|
||||
zoom[-window <numer>]
|
||||
bare [<opóźnienie>]
|
||||
|
||||
list: list opened windows (without argument, this list is displayed)
|
||||
-1: jump to previous window
|
||||
+1: jump to next window
|
||||
b#: jump to next window displaying buffer number #
|
||||
up: switch to window above current one
|
||||
down: switch to window below current one
|
||||
left: switch to window on the left
|
||||
right: switch to window on the right
|
||||
number: window number (see /window list)
|
||||
splith: split current window horizontally (to undo: /window merge)
|
||||
splitv: split current window vertically (to undo: /window merge)
|
||||
resize: resize window size, new size is <pct> percentage of parent window
|
||||
balance: balance the sizes of all windows
|
||||
merge: merge window with another (all = keep only one window)
|
||||
page_up: scroll one page up
|
||||
page_down: scroll one page down
|
||||
refresh: refresh screen
|
||||
scroll: scroll a number of lines (+/-N) or with time: s=seconds, m=minutes, h=hours, d=days, M=months, y=years
|
||||
scroll_horiz: scroll horizontally a number of columns (+/-N) or percentage of window size (this scrolling is possible only on buffers with free content)
|
||||
scroll_up: scroll a few lines up
|
||||
scroll_down: scroll a few lines down
|
||||
scroll_top: scroll to top of buffer
|
||||
scroll_bottom: scroll to bottom of buffer
|
||||
scroll_beyond_end: scroll beyond the end of buffer
|
||||
scroll_previous_highlight: scroll to previous highlight
|
||||
scroll_next_highlight: scroll to next highlight
|
||||
scroll_unread: scroll to unread marker
|
||||
swap: swap buffers of two windows (with optional direction for target window)
|
||||
zoom: zoom on window
|
||||
bare: toggle bare display (with optional delay in seconds for automatic return to standard display mode)
|
||||
list: lista otwartych okien (bez argumentu wyświetlana jest ta lista)
|
||||
-1: skok do poprzedniego okna
|
||||
+1: skok do następnego okna
|
||||
b#: skok do następnego okna pokazującego bufor o numerze #
|
||||
up: przełączenie na okno ponad obecnym
|
||||
down: przełączenie na okno pod obecnym
|
||||
left: przełączenie na okno po lewej
|
||||
right: przełączenie na okno po prawej
|
||||
numer: okno numer (zobacz /window list)
|
||||
splith: dzieli obecne okno poziomo
|
||||
splitv: dzieli obecne okno pionowo
|
||||
resize: zmienia rozmiar okna, nowy rozmiar to <pct> procent okna nadrzędnego
|
||||
balance: balansuje rozmiary pomiędzy oknami
|
||||
merge: łączy okno z innym (all = posiadanie tylko jednego okna)
|
||||
page_up: przewija stronę do góry
|
||||
page_down: przewija stronę w dół
|
||||
refresh: odświeża ekran
|
||||
scroll: przewija ilość linii (+/-N) lub o czas: s=sekundy, m=minuty, h=godziny, d=dni, M=miesiące, y=lata
|
||||
scroll_horiz: przewija poziomo ilość kolumn (+/-N) lub procent rozmiaru okna (takie przewijanie jest możliwe tylko w buforach z wolną zawartością)
|
||||
scroll_up: przewija kilka linii w gorę
|
||||
scroll_down: przewija kilka linii w dół
|
||||
scroll_top: przewija na samą górę bufora
|
||||
scroll_bottom: przewija na spód bufora
|
||||
scroll_beyond_end: przewija poza koniec bufora
|
||||
scroll_previous_highlight: przewija do poprzedniego highlighta
|
||||
scroll_next_highlight: przewija do następnego highlighta
|
||||
scroll_unread: przewija do znacznika nie przeczytania
|
||||
swap: zamienia bufory między dwoma oknami (z opcjonalnym kierunkiem dla docelowego okna)
|
||||
zoom: powiększa okno
|
||||
bare: przełącza niesformatowane wysiwetlanie (z opcjonalnym czasem, po jakim nastąpi automatyczny powrót do standardowego trybu)
|
||||
|
||||
For splith and splitv, pct is a percentage which represents size of new window, computed with current window as size reference. For example 25 means create a new window with size = current_size / 4
|
||||
Dla splith i splitv, pct oznacza procent reprezentujący rozmiar nowego okna, porównany z obecnym oknem jako odniesieniem. Na przykład 25 oznacza utworzenie nowego okna o rozmiarze = obecny_rozmiar / 4
|
||||
|
||||
Examples:
|
||||
jump to window displaying buffer #1:
|
||||
Przykłady:
|
||||
skok do okna wyświetlającego bufor #1:
|
||||
/window b1
|
||||
scroll 2 lines up:
|
||||
przewiń 2 linie do góry:
|
||||
/window scroll -2
|
||||
scroll 2 days up:
|
||||
przewiń 2 dni do góry:
|
||||
/window scroll -2d
|
||||
scroll to beginning of current day:
|
||||
przewiń do początku obecnego dnia:
|
||||
/window scroll -d
|
||||
zoom on window #2:
|
||||
powiększ okno 2 #2:
|
||||
/window zoom -window 2
|
||||
split window horizontally using 30%% of space for the window on top:
|
||||
podziel okno poziomo dając 30%% miejsca oknu na górze:
|
||||
/window splith 30
|
||||
remove the split:
|
||||
usuń podział:
|
||||
/window merge
|
||||
enable bare display for 2 seconds:
|
||||
włączenie trybu niesformatowanego na 2 sekundy:
|
||||
/window bare 2
|
||||
----
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
// DO NOT EDIT BY HAND!
|
||||
//
|
||||
* [[option_weechat.color.bar_more]] *weechat.color.bar_more*
|
||||
** opis: pass:none[text color for "+" when scrolling bars]
|
||||
** opis: pass:none[kolor tekstu dla "+" przy przewijaniu pasków]
|
||||
** 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ść: `+lightmagenta+`)
|
||||
|
||||
@@ -133,7 +133,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ść: `+lightgreen+`)
|
||||
|
||||
* [[option_weechat.color.chat_prefix_more]] *weechat.color.chat_prefix_more*
|
||||
** opis: pass:none[text color for "+" when prefix is too long]
|
||||
** opis: pass:none[kolor tekstu dla "+" dla za długich przedrostków]
|
||||
** 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ść: `+lightmagenta+`)
|
||||
|
||||
@@ -328,7 +328,7 @@
|
||||
** wartości: on, off (domyślna wartość: `+on+`)
|
||||
|
||||
* [[option_weechat.completion.command_inline]] *weechat.completion.command_inline*
|
||||
** opis: pass:none[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: pass:none[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+`)
|
||||
|
||||
@@ -643,7 +643,7 @@
|
||||
** wartości: buffer, merged (domyślna wartość: `+merged+`)
|
||||
|
||||
* [[option_weechat.look.hotlist_short_names]] *weechat.look.hotlist_short_names*
|
||||
** opis: pass:none[if set, uses short names to display buffer names in hotlist (start after first "." in name)]
|
||||
** opis: pass:none[jeśli ustawione, używa krótkich nazw do wyświetlania nazw buforów w hotliście (zaczyna po pierwszym wystąpieniu '.' w nazwie)]
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `+on+`)
|
||||
|
||||
@@ -703,7 +703,7 @@
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+"M"+`)
|
||||
|
||||
* [[option_weechat.look.item_time_format]] *weechat.look.item_time_format*
|
||||
** opis: pass:none[format czasu dla elementu paska "time" (zobacz man strftime dla specyfikatorów daty/czasu)]
|
||||
** opis: pass:none[format czasu dla elementu paska "time" (listę dostępnych specyfikatorów daty/czasu można znaleźć w man strftime) (uwaga: zawartość jest przetwarzana, dlatego można użyć kolorów w formacie "${color:xxx}", zobacz /help eval)]
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `+"%H:%M"+`)
|
||||
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
:author: Sébastien Helleu
|
||||
:email: flashcode@flashtux.org
|
||||
:lang: pl
|
||||
// TRANSLATION MISSING
|
||||
:man manual: WeeChat Manual
|
||||
:man source: WeeChat {revnumber}
|
||||
|
||||
|
||||
+32
-20
@@ -196,6 +196,23 @@ W celu ograniczenia rozmiaru paska:
|
||||
/set weechat.bar.buffers.position bottom
|
||||
----
|
||||
|
||||
Aby przewinąć pasek: jeśli mysz jest włączona (key: kbd:[Alt+m]), możesz przewinąć pasek
|
||||
za pomocą rolki myszy.
|
||||
|
||||
Możesz też zdefiniować skróty klawiszowe, podobne do tych od przewijania listy nicków.
|
||||
Na przykład użyć kbd:[F1], kbd:[F2], kbd:[Alt+F1] i kbd:[Alt+F2]:
|
||||
|
||||
----
|
||||
/key bind meta-OP /bar scroll buffers * -100%
|
||||
/key bind meta-OQ /bar scroll buffers * +100%
|
||||
/key bind meta-meta-OP /bar scroll buffers * b
|
||||
/key bind meta-meta-OQ /bar scroll buffers * e
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
Klawisze "meta-OP" i "meta-OQ" mogą być inne dla twojego terminala. W celu
|
||||
znalezienia ich kodów wciśnij kbd:[Alt+k] następnie przycisk.
|
||||
|
||||
[[customize_prefix]]
|
||||
=== Jak mogę ograniczyć długość wyświetlanych nicków lub usunąć wyrównanie w oknie rozmowy?
|
||||
|
||||
@@ -386,14 +403,13 @@ Następnie przypisz dwie kombinacje klawiszy dla stanu aktywności (zamień kome
|
||||
/key bind meta2-O /print -core unfocus
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[[screen_paste]]
|
||||
=== When WeeChat is running in screen, pasting text in another screen window adds ~0 and ~1 around text, why?
|
||||
=== Kiedy WeeChat działa pod screenem, tekst wklejany do innego okna screena ma dodane ~0 i ~1 dookoła, dlaczego?
|
||||
|
||||
This is caused by the bracketed paste option which is enabled by default, and
|
||||
not properly handled by screen in other windows.
|
||||
Jest to spowodowane przez opcję wklejania nawiasów, która jest domyślnie włączona i nie jest
|
||||
właściwie obsługiwana przez inne okna screena.
|
||||
|
||||
You can just disable bracketed paste mode:
|
||||
Możesz po prostu wyłączyć tą opcję:
|
||||
|
||||
----
|
||||
/set weechat.look.paste_bracketed off
|
||||
@@ -456,7 +472,7 @@ Przykład:
|
||||
|
||||
[NOTE]
|
||||
Klawisze "meta2-A" i "meta2-B" mogą być inne dla twojego terminala. W celu
|
||||
znalezienia ich kodów wciśnij kbd:[Alt+k] następnie przycisk (góra lub dół).
|
||||
znalezienia ich kodów wciśnij kbd:[Alt+k] następnie przycisk.
|
||||
|
||||
[[mouse]]
|
||||
== Obsługa myszy
|
||||
@@ -790,23 +806,22 @@ Możesz skorzystać z tych samych porad jak dla <<memory_usage,memory>>, oraz t
|
||||
* schowaj pasek "nicklist": `/bar hide nicklist`
|
||||
* usuń wyświetlanie sekund w czasie na pasku statusu:
|
||||
`/set weechat.look.item_time_format "%H:%M"` (domyślna wartość)
|
||||
* wyłącz automatyczne sprawdzanie poprawności wpisywanych słów w linii poleceń (o ile je włączyłeś):
|
||||
`/set aspell.check.real_time off`
|
||||
* ustaw zmienną _TZ_ (na przykład: `export TZ="Europe/Warsaw"`), w celu zmniejszenia
|
||||
częstotliwości czytania pliku _/etc/localtime_
|
||||
|
||||
// TRANSLATION MISSING
|
||||
[[security]]
|
||||
=== I am paranoid about security, which settings could I change to be even more secure?
|
||||
=== Mam paranoję na temat bezpieczeństwa, które ustawienia powinienem zmienić, żeby być bardziej bezpiecznym?
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Disable IRC part and quit messages:
|
||||
Wyłącz wiadomości o wyjściu z kanału i rozłączenia z serwerem:
|
||||
|
||||
----
|
||||
/set irc.server_default.default_msg_part ""
|
||||
/set irc.server_default.default_msg_quit ""
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Disable answers to all CTCP queries:
|
||||
Wyłącz odpowiedzi na wszystkie zapytania CTCP:
|
||||
|
||||
----
|
||||
/set irc.ctcp.clientinfo ""
|
||||
@@ -818,20 +833,17 @@ Disable answers to all CTCP queries:
|
||||
/set irc.ctcp.ping ""
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Unload and disable auto-loading of "xfer" plugin (used for IRC DCC):
|
||||
|
||||
Wyładuj i wyłącz automatyczne ładowanie wtyczki "xfer" (używanej przez IRC DCC):
|
||||
----
|
||||
/plugin unload xfer
|
||||
/set weechat.plugin.autoload "*,!xfer"
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
Define a passphrase and use secured data wherever you can for sensitive data
|
||||
like passwords: see `/help secure` and `/help` on options
|
||||
(if you can use secured data, it is written in the help).
|
||||
Zdefiniuj hasło i używaj bezpiecznych danych wszędzie gdzie możesz dla danych wrażliwych
|
||||
jak hasła: zobacz `/help secure` oraz `/help` na opcjach
|
||||
(czy możesz użyć bezpiecznych danych, jest to zaznaczone w pomocy).
|
||||
|
||||
For example:
|
||||
Na przykład:
|
||||
|
||||
----
|
||||
/secure passphrase xxxxxxxxxx
|
||||
|
||||
@@ -304,8 +304,7 @@ oraz duże okno (2/3), użyj komendy:
|
||||
/window splitv 33
|
||||
----
|
||||
|
||||
// TRANSLATION MISSING
|
||||
To remove the split:
|
||||
Usunięcie podziału:
|
||||
|
||||
----
|
||||
/window merge
|
||||
|
||||
+13
-20
@@ -32,7 +32,6 @@ i lekki, przeznaczony dla wielu systemów operacyjnych.
|
||||
|
||||
Główne cechy to:
|
||||
|
||||
// TRANSLATION MISSING
|
||||
* wsparcie dla wielu protokołów (mainly IRC)
|
||||
* połączenie z wieloma serwerami (z SSL, IPv6, proxy)
|
||||
* mały, szybki i lekki
|
||||
@@ -101,11 +100,9 @@ WeeChat.
|
||||
[width="100%",cols="5,^3,^3,.^13",options="header"]
|
||||
|===
|
||||
| Pakiet ^(1)^ | Wersja | Wymagany | Opis
|
||||
// TRANSLATION MISSING
|
||||
| C compiler
|
||||
(gcc, clang, ...) | | *tak* | Build
|
||||
// TRANSLATION MISSING
|
||||
| C++ compiler | | | Build and run tests, javascript plugin
|
||||
| kompilator C
|
||||
(gcc, clang, ...) | | *tak* | Kompilacja
|
||||
| kompilator C++ | | | Kompilacja i uruchamianie testów, wtyczka javascript
|
||||
| cmake | | *tak* | Kompilacja (możliwe jest użycie autotools, jednak cmake jest zalecany)
|
||||
| pkg-config | | *tak* | Wykrywa zainstalowane biblioteki
|
||||
| libncursesw5-dev ^(2)^ | | *tak* | Interfejs ncurses
|
||||
@@ -125,8 +122,7 @@ WeeChat.
|
||||
| guile-2.0-dev | ≥ 2.0 | | Wtyczka guile (scheme)
|
||||
| libv8-dev | ≤ 3.24.3 | | Wtyczka javascript
|
||||
| asciidoctor | ≥ 1.5.4 | | Tworzenie strony man i dokumentacji
|
||||
// TRANSLATION MISSING
|
||||
| libcpputest-dev | ≥ 3.4 | | Build and run tests
|
||||
| libcpputest-dev | ≥ 3.4 | | Kompilacja i uruchamianie testów
|
||||
|===
|
||||
|
||||
[NOTE]
|
||||
@@ -1078,12 +1074,12 @@ Poziom powiadomień dla bufora może zostać ustawiony za pomocą komendy `/buff
|
||||
kbd:[Ctrl+d] | Usuń następny znak w linii poleceń | `/input delete_next_char`
|
||||
| kbd:[Backsp.] +
|
||||
kbd:[Ctrl+h] | Usuń poprzedni znak w linii poleceń | `/input delete_previous_char`
|
||||
| kbd:[Ctrl+k] | Usuń od znacznika kursora do końca linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+k] | Usuń od znacznika kursora do końca linii poleceń (usuwany ciąg jest kopiowany do wewnętrznego schowka) | `/input delete_end_of_line`
|
||||
| kbd:[Ctrl+r] | Wyszukaj tekst w historii bufora (zobacz <<key_bindings_search_context,skróty dla kontekstu wyszukiwania>>) | `/input search_text_here`
|
||||
| kbd:[Ctrl+t] | Przestaw znaki | `/input transpose_chars`
|
||||
| kbd:[Ctrl+u] | Usuń od znaku kursora do początku linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Usuń poprzednie słowo w linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Wklej zawartość schowka | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+u] | Usuń od znaku kursora do początku linii poleceń (usuwany ciąg jest kopiowany do wewnętrznego schowka) | `/input delete_beginning_of_line`
|
||||
| kbd:[Ctrl+w] | Usuń poprzednie słowo w linii poleceń (usuwany ciąg jest kopiowany do wewnętrznego schowka) | `/input delete_previous_word`
|
||||
| kbd:[Ctrl+y] | Wkleja zawartość wewnętrznego schowka | `/input clipboard_paste`
|
||||
| kbd:[Ctrl+_] | Cofnij poprzednia akcję w linii poleceń | `/input undo`
|
||||
| kbd:[Alt+_] | Powtórz ostatnią akcję w linii poleceń | `/input redo`
|
||||
| kbd:[Tab] | Dopełnij komendę lub nick (ponowne wciśnięcie kbd:[Tab]: znajdź następne dopełnienie) | `/input complete_next`
|
||||
@@ -1095,7 +1091,7 @@ Poziom powiadomień dla bufora może zostać ustawiony za pomocą komendy `/buff
|
||||
| kbd:[↓] | Pokaż następną komendę/wiadomość (w trybie wyszukiwania: szukaj w dół) | `/input history_next`
|
||||
| kbd:[Ctrl+↑] | Pokaż poprzednią komendę/wiadomość w historii globalnej (wspólnej dla wszystkich buforów) | `/input history_global_previous`
|
||||
| kbd:[Ctrl+↓] | Pokaż następną komendę/wiadomość w historii globalnej (wspólnej dla wszystkich buforów) | `/input history_global_next`
|
||||
| kbd:[Alt+d] | Usuń następne słowo w linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_next_word`
|
||||
| kbd:[Alt+d] | Usuń następne słowo w linii poleceń (usuwany ciąg jest kopiowany do wewnętrznego schowka) | `/input delete_next_word`
|
||||
| kbd:[Alt+k] | Przechwyć wciśnięte klawisze i zwróć ich kod (i przypisaną komendę, jeśli istnieje) w linii poleceń | `/input grab_key_command`
|
||||
| kbd:[Alt+r] | Usuń całą zawartość linii poleceń | `/input delete_line`
|
||||
| kbd:[Alt+s] | Przełącz aspell | `/mute aspell toggle`
|
||||
@@ -1419,8 +1415,7 @@ Dla niektórych wtyczek jak IRC, można użyć kolorów i atrybutów w następuj
|
||||
|
||||
[width="60%",cols="3,5",options="header"]
|
||||
|===
|
||||
// TRANSLATIION MISSING
|
||||
| Key | Description
|
||||
| Klawisz | Opis
|
||||
| kbd:[Ctrl+c], kbd:[b] | pogrubiony tekst
|
||||
| kbd:[Ctrl+c], kbd:[c],
|
||||
kbd:[xx] | kolor tekstu `xx` (zgodnie z poniższą listą kolorów)
|
||||
@@ -3021,10 +3016,9 @@ Trigger posiada następujące opcje (nazwy to `trigger.trigger.<nazwa>.<opcja>`)
|
||||
Kod wiadomości zwrotnej (domyślnie jest to `ok`, które powinno być używane dla
|
||||
większości triggerów, pozostałe wartości są sporadycznie używane).
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| post_action | `none`, `disable`, `delete` |
|
||||
Action to take on the trigger after execution (default is `none` which should
|
||||
be used in almost all triggers, the other values are rarely used).
|
||||
Akcja wykonywana na triggerze po jego wykonaniu (domyślna wartość `none` powinna
|
||||
być użyta dla wszystkich triggerów, pozostałe wartości są sporadycznie używane).
|
||||
|===
|
||||
|
||||
Na przykład, domyślny trigger _beep_ ma następujące opcje:
|
||||
@@ -3050,8 +3044,7 @@ kolejności, jeśli triggery są globalnie włączone i jeśli sam trigger jest
|
||||
. zastępowanie tekstu w triggerze za pomocą wyrażenia
|
||||
. wykonanie komend(-y)
|
||||
. wyjście ze zwróceniem kodu (za wyjątkiem uchwytów _modifier_ i _focus_)
|
||||
// TRANSLATION MISSING
|
||||
. perform post action (if different from `none`).
|
||||
. wykonanie akcji kończącej (jeśli inna niż `none`).
|
||||
|
||||
[[trigger_hook_arguments]]
|
||||
==== Argumenty uchwytów
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
docinfo.html \
|
||||
weechat.1.ru.adoc \
|
||||
cmdline_options.ru.adoc \
|
||||
weechat_quickstart.ru.adoc
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:42+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:23+0200\n"
|
||||
"Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: cs\n"
|
||||
@@ -1715,7 +1715,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -3208,8 +3208,11 @@ msgstr ""
|
||||
msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"časový formát pro \"time\" položku panelu (viz. man strftime pro specifikaci "
|
||||
"data/času)"
|
||||
@@ -11381,17 +11384,3 @@ msgstr "%s%s: vypršel časový limit \"%s\" pro %s"
|
||||
#, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: nemohu se připojit\" neočekávaná chyba (%d)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "výchozí zpráva při odchodu z kanálu (\"%v\" bude nahrazeno verzí WeeChat "
|
||||
#~ "v řetězci)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "výchozí zpráva při uknočnení (odpojení od serveru) (\"%v\" bude nahrazeno "
|
||||
#~ "verzí WeeChat v řetězci)"
|
||||
|
||||
@@ -1,32 +1,28 @@
|
||||
#
|
||||
# Copyright (C) 2005 Rudolf Polzer <weechat-te@durchnull.de>
|
||||
# Copyright (C) 2006-2007 Thomas Schuetz <i18n@internet-villa.de>
|
||||
# Copyright (C) 2009-2016 Nils Görs <weechatter@arcor.de>
|
||||
# Copyright (C) 2015 Sven Knurr <zeug@tuxproject.de>
|
||||
#
|
||||
# This file is part of WeeChat, the extensible chat client.
|
||||
#
|
||||
# WeeChat is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# WeeChat is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# nils <weechatter@arcor.de>, 2016.
|
||||
# w8rabbit <w8rabbit@mail.i2p>, 2016.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-08-17 08:41+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:17+0200\n"
|
||||
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
|
||||
"Language-Team: German <>\n"
|
||||
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -1922,7 +1918,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -1987,7 +1983,7 @@ msgstr ""
|
||||
" delete_end_of_line: entfernt alle Zeichen ab Cursor bis zum Ende der "
|
||||
"Zeile\n"
|
||||
" delete_line: löscht die komplette Eingabezeile\n"
|
||||
" clipboard_paste: fügt Zeichenkette aus der Zwischenablage ein\n"
|
||||
" clipboard_paste: fügt Zeichenkette aus der internen Zwischenablage ein\n"
|
||||
" transpose_chars: Zeichen austauschen\n"
|
||||
" undo: letzten Befehl in der Eingabezeile rückgängig machen\n"
|
||||
" redo: letzten Befehl in der Eingabezeile wiederherstellen\n"
|
||||
@@ -2998,7 +2994,7 @@ msgstr ""
|
||||
"scroll_next_highlight|scroll_unread [-window <number>] || swap [-window "
|
||||
"<number>] [up|down|left|right] || zoom [-window <number>] || bare [<delay>]"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid ""
|
||||
" list: list opened windows (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@@ -3071,8 +3067,10 @@ msgstr ""
|
||||
" left: wechselt zum linken Fenster\n"
|
||||
" right: wechselt zum rechten Fenster\n"
|
||||
" number: Nummer des Fensters (siehe /window list)\n"
|
||||
" splith: teilt das aktuelle Fenster horizontal\n"
|
||||
" splitv: teilt das aktuelle Fenster vertikal\n"
|
||||
" splith: teilt das aktuelle Fenster horizontal (um den Vorgang "
|
||||
"rückgängig zu machen: /window merge)\n"
|
||||
" splitv: teilt das aktuelle Fenster vertikal (um den Vorgang "
|
||||
"rückgängig zu machen: /window merge)\n"
|
||||
" resize: verändert die Größe des aktuellen Fensters. Die neue Größe "
|
||||
"des Fensters ist prozentual <pct> zum Stammfensters groß\n"
|
||||
" balance: passt die Größe aller Fenster an\n"
|
||||
@@ -3097,7 +3095,7 @@ msgstr ""
|
||||
"scroll_unread: springt zur ersten ungelesenen Zeile in einem Buffer\n"
|
||||
" swap: tauscht die Buffer von zwei Fenstern (mit optionaler Angabe "
|
||||
"für das Zielfenster)\n"
|
||||
" zoom: vergrößert ein Fenster auf 100%\n"
|
||||
" zoom: vergrößert ein Fenster auf 100%%\n"
|
||||
" bare: wechselt zum einfachen Anzeigemodus (optional kann eine "
|
||||
"Wartezeit, in Sekunden, angegeben werden, wann zum Standardmodus zurück "
|
||||
"gewechselt werden soll)\n"
|
||||
@@ -3117,6 +3115,11 @@ msgstr ""
|
||||
" /window scroll -d\n"
|
||||
" Fenster #2 wird vergrößert:\n"
|
||||
" /window zoom -window 2\n"
|
||||
" teilt das Fenster horizontal, wobei das obere Fenster 30%% an Platz "
|
||||
"zugeteilt bekommt:\n"
|
||||
" /window splith 30\n"
|
||||
" eine Teilung wird rückgängig gemacht:\n"
|
||||
" /window merge\n"
|
||||
" aktiviert den einfachen Anzeigemodus für zwei Sekunden:\n"
|
||||
" /window bare 2"
|
||||
|
||||
@@ -3798,10 +3801,14 @@ msgstr ""
|
||||
"eingeschaltet ist (durch Bar-Item \"mouse_status\")"
|
||||
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"Format für die Zeitanzeige des Bar-Items, \"time\" (siehe man strftime, "
|
||||
"welche Platzhalter für das Datum und die Uhrzeit verwendet werden)"
|
||||
"welche Platzhalter für das Datum und die Uhrzeit verwendet werden)(Hinweis: "
|
||||
"Inhalt wird evaluiert, somit kann mittels des Formats \"${color:xxx} Farben "
|
||||
"gesetzt werden, siehe /help eval)"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -9327,9 +9334,9 @@ msgstr "%s%s%s%s hat das Thema von %s%s%s entfernt"
|
||||
msgid "%sWallops from %s: %s"
|
||||
msgstr "%sWallops von %s: %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%sServer notice mask for %s%s%s: %s"
|
||||
msgstr "%sServer notice Maske für %s%s%s is %s[%s%s%s]"
|
||||
msgstr "%sServer notice Maske für %s%s%s: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "%sUser mode for %s%s%s is %s[%s%s%s]"
|
||||
@@ -12956,17 +12963,3 @@ msgstr "%s%s: Zeitüberschreitung für \"%s\" mit %s"
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr ""
|
||||
"%s%s: Verbindung konnte nicht hergestellt werden: unerwarteter Fehler (%d)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "Standardmitteilung beim Verlassen eines Channels (\"%v\": wird durch die "
|
||||
#~ "WeeChat-Version ersetzt)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "Standardmitteilung beim Beenden (Verbindung zum Server trennen) (\"%v\": "
|
||||
#~ "wird durch die WeeChat-Version ersetzt)"
|
||||
|
||||
@@ -22,8 +22,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:42+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:23+0200\n"
|
||||
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: es\n"
|
||||
@@ -1747,7 +1747,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -3358,8 +3358,11 @@ msgstr ""
|
||||
"cadena a usar para indicar que algunas líneas están filtradas en el buffer "
|
||||
"actual (elemento de barra \"buffer_filter\")"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"formato de hora para el elemento de barra \"time\" (ver el manual de "
|
||||
"strftime para los especificadores de fecha/hora)"
|
||||
@@ -11641,17 +11644,3 @@ msgstr "%s%s: tiempo de espera máximo para \"%s\" con %s"
|
||||
#, fuzzy, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: no es posible conectarse al transmisor"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "mensaje de abandono por defecto (cuando se abandona un canal) (\"%v\" "
|
||||
#~ "será reemplazado por la versión de WeeChat)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "mensaje de salida por defecto (cuando se desconecta del servidor) (\"%v\" "
|
||||
#~ "será reemplazado por la versión de WeeChat)"
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-08-30 18:34+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-08 21:20+0200\n"
|
||||
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: fr\n"
|
||||
@@ -1891,7 +1891,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -1955,7 +1955,7 @@ msgstr ""
|
||||
" delete_beginning_of_line : effacer du début de la ligne jusqu'au curseur\n"
|
||||
" delete_end_of_line : effacer du curseur jusqu'à la fin de la ligne\n"
|
||||
" delete_line : effacer la ligne entière\n"
|
||||
" clipboard_paste : coller depuis le presse-papiers\n"
|
||||
" clipboard_paste : coller depuis le presse-papiers interne\n"
|
||||
" transpose_chars : inverser deux caractères\n"
|
||||
" undo : défaire la dernière action de la ligne de commande\n"
|
||||
" redo : refaire la dernière action de la ligne de commande\n"
|
||||
@@ -3708,10 +3708,13 @@ msgstr ""
|
||||
"\"mouse_status\")"
|
||||
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"format de date/heure pour l'objet de barre \"time\" (voir man strftime pour "
|
||||
"le format de date/heure)"
|
||||
"le format de date/heure) (note : le contenu est évalué, donc vous pouvez "
|
||||
"utiliser des couleurs avec le format \"${color:xxx}\", voir /help eval)"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -12696,17 +12699,3 @@ msgstr "%s%s : délai d'attente dépassé pour \"%s\" avec %s"
|
||||
#, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s : impossible de se connecter : erreur inattendue (%d)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "message par défaut pour le part (en quittant un canal) (\"%v\" sera "
|
||||
#~ "remplacé par la version de WeeChat dans la chaîne)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "message de fin par défaut (lors de la déconnexion du serveur) (\"%v\" "
|
||||
#~ "sera remplacé par la version de WeeChat dans la chaîne)"
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:23+0200\n"
|
||||
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: hu\n"
|
||||
@@ -1575,7 +1575,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -2793,9 +2793,12 @@ msgstr ""
|
||||
msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
msgstr ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr "új nap kezdetével megjelenő időbélyeg"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -10682,19 +10685,3 @@ msgstr "%s hiányzó argumentum a(z) \"%s\" opciónak\n"
|
||||
#, fuzzy, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s DCC: nem sikerült kapcsolódni a küldőhöz\n"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "alapértelmezett távozó üzenet (szoba elhagyásakor) (a '%v' változó a "
|
||||
#~ "WeeChat verziójára cserélődik)"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "alapértelmezett kilépő üzenet (a '%v' változó a WeeChat verziójára "
|
||||
#~ "cserélődik)"
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: it\n"
|
||||
@@ -1789,7 +1789,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -3452,11 +3452,15 @@ msgstr ""
|
||||
"stringa usata per mostrare che alcune righe sono state filtrate nel buffer "
|
||||
"corrente (elemento barra \"buffer_filter\")"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"formato dell'ora per l'elemento barra \"time\" (consultare man strftime per "
|
||||
"gli specificatori data/ora)"
|
||||
"prefisso per i messaggi di errore (nota: il contenuto viene valutato, per "
|
||||
"cui è possibile usare colori con il formato \"${color:xxx}\", consultare /"
|
||||
"help eval"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -11828,17 +11832,3 @@ msgstr "%s%s: timeout per \"%s\" con %s"
|
||||
#, fuzzy, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: impossibile connettersi al mittente"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "messaggio di uscita predefinito (in uscita dal canale) (\"%v\" verrà "
|
||||
#~ "sostituito dalla versione di WeeChat)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "messaggio di abbandono predefinito (disconnessione dal server) (\"%v\" "
|
||||
#~ "verrà sostituito dalla versione di WeeChat)"
|
||||
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-08-21 09:00+0900\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-23 09:00+0900\n"
|
||||
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
|
||||
"Language-Team: Japanese <https://github.com/l/weechat/tree/master/"
|
||||
"translation/ja_JP>\n"
|
||||
@@ -1838,7 +1838,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -1900,7 +1900,7 @@ msgstr ""
|
||||
" delete_beginning_of_line: 行の最初からカーソル位置までを削除\n"
|
||||
" delete_end_of_line: カーソルから行の最後までを削除\n"
|
||||
" delete_line: 行を削除\n"
|
||||
" clipboard_paste: クリップボードからペースト\n"
|
||||
" clipboard_paste: WeeChat 専用の内部クリップボードの内容をペースト\n"
|
||||
" transpose_chars: 2 つの文字を入れ替え\n"
|
||||
" undo: 最新のコマンドラインアクションまで元に戻す\n"
|
||||
" redo: 最新のコマンドラインアクションまでやり直す\n"
|
||||
@@ -2844,7 +2844,7 @@ msgstr ""
|
||||
"scroll_next_highlight|scroll_unread [-window <number>] || swap [-window "
|
||||
"<number>] [up|down|left|right] || zoom [-window <number>] || bare [<delay>]"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid ""
|
||||
" list: list opened windows (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@@ -2916,8 +2916,8 @@ msgstr ""
|
||||
" left: 左のウィンドウに移動\n"
|
||||
" right: 右のウィンドウに移動\n"
|
||||
" number: ウィンドウ番号 (/window list を参照)\n"
|
||||
" splith: 現在のウィンドウを水平分割\n"
|
||||
" splitv: 現在のウィンドウを垂直分割\n"
|
||||
" splith: 現在のウィンドウを水平分割 (/window merge で元に戻る)\n"
|
||||
" splitv: 現在のウィンドウを垂直分割 (/window merge で元に戻る)\n"
|
||||
" resize: ウィンドウサイズの変更、新しいサイズは親ウィンドウの <pct> "
|
||||
"パーセントで指定\n"
|
||||
" balance: 全てのウィンドウのサイズを均等にする\n"
|
||||
@@ -2959,6 +2959,11 @@ msgstr ""
|
||||
" /window scroll -d\n"
|
||||
" ウィンドウ #2 を拡大:\n"
|
||||
" /window zoom -window 2\n"
|
||||
" ウィンドウを水平分割 (上側ウィンドウの縦幅は現在のウィンドウの縦幅の "
|
||||
"30%%):\n"
|
||||
" /window splith 30\n"
|
||||
" 分割を元に戻す:\n"
|
||||
" /window merge\n"
|
||||
" 最小限表示を 2 秒間有効にする:\n"
|
||||
" /window bare 2"
|
||||
|
||||
@@ -3576,8 +3581,13 @@ msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr "マウスが有効であることを示す文字列 (バー要素 \"mouse_status\")"
|
||||
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
msgstr "\"time\" バー要素の時間書式 (日付/時間指定子は strftime の man を参照)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"\"time\" バー要素の時間書式 (日付/時間指定子は strftime の man を参照) (注"
|
||||
"意: 値は評価されるため、\"${color:xxx}\" 書式を使えば色を指定することも出来ま"
|
||||
"す、/help eval を参照)"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -8735,9 +8745,9 @@ msgstr "%s%s%s%s が %s%s%s のトピックを削除"
|
||||
msgid "%sWallops from %s: %s"
|
||||
msgstr "%s%s からの wallops メッセージ: %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%sServer notice mask for %s%s%s: %s"
|
||||
msgstr "%s%s%s%s のサーバ通知マスクは %s[%s%s%s] です"
|
||||
msgstr "%s%s%s%s のサーバ通知マスク: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "%sUser mode for %s%s%s is %s[%s%s%s]"
|
||||
@@ -12199,17 +12209,3 @@ msgstr "%s%s: \"%s\" のタイムアウト %s"
|
||||
#, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: 接続できません: 未定義のエラー (%d)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "デフォルトの退出メッセージ (チャンネルから出る際の) (\"%v\" は WeeChat "
|
||||
#~ "バージョンで置換)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "デフォルトの終了メッセージ (サーバとの接続を切る際の) (\"%v\" は WeeChat "
|
||||
#~ "バージョンで置換)"
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"Last-Translator: Krzysztof Korościk <soltys1@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: pl\n"
|
||||
@@ -98,17 +98,14 @@ msgstr "Hashtable (wyjście)"
|
||||
msgid "Pointer"
|
||||
msgstr "Wskaźnik"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Lists"
|
||||
msgstr "listy"
|
||||
msgstr "Listy"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Variables"
|
||||
msgstr "zmienne"
|
||||
msgstr "Zmienne"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Update allowed:"
|
||||
msgstr "aktualizacja dozwolona"
|
||||
msgstr "Aktualizacja dozwolona:"
|
||||
|
||||
msgid "Option"
|
||||
msgstr "Opcja"
|
||||
@@ -292,9 +289,9 @@ msgstr " %s (wtyczka: %s)"
|
||||
msgid "No bar item defined"
|
||||
msgstr "Nie zdefiniowano elementów paska"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%sNot enough memory (%s)"
|
||||
msgstr "%sZa mało pamięci"
|
||||
msgstr "%sZa mało pamięci (%s)"
|
||||
|
||||
#, c-format
|
||||
msgid "%sError: wrong type \"%s\" for bar \"%s\""
|
||||
@@ -1164,7 +1161,6 @@ msgstr ""
|
||||
msgid "manage buffers"
|
||||
msgstr "zarządzaj buforami"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list || clear [<number>|<name>|-merged|-all [<number>|<name>...]] || move "
|
||||
"<number>|-|+ || swap <number1>|<name1> [<number2>|<name2>] || cycle <number>|"
|
||||
@@ -1174,15 +1170,14 @@ msgid ""
|
||||
"close [<n1>[-<n2>]|<name>] || notify <level> || localvar || set <property> "
|
||||
"<value> || get <property> || <number>|-|+|<name>"
|
||||
msgstr ""
|
||||
"list || clear [<numer>|<nazwa>|-merged|-all [<number>|<nazwa>...]] || move "
|
||||
"<numer>|-|+ || swap <numer1>|<nazwa1> [<numer2>|<nazwa2>] || merge <numer> "
|
||||
"|| unmerge [<numer>|-all] || hide [<numer>|<nazwa>|-all [<numer>|"
|
||||
"<nazwa>...]] || unhide [<numer>|<nazwa>|-all [<numer>|<nazwa>...]] || "
|
||||
"renumber [<numer1> [<numer2> [<start>]]] || close [<n1>[-<n2>]|<nazwa>] || "
|
||||
"notify <poxiom> || localvar || set <właściwość> <wartość> || get "
|
||||
"<właściwość> || <numer>|-|+|<nazwa>"
|
||||
"list || clear [<numer>|<nazwa>|-merged|-all [<numer>|<nazwa>...]] || move "
|
||||
"<numer>|-|+ || swap <numer1>|<nazwa1> [<numer2>|<nazwa2>] || cycle <numer>|"
|
||||
"<nazwa> [<numer>|<nazwa>...]] || merge <numer> || unmerge [<numer>|-all] || "
|
||||
"hide [<numer>|<nazwa>|-all [<numer>|<nazwa>...]] || unhide [<numer>|<nazwa>|-"
|
||||
"all [<numer>|<nazwa>...]] || renumber [<numer1> [<numer2> [<start>]]] || "
|
||||
"close [<n1>[-<n2>]|<nazwa>] || notify <poziom> || localvar || set <opcja> "
|
||||
"<wartość> || get <opcja> || <numer>|-|+|<nazwa>"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list buffers (without argument, this list is displayed)\n"
|
||||
" clear: clear buffer content (number for a buffer, -merged for merged "
|
||||
@@ -1254,6 +1249,7 @@ msgstr ""
|
||||
"przesuwa na pierwszy numer, \"+\" = przesuwa na ostatni numer bufora +1\n"
|
||||
" swap: zamienia miejscami dwa bufory (zamienia z obecnym buforem, jeśli "
|
||||
"podano tylko jeden numer/nazwę)\n"
|
||||
" cycle: przełącza w pętli między listą buforów\n"
|
||||
" merge: łączy obecny bufor z innym (obszar rozmowy zostanie pomieszany "
|
||||
"między oba bufory)\n"
|
||||
" (domyślnie ctrl-x przełącza pomiędzy połączonymi buforami)\n"
|
||||
@@ -1291,6 +1287,8 @@ msgstr ""
|
||||
" /buffer swap 1 3\n"
|
||||
" zamienia bufor #weechat z obecnym buforem:\n"
|
||||
" /buffer swap #weechat\n"
|
||||
" przełączajw pętli między #chan1, #chan2, #chan3:\n"
|
||||
" /buffer cycle #chan1 #chan2 #chan3\n"
|
||||
" łączy z głównym buforem:\n"
|
||||
" /buffer merge 1\n"
|
||||
" odłącza bufory:\n"
|
||||
@@ -1860,7 +1858,6 @@ msgstr "funkcje linii komend"
|
||||
msgid "<action> [<arguments>]"
|
||||
msgstr "<akcja> [<argumenty>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list of actions:\n"
|
||||
" return: simulate key \"enter\"\n"
|
||||
@@ -1882,7 +1879,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -1966,10 +1963,13 @@ msgstr ""
|
||||
"(przed ostatnim przeskoczeniem do bufora)\n"
|
||||
" jump_previously_visited_buffer: przeskakuje do poprzedniego bufora\n"
|
||||
" jump_next_visited_buffer: przeskakuje to następnego bufora\n"
|
||||
" hotlist_clear: czyści hotlistę\n"
|
||||
" hotlist_clear: czyści hotlistę (opcjonaly argument: \"lowest\" czyści "
|
||||
"najniższy poziom na hotliście, \"highest\" czyści najwyższy poziom na hotliście, "
|
||||
"albo maska poziomu: liczba będąca kombinacją 1=join/part, 2=wiadomość, "
|
||||
"4=prywatny, 8=podświetlenie)\n"
|
||||
" grab_key: przechwytuje klawisz (opcjonalny argument: opóźnienie końca "
|
||||
"przechwycenia, domyślnie jest to 500 milisekund)\n"
|
||||
" grab_key_command: przechwytuje klawisz z przypisaną komendą(opcjonalny "
|
||||
" grab_key_command: przechwytuje klawisz z przypisaną komendą (opcjonalny "
|
||||
"argument: opóźnienie końca przechwycenia, domyślnie jest to 500 milisekund)\n"
|
||||
" grab_mouse: przechwytuje kod zdarzenia myszy\n"
|
||||
" grab_mouse_area: przechwytuje kod zdarzenia myszy z obszarem\n"
|
||||
@@ -2538,7 +2538,6 @@ msgstr ""
|
||||
"passphrase <hasło>|-delete || decrypt <hasło>|-discard || set <nazwa> "
|
||||
"<wartość> || del <nazwa>"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"passphrase: change the passphrase (without passphrase, data is stored as "
|
||||
"plain text in file sec.conf)\n"
|
||||
@@ -2592,6 +2591,9 @@ msgstr ""
|
||||
"\n"
|
||||
"Bez argumentu, komenda wyświetli zabezpieczone dane w nowym buforze.\n"
|
||||
"\n"
|
||||
"Kombinacje klawiszy w bezpiecznym buforze:\n"
|
||||
" alt+v przełącza wartości\n"
|
||||
"\n"
|
||||
"Jeśli używane jest hasło (dane zaszyfrowane), należy je podać podczas startu "
|
||||
"WeeChat.\n"
|
||||
"Jest możliwe ustawienie zmiennej środowiskowej \"WEECHAT_PASSPHRASE\", aby "
|
||||
@@ -2898,7 +2900,7 @@ msgstr ""
|
||||
"scroll_next_highlight|scroll_unread [-window <numer>] || swap [-window "
|
||||
"<numer>] [up|down|left|right] || zoom[-window <numer>] || bare [<opóźnienie>]"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid ""
|
||||
" list: list opened windows (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@@ -3012,6 +3014,10 @@ msgstr ""
|
||||
" /window scroll -d\n"
|
||||
" powiększ okno 2 #2:\n"
|
||||
" /window zoom -window 2\n"
|
||||
" podziel okno poziomo dając 30%% miejsca oknu na górze:\n"
|
||||
" /window splith 30\n"
|
||||
" usuń podział:\n"
|
||||
" /window merge\n"
|
||||
" włączenie trybu niesformatowanego na 2 sekundy:\n"
|
||||
" /window bare 2"
|
||||
|
||||
@@ -3581,7 +3587,6 @@ msgstr ""
|
||||
"usuwa bufor z hotlisty: buffer = usuwa bufor po buforze, merged = usuwa "
|
||||
"wszystkie widoczne połączone bufory"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"if set, uses short names to display buffer names in hotlist (start after "
|
||||
"first \".\" in name)"
|
||||
@@ -3655,10 +3660,13 @@ msgstr ""
|
||||
"\"mouse_status\")"
|
||||
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"format czasu dla elementu paska \"time\" (zobacz man strftime dla "
|
||||
"specyfikatorów daty/czasu)"
|
||||
"format czasu dla elementu paska \"time\" (listę dostępnych specyfikatorów "
|
||||
"daty/czasu można znaleźć w man strftime) (uwaga: zawartość jest przetwarzana, "
|
||||
"dlatego można użyć kolorów w formacie \"${color:xxx}\", zobacz /help eval)"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -4014,9 +4022,8 @@ msgstr ""
|
||||
"dozwolone w formacie \\u1234, na przykład \\u00A0 dla niełamliwej spacji "
|
||||
"(wspierane formaty można znaleźć w /help print)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "text color for \"+\" when scrolling bars"
|
||||
msgstr "kolor '+' przy przewijaniu pasków"
|
||||
msgstr "kolor tekstu dla \"+\" przy przewijaniu pasków"
|
||||
|
||||
msgid "text color for chat"
|
||||
msgstr "kolor tekstu czatu"
|
||||
@@ -4137,9 +4144,8 @@ msgstr "kolor przedrostka wejścia na kanał"
|
||||
msgid "text color for quit prefix"
|
||||
msgstr "kolor przedrostka wyjścia z IRC"
|
||||
|
||||
#, fuzzy
|
||||
msgid "text color for \"+\" when prefix is too long"
|
||||
msgstr "kolor '+' dla za długich przedrostków"
|
||||
msgstr "kolor tekstu dla \"+\" dla za długich przedrostków"
|
||||
|
||||
msgid "text color for suffix (after prefix)"
|
||||
msgstr "kolor przyrostka (po przedrostku)"
|
||||
@@ -4278,7 +4284,6 @@ msgstr ""
|
||||
"kursorem; w innym wypadku słowo bazowe kończy się na pierwszej spacji po "
|
||||
"kursorze"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"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 "
|
||||
@@ -4288,7 +4293,7 @@ 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)"
|
||||
"się od \"/\" (poza argumentami komend)"
|
||||
|
||||
msgid ""
|
||||
"default completion template (please see documentation for template codes and "
|
||||
@@ -7928,37 +7933,36 @@ msgstr ""
|
||||
"nie sprawdzaj nieobecności osób na kanałach z dużą ilością użytkowników (0 = "
|
||||
"nieograniczone)"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"default kick message used by commands \"/kick\" and \"/kickban\" (note: "
|
||||
"content is evaluated, see /help eval; special variables ${nick}, ${channel} "
|
||||
"and ${server} are replaced by their value)"
|
||||
msgstr ""
|
||||
"domyślna wiadomość dla wykopania z kanału używana przez komendy \"/kick\" i "
|
||||
"\"/kickban\" (specjalne zmienne jak $nick, $channel i $server są zamieniane "
|
||||
"na odpowiednie wartości)"
|
||||
"\"/kickban\" (uwaga: zawartość jest przetwarzana zobacz /help eval; specjalne"
|
||||
" zmienne jak ${nick}, ${channel} i ${server} są zamieniane na odpowiednie wartości)"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"default part message (leaving channel) (note: content is evaluated, see /"
|
||||
"help eval; special variables ${nick}, ${channel} and ${server} are replaced "
|
||||
"by their value; \"%v\" is replaced by WeeChat version if there is no ${...} "
|
||||
"in string)"
|
||||
msgstr ""
|
||||
"domyślna wiadomość dla wykopania z kanału używana przez komendy \"/kick\" i "
|
||||
"\"/kickban\" (specjalne zmienne jak $nick, $channel i $server są zamieniane "
|
||||
"na odpowiednie wartości)"
|
||||
"domyślna wiadomość przy wyjściu z kanału (uwaga: zawartość jest przetwarzana "
|
||||
"zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są "
|
||||
"zamieniane na odpowiednie wartości); \"%v\" jest zamieniane na wersję WeeChat "
|
||||
"jeśli w ciągu nie ma ${...})"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"default quit message (disconnecting from server) (note: content is "
|
||||
"evaluated, see /help eval; special variables ${nick}, ${channel} and "
|
||||
"${server} are replaced by their value; \"%v\" is replaced by WeeChat version "
|
||||
"if there is no ${...} in string)"
|
||||
msgstr ""
|
||||
"domyślna wiadomość dla wykopania z kanału używana przez komendy \"/kick\" i "
|
||||
"\"/kickban\" (specjalne zmienne jak $nick, $channel i $server są zamieniane "
|
||||
"na odpowiednie wartości)"
|
||||
"domyślna wiadomość przy odłączeniu od serwera (uwaga: zawartość jest przetwarzana "
|
||||
"zobacz /help eval; specjalne zmienne jak ${nick}, ${channel} i ${server} są "
|
||||
"zamieniane na odpowiednie wartości); \"%v\" jest zamieniane na wersję WeeChat "
|
||||
"jeśli w ciągu nie ma ${...})"
|
||||
|
||||
msgid ""
|
||||
"notify list for server (you should not change this option but use /notify "
|
||||
@@ -8919,9 +8923,9 @@ msgstr "%s%s%s%s usunął temat %s%s%s"
|
||||
msgid "%sWallops from %s: %s"
|
||||
msgstr "%sWallopy od %s: %s"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%sServer notice mask for %s%s%s: %s"
|
||||
msgstr "%sMaska powiadomień serwera dla %s%s%s to %s[%s%s%s]"
|
||||
msgstr "%sMaska powiadomień serwera dla %s%s%s: %s"
|
||||
|
||||
#, c-format
|
||||
msgid "%sUser mode for %s%s%s is %s[%s%s%s]"
|
||||
@@ -9339,9 +9343,9 @@ msgstr ""
|
||||
"%s%s: powinieneś zmienić wartość opcji irc.server.%s.ssl_dhkey_size (obecna "
|
||||
"wartość to %d, spróbuj niższej wartości jak %d lub %d)"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s: not enough memory (%s)"
|
||||
msgstr "%s%s: za mało pamięci"
|
||||
msgstr "%s%s: za mało pamięci (%s)"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: timeout"
|
||||
@@ -10610,6 +10614,8 @@ msgid ""
|
||||
"allow empty password in relay (it should be enabled only for tests or local "
|
||||
"network)"
|
||||
msgstr ""
|
||||
"zezwala na puste haslo dla pośrednika (zaleca się włączać tylko dla testów "
|
||||
"albo dla sieci lokalnej)"
|
||||
|
||||
msgid ""
|
||||
"POSIX extended regular expression with IPs allowed to use relay (case "
|
||||
@@ -10655,15 +10661,14 @@ msgstr ""
|
||||
msgid "maximum number of clients connecting to a port (0 = no limit)"
|
||||
msgstr "maksymalna ilość klientów łączących się na port (0 = brak limitu)"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"password required by clients to access this relay (empty value means no "
|
||||
"password required, see option relay.network.allow_empty_password) (note: "
|
||||
"content is evaluated, see /help eval)"
|
||||
msgstr ""
|
||||
"hasło wymagane od klientów do połączenia z tym pośrednikiem (pusta wartość "
|
||||
"oznacza brak wymaganego hasła) (zawartość jest przetwarzana, zobacz /help "
|
||||
"eval)"
|
||||
"oznacza brak hasła, zobacz opcję relay.network.allow_empty_password) "
|
||||
"(uwaga: zawartość jest przetwarzana, zobacz /help eval)"
|
||||
|
||||
msgid ""
|
||||
"file with SSL certificate and private key (for serving clients with SSL)"
|
||||
@@ -10762,6 +10767,8 @@ msgid ""
|
||||
"%s%s: cannot accept client because relay password is empty, and option relay."
|
||||
"network.allow_empty_password is off"
|
||||
msgstr ""
|
||||
"%s%s: nie może zaakceptować klienta, ponieważ hasło pośrednika jest puste, i opcja "
|
||||
"pośrednika network.allow_empty_password jest wyłączona"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s: client not allowed (max %d client is allowed at same time)"
|
||||
@@ -11579,9 +11586,9 @@ msgstr "%s%s: nieprawidłowe wyrażenie regularne (kompilacja nieudana)"
|
||||
msgid "%s%s: invalid return code: \"%s\""
|
||||
msgstr "%s%s: niepoprawny kod powrotu: \"%s\""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format
|
||||
msgid "%s%s: invalid post action \"%s\""
|
||||
msgstr "%s%s: niepoprawny kod powrotu: \"%s\""
|
||||
msgstr "%s%s: nieprawidłowa akcja \"%s\""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
@@ -11656,7 +11663,6 @@ msgstr ""
|
||||
msgid "manage triggers, the Swiss Army knife for WeeChat"
|
||||
msgstr "zarządzaj triggerami, scyzorykiem WeeChat"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"list|listfull|listdefault || add|addoff|addreplace <name> <hook> "
|
||||
"[\"<arguments>\" [\"<conditions>\" [\"<regex>\" [\"<command>"
|
||||
@@ -11666,15 +11672,14 @@ msgid ""
|
||||
"<name>|-all [<name>...] || show <name> || del <name>|-all [<name>...] || "
|
||||
"restore <name> [<name>...] || default -yes || monitor [<filter>]"
|
||||
msgstr ""
|
||||
"list|listfull|listdefault || add|addoff|addreplace <nazwa> <uchwyt> "
|
||||
"[\"<argumenty>\" [\"<warunki>\" [\"<regex>\" [\"<komenda>\" [\"<kod powrotu>"
|
||||
"\"]]]]] || addinput [<uchwyt>] || input|output|recreate <nazwa> || set "
|
||||
"<nazwa> <opcja> <wartość> || rename|copy <nazwa> <nowa nazwa> || enable|"
|
||||
"disable|toggle [<nazwa>|-all [<nazwa>...]] || restart <nazwa>|-all "
|
||||
"[<nazwa>...] || show <nazwa> || del <nazwa>|-all [<nazwa>...] || restore "
|
||||
"<nazwa> [<nazwa>...] || default -yes || monitor [<filtr>]"
|
||||
"list|listfull|listdefault || add|addoff|addreplace <nazwa> <hook> "
|
||||
"[\"<argumenty>\" [\"<warunki>\" [\"<regex>\" [\"<komenda>"
|
||||
"\" [\"<zwracany_kod>\" [\"<post_action>\"]]]]]] || addinput [<hook>] || input|"
|
||||
"output|recreate <nazwa> || set <nazwa> <opcja> <wartość> || rename|copy <nazwa> "
|
||||
"<nowa_nazwa> || enable|disable|toggle [<nazwa>|-all [<nazwa>...]] || restart "
|
||||
"<nazwa>|-all [<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"
|
||||
@@ -11770,7 +11775,7 @@ msgstr ""
|
||||
" addoff: dodaje trigger (wyłączony)\n"
|
||||
" addreplace: dodaje lub zastępuje istniejący trigger\n"
|
||||
" nazwa: nazwa triggera\n"
|
||||
" uchwyt: signal, hsignal, modifier, print, command, command_run, "
|
||||
" hook: signal, hsignal, modifier, print, command, command_run, "
|
||||
"timer, config, focus\n"
|
||||
" argumenty: argumenty dla uchwytu, w zależności od jego typu (oddzielone "
|
||||
"średnikami):\n"
|
||||
@@ -11789,6 +11794,8 @@ msgstr ""
|
||||
"zmiennych\n"
|
||||
" komenda: komenda do wykonania (wiele komend można oddzielić \";\"\n"
|
||||
"zwracany_kod: kod zwracany w callbacku (ok (domyślne), ok_eat, error)\n"
|
||||
"post_action: akcja do wykonania po zakończeniu (none (domylślne), disable, "
|
||||
"delete)\n"
|
||||
" addinput: ustawia wejście z domyślnymi argumentami do stworzenia "
|
||||
"triggera\n"
|
||||
" input: ustawia wejście z komendą użytą do stworzenia triggera\n"
|
||||
@@ -11828,6 +11835,7 @@ msgstr ""
|
||||
"(jeśli zdefiniowane)\n"
|
||||
" 3. wykonanie komend(y) (jeśli zdefiniowane)\n"
|
||||
" 4. wyjście z kodem wyjścia (poza modifiers i focus)\n"
|
||||
" 5. wykonanie akcji kończącej\n"
|
||||
"\n"
|
||||
"Przykłady (możesz też spojrzeć na domyślne triggery za pomocą /trigger "
|
||||
"listdefault):\n"
|
||||
@@ -11882,7 +11890,7 @@ msgid "default return codes for hook callback"
|
||||
msgstr "domyślny kod powrotu dla callbacka hooka"
|
||||
|
||||
msgid "trigger post actions"
|
||||
msgstr ""
|
||||
msgstr "triggeruje akcje końcowe"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
@@ -11958,7 +11966,7 @@ msgstr ""
|
||||
"wydajnie używać ok_eat/error)"
|
||||
|
||||
msgid "action to take on the trigger after execution"
|
||||
msgstr ""
|
||||
msgstr "akcje do wykonania po zakończeniu triggera"
|
||||
|
||||
msgid "enable trigger support"
|
||||
msgstr "włącza wsparcie dla triggerów"
|
||||
@@ -11979,9 +11987,8 @@ msgstr "kolor tekstu dla flag wyrażeń regularnych (w /trigger list)"
|
||||
msgid "text color for return code flag (in /trigger list)"
|
||||
msgstr "kolor tekstu dla flagi zwracanego kodu (w /trigger list)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "text color for post action flag (in /trigger list)"
|
||||
msgstr "kolor tekstu dla flag warunków (w /trigger list)"
|
||||
msgstr "kolor tekstu dla flagi końca akcji (w /trigger list)"
|
||||
|
||||
msgid "text color for regular expressions"
|
||||
msgstr "kolor tekstu dla wyrażeń regularnych"
|
||||
@@ -12427,17 +12434,3 @@ msgstr "%s%s: przekroczono czas na \"%s\" z %s"
|
||||
#, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: nie można połączyć: niespodziewany błąd (%d)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "domyślna wiadomość opuszczenia kanału (\"%v\" zostanie zastąpione wersja "
|
||||
#~ "WeeChat)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "domyślna wiadomość wyjścia z IRC (rozłączenia z serwerem) (\"%v\" "
|
||||
#~ "zostanie zastąpione wersją WeeChat)"
|
||||
|
||||
+7
-18
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"Last-Translator: Eduardo Elias <camponez@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: pt_BR\n"
|
||||
@@ -1800,7 +1800,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -3378,8 +3378,11 @@ msgstr ""
|
||||
msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
"formato de tempo para o item de barra \"time\" (veja man strftime para "
|
||||
"especificadores de data/tempo)"
|
||||
@@ -11121,17 +11124,3 @@ msgstr "%s%s: tempo esgotado para \"%s\" com %s"
|
||||
#, fuzzy, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s%s: não foi possível conectar ao remetente"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "mensagem padrão de partida (deixando canal) (\"%v\" será substituído pela "
|
||||
#~ "string de versão do WeeChat)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "mensagem padrão de saída (desconectando do servidor) (\"%v\" será "
|
||||
#~ "substituído pela string de versão do WeeChat)"
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-09-03 08:24+0200\n"
|
||||
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: ru\n"
|
||||
@@ -1597,7 +1597,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -2825,9 +2825,12 @@ msgstr ""
|
||||
msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
msgstr ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr "отображение маркера даты при смене дня"
|
||||
|
||||
msgid ""
|
||||
"jump to previous buffer displayed when jumping to current buffer number "
|
||||
@@ -10714,16 +10717,3 @@ msgstr "%s нет аргумента для параметра \"%s\"\n"
|
||||
#, fuzzy, c-format
|
||||
msgid "%s%s: unable to connect: unexpected error (%d)"
|
||||
msgstr "%s DCC: не могу соединиться с отправителем\n"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "default part message (leaving channel) (\"%v\" will be replaced by "
|
||||
#~ "WeeChat version in string)"
|
||||
#~ msgstr "сообщение покидания канала ('%v' будет заменён на версию WeeChat)"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "default quit message (disconnecting from server) (\"%v\" will be replaced "
|
||||
#~ "by WeeChat version in string)"
|
||||
#~ msgstr ""
|
||||
#~ "сообщение о выходе по-умолчанию ('%v' будет заменён на версию WeeChat)"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2016-05-18 07:43+0200\n"
|
||||
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -64,13 +64,11 @@ msgstr "varsayılan değer"
|
||||
msgid "undefined value allowed (null)"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "IRC color"
|
||||
msgstr "renk"
|
||||
msgstr "İRC rengi"
|
||||
|
||||
#, fuzzy
|
||||
msgid "WeeChat color"
|
||||
msgstr "Weechat temel renkler:"
|
||||
msgstr "WeeChat rengi"
|
||||
|
||||
msgid "Plugin"
|
||||
msgstr "Eklenti"
|
||||
@@ -1427,7 +1425,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -2538,7 +2536,9 @@ msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -6684,7 +6684,7 @@ msgstr "%s Artık %s%s%s olarak biliniyorsunuz"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s%s%s is now known as %s%s%s"
|
||||
msgstr "%s%s%s şimdi %s%s%s%s olarak biliniyormode"
|
||||
msgstr "%s%s%s şimdi %s%s%s%s olarak biliniyor"
|
||||
|
||||
#, c-format
|
||||
msgid "%s%s%s%s%s%s%s%s%s%s has left %s%s%s %s(%s%s%s)"
|
||||
|
||||
+5
-3
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2016-08-30 18:33+0200\n"
|
||||
"POT-Creation-Date: 2016-09-08 21:20+0200\n"
|
||||
"PO-Revision-Date: 2014-08-16 10:27+0200\n"
|
||||
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1428,7 +1428,7 @@ msgid ""
|
||||
" delete_beginning_of_line: delete from beginning of line until cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
@@ -2533,7 +2533,9 @@ msgid "string used to show if mouse is enabled (bar item \"mouse_status\")"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"time format for \"time\" bar item (see man strftime for date/time specifiers)"
|
||||
"time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers) (note: content is evaluated, so you can use colors with format "
|
||||
"\"${color:xxx}\", see /help eval)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
||||
@@ -7392,7 +7392,7 @@ command_init ()
|
||||
"cursor\n"
|
||||
" delete_end_of_line: delete from cursor until end of line\n"
|
||||
" delete_line: delete entire line\n"
|
||||
" clipboard_paste: paste from clipboard\n"
|
||||
" clipboard_paste: paste from the internal clipboard\n"
|
||||
" transpose_chars: transpose two chars\n"
|
||||
" undo: undo last command line action\n"
|
||||
" redo: redo last command line action\n"
|
||||
|
||||
+54
-2
@@ -37,6 +37,7 @@
|
||||
|
||||
#include "weechat.h"
|
||||
#include "wee-config.h"
|
||||
#include "wee-eval.h"
|
||||
#include "wee-hashtable.h"
|
||||
#include "wee-hook.h"
|
||||
#include "wee-log.h"
|
||||
@@ -314,6 +315,7 @@ int config_word_chars_input_count = 0;
|
||||
char **config_nick_colors = NULL;
|
||||
int config_num_nick_colors = 0;
|
||||
struct t_hashtable *config_hashtable_nick_color_force = NULL;
|
||||
char *config_item_time_evaluated = NULL;
|
||||
|
||||
|
||||
/*
|
||||
@@ -953,6 +955,49 @@ config_change_item_away (const void *pointer, void *data,
|
||||
gui_bar_item_update ("away");
|
||||
}
|
||||
|
||||
/*
|
||||
* Callback for changes on options "weechat.look.item_time_format".
|
||||
*/
|
||||
|
||||
void
|
||||
config_change_item_time_format (const void *pointer, void *data,
|
||||
struct t_config_option *option)
|
||||
{
|
||||
/* make C compiler happy */
|
||||
(void) pointer;
|
||||
(void) data;
|
||||
(void) option;
|
||||
|
||||
if (config_item_time_evaluated)
|
||||
free (config_item_time_evaluated);
|
||||
config_item_time_evaluated = eval_expression (
|
||||
CONFIG_STRING(config_look_item_time_format), NULL, NULL, NULL);
|
||||
|
||||
config_change_buffer_content (NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Gets the current time formatted for the bar item status.
|
||||
*/
|
||||
|
||||
void
|
||||
config_get_item_time (char *text_time, int max_length)
|
||||
{
|
||||
time_t date;
|
||||
struct tm *local_time;
|
||||
|
||||
if (!config_item_time_evaluated)
|
||||
config_change_item_time_format (NULL, NULL, NULL);
|
||||
|
||||
text_time[0] = '\0';
|
||||
|
||||
date = time (NULL);
|
||||
local_time = localtime (&date);
|
||||
strftime (text_time, max_length,
|
||||
config_item_time_evaluated,
|
||||
local_time);
|
||||
}
|
||||
|
||||
/*
|
||||
* Callback for changes on option "weechat.look.paste_bracketed".
|
||||
*/
|
||||
@@ -2948,10 +2993,11 @@ config_weechat_init_options ()
|
||||
weechat_config_file, ptr_section,
|
||||
"item_time_format", "string",
|
||||
N_("time format for \"time\" bar item (see man strftime for date/time "
|
||||
"specifiers)"),
|
||||
"specifiers) (note: content is evaluated, so you can use colors "
|
||||
"with format \"${color:xxx}\", see /help eval)"),
|
||||
NULL, 0, 0, "%H:%M", NULL, 0,
|
||||
NULL, NULL, NULL,
|
||||
&config_change_buffer_content, NULL, NULL,
|
||||
&config_change_item_time_format, NULL, NULL,
|
||||
NULL, NULL, NULL);
|
||||
config_look_jump_current_to_previous_buffer = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
@@ -4509,4 +4555,10 @@ config_weechat_free ()
|
||||
hashtable_free (config_hashtable_nick_color_force);
|
||||
config_hashtable_nick_color_force = NULL;
|
||||
}
|
||||
|
||||
if (config_item_time_evaluated)
|
||||
{
|
||||
free (config_item_time_evaluated);
|
||||
config_item_time_evaluated = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -358,6 +358,7 @@ extern int config_weechat_debug_set (const char *plugin_name,
|
||||
extern void config_weechat_debug_set_all ();
|
||||
extern int config_weechat_notify_set (struct t_gui_buffer *buffer,
|
||||
const char *notify);
|
||||
extern void config_get_item_time (char *text_time, int max_length);
|
||||
extern int config_weechat_init ();
|
||||
extern int config_weechat_read ();
|
||||
extern int config_weechat_write ();
|
||||
|
||||
+14
-2
@@ -378,7 +378,7 @@ string_strcasestr (const char *string, const char *search)
|
||||
int
|
||||
string_match (const char *string, const char *mask, int case_sensitive)
|
||||
{
|
||||
const char *ptr_string, *ptr_mask, *pos_word, *pos_end;
|
||||
const char *ptr_string, *ptr_mask, *pos_word, *pos_word2, *pos_end;
|
||||
char *word;
|
||||
int wildcard, length_word;
|
||||
|
||||
@@ -429,7 +429,10 @@ string_match (const char *string, const char *mask, int case_sensitive)
|
||||
/* check if the word is matching */
|
||||
if (wildcard)
|
||||
{
|
||||
/* search the word anywhere in the string (from current position) */
|
||||
/*
|
||||
* search the word anywhere in the string (from current position),
|
||||
* multiple times if needed
|
||||
*/
|
||||
pos_word = (case_sensitive) ?
|
||||
strstr (ptr_string, word) : string_strcasestr (ptr_string, word);
|
||||
if (!pos_word)
|
||||
@@ -437,6 +440,15 @@ string_match (const char *string, const char *mask, int case_sensitive)
|
||||
free (word);
|
||||
return 0;
|
||||
}
|
||||
while (1)
|
||||
{
|
||||
pos_word2 = (case_sensitive) ?
|
||||
strstr (pos_word + length_word, word) :
|
||||
string_strcasestr (pos_word + length_word, word);
|
||||
if (!pos_word2)
|
||||
break;
|
||||
pos_word = pos_word2;
|
||||
}
|
||||
ptr_string = pos_word + length_word;
|
||||
}
|
||||
else
|
||||
|
||||
+3
-16
@@ -26,7 +26,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "../core/weechat.h"
|
||||
#include "../core/wee-arraylist.h"
|
||||
@@ -980,8 +979,6 @@ gui_bar_item_time_cb (const void *pointer, void *data,
|
||||
struct t_gui_buffer *buffer,
|
||||
struct t_hashtable *extra_info)
|
||||
{
|
||||
time_t date;
|
||||
struct tm *local_time;
|
||||
char text_time[128], text_time2[128];
|
||||
|
||||
/* make C compiler happy */
|
||||
@@ -992,11 +989,8 @@ gui_bar_item_time_cb (const void *pointer, void *data,
|
||||
(void) buffer;
|
||||
(void) extra_info;
|
||||
|
||||
date = time (NULL);
|
||||
local_time = localtime (&date);
|
||||
if (strftime (text_time, sizeof (text_time),
|
||||
CONFIG_STRING(config_look_item_time_format),
|
||||
local_time) == 0)
|
||||
config_get_item_time (text_time, sizeof (text_time));
|
||||
if (!text_time[0])
|
||||
return NULL;
|
||||
|
||||
snprintf (text_time2, sizeof (text_time2), "%s%s",
|
||||
@@ -2017,8 +2011,6 @@ gui_bar_item_focus_buffer_nicklist_cb (const void *pointer,
|
||||
int
|
||||
gui_bar_item_timer_cb (const void *pointer, void *data, int remaining_calls)
|
||||
{
|
||||
time_t date;
|
||||
struct tm *local_time;
|
||||
static char item_time_text[128] = { '\0' };
|
||||
char new_item_time_text[128];
|
||||
|
||||
@@ -2026,12 +2018,7 @@ gui_bar_item_timer_cb (const void *pointer, void *data, int remaining_calls)
|
||||
(void) data;
|
||||
(void) remaining_calls;
|
||||
|
||||
date = time (NULL);
|
||||
local_time = localtime (&date);
|
||||
if (strftime (new_item_time_text, sizeof (new_item_time_text),
|
||||
CONFIG_STRING(config_look_item_time_format),
|
||||
local_time) == 0)
|
||||
return WEECHAT_RC_OK;
|
||||
config_get_item_time (new_item_time_text, sizeof (new_item_time_text));
|
||||
|
||||
/*
|
||||
* we update item only if it changed since last time
|
||||
|
||||
+4
-3
@@ -45,7 +45,7 @@
|
||||
#include "gui-window.h"
|
||||
|
||||
|
||||
char *gui_input_clipboard = NULL; /* clipboard content */
|
||||
char *gui_input_clipboard = NULL; /* internal clipboard content */
|
||||
|
||||
|
||||
/*
|
||||
@@ -355,7 +355,7 @@ gui_input_move_to_buffer (struct t_gui_buffer *from_buffer,
|
||||
}
|
||||
|
||||
/*
|
||||
* Copies string into clipboard.
|
||||
* Copies string into the internal clipboard.
|
||||
*/
|
||||
|
||||
void
|
||||
@@ -377,7 +377,8 @@ gui_input_clipboard_copy (const char *buffer, int size)
|
||||
}
|
||||
|
||||
/*
|
||||
* Pastes clipboard at cursor pos in input line (default key: ctrl-Y).
|
||||
* Pastes the internal clipboard at cursor pos in input line
|
||||
* (default key: ctrl-Y).
|
||||
*/
|
||||
|
||||
void
|
||||
|
||||
@@ -3505,11 +3505,12 @@ irc_server_connect_cb (const void *pointer, void *data,
|
||||
|
||||
server->hook_connect = NULL;
|
||||
|
||||
server->sock = sock;
|
||||
|
||||
switch (status)
|
||||
{
|
||||
case WEECHAT_HOOK_CONNECT_OK:
|
||||
/* set socket and IP */
|
||||
server->sock = sock;
|
||||
/* set IP */
|
||||
if (server->current_ip)
|
||||
free (server->current_ip);
|
||||
server->current_ip = (ip_address) ? strdup (ip_address) : NULL;
|
||||
|
||||
@@ -322,6 +322,24 @@ TEST(String, Match)
|
||||
LONGS_EQUAL(1, string_match ("test", "*es*", 1));
|
||||
LONGS_EQUAL(1, string_match ("test", "*ES*", 0));
|
||||
LONGS_EQUAL(0, string_match ("test", "*ES*", 1));
|
||||
LONGS_EQUAL(1, string_match ("TEST", "*es*", 0));
|
||||
LONGS_EQUAL(0, string_match ("TEST", "*es*", 1));
|
||||
LONGS_EQUAL(0, string_match ("aaba", "*aa", 0));
|
||||
LONGS_EQUAL(0, string_match ("aaba", "*aa", 1));
|
||||
LONGS_EQUAL(1, string_match ("abaa", "*aa", 0));
|
||||
LONGS_EQUAL(1, string_match ("abaa", "*aa", 1));
|
||||
LONGS_EQUAL(1, string_match ("aabaa", "*aa", 0));
|
||||
LONGS_EQUAL(1, string_match ("aabaa", "*aa", 1));
|
||||
LONGS_EQUAL(1, string_match ("aabaabaabaa", "*aa", 0));
|
||||
LONGS_EQUAL(1, string_match ("aabaabaabaa", "*aa", 1));
|
||||
LONGS_EQUAL(0, string_match ("abaa", "aa*", 0));
|
||||
LONGS_EQUAL(0, string_match ("abaa", "aa*", 1));
|
||||
LONGS_EQUAL(1, string_match ("aaba", "aa*", 0));
|
||||
LONGS_EQUAL(1, string_match ("aaba", "aa*", 1));
|
||||
LONGS_EQUAL(1, string_match ("aabaa", "aa*", 0));
|
||||
LONGS_EQUAL(1, string_match ("aabaa", "aa*", 1));
|
||||
LONGS_EQUAL(1, string_match ("aabaabaabaa", "aa*", 0));
|
||||
LONGS_EQUAL(1, string_match ("aabaabaabaa", "aa*", 1));
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -2,3 +2,17 @@ This directory contains patches that must be applied for some old Debian/Ubuntu
|
||||
versions, in order to build Debian packages.
|
||||
|
||||
They are automatically applied by the script "tools/build-debian.sh".
|
||||
|
||||
Notes for some versions of distributions:
|
||||
|
||||
* asciidoctor:
|
||||
|
||||
On these distributions, asciidoctor must be installed manually with the command
|
||||
"gem install asciidoctor" (as root):
|
||||
|
||||
- Debian jessie (8.0)
|
||||
- Debian wheezy (7.0)
|
||||
- Ubuntu wily (15.10)
|
||||
- Ubuntu trusty (14.04)
|
||||
- Ubuntu precise (12.04)
|
||||
- Raspbian jessie
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
diff --git a/debian-devel/control b/debian-devel/control
|
||||
index 809e059..a058bcc 100644
|
||||
index 809e059..8fbf0ed 100644
|
||||
--- a/debian-devel/control
|
||||
+++ b/debian-devel/control
|
||||
@@ -3,7 +3,6 @@ Section: net
|
||||
@@ -10,741 +10,6 @@ index 809e059..a058bcc 100644
|
||||
debhelper (>= 9),
|
||||
dh-exec,
|
||||
cmake, pkg-config,
|
||||
@@ -28,7 +27,6 @@ Vcs-Browser: https://anonscm.debian.org/git/users/kolter/weechat.git
|
||||
Package: weechat-devel
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, weechat-devel-curses (>= ${source:Version})
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Conflicts: weechat
|
||||
Description: Fast, light and extensible chat client
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
@@ -55,7 +53,6 @@ Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, weechat-devel-core (= ${binary:Version})
|
||||
Conflicts: weechat-curses
|
||||
Recommends: weechat-devel-plugins (= ${binary:Version})
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Description: Fast, light and extensible chat client - console client
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
for many operating systems. Everything can be done with a keyboard.
|
||||
@@ -82,7 +79,6 @@ Package: weechat-devel-core
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Conflicts: weechat-core
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Description: Fast, light and extensible chat client - core files
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
for many operating systems. Everything can be done with a keyboard.
|
||||
@@ -108,17 +104,6 @@ Description: Fast, light and extensible chat client - plugins
|
||||
- IRC proxy
|
||||
- Trigger
|
||||
|
||||
-Package: weechat-devel-doc
|
||||
-Section: doc
|
||||
-Architecture: all
|
||||
-Depends: ${misc:Depends}
|
||||
-Conflicts: weechat-doc
|
||||
-Description: Fast, light and extensible chat client - documentation
|
||||
- WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
- for many operating systems. Everything can be done with a keyboard.
|
||||
- .
|
||||
- This package contains the html documentation for WeeChat.
|
||||
-
|
||||
Package: weechat-devel-dev
|
||||
Section: devel
|
||||
Architecture: all
|
||||
diff --git a/debian-devel/rules b/debian-devel/rules
|
||||
index d1603c1..ee9fc59 100755
|
||||
--- a/debian-devel/rules
|
||||
+++ b/debian-devel/rules
|
||||
@@ -7,8 +7,8 @@ $(BUILDDIR)/Makefile:
|
||||
cd $(BUILDDIR) && \
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
||||
- -DENABLE_DOC:BOOL=ON \
|
||||
- -DENABLE_MAN:BOOL=ON \
|
||||
+ -DENABLE_DOC:BOOL=OFF \
|
||||
+ -DENABLE_MAN:BOOL=OFF \
|
||||
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
||||
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-en b/debian-devel/weechat-devel-doc.doc-base.dev-en
|
||||
deleted file mode 100644
|
||||
index f53a799..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-en
|
||||
-Title: WeeChat developer's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-fr b/debian-devel/weechat-devel-doc.doc-base.dev-fr
|
||||
deleted file mode 100644
|
||||
index 0c3be2b..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-fr
|
||||
-Title: WeeChat developer's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-ja b/debian-devel/weechat-devel-doc.doc-base.dev-ja
|
||||
deleted file mode 100644
|
||||
index c8b399d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-ja
|
||||
-Title: WeeChat developer's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-de b/debian-devel/weechat-devel-doc.doc-base.faq-de
|
||||
deleted file mode 100644
|
||||
index 090929a..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-de
|
||||
-Title: WeeChat FAQ (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-en b/debian-devel/weechat-devel-doc.doc-base.faq-en
|
||||
deleted file mode 100644
|
||||
index 1003532..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-en
|
||||
-Title: WeeChat FAQ (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-fr b/debian-devel/weechat-devel-doc.doc-base.faq-fr
|
||||
deleted file mode 100644
|
||||
index 654672c..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-fr
|
||||
-Title: WeeChat FAQ (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-it b/debian-devel/weechat-devel-doc.doc-base.faq-it
|
||||
deleted file mode 100644
|
||||
index 68a4805..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-it
|
||||
-Title: WeeChat FAQ (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-ja b/debian-devel/weechat-devel-doc.doc-base.faq-ja
|
||||
deleted file mode 100644
|
||||
index 0b8aa25..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-ja
|
||||
-Title: WeeChat FAQ (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-pl b/debian-devel/weechat-devel-doc.doc-base.faq-pl
|
||||
deleted file mode 100644
|
||||
index e375a56..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-pl
|
||||
-Title: WeeChat FAQ (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-en b/debian-devel/weechat-devel-doc.doc-base.plugin-en
|
||||
deleted file mode 100644
|
||||
index 347b708..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-en
|
||||
-Title: WeeChat plugin API reference (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-fr b/debian-devel/weechat-devel-doc.doc-base.plugin-fr
|
||||
deleted file mode 100644
|
||||
index 1a40c18..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-fr
|
||||
-Title: WeeChat plugin API reference (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-it b/debian-devel/weechat-devel-doc.doc-base.plugin-it
|
||||
deleted file mode 100644
|
||||
index 1585253..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-it
|
||||
-Title: WeeChat plugin API reference (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-ja b/debian-devel/weechat-devel-doc.doc-base.plugin-ja
|
||||
deleted file mode 100644
|
||||
index d072c52..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-ja
|
||||
-Title: WeeChat plugin API reference (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-de b/debian-devel/weechat-devel-doc.doc-base.quickstart-de
|
||||
deleted file mode 100644
|
||||
index 0bdc4a4..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-de
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-de
|
||||
-Title: WeeChat quick start guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-en b/debian-devel/weechat-devel-doc.doc-base.quickstart-en
|
||||
deleted file mode 100644
|
||||
index f1ee63e..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-en
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-en
|
||||
-Title: WeeChat quick start guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-es b/debian-devel/weechat-devel-doc.doc-base.quickstart-es
|
||||
deleted file mode 100644
|
||||
index 9af7165..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-es
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-es
|
||||
-Title: WeeChat quick start guide (Spanish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Spanish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.es.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.es.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-fr b/debian-devel/weechat-devel-doc.doc-base.quickstart-fr
|
||||
deleted file mode 100644
|
||||
index 006dede..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-fr
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-fr
|
||||
-Title: WeeChat quick start guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-it b/debian-devel/weechat-devel-doc.doc-base.quickstart-it
|
||||
deleted file mode 100644
|
||||
index eb05811..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-it
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-it
|
||||
-Title: WeeChat quick start guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-ja b/debian-devel/weechat-devel-doc.doc-base.quickstart-ja
|
||||
deleted file mode 100644
|
||||
index 01ee01f..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-ja
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-ja
|
||||
-Title: WeeChat quick start guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-pl b/debian-devel/weechat-devel-doc.doc-base.quickstart-pl
|
||||
deleted file mode 100644
|
||||
index c661364..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-pl
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-pl
|
||||
-Title: WeeChat quick start guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-ru b/debian-devel/weechat-devel-doc.doc-base.quickstart-ru
|
||||
deleted file mode 100644
|
||||
index 6b662b6..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-ru
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-ru
|
||||
-Title: WeeChat quick start guide (Russian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Russian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ru.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ru.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en
|
||||
deleted file mode 100644
|
||||
index 9eda8ba..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-en
|
||||
-Title: WeeChat Relay protocol (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr
|
||||
deleted file mode 100644
|
||||
index 8d10f3c..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-fr
|
||||
-Title: WeeChat Relay protocol (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja
|
||||
deleted file mode 100644
|
||||
index da7db97..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-ja
|
||||
-Title: WeeChat Relay protocol (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-de b/debian-devel/weechat-devel-doc.doc-base.scripting-de
|
||||
deleted file mode 100644
|
||||
index b4aa3e0..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-de
|
||||
-Title: WeeChat scripting guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-en b/debian-devel/weechat-devel-doc.doc-base.scripting-en
|
||||
deleted file mode 100644
|
||||
index a533a7d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-en
|
||||
-Title: WeeChat scripting guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-fr b/debian-devel/weechat-devel-doc.doc-base.scripting-fr
|
||||
deleted file mode 100644
|
||||
index e3cb1f3..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-fr
|
||||
-Title: WeeChat scripting guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-it b/debian-devel/weechat-devel-doc.doc-base.scripting-it
|
||||
deleted file mode 100644
|
||||
index d4cc0e6..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-it
|
||||
-Title: WeeChat scripting guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-ja b/debian-devel/weechat-devel-doc.doc-base.scripting-ja
|
||||
deleted file mode 100644
|
||||
index 9500d40..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-ja
|
||||
-Title: WeeChat scripting guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-pl b/debian-devel/weechat-devel-doc.doc-base.scripting-pl
|
||||
deleted file mode 100644
|
||||
index 8e70901..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-pl
|
||||
-Title: WeeChat scripting guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-de b/debian-devel/weechat-devel-doc.doc-base.tester-de
|
||||
deleted file mode 100644
|
||||
index e4926f1..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-de
|
||||
-Title: WeeChat tester's guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-en b/debian-devel/weechat-devel-doc.doc-base.tester-en
|
||||
deleted file mode 100644
|
||||
index ce9ac40..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-en
|
||||
-Title: WeeChat tester's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-fr b/debian-devel/weechat-devel-doc.doc-base.tester-fr
|
||||
deleted file mode 100644
|
||||
index 976c7e7..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-fr
|
||||
-Title: WeeChat tester's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-it b/debian-devel/weechat-devel-doc.doc-base.tester-it
|
||||
deleted file mode 100644
|
||||
index 8bb540e..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-it
|
||||
-Title: WeeChat tester's guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-ja b/debian-devel/weechat-devel-doc.doc-base.tester-ja
|
||||
deleted file mode 100644
|
||||
index 4e51e91..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-ja
|
||||
-Title: WeeChat tester's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-pl b/debian-devel/weechat-devel-doc.doc-base.tester-pl
|
||||
deleted file mode 100644
|
||||
index 9090ed5..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-pl
|
||||
-Title: WeeChat tester's guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-de b/debian-devel/weechat-devel-doc.doc-base.user-de
|
||||
deleted file mode 100644
|
||||
index ad2709b..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-de
|
||||
-Title: WeeChat user's guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-en b/debian-devel/weechat-devel-doc.doc-base.user-en
|
||||
deleted file mode 100644
|
||||
index fa468db..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-en
|
||||
-Title: WeeChat user's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-fr b/debian-devel/weechat-devel-doc.doc-base.user-fr
|
||||
deleted file mode 100644
|
||||
index fe6f5ab..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-fr
|
||||
-Title: WeeChat user's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-it b/debian-devel/weechat-devel-doc.doc-base.user-it
|
||||
deleted file mode 100644
|
||||
index 1378c7a..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-it
|
||||
-Title: WeeChat user's guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-ja b/debian-devel/weechat-devel-doc.doc-base.user-ja
|
||||
deleted file mode 100644
|
||||
index 9b30e41..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-ja
|
||||
-Title: WeeChat user's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-pl b/debian-devel/weechat-devel-doc.doc-base.user-pl
|
||||
deleted file mode 100644
|
||||
index 4bcaa4d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-pl
|
||||
-Title: WeeChat user's guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.install b/debian-devel/weechat-devel-doc.install
|
||||
deleted file mode 100644
|
||||
index e99edcd..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.install
|
||||
+++ /dev/null
|
||||
@@ -1 +0,0 @@
|
||||
-usr/share/doc/weechat/*.html usr/share/doc/weechat-devel-doc/html
|
||||
diff --git a/debian-devel/weechat-devel-doc.links b/debian-devel/weechat-devel-doc.links
|
||||
deleted file mode 100644
|
||||
index 1671cfa..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.links
|
||||
+++ /dev/null
|
||||
@@ -1 +0,0 @@
|
||||
-usr/share/doc/weechat-devel-doc/html usr/share/doc/weechat-devel/html
|
||||
diff --git a/debian-stable/control b/debian-stable/control
|
||||
index 74d134c..e0e9c25 100644
|
||||
--- a/debian-stable/control
|
||||
@@ -757,40 +22,3 @@ index 74d134c..e0e9c25 100644
|
||||
debhelper (>= 9),
|
||||
dh-exec,
|
||||
cmake, pkg-config,
|
||||
diff --git a/debian-stable/rules b/debian-stable/rules
|
||||
index a4e1e3d..a244e2f 100755
|
||||
--- a/debian-stable/rules
|
||||
+++ b/debian-stable/rules
|
||||
@@ -7,8 +7,8 @@ $(BUILDDIR)/Makefile:
|
||||
cd $(BUILDDIR) && \
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
||||
- -DENABLE_DOC:BOOL=ON \
|
||||
- -DENABLE_MAN:BOOL=ON \
|
||||
+ -DENABLE_DOC:BOOL=OFF \
|
||||
+ -DENABLE_MAN:BOOL=OFF \
|
||||
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
||||
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
||||
diff --git a/debian-stable/weechat-curses.install b/debian-stable/weechat-curses.install
|
||||
index 9ca6321..fbfdb1f 100644
|
||||
--- a/debian-stable/weechat-curses.install
|
||||
+++ b/debian-stable/weechat-curses.install
|
||||
@@ -1,4 +1,2 @@
|
||||
usr/bin/weechat
|
||||
debian/weechat.xpm usr/share/pixmaps
|
||||
-usr/share/man/man1/weechat.1
|
||||
-usr/share/man/*/man1/weechat.1
|
||||
diff --git a/debian-stable/weechat-curses.links b/debian-stable/weechat-curses.links
|
||||
index 4d0e998..bd9a567 100644
|
||||
--- a/debian-stable/weechat-curses.links
|
||||
+++ b/debian-stable/weechat-curses.links
|
||||
@@ -1,8 +1 @@
|
||||
usr/bin/weechat usr/bin/weechat-curses
|
||||
-usr/share/man/man1/weechat.1.gz usr/share/man/man1/weechat-curses.1.gz
|
||||
-usr/share/man/de/man1/weechat.1.gz usr/share/man/de/man1/weechat-curses.1.gz
|
||||
-usr/share/man/fr/man1/weechat.1.gz usr/share/man/fr/man1/weechat-curses.1.gz
|
||||
-usr/share/man/it/man1/weechat.1.gz usr/share/man/it/man1/weechat-curses.1.gz
|
||||
-usr/share/man/ja/man1/weechat.1.gz usr/share/man/ja/man1/weechat-curses.1.gz
|
||||
-usr/share/man/pl/man1/weechat.1.gz usr/share/man/pl/man1/weechat-curses.1.gz
|
||||
-usr/share/man/ru/man1/weechat.1.gz usr/share/man/ru/man1/weechat-curses.1.gz
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
diff --git a/debian-devel/control b/debian-devel/control
|
||||
index 809e059..09c2db4 100644
|
||||
index 809e059..35e19b8 100644
|
||||
--- a/debian-devel/control
|
||||
+++ b/debian-devel/control
|
||||
@@ -3,9 +3,7 @@ Section: net
|
||||
@@ -29,741 +29,6 @@ index 809e059..09c2db4 100644
|
||||
zlib1g-dev
|
||||
Standards-Version: 3.9.8
|
||||
Homepage: https://weechat.org/
|
||||
@@ -28,7 +26,6 @@ Vcs-Browser: https://anonscm.debian.org/git/users/kolter/weechat.git
|
||||
Package: weechat-devel
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, weechat-devel-curses (>= ${source:Version})
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Conflicts: weechat
|
||||
Description: Fast, light and extensible chat client
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
@@ -55,7 +52,6 @@ Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, weechat-devel-core (= ${binary:Version})
|
||||
Conflicts: weechat-curses
|
||||
Recommends: weechat-devel-plugins (= ${binary:Version})
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Description: Fast, light and extensible chat client - console client
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
for many operating systems. Everything can be done with a keyboard.
|
||||
@@ -82,7 +78,6 @@ Package: weechat-devel-core
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Conflicts: weechat-core
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Description: Fast, light and extensible chat client - core files
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
for many operating systems. Everything can be done with a keyboard.
|
||||
@@ -108,17 +103,6 @@ Description: Fast, light and extensible chat client - plugins
|
||||
- IRC proxy
|
||||
- Trigger
|
||||
|
||||
-Package: weechat-devel-doc
|
||||
-Section: doc
|
||||
-Architecture: all
|
||||
-Depends: ${misc:Depends}
|
||||
-Conflicts: weechat-doc
|
||||
-Description: Fast, light and extensible chat client - documentation
|
||||
- WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
- for many operating systems. Everything can be done with a keyboard.
|
||||
- .
|
||||
- This package contains the html documentation for WeeChat.
|
||||
-
|
||||
Package: weechat-devel-dev
|
||||
Section: devel
|
||||
Architecture: all
|
||||
diff --git a/debian-devel/rules b/debian-devel/rules
|
||||
index d1603c1..ee9fc59 100755
|
||||
--- a/debian-devel/rules
|
||||
+++ b/debian-devel/rules
|
||||
@@ -7,8 +7,8 @@ $(BUILDDIR)/Makefile:
|
||||
cd $(BUILDDIR) && \
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
||||
- -DENABLE_DOC:BOOL=ON \
|
||||
- -DENABLE_MAN:BOOL=ON \
|
||||
+ -DENABLE_DOC:BOOL=OFF \
|
||||
+ -DENABLE_MAN:BOOL=OFF \
|
||||
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
||||
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-en b/debian-devel/weechat-devel-doc.doc-base.dev-en
|
||||
deleted file mode 100644
|
||||
index f53a799..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-en
|
||||
-Title: WeeChat developer's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-fr b/debian-devel/weechat-devel-doc.doc-base.dev-fr
|
||||
deleted file mode 100644
|
||||
index 0c3be2b..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-fr
|
||||
-Title: WeeChat developer's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-ja b/debian-devel/weechat-devel-doc.doc-base.dev-ja
|
||||
deleted file mode 100644
|
||||
index c8b399d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-ja
|
||||
-Title: WeeChat developer's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-de b/debian-devel/weechat-devel-doc.doc-base.faq-de
|
||||
deleted file mode 100644
|
||||
index 090929a..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-de
|
||||
-Title: WeeChat FAQ (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-en b/debian-devel/weechat-devel-doc.doc-base.faq-en
|
||||
deleted file mode 100644
|
||||
index 1003532..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-en
|
||||
-Title: WeeChat FAQ (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-fr b/debian-devel/weechat-devel-doc.doc-base.faq-fr
|
||||
deleted file mode 100644
|
||||
index 654672c..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-fr
|
||||
-Title: WeeChat FAQ (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-it b/debian-devel/weechat-devel-doc.doc-base.faq-it
|
||||
deleted file mode 100644
|
||||
index 68a4805..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-it
|
||||
-Title: WeeChat FAQ (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-ja b/debian-devel/weechat-devel-doc.doc-base.faq-ja
|
||||
deleted file mode 100644
|
||||
index 0b8aa25..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-ja
|
||||
-Title: WeeChat FAQ (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-pl b/debian-devel/weechat-devel-doc.doc-base.faq-pl
|
||||
deleted file mode 100644
|
||||
index e375a56..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-pl
|
||||
-Title: WeeChat FAQ (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-en b/debian-devel/weechat-devel-doc.doc-base.plugin-en
|
||||
deleted file mode 100644
|
||||
index 347b708..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-en
|
||||
-Title: WeeChat plugin API reference (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-fr b/debian-devel/weechat-devel-doc.doc-base.plugin-fr
|
||||
deleted file mode 100644
|
||||
index 1a40c18..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-fr
|
||||
-Title: WeeChat plugin API reference (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-it b/debian-devel/weechat-devel-doc.doc-base.plugin-it
|
||||
deleted file mode 100644
|
||||
index 1585253..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-it
|
||||
-Title: WeeChat plugin API reference (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-ja b/debian-devel/weechat-devel-doc.doc-base.plugin-ja
|
||||
deleted file mode 100644
|
||||
index d072c52..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-ja
|
||||
-Title: WeeChat plugin API reference (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-de b/debian-devel/weechat-devel-doc.doc-base.quickstart-de
|
||||
deleted file mode 100644
|
||||
index 0bdc4a4..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-de
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-de
|
||||
-Title: WeeChat quick start guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-en b/debian-devel/weechat-devel-doc.doc-base.quickstart-en
|
||||
deleted file mode 100644
|
||||
index f1ee63e..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-en
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-en
|
||||
-Title: WeeChat quick start guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-es b/debian-devel/weechat-devel-doc.doc-base.quickstart-es
|
||||
deleted file mode 100644
|
||||
index 9af7165..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-es
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-es
|
||||
-Title: WeeChat quick start guide (Spanish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Spanish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.es.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.es.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-fr b/debian-devel/weechat-devel-doc.doc-base.quickstart-fr
|
||||
deleted file mode 100644
|
||||
index 006dede..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-fr
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-fr
|
||||
-Title: WeeChat quick start guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-it b/debian-devel/weechat-devel-doc.doc-base.quickstart-it
|
||||
deleted file mode 100644
|
||||
index eb05811..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-it
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-it
|
||||
-Title: WeeChat quick start guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-ja b/debian-devel/weechat-devel-doc.doc-base.quickstart-ja
|
||||
deleted file mode 100644
|
||||
index 01ee01f..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-ja
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-ja
|
||||
-Title: WeeChat quick start guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-pl b/debian-devel/weechat-devel-doc.doc-base.quickstart-pl
|
||||
deleted file mode 100644
|
||||
index c661364..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-pl
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-pl
|
||||
-Title: WeeChat quick start guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-ru b/debian-devel/weechat-devel-doc.doc-base.quickstart-ru
|
||||
deleted file mode 100644
|
||||
index 6b662b6..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-ru
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-ru
|
||||
-Title: WeeChat quick start guide (Russian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Russian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ru.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ru.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en
|
||||
deleted file mode 100644
|
||||
index 9eda8ba..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-en
|
||||
-Title: WeeChat Relay protocol (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr
|
||||
deleted file mode 100644
|
||||
index 8d10f3c..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-fr
|
||||
-Title: WeeChat Relay protocol (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja
|
||||
deleted file mode 100644
|
||||
index da7db97..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-ja
|
||||
-Title: WeeChat Relay protocol (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-de b/debian-devel/weechat-devel-doc.doc-base.scripting-de
|
||||
deleted file mode 100644
|
||||
index b4aa3e0..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-de
|
||||
-Title: WeeChat scripting guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-en b/debian-devel/weechat-devel-doc.doc-base.scripting-en
|
||||
deleted file mode 100644
|
||||
index a533a7d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-en
|
||||
-Title: WeeChat scripting guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-fr b/debian-devel/weechat-devel-doc.doc-base.scripting-fr
|
||||
deleted file mode 100644
|
||||
index e3cb1f3..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-fr
|
||||
-Title: WeeChat scripting guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-it b/debian-devel/weechat-devel-doc.doc-base.scripting-it
|
||||
deleted file mode 100644
|
||||
index d4cc0e6..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-it
|
||||
-Title: WeeChat scripting guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-ja b/debian-devel/weechat-devel-doc.doc-base.scripting-ja
|
||||
deleted file mode 100644
|
||||
index 9500d40..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-ja
|
||||
-Title: WeeChat scripting guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-pl b/debian-devel/weechat-devel-doc.doc-base.scripting-pl
|
||||
deleted file mode 100644
|
||||
index 8e70901..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-pl
|
||||
-Title: WeeChat scripting guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-de b/debian-devel/weechat-devel-doc.doc-base.tester-de
|
||||
deleted file mode 100644
|
||||
index e4926f1..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-de
|
||||
-Title: WeeChat tester's guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-en b/debian-devel/weechat-devel-doc.doc-base.tester-en
|
||||
deleted file mode 100644
|
||||
index ce9ac40..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-en
|
||||
-Title: WeeChat tester's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-fr b/debian-devel/weechat-devel-doc.doc-base.tester-fr
|
||||
deleted file mode 100644
|
||||
index 976c7e7..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-fr
|
||||
-Title: WeeChat tester's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-it b/debian-devel/weechat-devel-doc.doc-base.tester-it
|
||||
deleted file mode 100644
|
||||
index 8bb540e..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-it
|
||||
-Title: WeeChat tester's guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-ja b/debian-devel/weechat-devel-doc.doc-base.tester-ja
|
||||
deleted file mode 100644
|
||||
index 4e51e91..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-ja
|
||||
-Title: WeeChat tester's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-pl b/debian-devel/weechat-devel-doc.doc-base.tester-pl
|
||||
deleted file mode 100644
|
||||
index 9090ed5..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-pl
|
||||
-Title: WeeChat tester's guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-de b/debian-devel/weechat-devel-doc.doc-base.user-de
|
||||
deleted file mode 100644
|
||||
index ad2709b..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-de
|
||||
-Title: WeeChat user's guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-en b/debian-devel/weechat-devel-doc.doc-base.user-en
|
||||
deleted file mode 100644
|
||||
index fa468db..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-en
|
||||
-Title: WeeChat user's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-fr b/debian-devel/weechat-devel-doc.doc-base.user-fr
|
||||
deleted file mode 100644
|
||||
index fe6f5ab..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-fr
|
||||
-Title: WeeChat user's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-it b/debian-devel/weechat-devel-doc.doc-base.user-it
|
||||
deleted file mode 100644
|
||||
index 1378c7a..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-it
|
||||
-Title: WeeChat user's guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-ja b/debian-devel/weechat-devel-doc.doc-base.user-ja
|
||||
deleted file mode 100644
|
||||
index 9b30e41..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-ja
|
||||
-Title: WeeChat user's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-pl b/debian-devel/weechat-devel-doc.doc-base.user-pl
|
||||
deleted file mode 100644
|
||||
index 4bcaa4d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-pl
|
||||
-Title: WeeChat user's guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.install b/debian-devel/weechat-devel-doc.install
|
||||
deleted file mode 100644
|
||||
index e99edcd..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.install
|
||||
+++ /dev/null
|
||||
@@ -1 +0,0 @@
|
||||
-usr/share/doc/weechat/*.html usr/share/doc/weechat-devel-doc/html
|
||||
diff --git a/debian-devel/weechat-devel-doc.links b/debian-devel/weechat-devel-doc.links
|
||||
deleted file mode 100644
|
||||
index 1671cfa..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.links
|
||||
+++ /dev/null
|
||||
@@ -1 +0,0 @@
|
||||
-usr/share/doc/weechat-devel-doc/html usr/share/doc/weechat-devel/html
|
||||
diff --git a/debian-stable/control b/debian-stable/control
|
||||
index 74d134c..9780937 100644
|
||||
--- a/debian-stable/control
|
||||
@@ -795,43 +60,6 @@ index 74d134c..9780937 100644
|
||||
zlib1g-dev
|
||||
Standards-Version: 3.9.8
|
||||
Homepage: https://weechat.org/
|
||||
diff --git a/debian-stable/rules b/debian-stable/rules
|
||||
index a4e1e3d..a244e2f 100755
|
||||
--- a/debian-stable/rules
|
||||
+++ b/debian-stable/rules
|
||||
@@ -7,8 +7,8 @@ $(BUILDDIR)/Makefile:
|
||||
cd $(BUILDDIR) && \
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
||||
- -DENABLE_DOC:BOOL=ON \
|
||||
- -DENABLE_MAN:BOOL=ON \
|
||||
+ -DENABLE_DOC:BOOL=OFF \
|
||||
+ -DENABLE_MAN:BOOL=OFF \
|
||||
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
||||
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
||||
diff --git a/debian-stable/weechat-curses.install b/debian-stable/weechat-curses.install
|
||||
index 9ca6321..fbfdb1f 100644
|
||||
--- a/debian-stable/weechat-curses.install
|
||||
+++ b/debian-stable/weechat-curses.install
|
||||
@@ -1,4 +1,2 @@
|
||||
usr/bin/weechat
|
||||
debian/weechat.xpm usr/share/pixmaps
|
||||
-usr/share/man/man1/weechat.1
|
||||
-usr/share/man/*/man1/weechat.1
|
||||
diff --git a/debian-stable/weechat-curses.links b/debian-stable/weechat-curses.links
|
||||
index 4d0e998..bd9a567 100644
|
||||
--- a/debian-stable/weechat-curses.links
|
||||
+++ b/debian-stable/weechat-curses.links
|
||||
@@ -1,8 +1 @@
|
||||
usr/bin/weechat usr/bin/weechat-curses
|
||||
-usr/share/man/man1/weechat.1.gz usr/share/man/man1/weechat-curses.1.gz
|
||||
-usr/share/man/de/man1/weechat.1.gz usr/share/man/de/man1/weechat-curses.1.gz
|
||||
-usr/share/man/fr/man1/weechat.1.gz usr/share/man/fr/man1/weechat-curses.1.gz
|
||||
-usr/share/man/it/man1/weechat.1.gz usr/share/man/it/man1/weechat-curses.1.gz
|
||||
-usr/share/man/ja/man1/weechat.1.gz usr/share/man/ja/man1/weechat-curses.1.gz
|
||||
-usr/share/man/pl/man1/weechat.1.gz usr/share/man/pl/man1/weechat-curses.1.gz
|
||||
-usr/share/man/ru/man1/weechat.1.gz usr/share/man/ru/man1/weechat-curses.1.gz
|
||||
diff --git a/debian-stable/weechat-plugins.install b/debian-stable/weechat-plugins.install
|
||||
old mode 100755
|
||||
new mode 100644
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
diff --git a/debian-devel/control b/debian-devel/control
|
||||
index 809e059..cce7e04 100644
|
||||
index 809e059..5f81261 100644
|
||||
--- a/debian-devel/control
|
||||
+++ b/debian-devel/control
|
||||
@@ -3,9 +3,7 @@ Section: net
|
||||
@@ -26,741 +26,6 @@ index 809e059..cce7e04 100644
|
||||
zlib1g-dev
|
||||
Standards-Version: 3.9.8
|
||||
Homepage: https://weechat.org/
|
||||
@@ -28,7 +26,6 @@ Vcs-Browser: https://anonscm.debian.org/git/users/kolter/weechat.git
|
||||
Package: weechat-devel
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, weechat-devel-curses (>= ${source:Version})
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Conflicts: weechat
|
||||
Description: Fast, light and extensible chat client
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
@@ -55,7 +52,6 @@ Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, weechat-devel-core (= ${binary:Version})
|
||||
Conflicts: weechat-curses
|
||||
Recommends: weechat-devel-plugins (= ${binary:Version})
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Description: Fast, light and extensible chat client - console client
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
for many operating systems. Everything can be done with a keyboard.
|
||||
@@ -82,7 +78,6 @@ Package: weechat-devel-core
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Conflicts: weechat-core
|
||||
-Suggests: weechat-devel-doc (= ${source:Version})
|
||||
Description: Fast, light and extensible chat client - core files
|
||||
WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
for many operating systems. Everything can be done with a keyboard.
|
||||
@@ -108,17 +103,6 @@ Description: Fast, light and extensible chat client - plugins
|
||||
- IRC proxy
|
||||
- Trigger
|
||||
|
||||
-Package: weechat-devel-doc
|
||||
-Section: doc
|
||||
-Architecture: all
|
||||
-Depends: ${misc:Depends}
|
||||
-Conflicts: weechat-doc
|
||||
-Description: Fast, light and extensible chat client - documentation
|
||||
- WeeChat (Wee Enhanced Environment for Chat) is a fast and light chat client
|
||||
- for many operating systems. Everything can be done with a keyboard.
|
||||
- .
|
||||
- This package contains the html documentation for WeeChat.
|
||||
-
|
||||
Package: weechat-devel-dev
|
||||
Section: devel
|
||||
Architecture: all
|
||||
diff --git a/debian-devel/rules b/debian-devel/rules
|
||||
index d1603c1..ee9fc59 100755
|
||||
--- a/debian-devel/rules
|
||||
+++ b/debian-devel/rules
|
||||
@@ -7,8 +7,8 @@ $(BUILDDIR)/Makefile:
|
||||
cd $(BUILDDIR) && \
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
||||
- -DENABLE_DOC:BOOL=ON \
|
||||
- -DENABLE_MAN:BOOL=ON \
|
||||
+ -DENABLE_DOC:BOOL=OFF \
|
||||
+ -DENABLE_MAN:BOOL=OFF \
|
||||
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
||||
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-en b/debian-devel/weechat-devel-doc.doc-base.dev-en
|
||||
deleted file mode 100644
|
||||
index f53a799..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-en
|
||||
-Title: WeeChat developer's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-fr b/debian-devel/weechat-devel-doc.doc-base.dev-fr
|
||||
deleted file mode 100644
|
||||
index 0c3be2b..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-fr
|
||||
-Title: WeeChat developer's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.dev-ja b/debian-devel/weechat-devel-doc.doc-base.dev-ja
|
||||
deleted file mode 100644
|
||||
index c8b399d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.dev-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-dev-ja
|
||||
-Title: WeeChat developer's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat internals and
|
||||
- how to contribute to WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_dev.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_dev.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-de b/debian-devel/weechat-devel-doc.doc-base.faq-de
|
||||
deleted file mode 100644
|
||||
index 090929a..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-de
|
||||
-Title: WeeChat FAQ (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-en b/debian-devel/weechat-devel-doc.doc-base.faq-en
|
||||
deleted file mode 100644
|
||||
index 1003532..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-en
|
||||
-Title: WeeChat FAQ (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-fr b/debian-devel/weechat-devel-doc.doc-base.faq-fr
|
||||
deleted file mode 100644
|
||||
index 654672c..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-fr
|
||||
-Title: WeeChat FAQ (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-it b/debian-devel/weechat-devel-doc.doc-base.faq-it
|
||||
deleted file mode 100644
|
||||
index 68a4805..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-it
|
||||
-Title: WeeChat FAQ (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-ja b/debian-devel/weechat-devel-doc.doc-base.faq-ja
|
||||
deleted file mode 100644
|
||||
index 0b8aa25..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-ja
|
||||
-Title: WeeChat FAQ (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.faq-pl b/debian-devel/weechat-devel-doc.doc-base.faq-pl
|
||||
deleted file mode 100644
|
||||
index e375a56..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.faq-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-faq-pl
|
||||
-Title: WeeChat FAQ (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document answers frequently asked questions
|
||||
- about the WeeChat IRC client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_faq.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_faq.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-en b/debian-devel/weechat-devel-doc.doc-base.plugin-en
|
||||
deleted file mode 100644
|
||||
index 347b708..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-en
|
||||
-Title: WeeChat plugin API reference (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-fr b/debian-devel/weechat-devel-doc.doc-base.plugin-fr
|
||||
deleted file mode 100644
|
||||
index 1a40c18..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-fr
|
||||
-Title: WeeChat plugin API reference (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-it b/debian-devel/weechat-devel-doc.doc-base.plugin-it
|
||||
deleted file mode 100644
|
||||
index 1585253..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-it
|
||||
-Title: WeeChat plugin API reference (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.plugin-ja b/debian-devel/weechat-devel-doc.doc-base.plugin-ja
|
||||
deleted file mode 100644
|
||||
index d072c52..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.plugin-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-plugin-ja
|
||||
-Title: WeeChat plugin API reference (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create plugins
|
||||
- for WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_plugin_api.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-de b/debian-devel/weechat-devel-doc.doc-base.quickstart-de
|
||||
deleted file mode 100644
|
||||
index 0bdc4a4..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-de
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-de
|
||||
-Title: WeeChat quick start guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-en b/debian-devel/weechat-devel-doc.doc-base.quickstart-en
|
||||
deleted file mode 100644
|
||||
index f1ee63e..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-en
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-en
|
||||
-Title: WeeChat quick start guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-es b/debian-devel/weechat-devel-doc.doc-base.quickstart-es
|
||||
deleted file mode 100644
|
||||
index 9af7165..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-es
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-es
|
||||
-Title: WeeChat quick start guide (Spanish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Spanish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.es.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.es.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-fr b/debian-devel/weechat-devel-doc.doc-base.quickstart-fr
|
||||
deleted file mode 100644
|
||||
index 006dede..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-fr
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-fr
|
||||
-Title: WeeChat quick start guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-it b/debian-devel/weechat-devel-doc.doc-base.quickstart-it
|
||||
deleted file mode 100644
|
||||
index eb05811..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-it
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-it
|
||||
-Title: WeeChat quick start guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-ja b/debian-devel/weechat-devel-doc.doc-base.quickstart-ja
|
||||
deleted file mode 100644
|
||||
index 01ee01f..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-ja
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-ja
|
||||
-Title: WeeChat quick start guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-pl b/debian-devel/weechat-devel-doc.doc-base.quickstart-pl
|
||||
deleted file mode 100644
|
||||
index c661364..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-pl
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-pl
|
||||
-Title: WeeChat quick start guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.quickstart-ru b/debian-devel/weechat-devel-doc.doc-base.quickstart-ru
|
||||
deleted file mode 100644
|
||||
index 6b662b6..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.quickstart-ru
|
||||
+++ /dev/null
|
||||
@@ -1,9 +0,0 @@
|
||||
-Document: weechat-quickstart-ru
|
||||
-Title: WeeChat quick start guide (Russian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: A short HowTo for new WeeChat users (Russian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ru.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_quickstart.ru.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en
|
||||
deleted file mode 100644
|
||||
index 9eda8ba..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-en
|
||||
-Title: WeeChat Relay protocol (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr
|
||||
deleted file mode 100644
|
||||
index 8d10f3c..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-fr
|
||||
-Title: WeeChat Relay protocol (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja b/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja
|
||||
deleted file mode 100644
|
||||
index da7db97..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.relay-protocol-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-relay-protocol-ja
|
||||
-Title: WeeChat Relay protocol (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes WeeChat Relay Protocol, used by
|
||||
- remote GUI to communicate with Relay plugin (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_relay_protocol.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-de b/debian-devel/weechat-devel-doc.doc-base.scripting-de
|
||||
deleted file mode 100644
|
||||
index b4aa3e0..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-de
|
||||
-Title: WeeChat scripting guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-en b/debian-devel/weechat-devel-doc.doc-base.scripting-en
|
||||
deleted file mode 100644
|
||||
index a533a7d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-en
|
||||
-Title: WeeChat scripting guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-fr b/debian-devel/weechat-devel-doc.doc-base.scripting-fr
|
||||
deleted file mode 100644
|
||||
index e3cb1f3..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-fr
|
||||
-Title: WeeChat scripting guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-it b/debian-devel/weechat-devel-doc.doc-base.scripting-it
|
||||
deleted file mode 100644
|
||||
index d4cc0e6..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-it
|
||||
-Title: WeeChat scripting guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-ja b/debian-devel/weechat-devel-doc.doc-base.scripting-ja
|
||||
deleted file mode 100644
|
||||
index 9500d40..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-ja
|
||||
-Title: WeeChat scripting guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.scripting-pl b/debian-devel/weechat-devel-doc.doc-base.scripting-pl
|
||||
deleted file mode 100644
|
||||
index 8e70901..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.scripting-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-scripting-pl
|
||||
-Title: WeeChat scripting guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes the API to create scripts
|
||||
- for WeeChat (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_scripting.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-de b/debian-devel/weechat-devel-doc.doc-base.tester-de
|
||||
deleted file mode 100644
|
||||
index e4926f1..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-de
|
||||
-Title: WeeChat tester's guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-en b/debian-devel/weechat-devel-doc.doc-base.tester-en
|
||||
deleted file mode 100644
|
||||
index ce9ac40..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-en
|
||||
-Title: WeeChat tester's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-fr b/debian-devel/weechat-devel-doc.doc-base.tester-fr
|
||||
deleted file mode 100644
|
||||
index 976c7e7..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-fr
|
||||
-Title: WeeChat tester's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-it b/debian-devel/weechat-devel-doc.doc-base.tester-it
|
||||
deleted file mode 100644
|
||||
index 8bb540e..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-it
|
||||
-Title: WeeChat tester's guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-ja b/debian-devel/weechat-devel-doc.doc-base.tester-ja
|
||||
deleted file mode 100644
|
||||
index 4e51e91..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-ja
|
||||
-Title: WeeChat tester's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.tester-pl b/debian-devel/weechat-devel-doc.doc-base.tester-pl
|
||||
deleted file mode 100644
|
||||
index 9090ed5..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.tester-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-tester-pl
|
||||
-Title: WeeChat tester's guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This document describes how to test and report
|
||||
- bugs against the WeeChat IRC Client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_tester.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_tester.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-de b/debian-devel/weechat-devel-doc.doc-base.user-de
|
||||
deleted file mode 100644
|
||||
index ad2709b..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-de
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-de
|
||||
-Title: WeeChat user's guide (German)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (German version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.de.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.de.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-en b/debian-devel/weechat-devel-doc.doc-base.user-en
|
||||
deleted file mode 100644
|
||||
index fa468db..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-en
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-en
|
||||
-Title: WeeChat user's guide (English)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (English version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.en.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.en.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-fr b/debian-devel/weechat-devel-doc.doc-base.user-fr
|
||||
deleted file mode 100644
|
||||
index fe6f5ab..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-fr
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-fr
|
||||
-Title: WeeChat user's guide (French)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (French version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.fr.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.fr.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-it b/debian-devel/weechat-devel-doc.doc-base.user-it
|
||||
deleted file mode 100644
|
||||
index 1378c7a..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-it
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-it
|
||||
-Title: WeeChat user's guide (Italian)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Italian version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.it.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.it.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-ja b/debian-devel/weechat-devel-doc.doc-base.user-ja
|
||||
deleted file mode 100644
|
||||
index 9b30e41..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-ja
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-ja
|
||||
-Title: WeeChat user's guide (Japanese)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Japanese version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.ja.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.ja.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.doc-base.user-pl b/debian-devel/weechat-devel-doc.doc-base.user-pl
|
||||
deleted file mode 100644
|
||||
index 4bcaa4d..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.doc-base.user-pl
|
||||
+++ /dev/null
|
||||
@@ -1,10 +0,0 @@
|
||||
-Document: weechat-user-pl
|
||||
-Title: WeeChat user's guide (Polish)
|
||||
-Author: Sébastien Helleu
|
||||
-Abstract: This manual describes how to use the WeeChat
|
||||
- IRC client (Polish version).
|
||||
-Section: Network/Communication
|
||||
-
|
||||
-Format: HTML
|
||||
-Index: /usr/share/doc/weechat-devel-doc/html/weechat_user.pl.html
|
||||
-Files: /usr/share/doc/weechat-devel-doc/html/weechat_user.pl.html
|
||||
diff --git a/debian-devel/weechat-devel-doc.install b/debian-devel/weechat-devel-doc.install
|
||||
deleted file mode 100644
|
||||
index e99edcd..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.install
|
||||
+++ /dev/null
|
||||
@@ -1 +0,0 @@
|
||||
-usr/share/doc/weechat/*.html usr/share/doc/weechat-devel-doc/html
|
||||
diff --git a/debian-devel/weechat-devel-doc.links b/debian-devel/weechat-devel-doc.links
|
||||
deleted file mode 100644
|
||||
index 1671cfa..0000000
|
||||
--- a/debian-devel/weechat-devel-doc.links
|
||||
+++ /dev/null
|
||||
@@ -1 +0,0 @@
|
||||
-usr/share/doc/weechat-devel-doc/html usr/share/doc/weechat-devel/html
|
||||
diff --git a/debian-stable/control b/debian-stable/control
|
||||
index 74d134c..5f3d8ce 100644
|
||||
--- a/debian-stable/control
|
||||
@@ -789,43 +54,6 @@ index 74d134c..5f3d8ce 100644
|
||||
zlib1g-dev
|
||||
Standards-Version: 3.9.8
|
||||
Homepage: https://weechat.org/
|
||||
diff --git a/debian-stable/rules b/debian-stable/rules
|
||||
index a4e1e3d..a244e2f 100755
|
||||
--- a/debian-stable/rules
|
||||
+++ b/debian-stable/rules
|
||||
@@ -7,8 +7,8 @@ $(BUILDDIR)/Makefile:
|
||||
cd $(BUILDDIR) && \
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
||||
- -DENABLE_DOC:BOOL=ON \
|
||||
- -DENABLE_MAN:BOOL=ON \
|
||||
+ -DENABLE_DOC:BOOL=OFF \
|
||||
+ -DENABLE_MAN:BOOL=OFF \
|
||||
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
||||
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
||||
diff --git a/debian-stable/weechat-curses.install b/debian-stable/weechat-curses.install
|
||||
index 9ca6321..fbfdb1f 100644
|
||||
--- a/debian-stable/weechat-curses.install
|
||||
+++ b/debian-stable/weechat-curses.install
|
||||
@@ -1,4 +1,2 @@
|
||||
usr/bin/weechat
|
||||
debian/weechat.xpm usr/share/pixmaps
|
||||
-usr/share/man/man1/weechat.1
|
||||
-usr/share/man/*/man1/weechat.1
|
||||
diff --git a/debian-stable/weechat-curses.links b/debian-stable/weechat-curses.links
|
||||
index 4d0e998..bd9a567 100644
|
||||
--- a/debian-stable/weechat-curses.links
|
||||
+++ b/debian-stable/weechat-curses.links
|
||||
@@ -1,8 +1 @@
|
||||
usr/bin/weechat usr/bin/weechat-curses
|
||||
-usr/share/man/man1/weechat.1.gz usr/share/man/man1/weechat-curses.1.gz
|
||||
-usr/share/man/de/man1/weechat.1.gz usr/share/man/de/man1/weechat-curses.1.gz
|
||||
-usr/share/man/fr/man1/weechat.1.gz usr/share/man/fr/man1/weechat-curses.1.gz
|
||||
-usr/share/man/it/man1/weechat.1.gz usr/share/man/it/man1/weechat-curses.1.gz
|
||||
-usr/share/man/ja/man1/weechat.1.gz usr/share/man/ja/man1/weechat-curses.1.gz
|
||||
-usr/share/man/pl/man1/weechat.1.gz usr/share/man/pl/man1/weechat-curses.1.gz
|
||||
-usr/share/man/ru/man1/weechat.1.gz usr/share/man/ru/man1/weechat-curses.1.gz
|
||||
diff --git a/debian-stable/weechat-plugins.install b/debian-stable/weechat-plugins.install
|
||||
old mode 100755
|
||||
new mode 100644
|
||||
|
||||
+2
-2
@@ -32,9 +32,9 @@
|
||||
# devel-patch the patch version of devel (e.g. 2 for version 1.4.2)
|
||||
#
|
||||
|
||||
WEECHAT_STABLE=1.5
|
||||
WEECHAT_STABLE=1.6
|
||||
WEECHAT_DEVEL=1.6
|
||||
WEECHAT_DEVEL_FULL=1.6-rc1
|
||||
WEECHAT_DEVEL_FULL=1.6
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
echo >&2 "Syntax: $0 stable|devel|devel-full|devel-major|devel-minor|devel-patch"
|
||||
|
||||
+28
-13
@@ -23,14 +23,19 @@
|
||||
# It must be used *ONLY* for a stable release (version "X.Y.Z"), not for
|
||||
# a development version (version "X.Y.Z-dev" or "X.Y.Z-rcN").
|
||||
#
|
||||
# Instructions: execute these commands inside your build directory,
|
||||
# after running cmake or configure script (replace X.Y.Z by WeeChat version):
|
||||
# Instructions:
|
||||
#
|
||||
# $ cygport weechat-X.Y.Z-1.cygport fetch
|
||||
# $ cygport weechat-X.Y.Z-1.cygport almostall
|
||||
# 1. install asciidoctor (to build man page/docs):
|
||||
#
|
||||
# ==> packages are built in directory:
|
||||
# ./weechat-X.Y.Z-1.<arch>/dist/weechat/
|
||||
# $ gem install -n /usr/local/bin asciidoctor
|
||||
#
|
||||
# 2. execute these commands inside your build directory, after running cmake
|
||||
# or configure script (replace X.Y.Z by WeeChat version):
|
||||
#
|
||||
# $ cygport weechat-X.Y.Z-1.cygport fetch
|
||||
# $ cygport weechat-X.Y.Z-1.cygport almostall
|
||||
#
|
||||
# Packages are built in directory: ./weechat-X.Y.Z-1.<arch>/dist/weechat/
|
||||
#
|
||||
|
||||
inherit cmake
|
||||
@@ -53,12 +58,13 @@ ruby tcl-devel zlib-devel"
|
||||
#
|
||||
# CMake compilation of WeeChat:
|
||||
# 1. set prefix to /usr
|
||||
# 2. disable Guile plugin because WeeChat requires Guile >= 2.0,
|
||||
# 2. enable build of man pages and documentation
|
||||
# 3. disable Guile plugin because WeeChat requires Guile >= 2.0,
|
||||
# which is not yet available in Cygwin
|
||||
# 3. disable Javascript plugin because libv8 is not available in Cygwin
|
||||
# 4. disable Javascript plugin because libv8 is not available in Cygwin
|
||||
#
|
||||
CYGCMAKE_ARGS="-DCMAKE_INSTALL_PREFIX=/usr -DENABLE_GUILE=OFF \
|
||||
-DENABLE_JAVASCRIPT=OFF"
|
||||
CYGCMAKE_ARGS="-DCMAKE_INSTALL_PREFIX=/usr -DENABLE_MAN=ON -DENABLE_DOC=ON \
|
||||
-DENABLE_GUILE=OFF -DENABLE_JAVASCRIPT=OFF"
|
||||
|
||||
#
|
||||
# Build 8 Cygwin packages:
|
||||
@@ -69,14 +75,15 @@ CYGCMAKE_ARGS="-DCMAKE_INSTALL_PREFIX=/usr -DENABLE_GUILE=OFF \
|
||||
# weechat-lua
|
||||
# weechat-tcl
|
||||
# weechat-devel
|
||||
# weechat-doc
|
||||
#
|
||||
PKG_NAMES="${PN} ${PN}-python ${PN}-perl ${PN}-ruby ${PN}-lua ${PN}-tcl \
|
||||
${PN}-devel"
|
||||
PKG_HINTS="setup python perl ruby lua tcl devel"
|
||||
${PN}-devel ${PN}-doc"
|
||||
PKG_HINTS="setup python perl ruby lua tcl devel doc"
|
||||
|
||||
#
|
||||
# Package "weechat": binary, all plugins except scripting languages,
|
||||
# translations, icon
|
||||
# translations, icon, man pages
|
||||
#
|
||||
weechat_SUMMARY="Fast, light and extensible chat client (IRC/XMPP)"
|
||||
weechat_DESCRIPTION="WeeChat (Wee Enhanced Environment for Chat) is a fast, \
|
||||
@@ -97,6 +104,7 @@ weechat_CONTENTS="
|
||||
usr/lib/weechat/plugins/xfer.dll
|
||||
usr/share/locale/
|
||||
usr/share/icons/
|
||||
usr/share/man/
|
||||
usr/share/doc/weechat/AUTHORS.adoc
|
||||
usr/share/doc/weechat/ChangeLog.adoc
|
||||
usr/share/doc/weechat/Contributing.adoc
|
||||
@@ -151,3 +159,10 @@ weechat_tcl_REQUIRES="weechat"
|
||||
weechat_devel_CATEGORY="Net Devel"
|
||||
weechat_devel_SUMMARY="Development files to build WeeChat plugins"
|
||||
weechat_devel_CONTENTS="usr/include/ usr/lib/pkgconfig/"
|
||||
|
||||
#
|
||||
# Package "weechat-doc": documentation
|
||||
#
|
||||
weechat_doc_CATEGORY="Net Doc"
|
||||
weechat_doc_SUMMARY="Documentation for WeeChat"
|
||||
weechat_doc_CONTENTS="usr/share/doc/weechat/*.html"
|
||||
|
||||
+3
-1
@@ -23,7 +23,7 @@
|
||||
#
|
||||
|
||||
%define name weechat
|
||||
%define version 1.5
|
||||
%define version 1.6
|
||||
%define release 1
|
||||
|
||||
Name: %{name}
|
||||
@@ -77,6 +77,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_prefix}/share/icons/hicolor/32x32/apps/weechat.png
|
||||
|
||||
%changelog
|
||||
* Sun Oct 02 2016 Sébastien Helleu <flashcode@flashtux.org> 1.6-1
|
||||
- Released version 1.6
|
||||
* Sun May 01 2016 Sébastien Helleu <flashcode@flashtux.org> 1.5-1
|
||||
- Released version 1.5
|
||||
* Sun Jan 10 2016 Sébastien Helleu <flashcode@flashtux.org> 1.4-1
|
||||
|
||||
Reference in New Issue
Block a user