mirror of
https://github.com/weechat/weechat.git
synced 2026-06-28 22:06:38 +02:00
core: rename option weechat.look.save_layout_on_exit to weechat.look.store_layout_on_exit, replace "save" by "store" for layouts
This commit is contained in:
@@ -29,7 +29,8 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
* core: use "+" separator to make a logical "and" between tags in command
|
||||
/filter, option weechat.look.highlight_tags and buffer property
|
||||
"highlight_tags"
|
||||
* core: rename options save/reset to store/del in command /layout
|
||||
* core: rename options save/reset to store/del in command /layout, rename
|
||||
option weechat.look.save_layout_on_exit to weechat.look.store_layout_on_exit
|
||||
* core: add options weechat.look.buffer_auto_renumber and
|
||||
weechat.look.buffer_position, add option "renumber" in command /buffer, add
|
||||
bar item "buffer_last_number" (task #12766)
|
||||
|
||||
@@ -13,6 +13,11 @@ http://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
|
||||
|
||||
== Version 0.4.3 (under dev)
|
||||
|
||||
=== Layout
|
||||
|
||||
Option 'weechat.look.save_layout_on_exit' has been renamed to
|
||||
'weechat.look.store_layout_on_exit'.
|
||||
|
||||
=== Colors in messages
|
||||
|
||||
The color code for "reverse video" in IRC message has been fixed: now WeeChat
|
||||
|
||||
@@ -483,16 +483,16 @@ Beispiele:
|
||||
rename <name> <new_name>
|
||||
|
||||
store: store current buffers/windows in a layout
|
||||
apply: apply saved layout
|
||||
apply: apply stored layout
|
||||
leave: leave current layout (does not update any layout)
|
||||
del: delete buffers and/or windows in a saved layout
|
||||
del: delete buffers and/or windows in a stored layout
|
||||
(if neither "buffers" nor "windows" is given after the name, the layout is deleted)
|
||||
rename: rename a layout
|
||||
name: name for saved layout (default is "default")
|
||||
buffers: save/apply only buffers (order of buffers)
|
||||
windows: save/apply only windows (buffer displayed by each window)
|
||||
name: name for stored layout (default is "default")
|
||||
buffers: store/apply only buffers (order of buffers)
|
||||
windows: store/apply only windows (buffer displayed by each window)
|
||||
|
||||
Without argument, this command displays saved layouts.
|
||||
Without argument, this command displays stored layouts.
|
||||
----
|
||||
|
||||
[[command_weechat_mouse]]
|
||||
|
||||
@@ -803,11 +803,6 @@
|
||||
** Typ: boolesch
|
||||
** Werte: on, off (Standardwert: `on`)
|
||||
|
||||
* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
|
||||
** Beschreibung: `beim Beenden wird das aktuelle Layout automatisch gesichert (Buffer, Fenster oder beides)`
|
||||
** Typ: integer
|
||||
** Werte: none, buffers, windows, all (Standardwert: `none`)
|
||||
|
||||
* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
|
||||
** Beschreibung: `Anzahl der zu scrollenden Zeilen wenn seitenweise geblättert wird (Bild hoch/runter)`
|
||||
** Typ: integer
|
||||
@@ -838,6 +833,11 @@
|
||||
** Typ: Zeichenkette
|
||||
** Werte: beliebige Zeichenkette (Standardwert: `""`)
|
||||
|
||||
* [[option_weechat.look.store_layout_on_exit]] *weechat.look.store_layout_on_exit*
|
||||
** Beschreibung: `store layout on exit (buffers, windows, or both)`
|
||||
** Typ: integer
|
||||
** Werte: none, buffers, windows, all (Standardwert: `none`)
|
||||
|
||||
* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
|
||||
** Beschreibung: `number of spaces used to display tabs in messages`
|
||||
** Typ: integer
|
||||
|
||||
@@ -483,16 +483,16 @@ Examples:
|
||||
rename <name> <new_name>
|
||||
|
||||
store: store current buffers/windows in a layout
|
||||
apply: apply saved layout
|
||||
apply: apply stored layout
|
||||
leave: leave current layout (does not update any layout)
|
||||
del: delete buffers and/or windows in a saved layout
|
||||
del: delete buffers and/or windows in a stored layout
|
||||
(if neither "buffers" nor "windows" is given after the name, the layout is deleted)
|
||||
rename: rename a layout
|
||||
name: name for saved layout (default is "default")
|
||||
buffers: save/apply only buffers (order of buffers)
|
||||
windows: save/apply only windows (buffer displayed by each window)
|
||||
name: name for stored layout (default is "default")
|
||||
buffers: store/apply only buffers (order of buffers)
|
||||
windows: store/apply only windows (buffer displayed by each window)
|
||||
|
||||
Without argument, this command displays saved layouts.
|
||||
Without argument, this command displays stored layouts.
|
||||
----
|
||||
|
||||
[[command_weechat_mouse]]
|
||||
|
||||
@@ -803,11 +803,6 @@
|
||||
** type: boolean
|
||||
** values: on, off (default value: `on`)
|
||||
|
||||
* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
|
||||
** description: `save layout on exit (buffers, windows, or both)`
|
||||
** type: integer
|
||||
** values: none, buffers, windows, all (default value: `none`)
|
||||
|
||||
* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
|
||||
** description: `how many lines to scroll by with scroll_up and scroll_down`
|
||||
** type: integer
|
||||
@@ -838,6 +833,11 @@
|
||||
** type: string
|
||||
** values: any string (default value: `""`)
|
||||
|
||||
* [[option_weechat.look.store_layout_on_exit]] *weechat.look.store_layout_on_exit*
|
||||
** description: `store layout on exit (buffers, windows, or both)`
|
||||
** type: integer
|
||||
** values: none, buffers, windows, all (default value: `none`)
|
||||
|
||||
* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
|
||||
** description: `number of spaces used to display tabs in messages`
|
||||
** type: integer
|
||||
|
||||
@@ -483,16 +483,16 @@ Exemples:
|
||||
rename <nom> <nouveau_nom>
|
||||
|
||||
store: stocker les tampons/fenêtres courants dans une disposition
|
||||
apply: appliquer une disposition sauvegardée
|
||||
apply: appliquer une disposition stockée
|
||||
leave: quitter la disposition courante (ne met à jour aucune disposition)
|
||||
del: supprimer les tampons et/ou fenêtres dans une disposition sauvegardée
|
||||
del: supprimer les tampons et/ou fenêtres dans une disposition stockée
|
||||
(si ni "buffers" ni "windows" n'est donné après le nom, la disposition est supprimée)
|
||||
rename: renommer une disposition
|
||||
nom: nom pour la disposition sauvegardée (par défaut "default")
|
||||
buffers: sauver/appliquer seulement pour les tampons (ordre des tampons)
|
||||
windows: sauver/appliquer seulement pour les fenêtres (le tampon affiché par chaque fenêtre)
|
||||
nom: nom pour la disposition stockée (par défaut "default")
|
||||
buffers: stocker/appliquer seulement pour les tampons (ordre des tampons)
|
||||
windows: stocker/appliquer seulement pour les fenêtres (le tampon affiché par chaque fenêtre)
|
||||
|
||||
Sans paramètre, cette commande affiche les dispositions sauvegardées.
|
||||
Sans paramètre, cette commande affiche les dispositions stockées.
|
||||
----
|
||||
|
||||
[[command_weechat_mouse]]
|
||||
|
||||
@@ -803,11 +803,6 @@
|
||||
** type: booléen
|
||||
** valeurs: on, off (valeur par défaut: `on`)
|
||||
|
||||
* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
|
||||
** description: `sauve la disposition en quittant (tampons, fenêtres, ou les deux)`
|
||||
** type: entier
|
||||
** valeurs: none, buffers, windows, all (valeur par défaut: `none`)
|
||||
|
||||
* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
|
||||
** description: `nombre de lignes pour le défilement avec scroll_up et scroll_down`
|
||||
** type: entier
|
||||
@@ -838,6 +833,11 @@
|
||||
** type: chaîne
|
||||
** valeurs: toute chaîne (valeur par défaut: `""`)
|
||||
|
||||
* [[option_weechat.look.store_layout_on_exit]] *weechat.look.store_layout_on_exit*
|
||||
** description: `stocker la disposition en quittant (tampons, fenêtres, ou les deux)`
|
||||
** type: entier
|
||||
** valeurs: none, buffers, windows, all (valeur par défaut: `none`)
|
||||
|
||||
* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
|
||||
** description: `nombre d'espaces utilisés pour afficher les tabulations dans les messages`
|
||||
** type: entier
|
||||
|
||||
@@ -483,16 +483,16 @@ Esempi:
|
||||
rename <name> <new_name>
|
||||
|
||||
store: store current buffers/windows in a layout
|
||||
apply: apply saved layout
|
||||
apply: apply stored layout
|
||||
leave: leave current layout (does not update any layout)
|
||||
del: delete buffers and/or windows in a saved layout
|
||||
del: delete buffers and/or windows in a stored layout
|
||||
(if neither "buffers" nor "windows" is given after the name, the layout is deleted)
|
||||
rename: rename a layout
|
||||
name: name for saved layout (default is "default")
|
||||
buffers: save/apply only buffers (order of buffers)
|
||||
windows: save/apply only windows (buffer displayed by each window)
|
||||
name: name for stored layout (default is "default")
|
||||
buffers: store/apply only buffers (order of buffers)
|
||||
windows: store/apply only windows (buffer displayed by each window)
|
||||
|
||||
Without argument, this command displays saved layouts.
|
||||
Without argument, this command displays stored layouts.
|
||||
----
|
||||
|
||||
[[command_weechat_mouse]]
|
||||
|
||||
@@ -803,11 +803,6 @@
|
||||
** tipo: bool
|
||||
** valori: on, off (valore predefinito: `on`)
|
||||
|
||||
* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
|
||||
** descrizione: `salva layout all'uscita (buffer, finestre, o entrambi)`
|
||||
** tipo: intero
|
||||
** valori: none, buffers, windows, all (valore predefinito: `none`)
|
||||
|
||||
* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
|
||||
** descrizione: `le righe da scorrere con scroll_up e scroll_down`
|
||||
** tipo: intero
|
||||
@@ -838,6 +833,11 @@
|
||||
** tipo: stringa
|
||||
** valori: qualsiasi stringa (valore predefinito: `""`)
|
||||
|
||||
* [[option_weechat.look.store_layout_on_exit]] *weechat.look.store_layout_on_exit*
|
||||
** descrizione: `store layout on exit (buffers, windows, or both)`
|
||||
** tipo: intero
|
||||
** valori: none, buffers, windows, all (valore predefinito: `none`)
|
||||
|
||||
* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
|
||||
** descrizione: `number of spaces used to display tabs in messages`
|
||||
** tipo: intero
|
||||
|
||||
@@ -482,17 +482,17 @@ listdefault: デフォルトキーをリストアップ
|
||||
del [<name>] [buffers|windows]
|
||||
rename <name> <new_name>
|
||||
|
||||
store: レイアウトに現在のバッファ/ウィンドウを保存
|
||||
apply: 保存されたレイアウトを適用
|
||||
leave: 現在のレイアウトを保持する (レイアウトを更新しない)
|
||||
del: レイアウトとして保存されているバッファとウィンドウを削除
|
||||
(名前の後に "バッファ" や "ウィンドウ" を指定しない場合、レイアウトを削除)
|
||||
rename: レイアウトのリネーム
|
||||
name: 保存されたレイアウトの名前 (初期状態は "default")
|
||||
buffers: バッファのみに対してレイアウトを保存/適用 (バッファの順番)
|
||||
windows: ウィンドウのみに対してレイアウトを保存/適用 (それぞれのウィンドウに表示されるバッファ)
|
||||
store: store current buffers/windows in a layout
|
||||
apply: apply stored layout
|
||||
leave: leave current layout (does not update any layout)
|
||||
del: delete buffers and/or windows in a stored layout
|
||||
(if neither "buffers" nor "windows" is given after the name, the layout is deleted)
|
||||
rename: rename a layout
|
||||
name: name for stored layout (default is "default")
|
||||
buffers: store/apply only buffers (order of buffers)
|
||||
windows: store/apply only windows (buffer displayed by each window)
|
||||
|
||||
引数無しでは、保存されたレイアウトを表示します。
|
||||
Without argument, this command displays stored layouts.
|
||||
----
|
||||
|
||||
[[command_weechat_mouse]]
|
||||
|
||||
@@ -803,11 +803,6 @@
|
||||
** タイプ: ブール
|
||||
** 値: on, off (デフォルト値: `on`)
|
||||
|
||||
* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
|
||||
** 説明: `終了時にレイアウトを保存 (buffers、windows または both)`
|
||||
** タイプ: 整数
|
||||
** 値: none, buffers, windows, all (デフォルト値: `none`)
|
||||
|
||||
* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
|
||||
** 説明: `scroll_up と scroll_down でスクロールする行数`
|
||||
** タイプ: 整数
|
||||
@@ -838,6 +833,11 @@
|
||||
** タイプ: 文字列
|
||||
** 値: 未制約文字列 (デフォルト値: `""`)
|
||||
|
||||
* [[option_weechat.look.store_layout_on_exit]] *weechat.look.store_layout_on_exit*
|
||||
** 説明: `store layout on exit (buffers, windows, or both)`
|
||||
** タイプ: 整数
|
||||
** 値: none, buffers, windows, all (デフォルト値: `none`)
|
||||
|
||||
* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
|
||||
** 説明: `number of spaces used to display tabs in messages`
|
||||
** タイプ: 整数
|
||||
|
||||
@@ -483,16 +483,16 @@ Przykłady:
|
||||
rename <name> <new_name>
|
||||
|
||||
store: store current buffers/windows in a layout
|
||||
apply: apply saved layout
|
||||
apply: apply stored layout
|
||||
leave: leave current layout (does not update any layout)
|
||||
del: delete buffers and/or windows in a saved layout
|
||||
del: delete buffers and/or windows in a stored layout
|
||||
(if neither "buffers" nor "windows" is given after the name, the layout is deleted)
|
||||
rename: rename a layout
|
||||
name: name for saved layout (default is "default")
|
||||
buffers: save/apply only buffers (order of buffers)
|
||||
windows: save/apply only windows (buffer displayed by each window)
|
||||
name: name for stored layout (default is "default")
|
||||
buffers: store/apply only buffers (order of buffers)
|
||||
windows: store/apply only windows (buffer displayed by each window)
|
||||
|
||||
Without argument, this command displays saved layouts.
|
||||
Without argument, this command displays stored layouts.
|
||||
----
|
||||
|
||||
[[command_weechat_mouse]]
|
||||
|
||||
@@ -803,11 +803,6 @@
|
||||
** typ: bool
|
||||
** wartości: on, off (domyślna wartość: `on`)
|
||||
|
||||
* [[option_weechat.look.save_layout_on_exit]] *weechat.look.save_layout_on_exit*
|
||||
** opis: `zapisz układ przy wyjściu (bufory, okna, lub oba)`
|
||||
** typ: liczba
|
||||
** wartości: none, buffers, windows, all (domyślna wartość: `none`)
|
||||
|
||||
* [[option_weechat.look.scroll_amount]] *weechat.look.scroll_amount*
|
||||
** opis: `ile linii przewijać za pomocą scroll_up i scroll_down`
|
||||
** typ: liczba
|
||||
@@ -838,6 +833,11 @@
|
||||
** typ: ciąg
|
||||
** wartości: dowolny ciąg (domyślna wartość: `""`)
|
||||
|
||||
* [[option_weechat.look.store_layout_on_exit]] *weechat.look.store_layout_on_exit*
|
||||
** opis: `store layout on exit (buffers, windows, or both)`
|
||||
** typ: liczba
|
||||
** wartości: none, buffers, windows, all (domyślna wartość: `none`)
|
||||
|
||||
* [[option_weechat.look.tab_width]] *weechat.look.tab_width*
|
||||
** opis: `number of spaces used to display tabs in messages`
|
||||
** typ: liczba
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:20+0100\n"
|
||||
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -475,20 +475,21 @@ msgstr[1] "přidány %d nové klávesy"
|
||||
msgstr[2] "přidáno %d nových kláves"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Saved layouts:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr "Uložené rozložení bufferů:"
|
||||
|
||||
#, fuzzy
|
||||
msgid " (current layout)"
|
||||
msgstr "aktuální hodnota"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Nebylo uloženo žádné rozložení"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "jména polí"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "%sTéma pro %s%s%s nastaveno %s"
|
||||
|
||||
#, fuzzy
|
||||
msgid "buffers"
|
||||
@@ -1736,17 +1737,17 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" save: uložit aktuální rozložení\n"
|
||||
" apply: aplikovat uložené rozložení\n"
|
||||
@@ -3072,9 +3073,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "uložit soubor s nastavením při ukončení"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "uložit rozložení při ukončení (buffery, okna nebo obojí)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "o kolik řádů posunou pomocí scroll_up a scroll_down"
|
||||
|
||||
@@ -3115,6 +3113,10 @@ msgstr ""
|
||||
"výběrem URL v některých terminálech), znaky kódované do více bytů zde NEJSOU "
|
||||
"povoleny"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "uložit rozložení při ukončení (buffery, okna nebo obojí)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "prefix pro zprávy akcí"
|
||||
@@ -10091,6 +10093,9 @@ msgstr ""
|
||||
msgid "Constants"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Nebylo uloženo žádné rozložení"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sguntls: jméno hosta v certifikátu NODPOVÍDÁ \"%s\""
|
||||
|
||||
@@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.4.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:20+0100\n"
|
||||
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
|
||||
"Language-Team: German <weechatter@arcor.de>\n"
|
||||
@@ -500,18 +500,20 @@ msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] "(%d) neue Taste hinzugefügt"
|
||||
msgstr[1] "(%d) neue Tasten hinzugefügt (Kontext: \"%s\")"
|
||||
|
||||
msgid "Saved layouts:"
|
||||
#, fuzzy
|
||||
msgid "Stored layouts:"
|
||||
msgstr "gespeicherte Layouts:"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr " (aktuelles Layout)"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Kein Layout gespeichert"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "Auflistung der Layouts"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "Layout %s%s%s gesichert in \"%s\" (aktuelles Layout: %s)"
|
||||
|
||||
msgid "buffers"
|
||||
@@ -1947,17 +1949,17 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" add: erstellt ein Layout der zur Zeit verwendeten Buffer/Fenster\n"
|
||||
" apply: das gespeicherte Layout anwenden\n"
|
||||
@@ -3560,11 +3562,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "die aktuelle Konfiguration wird beim Beenden automatisch gesichert"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
"beim Beenden wird das aktuelle Layout automatisch gesichert (Buffer, Fenster "
|
||||
"oder beides)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr ""
|
||||
"Anzahl der zu scrollenden Zeilen wenn seitenweise geblättert wird (Bild hoch/"
|
||||
@@ -3611,6 +3608,12 @@ msgstr ""
|
||||
"Wird kein Zeichen angegeben, dann zeichnet ncurses eine durchgängige Linie. "
|
||||
"Die Schriftbreite muss exakt ein Zeichen betragen"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
"beim Beenden wird das aktuelle Layout automatisch gesichert (Buffer, Fenster "
|
||||
"oder beides)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr ""
|
||||
@@ -11205,6 +11208,9 @@ msgstr "Type"
|
||||
msgid "Constants"
|
||||
msgstr "Konstanten"
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Kein Layout gespeichert"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: der Hostname im Zertifikat \"%s\" stimmt NICHT überein"
|
||||
|
||||
@@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:21+0100\n"
|
||||
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -483,20 +483,21 @@ msgstr[0] "%d nuevo atajo agregado"
|
||||
msgstr[1] "%d nuevos atajos agregados (contexto: \"%s\")"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Saved layouts:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr "Esquema de buffers guardado:"
|
||||
|
||||
#, fuzzy
|
||||
msgid " (current layout)"
|
||||
msgstr "valor actual"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Ningún esquema guardado"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "nombres de barras"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "%sTema para %s%s%s establecido el %s"
|
||||
|
||||
#, fuzzy
|
||||
msgid "buffers"
|
||||
@@ -1824,17 +1825,17 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" save: guarda el esquema actual\n"
|
||||
" apply: aplica el esquema guardado\n"
|
||||
@@ -3258,9 +3259,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "guardar archivo de configuración al salir"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "guardar esquema al salir (buffers, ventanas o ambos)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "cuántas líneas a desplazar con scroll_up y scroll_down"
|
||||
|
||||
@@ -3304,6 +3302,10 @@ msgstr ""
|
||||
"vacío dibujará una línea verdadera con ncurses), caracteres unicode NO están "
|
||||
"permitidos"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "guardar esquema al salir (buffers, ventanas o ambos)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "localización para traducción de mensajes"
|
||||
@@ -10361,6 +10363,9 @@ msgstr "Tipo"
|
||||
msgid "Constants"
|
||||
msgstr "Constantes"
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Ningún esquema guardado"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: el hostname en el certificado NO concuerda con \"%s\""
|
||||
|
||||
@@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"PO-Revision-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-21 21:51+0100\n"
|
||||
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: fr\n"
|
||||
@@ -486,19 +486,19 @@ msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] "%d nouvelle touche ajoutée (contexte: \"%s\")"
|
||||
msgstr[1] "%d nouvelles touches ajoutées (contexte: \"%s\")"
|
||||
|
||||
msgid "Saved layouts:"
|
||||
msgstr "Dispositions sauvegardées:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr "Dispositions stockées:"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr " (disposition courante)"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Pas de disposition sauvée"
|
||||
msgid "No stored layouts"
|
||||
msgstr "Pas de disposition stockée"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgstr "Disposition des %s%s%s sauvée dans \"%s\" (disposition courante: %s)"
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "Disposition des %s%s%s stockée dans \"%s\" (disposition courante: %s)"
|
||||
|
||||
msgid "buffers"
|
||||
msgstr "tampons"
|
||||
@@ -1897,32 +1897,31 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" store: stocker les tampons/fenêtres courants dans une disposition\n"
|
||||
" apply: appliquer une disposition sauvegardée\n"
|
||||
" apply: appliquer une disposition stockée\n"
|
||||
" leave: quitter la disposition courante (ne met à jour aucune disposition)\n"
|
||||
" del: supprimer les tampons et/ou fenêtres dans une disposition "
|
||||
"sauvegardée\n"
|
||||
" del: supprimer les tampons et/ou fenêtres dans une disposition stockée\n"
|
||||
" (si ni \"buffers\" ni \"windows\" n'est donné après le nom, la "
|
||||
"disposition est supprimée)\n"
|
||||
" rename: renommer une disposition\n"
|
||||
" nom: nom pour la disposition sauvegardée (par défaut \"default\")\n"
|
||||
"buffers: sauver/appliquer seulement pour les tampons (ordre des tampons)\n"
|
||||
"windows: sauver/appliquer seulement pour les fenêtres (le tampon affiché par "
|
||||
"chaque fenêtre)\n"
|
||||
" nom: nom pour la disposition stockée (par défaut \"default\")\n"
|
||||
"buffers: stocker/appliquer seulement pour les tampons (ordre des tampons)\n"
|
||||
"windows: stocker/appliquer seulement pour les fenêtres (le tampon affiché "
|
||||
"par chaque fenêtre)\n"
|
||||
"\n"
|
||||
"Sans paramètre, cette commande affiche les dispositions sauvegardées."
|
||||
"Sans paramètre, cette commande affiche les dispositions stockées."
|
||||
|
||||
msgid "mouse control"
|
||||
msgstr "contrôle de la souris"
|
||||
@@ -3486,9 +3485,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "sauvegarder la configuration en quittant"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "sauve la disposition en quittant (tampons, fenêtres, ou les deux)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "nombre de lignes pour le défilement avec scroll_up et scroll_down"
|
||||
|
||||
@@ -3531,6 +3527,9 @@ msgstr ""
|
||||
"fenêtres (une valeur vide tracera une vraie ligne avec ncurses); la largeur "
|
||||
"à l'écran doit être exactement d'un caractère"
|
||||
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "stocker la disposition en quittant (tampons, fenêtres, ou les deux)"
|
||||
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr ""
|
||||
"nombre d'espaces utilisés pour afficher les tabulations dans les messages"
|
||||
@@ -10959,6 +10958,9 @@ msgstr "Type"
|
||||
msgid "Constants"
|
||||
msgstr "Constantes"
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Pas de disposition sauvée"
|
||||
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: l'empreinte ne correspond PAS"
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-06 10:16+0100\n"
|
||||
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -489,19 +489,20 @@ msgstr[0] "Nincs mellőzés megadva.\n"
|
||||
msgstr[1] "Nincs mellőzés megadva.\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Saved layouts:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr "a pufferek időbélyege"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr ""
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "Aliaszok listája:\n"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "A %s%s%s szoba témája: "
|
||||
|
||||
#, fuzzy
|
||||
msgid "buffers"
|
||||
@@ -1541,17 +1542,17 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
|
||||
msgid "mouse control"
|
||||
@@ -2679,9 +2680,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "beállítások mentése kilépéskor"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "a scroll_up és scroll_down hány sort görgessen"
|
||||
|
||||
@@ -2710,6 +2708,9 @@ msgid ""
|
||||
"will draw a real line with ncurses); width on screen must be exactly one char"
|
||||
msgstr ""
|
||||
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "válasz ping üzenetre"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:22+0100\n"
|
||||
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -472,18 +472,20 @@ msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] "%d nuovo tasto aggiunto (contesto: \"%s\")"
|
||||
msgstr[1] "%d nuovi tasti aggiunti (contesto: \"%s\")"
|
||||
|
||||
msgid "Saved layouts:"
|
||||
#, fuzzy
|
||||
msgid "Stored layouts:"
|
||||
msgstr "Layout salvati:"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr " (layout corrente)"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Nessun layout salvato"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "elenco dei layout"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "Layout per %s%s%s salvato in \"%s\" (layout corrente: %s)"
|
||||
|
||||
msgid "buffers"
|
||||
@@ -1858,17 +1860,17 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" save: salva il layout corrente\n"
|
||||
" apply: applica il layout salvato\n"
|
||||
@@ -3359,9 +3361,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "salva file di configurazione all'uscita"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "salva layout all'uscita (buffer, finestre, o entrambi)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "le righe da scorrere con scroll_up e scroll_down"
|
||||
|
||||
@@ -3405,6 +3404,10 @@ msgstr ""
|
||||
"alle finestre (un valore vuoto disegnerà una riga reale con ncurses), i "
|
||||
"caratteri wide qui NON sono consentiti"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "salva layout all'uscita (buffer, finestre, o entrambi)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "locale usato per la traduzione dei messaggi"
|
||||
@@ -10512,6 +10515,9 @@ msgstr "Tipo"
|
||||
msgid "Constants"
|
||||
msgstr "Costanti"
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Nessun layout salvato"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: il nome host nel certificato NON coincide \"%s\""
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:22+0100\n"
|
||||
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
|
||||
"Language-Team: Japanese <https://github.com/l/WeeChat>\n"
|
||||
@@ -479,18 +479,20 @@ msgid "%d new key added"
|
||||
msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] "%d 個の新しいキーを追加しました (コンテキスト: \"%s\")"
|
||||
|
||||
msgid "Saved layouts:"
|
||||
#, fuzzy
|
||||
msgid "Stored layouts:"
|
||||
msgstr "保存されたレイアウト:"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr " (現在のレイアウト)"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "レイアウトが保存されていません"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "レイアウトのリスト"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "%s%s%s のレイアウトを \"%s\" で保存しました (現在のレイアウト: %s)"
|
||||
|
||||
msgid "buffers"
|
||||
@@ -1842,19 +1844,20 @@ msgstr ""
|
||||
"store [<name>] [buffers|windows] || apply [<name>] [buffers|windows] || "
|
||||
"leave || del [<name>] [buffers|windows] || rename <name> <new_name>"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" store: レイアウトに現在のバッファ/ウィンドウを保存\n"
|
||||
" apply: 保存されたレイアウトを適用\n"
|
||||
@@ -3336,9 +3339,6 @@ msgstr "リードマーカー行の表示に使われる文字列 (行末まで
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "終了時に設定ファイルを保存"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "終了時にレイアウトを保存 (buffers、windows または both)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "scroll_up と scroll_down でスクロールする行数"
|
||||
|
||||
@@ -3378,6 +3378,10 @@ msgstr ""
|
||||
"が、いくつかのターミナルでは URL 選択の際にバグを生ずる可能性がある); 必ずス"
|
||||
"クリーン上に描画した時の文字幅が 1 の文字を指定してください"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "終了時にレイアウトを保存 (buffers、windows または both)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "翻訳メッセージに利用するロケール"
|
||||
@@ -10538,6 +10542,9 @@ msgstr "タイプ"
|
||||
msgid "Constants"
|
||||
msgstr "定数"
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "レイアウトが保存されていません"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: 証明書内のホストネームは \"%s\" とマッチしません"
|
||||
|
||||
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:23+0100\n"
|
||||
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -485,18 +485,20 @@ msgstr[0] "dodano %d nowy klawisz"
|
||||
msgstr[1] "dodano %d nowe klawisze (kontekst: \"%s\")"
|
||||
msgstr[2] "dodano %d nowych klawiszy (kontekst: \"%s\")"
|
||||
|
||||
msgid "Saved layouts:"
|
||||
#, fuzzy
|
||||
msgid "Stored layouts:"
|
||||
msgstr "Zapisane układy:"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr " (aktualny układ)"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Nie zapisano żadnego układu"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "lista układów"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "Układ dla %s%s%s zapisano w \"%s\" (obecny układ: %s)"
|
||||
|
||||
msgid "buffers"
|
||||
@@ -1893,17 +1895,17 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" add: tworzy układ używając obecnych buforów/okien\n"
|
||||
" apply: stosuje zapisany układ\n"
|
||||
@@ -3423,9 +3425,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "zapisz plik konfiguracyjny przy wyjściu"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "zapisz układ przy wyjściu (bufory, okna, lub oba)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "ile linii przewijać za pomocą scroll_up i scroll_down"
|
||||
|
||||
@@ -3468,6 +3467,10 @@ msgstr ""
|
||||
"(pusta wartość oznacza rysowanie prawdziwych linii za pomocą ncurses); "
|
||||
"szerokość na ekranie musi wynosić dokładnie jeden znak"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "zapisz układ przy wyjściu (bufory, okna, lub oba)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "zestaw znaków użyty do tłumaczenia wiadomości"
|
||||
@@ -10731,6 +10734,9 @@ msgstr "Typ"
|
||||
msgid "Constants"
|
||||
msgstr "Stałe"
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Nie zapisano żadnego układu"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: nazwa hosta w certyfikacie NIE pasuje do \"%s\""
|
||||
|
||||
+22
-16
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-18 21:23+0100\n"
|
||||
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -508,19 +508,21 @@ msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] "%d nova tecla adicionada"
|
||||
msgstr[1] "%d novas teclas adicionadas (context: \"%s\")"
|
||||
|
||||
msgid "Saved layouts:"
|
||||
#, fuzzy
|
||||
msgid "Stored layouts:"
|
||||
msgstr "Disposição dos buffers salvada:"
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr " (disposição atual)"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Nenhuma disposição salva"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "nomes das barras"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "Disposição de %s%s%s reconfigurada em \"%s\""
|
||||
|
||||
msgid "buffers"
|
||||
msgstr "buffers"
|
||||
@@ -1801,17 +1803,17 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
" save: salvar a disposição atual\n"
|
||||
" apply: aplicar a disposição salva\n"
|
||||
@@ -3160,9 +3162,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "salva arquivo de configuração na saída"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr "salva disposição na saída (buffers, janelas, ou ambos)"
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "quantas linhas rolar com scroll_up e scroll_down"
|
||||
|
||||
@@ -3202,6 +3201,10 @@ msgstr ""
|
||||
"janelas(valor vazio vai desenhar uam linha real com ncurses), caracteres "
|
||||
"extendidos NÃO são aceitos aqui"
|
||||
|
||||
#, fuzzy
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr "salva disposição na saída (buffers, janelas, ou ambos)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "prefixo para mensagens de ação"
|
||||
@@ -9723,6 +9726,9 @@ msgstr ""
|
||||
msgid "Constants"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Nenhuma disposição salva"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "%sgnutls: o hostname no certificado NÃO É semelhante a \"%s\""
|
||||
|
||||
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-06 10:17+0100\n"
|
||||
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -499,20 +499,21 @@ msgstr[1] "Игнорирования не заданы.\n"
|
||||
msgstr[2] "Игнорирования не заданы.\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Saved layouts:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr "время в буферах"
|
||||
|
||||
#, fuzzy
|
||||
msgid " (current layout)"
|
||||
msgstr "текущее значение"
|
||||
|
||||
msgid "No layout saved"
|
||||
msgstr "Нет сохранённых раскладок"
|
||||
#, fuzzy
|
||||
msgid "No stored layouts"
|
||||
msgstr "Список сокращений:\n"
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
#, fuzzy, c-format
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr "Тема канала %s%s%s: "
|
||||
|
||||
#, fuzzy
|
||||
msgid "buffers"
|
||||
@@ -1564,17 +1565,17 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
|
||||
msgid "mouse control"
|
||||
@@ -2711,9 +2712,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr "сохранять конфигурационный файл при выходе"
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr "количество проматываемых кнопками PageUp и PageDown строк"
|
||||
|
||||
@@ -2742,6 +2740,9 @@ msgid ""
|
||||
"will draw a real line with ncurses); width on screen must be exactly one char"
|
||||
msgstr ""
|
||||
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr "ответить на ping"
|
||||
@@ -9536,6 +9537,9 @@ msgstr ""
|
||||
msgid "Constants"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No layout saved"
|
||||
#~ msgstr "Нет сохранённых раскладок"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%sgnutls: fingerprint does NOT match"
|
||||
#~ msgstr "Не могу записать лог-файл \"%s\"\n"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2014-01-06 10:17+0100\n"
|
||||
"Last-Translator: Hasan Kiran <sunder67@hotmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -443,18 +443,18 @@ msgid "%d new key added"
|
||||
msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] ""
|
||||
|
||||
msgid "Saved layouts:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr ""
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr ""
|
||||
|
||||
msgid "No layout saved"
|
||||
msgid "No stored layouts"
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
|
||||
msgid "buffers"
|
||||
@@ -1391,17 +1391,17 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
|
||||
msgid "mouse control"
|
||||
@@ -2420,9 +2420,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr ""
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr ""
|
||||
|
||||
@@ -2451,6 +2448,9 @@ msgid ""
|
||||
"will draw a real line with ncurses); width on screen must be exactly one char"
|
||||
msgstr ""
|
||||
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+13
-13
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2014-01-21 15:28+0100\n"
|
||||
"POT-Creation-Date: 2014-01-21 21:52+0100\n"
|
||||
"PO-Revision-Date: 2013-02-14 18:20+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -444,18 +444,18 @@ msgid_plural "%d new keys added (context: \"%s\")"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
msgid "Saved layouts:"
|
||||
msgid "Stored layouts:"
|
||||
msgstr ""
|
||||
|
||||
msgid " (current layout)"
|
||||
msgstr ""
|
||||
|
||||
msgid "No layout saved"
|
||||
msgid "No stored layouts"
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows"
|
||||
#, c-format
|
||||
msgid "Layout of %s%s%s saved in \"%s\" (current layout: %s)"
|
||||
msgid "Layout of %s%s%s stored in \"%s\" (current layout: %s)"
|
||||
msgstr ""
|
||||
|
||||
msgid "buffers"
|
||||
@@ -1394,17 +1394,17 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after the name, "
|
||||
"the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."
|
||||
"Without argument, this command displays stored layouts."
|
||||
msgstr ""
|
||||
|
||||
msgid "mouse control"
|
||||
@@ -2422,9 +2422,6 @@ msgstr ""
|
||||
msgid "save configuration file on exit"
|
||||
msgstr ""
|
||||
|
||||
msgid "save layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
msgid "how many lines to scroll by with scroll_up and scroll_down"
|
||||
msgstr ""
|
||||
|
||||
@@ -2453,6 +2450,9 @@ msgid ""
|
||||
"will draw a real line with ncurses); width on screen must be exactly one char"
|
||||
msgstr ""
|
||||
|
||||
msgid "store layout on exit (buffers, windows, or both)"
|
||||
msgstr ""
|
||||
|
||||
msgid "number of spaces used to display tabs in messages"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+14
-14
@@ -3413,11 +3413,11 @@ COMMAND_CALLBACK(layout)
|
||||
/* display all layouts */
|
||||
if (argc == 1)
|
||||
{
|
||||
/* display saved layouts */
|
||||
/* display stored layouts */
|
||||
if (gui_layouts)
|
||||
{
|
||||
gui_chat_printf (NULL, "");
|
||||
gui_chat_printf (NULL, _("Saved layouts:"));
|
||||
gui_chat_printf (NULL, _("Stored layouts:"));
|
||||
for (ptr_layout = gui_layouts; ptr_layout;
|
||||
ptr_layout = ptr_layout->next_layout)
|
||||
{
|
||||
@@ -3440,7 +3440,7 @@ COMMAND_CALLBACK(layout)
|
||||
}
|
||||
}
|
||||
else
|
||||
gui_chat_printf (NULL, _("No layout saved"));
|
||||
gui_chat_printf (NULL, _("No stored layouts"));
|
||||
|
||||
return WEECHAT_RC_OK;
|
||||
}
|
||||
@@ -3458,13 +3458,13 @@ COMMAND_CALLBACK(layout)
|
||||
gui_layout_add (ptr_layout);
|
||||
}
|
||||
if (flag_buffers)
|
||||
gui_layout_buffer_save (ptr_layout);
|
||||
gui_layout_buffer_store (ptr_layout);
|
||||
if (flag_windows)
|
||||
gui_layout_window_save (ptr_layout);
|
||||
gui_layout_window_store (ptr_layout);
|
||||
gui_layout_current = ptr_layout;
|
||||
gui_chat_printf (NULL,
|
||||
/* TRANSLATORS: %s%s%s is "buffers" or "windows" or "buffers+windows" */
|
||||
_("Layout of %s%s%s saved in \"%s\" (current layout: %s)"),
|
||||
_("Layout of %s%s%s stored in \"%s\" (current layout: %s)"),
|
||||
(flag_buffers) ? _("buffers") : "",
|
||||
(flag_buffers && flag_windows) ? "+" : "",
|
||||
(flag_windows) ? _("windows") : "",
|
||||
@@ -5666,8 +5666,8 @@ COMMAND_CALLBACK(upgrade)
|
||||
weechat_quit = 1;
|
||||
weechat_upgrading = 1;
|
||||
|
||||
/* save layout, unload plugins, save config, then upgrade */
|
||||
gui_layout_save_on_exit ();
|
||||
/* store layout, unload plugins, save config, then upgrade */
|
||||
gui_layout_store_on_exit ();
|
||||
plugin_end ();
|
||||
if (CONFIG_BOOLEAN(config_look_save_config_on_exit))
|
||||
(void) config_weechat_write ();
|
||||
@@ -7005,17 +7005,17 @@ command_init ()
|
||||
" || del [<name>] [buffers|windows]"
|
||||
" || rename <name> <new_name>"),
|
||||
N_(" store: store current buffers/windows in a layout\n"
|
||||
" apply: apply saved layout\n"
|
||||
" apply: apply stored layout\n"
|
||||
" leave: leave current layout (does not update any layout)\n"
|
||||
" del: delete buffers and/or windows in a saved layout\n"
|
||||
" del: delete buffers and/or windows in a stored layout\n"
|
||||
" (if neither \"buffers\" nor \"windows\" is given after "
|
||||
"the name, the layout is deleted)\n"
|
||||
" rename: rename a layout\n"
|
||||
" name: name for saved layout (default is \"default\")\n"
|
||||
"buffers: save/apply only buffers (order of buffers)\n"
|
||||
"windows: save/apply only windows (buffer displayed by each window)\n"
|
||||
" name: name for stored layout (default is \"default\")\n"
|
||||
"buffers: store/apply only buffers (order of buffers)\n"
|
||||
"windows: store/apply only windows (buffer displayed by each window)\n"
|
||||
"\n"
|
||||
"Without argument, this command displays saved layouts."),
|
||||
"Without argument, this command displays stored layouts."),
|
||||
"store %(layouts_names)|buffers|windows buffers|windows"
|
||||
" || apply %(layouts_names)|buffers|windows buffers|windows"
|
||||
" || leave"
|
||||
|
||||
@@ -159,13 +159,13 @@ struct t_config_option *config_look_read_marker;
|
||||
struct t_config_option *config_look_read_marker_always_show;
|
||||
struct t_config_option *config_look_read_marker_string;
|
||||
struct t_config_option *config_look_save_config_on_exit;
|
||||
struct t_config_option *config_look_save_layout_on_exit;
|
||||
struct t_config_option *config_look_scroll_amount;
|
||||
struct t_config_option *config_look_scroll_bottom_after_switch;
|
||||
struct t_config_option *config_look_scroll_page_percent;
|
||||
struct t_config_option *config_look_search_text_not_found_alert;
|
||||
struct t_config_option *config_look_separator_horizontal;
|
||||
struct t_config_option *config_look_separator_vertical;
|
||||
struct t_config_option *config_look_store_layout_on_exit;
|
||||
struct t_config_option *config_look_tab_width;
|
||||
struct t_config_option *config_look_time_format;
|
||||
struct t_config_option *config_look_window_auto_zoom;
|
||||
@@ -2581,11 +2581,6 @@ config_weechat_init_options ()
|
||||
"save_config_on_exit", "boolean",
|
||||
N_("save configuration file on exit"),
|
||||
NULL, 0, 0, "on", NULL, 0, NULL, NULL, &config_change_save_config_on_exit, NULL, NULL, NULL);
|
||||
config_look_save_layout_on_exit = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
"save_layout_on_exit", "integer",
|
||||
N_("save layout on exit (buffers, windows, or both)"),
|
||||
"none|buffers|windows|all", 0, 0, "none", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
config_look_scroll_amount = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
"scroll_amount", "integer",
|
||||
@@ -2627,6 +2622,11 @@ config_weechat_init_options ()
|
||||
"width on screen must be exactly one char"),
|
||||
NULL, 0, 0, "", NULL, 0,
|
||||
&config_check_separator, NULL, &config_change_buffers, NULL, NULL, NULL);
|
||||
config_look_store_layout_on_exit = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
"store_layout_on_exit", "integer",
|
||||
N_("store layout on exit (buffers, windows, or both)"),
|
||||
"none|buffers|windows|all", 0, 0, "none", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
config_look_tab_width = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
"tab_width", "integer",
|
||||
|
||||
@@ -91,12 +91,12 @@ enum t_config_look_read_marker
|
||||
CONFIG_LOOK_READ_MARKER_CHAR,
|
||||
};
|
||||
|
||||
enum t_config_look_save_layout_on_exit
|
||||
enum t_config_look_store_layout_on_exit
|
||||
{
|
||||
CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_NONE = 0,
|
||||
CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_BUFFERS,
|
||||
CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_WINDOWS,
|
||||
CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_ALL,
|
||||
CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_NONE = 0,
|
||||
CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_BUFFERS,
|
||||
CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_WINDOWS,
|
||||
CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_ALL,
|
||||
};
|
||||
|
||||
extern struct t_config_file *weechat_config_file;
|
||||
@@ -191,13 +191,13 @@ extern struct t_config_option *config_look_read_marker;
|
||||
extern struct t_config_option *config_look_read_marker_always_show;
|
||||
extern struct t_config_option *config_look_read_marker_string;
|
||||
extern struct t_config_option *config_look_save_config_on_exit;
|
||||
extern struct t_config_option *config_look_save_layout_on_exit;
|
||||
extern struct t_config_option *config_look_scroll_amount;
|
||||
extern struct t_config_option *config_look_scroll_bottom_after_switch;
|
||||
extern struct t_config_option *config_look_scroll_page_percent;
|
||||
extern struct t_config_option *config_look_search_text_not_found_alert;
|
||||
extern struct t_config_option *config_look_separator_horizontal;
|
||||
extern struct t_config_option *config_look_separator_vertical;
|
||||
extern struct t_config_option *config_look_store_layout_on_exit;
|
||||
extern struct t_config_option *config_look_tab_width;
|
||||
extern struct t_config_option *config_look_time_format;
|
||||
extern struct t_config_option *config_look_window_auto_zoom;
|
||||
|
||||
@@ -354,7 +354,7 @@ upgrade_weechat_save_layout_window (struct t_upgrade_file *upgrade_file)
|
||||
|
||||
if (ptr_layout)
|
||||
{
|
||||
gui_layout_window_save (ptr_layout);
|
||||
gui_layout_window_store (ptr_layout);
|
||||
|
||||
/* save tree with layout of windows */
|
||||
rc = upgrade_weechat_save_layout_window_tree (upgrade_file, ptr_layout->layout_windows);
|
||||
|
||||
+1
-1
@@ -476,7 +476,7 @@ main (int argc, char *argv[])
|
||||
|
||||
gui_main_loop (); /* WeeChat main loop */
|
||||
|
||||
gui_layout_save_on_exit (); /* save layout */
|
||||
gui_layout_store_on_exit (); /* store layout */
|
||||
plugin_end (); /* end plugin interface(s) */
|
||||
if (CONFIG_BOOLEAN(config_look_save_config_on_exit))
|
||||
(void) config_weechat_write (); /* save WeeChat config file */
|
||||
|
||||
@@ -82,7 +82,7 @@ struct t_gui_buffer
|
||||
char *plugin_name_for_upgrade; /* plugin name when upgrading */
|
||||
|
||||
int number; /* buffer number (first is 1) */
|
||||
int layout_number; /* number of buffer saved in layout */
|
||||
int layout_number; /* number of buffer stored in layout */
|
||||
int layout_number_merge_order; /* order in merge for layout */
|
||||
char *name; /* buffer name */
|
||||
char *full_name; /* plugin name + '.' + buffer name */
|
||||
|
||||
+21
-21
@@ -309,11 +309,11 @@ gui_layout_buffer_get_number_all (struct t_gui_layout *layout)
|
||||
}
|
||||
|
||||
/*
|
||||
* Saves current layout for buffers in a layout.
|
||||
* Stores current layout for buffers in a layout.
|
||||
*/
|
||||
|
||||
void
|
||||
gui_layout_buffer_save (struct t_gui_layout *layout)
|
||||
gui_layout_buffer_store (struct t_gui_layout *layout)
|
||||
{
|
||||
struct t_gui_buffer *ptr_buffer;
|
||||
|
||||
@@ -521,11 +521,11 @@ gui_layout_window_add (struct t_gui_layout_window **layout_window,
|
||||
}
|
||||
|
||||
/*
|
||||
* Saves tree of windows.
|
||||
* Stores tree of windows.
|
||||
*/
|
||||
|
||||
void
|
||||
gui_layout_window_save_tree (struct t_gui_layout *layout,
|
||||
gui_layout_window_store_tree (struct t_gui_layout *layout,
|
||||
struct t_gui_layout_window **layout_windows,
|
||||
struct t_gui_layout_window *parent_layout,
|
||||
struct t_gui_window_tree *tree)
|
||||
@@ -559,25 +559,25 @@ gui_layout_window_save_tree (struct t_gui_layout *layout,
|
||||
|
||||
if (tree->child1)
|
||||
{
|
||||
gui_layout_window_save_tree (layout, layout_windows,
|
||||
gui_layout_window_store_tree (layout, layout_windows,
|
||||
layout_window, tree->child1);
|
||||
}
|
||||
|
||||
if (tree->child2)
|
||||
{
|
||||
gui_layout_window_save_tree (layout, layout_windows,
|
||||
gui_layout_window_store_tree (layout, layout_windows,
|
||||
layout_window, tree->child2);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Saves current layout for windows in a layout.
|
||||
* Stores current layout for windows in a layout.
|
||||
*
|
||||
* Returns internal id of current window.
|
||||
*/
|
||||
|
||||
void
|
||||
gui_layout_window_save (struct t_gui_layout *layout)
|
||||
gui_layout_window_store (struct t_gui_layout *layout)
|
||||
{
|
||||
if (!layout)
|
||||
return;
|
||||
@@ -587,7 +587,7 @@ gui_layout_window_save (struct t_gui_layout *layout)
|
||||
layout->internal_id = 1;
|
||||
layout->internal_id_current_window = -1;
|
||||
|
||||
gui_layout_window_save_tree (layout, &layout->layout_windows, NULL,
|
||||
gui_layout_window_store_tree (layout, &layout->layout_windows, NULL,
|
||||
gui_windows_tree);
|
||||
}
|
||||
|
||||
@@ -759,15 +759,15 @@ gui_layout_window_apply (struct t_gui_layout *layout,
|
||||
}
|
||||
|
||||
/*
|
||||
* Saves layout according to option "save_layout_on_exit".
|
||||
* Stores layout according to option "store_layout_on_exit".
|
||||
*/
|
||||
|
||||
void
|
||||
gui_layout_save_on_exit ()
|
||||
gui_layout_store_on_exit ()
|
||||
{
|
||||
struct t_gui_layout *ptr_layout;
|
||||
|
||||
if (CONFIG_BOOLEAN(config_look_save_layout_on_exit) == CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_NONE)
|
||||
if (CONFIG_BOOLEAN(config_look_store_layout_on_exit) == CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_NONE)
|
||||
return;
|
||||
|
||||
ptr_layout = gui_layout_current;
|
||||
@@ -784,18 +784,18 @@ gui_layout_save_on_exit ()
|
||||
}
|
||||
}
|
||||
|
||||
/* save current layout */
|
||||
switch (CONFIG_BOOLEAN(config_look_save_layout_on_exit))
|
||||
/* store current layout */
|
||||
switch (CONFIG_BOOLEAN(config_look_store_layout_on_exit))
|
||||
{
|
||||
case CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_BUFFERS:
|
||||
gui_layout_buffer_save (ptr_layout);
|
||||
case CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_BUFFERS:
|
||||
gui_layout_buffer_store (ptr_layout);
|
||||
break;
|
||||
case CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_WINDOWS:
|
||||
gui_layout_window_save (ptr_layout);
|
||||
case CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_WINDOWS:
|
||||
gui_layout_window_store (ptr_layout);
|
||||
break;
|
||||
case CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_ALL:
|
||||
gui_layout_buffer_save (ptr_layout);
|
||||
gui_layout_window_save (ptr_layout);
|
||||
case CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_ALL:
|
||||
gui_layout_buffer_store (ptr_layout);
|
||||
gui_layout_window_store (ptr_layout);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
@@ -90,7 +90,7 @@ extern void gui_layout_buffer_get_number (struct t_gui_layout *layout,
|
||||
int *layout_number,
|
||||
int *layout_number_merge_order);
|
||||
extern void gui_layout_buffer_get_number_all (struct t_gui_layout *layout);
|
||||
extern void gui_layout_buffer_save (struct t_gui_layout *layout);
|
||||
extern void gui_layout_buffer_store (struct t_gui_layout *layout);
|
||||
extern void gui_layout_buffer_apply (struct t_gui_layout *layout);
|
||||
|
||||
extern void gui_layout_window_remove_all (struct t_gui_layout *layout);
|
||||
@@ -104,12 +104,12 @@ extern struct t_gui_layout_window *gui_layout_window_add (struct t_gui_layout_wi
|
||||
int split_horiz,
|
||||
const char *plugin_name,
|
||||
const char *buffer_name);
|
||||
extern void gui_layout_window_save (struct t_gui_layout *layout);
|
||||
extern void gui_layout_window_store (struct t_gui_layout *layout);
|
||||
extern int gui_layout_window_check_buffer (struct t_gui_window *window);
|
||||
extern void gui_layout_window_assign_buffer (struct t_gui_buffer *buffer);
|
||||
extern void gui_layout_window_apply (struct t_gui_layout *layout,
|
||||
int internal_id_current_window);
|
||||
extern void gui_layout_save_on_exit ();
|
||||
extern void gui_layout_store_on_exit ();
|
||||
extern void gui_layout_free (struct t_gui_layout *layout);
|
||||
extern void gui_layout_remove (struct t_gui_layout *layout);
|
||||
extern void gui_layout_remove_all ();
|
||||
|
||||
@@ -1667,14 +1667,14 @@ gui_window_zoom (struct t_gui_window *window)
|
||||
}
|
||||
else
|
||||
{
|
||||
/* save layout and zoom on current window */
|
||||
/* store layout and zoom on current window */
|
||||
ptr_layout = gui_layout_alloc (GUI_LAYOUT_ZOOM);
|
||||
if (ptr_layout)
|
||||
{
|
||||
gui_layout_add (ptr_layout);
|
||||
hook_signal_send ("window_zoom",
|
||||
WEECHAT_HOOK_SIGNAL_POINTER, gui_current_window);
|
||||
gui_layout_window_save (ptr_layout);
|
||||
gui_layout_window_store (ptr_layout);
|
||||
gui_window_merge_all (window);
|
||||
hook_signal_send ("window_zoomed",
|
||||
WEECHAT_HOOK_SIGNAL_POINTER, gui_current_window);
|
||||
|
||||
Reference in New Issue
Block a user