1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

core: set max value for option weechat.look.hotlist_names_count to GUI_BUFFERS_MAX (10000)

This commit is contained in:
Sebastien Helleu
2014-01-16 23:09:44 +01:00
parent 22cb023254
commit 110f558629
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -571,7 +571,7 @@
* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
** Beschreibung: `maximale Anzahl an Namen in der Hotlist (0 = es werden keine Namen angezeigt, sondern nur die entsprechenden Nummern der Buffer)`
** Typ: integer
** Werte: 0 .. 32 (Standardwert: `3`)
** Werte: 0 .. 10000 (Standardwert: `3`)
* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
** Beschreibung: `maximale Länge der Namen in der Hotlist (0: kein Limitierung)`
+1 -1
View File
@@ -571,7 +571,7 @@
* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
** description: `max number of names in hotlist (0 = no name displayed, only buffer numbers)`
** type: integer
** values: 0 .. 32 (default value: `3`)
** values: 0 .. 10000 (default value: `3`)
* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
** description: `max length of names in hotlist (0 = no limit)`
+1 -1
View File
@@ -571,7 +571,7 @@
* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
** description: `nombre maximum de noms dans la liste d'activité (0 = pas de nom affiché, seulement les numéros de tampons)`
** type: entier
** valeurs: 0 .. 32 (valeur par défaut: `3`)
** valeurs: 0 .. 10000 (valeur par défaut: `3`)
* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
** description: `nombre maximum des noms dans la liste d'activité (0 = pas de limite)`
+1 -1
View File
@@ -571,7 +571,7 @@
* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
** descrizione: `numero massimo di nomi nella hotlist (0 = nessun nome visualizzato, solo numeri dei buffer)`
** tipo: intero
** valori: 0 .. 32 (valore predefinito: `3`)
** valori: 0 .. 10000 (valore predefinito: `3`)
* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
** descrizione: `lunghezza massima dei nomi nella hotlist (0 = nessun limite)`
+1 -1
View File
@@ -571,7 +571,7 @@
* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
** 説明: `ホットリストに載せるバッファ名の数の最大値 (0 = バッファ名は無し、番号のみ)`
** タイプ: 整数
** 値: 0 .. 32 (デフォルト値: `3`)
** 値: 0 .. 10000 (デフォルト値: `3`)
* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
** 説明: `ホットリストに載せるバッファ名の長さの最大値 (0 = 制限無し)`
+1 -1
View File
@@ -571,7 +571,7 @@
* [[option_weechat.look.hotlist_names_count]] *weechat.look.hotlist_names_count*
** opis: `maksymalna ilość nazw w hotliście (0 = żadna nazwa nie zostanie wyświetlona, tylko numery buforów)`
** typ: liczba
** wartości: 0 .. 32 (domyślna wartość: `3`)
** wartości: 0 .. 10000 (domyślna wartość: `3`)
* [[option_weechat.look.hotlist_names_length]] *weechat.look.hotlist_names_length*
** opis: `maksymalna długość nazwy w hotliście (0 = brak limitu)`
+3 -3
View File
@@ -2286,9 +2286,9 @@ config_weechat_init_options ()
config_look_hotlist_names_count = config_file_new_option (
weechat_config_file, ptr_section,
"hotlist_names_count", "integer",
N_("max number of names in hotlist (0 = no name "
"displayed, only buffer numbers)"),
NULL, 0, 32, "3", NULL, 0, NULL, NULL, &config_change_buffer_content, NULL, NULL, NULL);
N_("max number of names in hotlist (0 = no name displayed, only buffer "
"numbers)"),
NULL, 0, GUI_BUFFERS_MAX, "3", NULL, 0, NULL, NULL, &config_change_buffer_content, NULL, NULL, NULL);
config_look_hotlist_names_length = config_file_new_option (
weechat_config_file, ptr_section,
"hotlist_names_length", "integer",