From 71fee810c9578ec249b2766ffa400684ee1c7f26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 6 Jan 2024 20:46:30 +0100 Subject: doc/api: add missing properties in functions buffer_get_integer and buffer_get_string --- doc/en/weechat_plugin_api.en.adoc | 50 +++++++++++----------------- doc/fr/weechat_plugin_api.fr.adoc | 69 +++++++++++++++------------------------ doc/it/weechat_plugin_api.it.adoc | 61 +++++++++++++++------------------- doc/ja/weechat_plugin_api.ja.adoc | 56 +++++++++++++++---------------- doc/sr/weechat_plugin_api.sr.adoc | 10 ++++-- 5 files changed, 106 insertions(+), 140 deletions(-) (limited to 'doc') diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index e98ae96c9..a2ebe85ce 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -14323,24 +14323,18 @@ Arguments: ** _type_: buffer type (0: formatted, 1: free content) ** _notify_: notify level for buffer ** _num_displayed_: number of windows displaying buffer -** _active_: 2 if buffer is the only active (merged), 1 if buffer is active, - 0 if buffer is merged and not selected -** _hidden_: 1 if buffer is hidden, otherwise 0 - _(WeeChat ≥ 1.0)_ -** _zoomed_: 1 if buffer is merged and zoomed, otherwise 0 - _(WeeChat ≥ 1.0)_ +** _active_: 2 if buffer is the only active (merged), 1 if buffer is active, 0 if buffer is merged and not selected +** _hidden_: 1 if buffer is hidden, otherwise 0 _(WeeChat ≥ 1.0)_ +** _zoomed_: 1 if buffer is merged and zoomed, otherwise 0 _(WeeChat ≥ 1.0)_ ** _print_hooks_enabled_: 1 if print hooks are enabled, otherwise 0 -** _day_change_: 1 if messages for the day change are displayed, otherwise 0 - _(WeeChat ≥ 0.4.3)_ -** _clear_: 1 if buffer can be cleared with command `/buffer clear`, otherwise 0 - _(WeeChat ≥ 1.0)_ -** _filter_: 1 if filters are enabled on buffer, otherwise 0 - _(WeeChat ≥ 1.0)_ -** _lines_hidden_: 1 if at least one line is hidden on buffer (filtered), or 0 - if all lines are displayed +** _day_change_: 1 if messages for the day change are displayed, otherwise 0 _(WeeChat ≥ 0.4.3)_ +** _clear_: 1 if buffer can be cleared with command `/buffer clear`, otherwise 0 _(WeeChat ≥ 1.0)_ +** _filter_: 1 if filters are enabled on buffer, otherwise 0 _(WeeChat ≥ 1.0)_ +** _closing_: 1 if buffer is closing, otherwise 0 _(WeeChat ≥ 1.0)_ +** _lines_hidden_: 1 if at least one line is hidden on buffer (filtered), or 0 if all lines are displayed ** _prefix_max_length_: max length for prefix in this buffer -** _time_for_each_line_: 1 if time is displayed for each line in buffer - (default), otherwise 0 +** _next_line_id_: next line id in buffer _(WeeChat ≥ 3.8)_ +** _time_for_each_line_: 1 if time is displayed for each line in buffer (default), otherwise 0 ** _nicklist_: 1 if nicklist is enabled, otherwise 0 ** _nicklist_case_sensitive_: 1 if nicks are case sensitive, otherwise 0 ** _nicklist_max_length_: max length for a nick @@ -14348,15 +14342,13 @@ Arguments: ** _nicklist_count_: number of nicks and groups in nicklist ** _nicklist_visible_count_: number of nicks/groups displayed ** _nicklist_groups_count_: number of groups in nicklist -** _nicklist_visible_groups_count_: number of groups displayed +** _nicklist_groups_visible_count_: number of groups displayed ** _nicklist_nicks_count_: number of nicks in nicklist -** _nicklist_visible_nicks_count_: number of nicks displayed +** _nicklist_nicks_visible_count_: number of nicks displayed ** _input_: 1 if input is enabled, otherwise 0 -** _input_get_unknown_commands_: 1 if unknown commands are sent to input - callback, otherwise 0 +** _input_get_unknown_commands_: 1 if unknown commands are sent to input callback, otherwise 0 ** _input_get_empty_: 1 if empty input is sent to input callback, otherwise 0 -** _input_multiline_: 1 if multiple lines are sent as one message to input - callback, otherwise 0 +** _input_multiline_: 1 if multiple lines are sent as one message to input callback, otherwise 0 ** _input_size_: input size (in bytes) ** _input_length_: input length (number of chars) ** _input_pos_: cursor position in buffer input @@ -14421,13 +14413,11 @@ Arguments: * _buffer_: buffer pointer * _property_: property name: -** _plugin_: name of plugin which created this buffer ("core" for WeeChat main - buffer) +** _plugin_: name of plugin which created this buffer ("core" for WeeChat main buffer) ** _name_: name of buffer ** _full_name_: full name of buffer ("plugin.name") _(WeeChat ≥ 0.3.7)_ -** _short_name_: short name of buffer (note: used for display only and can be - changed by user, this must not be used to find name of buffer, use instead - _name_, _full_name_ or local variable _channel_) +** _old_full_name_: old full name of buffer ("plugin.name"), set before the buffer is renamed _(WeeChat ≥ 2.8)_ +** _short_name_: short name of buffer (note: used for display only and can be changed by user, this must not be used to find name of buffer, use instead _name_, _full_name_ or local variable _channel_) ** _type_: type of buffer: "formatted" or "free" _(WeeChat ≥ 4.2.0)_ ** _title_: title of buffer ** _input_: input text @@ -14438,8 +14428,7 @@ Arguments: ** _highlight_tags_restrict_: restrict highlights to messages with these tags ** _highlight_tags_: force highlight on messages with these tags ** _hotlist_max_level_nicks_: max hotlist level for some nicks -** _localvar_xxx_: get content of local variable "xxx" (replace "xxx" by the - name of variable to read) +** _localvar_xxx_: get content of local variable "xxx" (replace "xxx" by the name of variable to read) Return value: @@ -14483,8 +14472,7 @@ Arguments: * _buffer_: buffer pointer * _property_: property name: -** _plugin_: pointer to plugin which created this buffer (NULL for WeeChat main - buffer) +** _plugin_: pointer to plugin which created this buffer (NULL for WeeChat main buffer) ** _text_search_regex_compiled_: compiled regular expression ** _text_search_ptr_history_: history found ** _highlight_disable_regex_compiled_: regular expression _highlight_disable_regex_ compiled diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 8a0c4fe18..7292b3a81 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -14639,40 +14639,32 @@ Paramètres : ** _type_ : type de tampon (0 : formaté, 1 : contenu libre) ** _notify_ : niveau de notification du tampon ** _num_displayed_ : nombre de fenêtres affichant ce tampon -** _active_ : 2 si le tampon est le seul actif (mélangé), 1 si le tampon est - actif, 0 si le tampon est mélangé et n'est pas sélectionné -** _hidden_ : 1 si le tampon est caché, sinon 0 - _(WeeChat ≥ 1.0)_ -** _zoomed_ : 1 si le tampon est mélangé et zoomé, sinon 0 - _(WeeChat ≥ 1.0)_ +** _active_ : 2 si le tampon est le seul actif (mélangé), 1 si le tampon est actif, 0 si le tampon est mélangé et n'est pas sélectionné +** _hidden_ : 1 si le tampon est caché, sinon 0 _(WeeChat ≥ 1.0)_ +** _zoomed_ : 1 si le tampon est mélangé et zoomé, sinon 0 _(WeeChat ≥ 1.0)_ ** _print_hooks_enabled_ : 1 si les hooks "print" sont activés, sinon 0 -** _day_change_ : 1 si les messages de changement de jour sont affichés, sinon 0 - _(WeeChat ≥ 0.4.3)_ -** _clear_ : 1 si le tampon peut être effacé avec la commande `/buffer clear`, - sinon 0 _(WeeChat ≥ 1.0)_ -** _filter_ : 1 si les filtres sont activés sur le tampon, sinon 0 - _(WeeChat ≥ 1.0)_ -** _lines_hidden_ : 1 si au moins une ligne est cachée dans le tampon - (filtrée), ou 0 si toutes les lignes sont affichées +** _day_change_ : 1 si les messages de changement de jour sont affichés, sinon 0 _(WeeChat ≥ 0.4.3)_ +** _clear_ : 1 si le tampon peut être effacé avec la commande `/buffer clear`, sinon 0 _(WeeChat ≥ 1.0)_ +** _filter_ : 1 si les filtres sont activés sur le tampon, sinon 0 _(WeeChat ≥ 1.0)_ +** _closing_ : 1 si le tampon est en cours de fermeture, sinon 0 _(WeeChat ≥ 1.0)_ +** _lines_hidden_ : 1 si au moins une ligne est cachée dans le tampon (filtrée), ou 0 si toutes les lignes sont affichées ** _prefix_max_length_ : longueur maximale du préfixe dans ce tampon -** _time_for_each_line_ : 1 si l'heure est affichée pour chaque ligne du tampon - (par défaut), sinon 0 +** _next_line_id_ : prochain identifiant de ligne dans le tampon _(WeeChat ≥ 3.8)_ +** _time_for_each_line_ : 1 si l'heure est affichée pour chaque ligne du tampon (par défaut), sinon 0 ** _nicklist_ : 1 si la liste de pseudos est activée, sinon 0 -** _nicklist_case_sensitive_ : 1 si les pseudos sont sensibles à la casse, - sinon 0 +** _nicklist_case_sensitive_ : 1 si les pseudos sont sensibles à la casse, sinon 0 ** _nicklist_max_length_ : longueur maximale d'un pseudo ** _nicklist_display_groups_ : 1 si les groupes sont affichés, sinon 0 ** _nicklist_count_ : nombre de pseudos et groupes dans la liste de pseudos +** _nicklist_visible_count_ : nombre de pseudos/groupes affichés ** _nicklist_groups_count_ : nombre de groupes dans la liste de pseudos +** _nicklist_groups_visible_count_ : nombre de groupes affichés ** _nicklist_nicks_count_ : nombre de pseudos dans la liste de pseudos -** _nicklist_visible_count_ : nombre de pseudos/groupes affichés +** _nicklist_nicks_visible_count_ : nombre de pseudos affichés ** _input_ : 1 si la zone de saisie est activée, sinon 0 -** _input_get_unknown_commands_ : 1 si les commandes inconnues sont envoyées - à la fonction de rappel "input", sinon 0 -** _input_get_empty_ : 1 si une entrée vide est envoyée à la fonction de rappel - "input", sinon 0 -** _input_multiline_ : 1 si plusieurs lignes sont envoyées comme un seul message - à la fonction de rappel "input", sinon 0 +** _input_get_unknown_commands_ : 1 si les commandes inconnues sont envoyées à la fonction de rappel "input", sinon 0 +** _input_get_empty_ : 1 si une entrée vide est envoyée à la fonction de rappel "input", sinon 0 +** _input_multiline_ : 1 si plusieurs lignes sont envoyées comme un seul message à la fonction de rappel "input", sinon 0 ** _input_size_ : taille de la zone de saisie (en octets) ** _input_length_ : longueur de la zone de saisie (nombre de caractères) ** _input_pos_ : position du curseur dans la zone de saisie @@ -14737,30 +14729,22 @@ Paramètres : * _buffer_ : pointeur vers le tampon * _property_ : nom de la propriété : -** _plugin_ : nom de l'extension qui a créé ce tampon ("core" pour le tampon - principal WeeChat) +** _plugin_ : nom de l'extension qui a créé ce tampon ("core" pour le tampon principal WeeChat) ** _name_ : nom du tampon ** _full_name_ : nom complet du tampon ("extension.nom") _(WeeChat ≥ 0.3.7)_ -** _short_name_ : nom court du tampon (note : utilisé pour l'affichage - seulement et peut être changé par l'utilisateur, il ne doit pas être utilisé - pour trouver le nom du tampon, utilisez à la place _name_, _full_name_ ou - bien la variable locale _channel_) -** _type_ : type de tampon : "formatted" (formaté) ou "free" (contenu libre) - _(WeeChat ≥ 4.2.0)_ +** _old_full_name_ : ancien nom complet du tampon ("extension.nom"), défini avant que le tampon ne soit renommé _(WeeChat ≥ 2.8)_ +** _short_name_ : nom court du tampon (note : utilisé pour l'affichage seulement et peut être changé par l'utilisateur, il ne doit pas être utilisé pour trouver le nom du tampon, utilisez à la place _name_, _full_name_ ou bien la variable locale _channel_) +** _type_ : type de tampon : "formatted" (formaté) ou "free" (contenu libre) _(WeeChat ≥ 4.2.0)_ ** _title_ : titre du tampon ** _input_ : texte saisi ** _text_search_input_ : texte saisi sauvegardé avant la recherche de texte ** _highlight_words_ : liste des mots pour le highlight -** _highlight_disable_regex_ : expression régulière POSIX étendue pour désactiver - le highlight +** _highlight_disable_regex_ : expression régulière POSIX étendue pour désactiver le highlight ** _highlight_regex_ : expression régulière POSIX étendue pour le highlight -** _highlight_tags_restrict_ : restreindre les highlights aux messages - comportant ces étiquettes +** _highlight_tags_restrict_ : restreindre les highlights aux messages comportant ces étiquettes ** _highlight_tags_ : forcer le highlight pour les messages avec ces étiquettes -** _hotlist_max_level_nicks_ : niveau maximum pour la hotlist pour certains - pseudos -** _localvar_xxx_ : contenu de la variable locale "xxx" (remplacer "xxx" par le - nom de la variable locale à lire) +** _hotlist_max_level_nicks_ : niveau maximum pour la hotlist pour certains pseudos +** _localvar_xxx_ : contenu de la variable locale "xxx" (remplacer "xxx" par le nom de la variable locale à lire) Valeur de retour : @@ -14804,8 +14788,7 @@ Paramètres : * _buffer_ : pointeur vers le tampon * _property_ : nom de la propriété : -** _plugin_ : pointeur vers l'extension qui a créé le tampon (NULL pour le - tampon principal WeeChat) +** _plugin_ : pointeur vers l'extension qui a créé le tampon (NULL pour le tampon principal WeeChat) ** _text_search_regex_compiled_ : expression régulière compilée ** _text_search_ptr_history_ : entrée d'historique trouvée ** _highlight_disable_regex_compiled_ : expression régulière _highlight_disable_regex_ compilée diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index 8004d0621..ff1e98de2 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -14979,50 +14979,46 @@ Argomenti: ** _notify_: livello di notifica per il buffer ** _num_displayed_: numero delle finestre che visualizzano il buffer // TRANSLATION MISSING -** _active_: 2 if buffer is the only active (merged), 1 se il buffer è attivo, - 0 se il buffer è unito e non selezionato +** _active_: 2 if buffer is the only active (merged), 1 se il buffer è attivo, 0 se il buffer è unito e non selezionato // TRANSLATION MISSING -** _hidden_: 1 if buffer is hidden, otherwise 0 - _(WeeChat ≥ 1.0)_ +** _hidden_: 1 if buffer is hidden, otherwise 0 _(WeeChat ≥ 1.0)_ // TRANSLATION MISSING -** _zoomed_: 1 if buffer is merged and zoomed, otherwise 0 - _(WeeChat ≥ 1.0)_ -** _print_hooks_enabled_: 1 se gli hook sulla stampa sono abilitati, - altrimenti 0 +** _zoomed_: 1 if buffer is merged and zoomed, otherwise 0 _(WeeChat ≥ 1.0)_ +** _print_hooks_enabled_: 1 se gli hook sulla stampa sono abilitati, altrimenti 0 // TRANSLATION MISSING -** _day_change_: 1 if messages for the day change are displayed, otherwise 0 - _(WeeChat ≥ 0.4.3)_ +** _day_change_: 1 if messages for the day change are displayed, otherwise 0 _(WeeChat ≥ 0.4.3)_ // TRANSLATION MISSING -** _clear_: 1 if buffer can be cleared with command `/buffer clear`, otherwise 0 - _(WeeChat ≥ 1.0)_ +** _clear_: 1 if buffer can be cleared with command `/buffer clear`, otherwise 0 _(WeeChat ≥ 1.0)_ // TRANSLATION MISSING -** _filter_: 1 if filters are enabled on buffer, otherwise 0 - _(WeeChat ≥ 1.0)_ -** _lines_hidden_: 1 se almeno una riga è nascosta sul buffer (filtrata), - oppure 0 se vengono visualizzate tutte le righe +** _filter_: 1 if filters are enabled on buffer, otherwise 0 _(WeeChat ≥ 1.0)_ +// TRANSLATION MISSING +** _closing_: 1 if buffer is closing, otherwise 0 _(WeeChat ≥ 1.0)_ +** _lines_hidden_: 1 se almeno una riga è nascosta sul buffer (filtrata), oppure 0 se vengono visualizzate tutte le righe ** _prefix_max_length_: lunghezza massima del prefisso in questo buffer -** _time_for_each_line_: 1 se l'ora è visualizzata per ogni riga nel buffer - (predefinito), altrimenti 0 +// TRANSLATION MISSING +** _next_line_id_: next line id in buffer _(WeeChat ≥ 3.8)_ +** _time_for_each_line_: 1 se l'ora è visualizzata per ogni riga nel buffer (predefinito), altrimenti 0 ** _nicklist_: 1 se la lista nick è abilitata, altrimenti 0 -** _nicklist_case_sensitive_: 1 se i nick sono sensibili alle maiuscole, - altrimenti 0 +** _nicklist_case_sensitive_: 1 se i nick sono sensibili alle maiuscole, altrimenti 0 ** _nicklist_max_length_: lunghezza massima per un nick ** _nicklist_display_groups_: 1 se i gruppi vengono visualizzati, altrimenti 0 // TRANSLATION MISSING ** _nicklist_count_: number of nicks and groups in nicklist // TRANSLATION MISSING +** _nicklist_visible_count_: numero di nick/gruppi visualizzati ** _nicklist_groups_count_: number of groups in nicklist // TRANSLATION MISSING +** _nicklist_groups_visible_count_: number of groups displayed +// TRANSLATION MISSING ** _nicklist_nicks_count_: number of nicks in nicklist -** _nicklist_visible_count_: numero di nick/gruppi visualizzati +// TRANSLATION MISSING +** _nicklist_nicks_visible_count_: number of nicks displayed ** _input_: 1 se l'input è abilitato, altrimenti 0 -** _input_get_unknown_commands_: 1 se i comandi sconosciuti vengono inviati - alla callback di input, altrimenti 0 +** _input_get_unknown_commands_: 1 se i comandi sconosciuti vengono inviati alla callback di input, altrimenti 0 // TRANSLATION MISSING ** _input_get_empty_: 1 if empty input is sent to input callback, otherwise 0 // TRANSLATION MISSING -** _input_multiline_: 1 if multiple lines are sent as one message to input - callback, otherwise 0 +** _input_multiline_: 1 if multiple lines are sent as one message to input callback, otherwise 0 ** _input_size_: dimensione per l'input (in byte) ** _input_length_: lunghezza dell'input (numero di caratteri) ** _input_pos_: posizione del cursore nell'input del buffer @@ -15098,13 +15094,12 @@ Argomenti: * _buffer_: puntatore al buffer * _property_: nome proprietà: -** _plugin_: nome del plugin che ha creato questo buffer ("core" - per il buffer principale di WeeChat) +** _plugin_: nome del plugin che ha creato questo buffer ("core" per il buffer principale di WeeChat) ** _name_: nome del buffer ** _full_name_: nome completo del buffer ("plugin.nome") _(WeeChat ≥ 0.3.7)_ -** _short_name_: nome breve del buffer (nota: usato solo per il display e può - essere cambiato dall'utente, questo nome non va usato per trovare il nome del - buffer, utilizzare invece _name_, _fullname_ o la variabile locale _channel_) +// TRANSLATION MISSING +** _old_full_name_: old full name of buffer ("plugin.name"), set before the buffer is renamed _(WeeChat ≥ 2.8)_ +** _short_name_: nome breve del buffer (nota: usato solo per il display e può essere cambiato dall'utente, questo nome non va usato per trovare il nome del buffer, utilizzare invece _name_, _fullname_ o la variabile locale _channel_) // TRANSLATION MISSING ** _type_: type of buffer: "formatted" or "free" _(WeeChat ≥ 4.2.0)_ ** _title_: titolo del buffer @@ -15120,8 +15115,7 @@ Argomenti: // TRANSLATION MISSING ** _highlight_tags_: force highlight on messages with these tags ** _hotlist_max_level_nicks_: livello massimo della hotlist per alcuni nick -** _localvar_xxx_: ottiene il contenuto della variabile locale "xxx" - (sostituire "xxx" con il nome della variabile da leggere) +** _localvar_xxx_: ottiene il contenuto della variabile locale "xxx" (sostituire "xxx" con il nome della variabile da leggere) Valore restituito: @@ -15165,8 +15159,7 @@ Argomenti: * _buffer_: puntatore al buffer * _property_: nome proprietà: -** _plugin_: puntatore al plugin che ha creato questo buffer (NULL - per il buffer principale di WeeChat) +** _plugin_: puntatore al plugin che ha creato questo buffer (NULL per il buffer principale di WeeChat) // TRANSLATION MISSING ** _text_search_regex_compiled_: compiled regular expression // TRANSLATION MISSING diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 38481d17f..d1c58c26c 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -14516,39 +14516,38 @@ int weechat_buffer_get_integer (struct t_gui_buffer *buffer, ** _type_: バッファタイプ (0: 書式あり、1: 自由内容) ** _notify_: バッファの通知レベル ** _num_displayed_: バッファを表示しているウィンドウの数 -** _active_: バッファがマージされて選択されている場合は 2、バッファが選択されている場合は - 1、バッファがマージされ選択されていない場合は 0 -** _hidden_: バッファが隠されている場合は 1、そうでない場合は 0 - _(WeeChat バージョン 1.0 以上で利用可)_ -** _zoomed_: バッファがマージとズームされている場合は 1、そうでない場合は 0 - _(WeeChat バージョン 1.0 以上で利用可)_ +** _active_: バッファがマージされて選択されている場合は 2、バッファが選択されている場合は 1、バッファがマージされ選択されていない場合は 0 +** _hidden_: バッファが隠されている場合は 1、そうでない場合は 0 _(WeeChat バージョン 1.0 以上で利用可)_ +** _zoomed_: バッファがマージとズームされている場合は 1、そうでない場合は 0 _(WeeChat バージョン 1.0 以上で利用可)_ ** _print_hooks_enabled_: プリントフックが有効化されている場合は 1、そうでない場合は 0 -** _day_change_: 日付変更メッセージを表示する場合は 1、そうでない場合は 0 - _(WeeChat バージョン 0.4.3 以上で利用可)_ -** _clear_: コマンド `/buffer clear` でバッファをクリアできる場合は 1、そうでない場合は 0 - _(WeeChat バージョン 1.0 以上で利用可)_ -** _filter_: バッファでフィルタが有効な場合は 1、そうでない場合は 0 - _(WeeChat バージョン 1.0 以上で利用可)_ -** _lines_hidden_: バッファに非表示 (フィルタされた) メッセージが 1 - 行以上含まれる場合は 1、すべてのメッセージが表示冴えている場合は 0 +** _day_change_: 日付変更メッセージを表示する場合は 1、そうでない場合は 0 _(WeeChat バージョン 0.4.3 以上で利用可)_ +** _clear_: コマンド `/buffer clear` でバッファをクリアできる場合は 1、そうでない場合は 0 _(WeeChat バージョン 1.0 以上で利用可)_ +** _filter_: バッファでフィルタが有効な場合は 1、そうでない場合は 0 _(WeeChat バージョン 1.0 以上で利用可)_ +// TRANSLATION MISSING +** _closing_: 1 if buffer is closing, otherwise 0 _(WeeChat ≥ 1.0)_ +** _lines_hidden_: バッファに非表示 (フィルタされた) メッセージが 1 行以上含まれる場合は 1、すべてのメッセージが表示冴えている場合は 0 ** _prefix_max_length_: バッファプレフィックスの最大長 -** _time_for_each_line_: バッファの各行に時間を表示する場合は - 1 (デフォルト)、そうでない場合は 0 +// TRANSLATION MISSING +** _next_line_id_: next line id in buffer _(WeeChat ≥ 3.8)_ +** _time_for_each_line_: バッファの各行に時間を表示する場合は 1 (デフォルト)、そうでない場合は 0 ** _nicklist_: ニックネームリストが有効化されている場合は 1、そうでない場合は 0 ** _nicklist_case_sensitive_: ニックネームの大文字小文字を区別する場合は 1、そうでない場合は 0 ** _nicklist_max_length_: ニックネームの最大長 ** _nicklist_display_groups_: グループを表示する場合 1、そうでない場合は 0 ** _nicklist_count_: ニックネームリストに含まれるニックネームとグループの数 +// TRANSLATION MISSING +** _nicklist_visible_count_: number of nicks/groups displayed ** _nicklist_groups_count_: ニックネームリストに含まれるグループの数 +// TRANSLATION MISSING +** _nicklist_groups_visible_count_: number of groups displayed ** _nicklist_nicks_count_: ニックネームリストに含まれるニックネームの数 -** _nicklist_visible_count_: 表示されているニックネームとグループの数 +// TRANSLATION MISSING +** _nicklist_nicks_visible_count_: number of nicks displayed ** _input_: 入力可能な場合は 1、そうでない場合は 0 -** _input_get_unknown_commands_: 未定義のコマンドを入力コールバックに送信する場合は - 1、そうでない場合は 0 +** _input_get_unknown_commands_: 未定義のコマンドを入力コールバックに送信する場合は 1、そうでない場合は 0 ** _input_get_empty_: 入力コールバックに何も送信されなかった場合は 1、そうでない場合は 0 // TRANSLATION MISSING -** _input_multiline_: 1 if multiple lines are sent as one message to input - callback, otherwise 0 +** _input_multiline_: 1 if multiple lines are sent as one message to input callback, otherwise 0 ** _input_size_: 入力サイズ (バイト単位) ** _input_length_: 入力長 (文字数) ** _input_pos_: バッファ入力におけるカーソル位置 @@ -14624,13 +14623,12 @@ const char *weechat_buffer_get_string (struct t_gui_buffer *buffer, * _buffer_: バッファへのポインタ * _property_: プロパティ名: -** _plugin_: バッファを作成したプラグインの名前 - ("core" は WeeChat メインバッファ) +** _plugin_: バッファを作成したプラグインの名前 ("core" は WeeChat メインバッファ) ** _name_: バッファの名前 ** _full_name_: バッファの完全な名前 ("plugin.name") _(WeeChat バージョン 0.3.7 以上で利用可)_ -** _short_name_: バッファの短縮名 (注意: - 表示目的以外に使用するのは禁止、ユーザは書き換えることが可能、バッファを検索する際にこれを使ってはいけない、_name_、_full_name_、またはローカル変数 - _channel_ を使うこと) +// TRANSLATION MISSING +** _old_full_name_: old full name of buffer ("plugin.name"), set before the buffer is renamed _(WeeChat ≥ 2.8)_ +** _short_name_: バッファの短縮名 (注意: 表示目的以外に使用するのは禁止、ユーザは書き換えることが可能、バッファを検索する際にこれを使ってはいけない、_name_、_full_name_、またはローカル変数 _channel_ を使うこと) // TRANSLATION MISSING ** _type_: type of buffer: "formatted" or "free" _(WeeChat ≥ 4.2.0)_ ** _title_: バッファのタイトル @@ -14643,8 +14641,7 @@ const char *weechat_buffer_get_string (struct t_gui_buffer *buffer, ** _highlight_tags_restrict_: これらのタグを付けられたメッセージだけにハイライトを制限する ** _highlight_tags_: これらのタグを付けられたメッセージを強制的にハイライトする ** _hotlist_max_level_nicks_: 一部のニックネームに対するホットリストレベルの最大値 -** _localvar_xxx_: ローカル変数 "xxx" の値 - ("xxx" は読み出す変数の名前) +** _localvar_xxx_: ローカル変数 "xxx" の値 ("xxx" は読み出す変数の名前) 戻り値: @@ -14688,8 +14685,7 @@ void *weechat_buffer_pointer (struct t_gui_buffer *buffer, * _buffer_: バッファへのポインタ * _property_: プロパティ名: -** _plugin_: このバッファを作ったプラグインへのポインタ - (WeeChat メインバッファの場合は NULL) +** _plugin_: このバッファを作ったプラグインへのポインタ (WeeChat メインバッファの場合は NULL) // TRANSLATION MISSING ** _text_search_regex_compiled_: compiled regular expression // TRANSLATION MISSING diff --git a/doc/sr/weechat_plugin_api.sr.adoc b/doc/sr/weechat_plugin_api.sr.adoc index b24ade3bf..cb07ddb3e 100644 --- a/doc/sr/weechat_plugin_api.sr.adoc +++ b/doc/sr/weechat_plugin_api.sr.adoc @@ -13879,8 +13879,12 @@ int weechat_buffer_get_integer (struct t_gui_buffer *buffer, ** _day_change_: 1 ако су приказују поруке о промени дана, у супротном 0 _(WeeChat ≥ 0.4.3)_ ** _clear_: 1 ако бафер може да се очисти командом `/buffer clear`, у супротном 0 _(WeeChat ≥ 1.0)_ ** _filter_: 1 ако су у баферу укључени филтери, у успротном 0 _(WeeChat ≥ 1.0)_ +// TRANSLATION MISSING +** _closing_: 1 if buffer is closing, otherwise 0 _(WeeChat ≥ 1.0)_ ** _lines_hidden_: 1 ако је у баферу скривена бар једна линија (филтрирана), или 0 ако се приказују све линије ** _prefix_max_length_: максимална дужина префикса у овом баферу +// TRANSLATION MISSING +** _next_line_id_: next line id in buffer _(WeeChat ≥ 3.8)_ ** _time_for_each_line_: 1 ако се време приказује са сваку линију у баферу (подразумевано), у супротном 0 ** _nicklist_: 1 ако је укључена листа надимака, у супротном 0 ** _nicklist_case_sensitive_: 1 ако се у надимцима прави разлика у величини слова, у супротном 0 @@ -13889,9 +13893,9 @@ int weechat_buffer_get_integer (struct t_gui_buffer *buffer, ** _nicklist_count_: број надимака и група у листи надимака ** _nicklist_visible_count_: број приказаних надимака/група ** _nicklist_groups_count_: број група у листи надимака -** _nicklist_visible_groups_count_: број приказаних група +** _nicklist_groups_visible_count_: број приказаних група ** _nicklist_nicks_count_: број надимака у листи надимака -** _nicklist_visible_nicks_count_: број приказаних надимака +** _nicklist_nicks_visible_count_: број приказаних надимака ** _input_: 1 ако је укључен унос, у супротном 0 ** _input_get_unknown_commands_: 1 ако се непознате команде шаљу функцији повратног позива уноса, у супротном 0 ** _input_get_empty_: 1 ако се функцији повратног позива уноса шаље празан унос, у супротном 0 @@ -13963,6 +13967,8 @@ const char *weechat_buffer_get_string (struct t_gui_buffer *buffer, ** _plugin_: име додатка који је креирао овај бафер („core” за главни бафер програма WeeChat) ** _name_: име бафера ** _full_name_: пуно име бафера („додатак.име”) _(WeeChat ≥ 0.3.7)_ +// TRANSLATION MISSING +** _old_full_name_: old full name of buffer ("plugin.name"), set before the buffer is renamed _(WeeChat ≥ 2.8)_ ** _short_name_: кратко име бафера (напомена: користи се само за приказ и корисник може да га промени, ово не сме да се употребљава за проналажење имена бафера, уместо њега употребите _name_, _full_name_ или локалну променљиву _channel_) // TRANSLATION MISSING ** _type_: type of buffer: "formatted" or "free" _(WeeChat ≥ 4.2.0)_ -- cgit v1.2.3