script: change default value of option script.look.sort from "p,n" to "i,p,n"

v2.8-utf8proc
Sébastien Helleu 2018-02-08 20:45:10 +01:00
parent 81b7d35349
commit 2b275040e7
8 changed files with 8 additions and 7 deletions

View File

@ -36,6 +36,7 @@ Improvements::
* api: add time in info "date" (WeeChat compilation date/time) (issue #1138)
* irc: allow ${irc_server.xxx} and ${server} in server evaluated options (issue #1144)
* script: change default value of option script.look.sort from "p,n" to "i,p,n"
Build::

View File

@ -192,7 +192,7 @@
** Beschreibung: pass:none[Standardsortierung für Skripten im Skript Buffer: durch Kommata getrennte Liste von Bezeichnern: a=Autor, A=automatisch geladen, d=Datum wann das Skript hinzugefügt wurde, e=Dateierweiterung, i=installiert, l=Programmiersprache, n=Skriptname, o=obsolete, p=empfohlen, r=Skript wird ausgeführt, u=Datum der letzten Überarbeitung; mit Hilfe des Zeichens "-", vor dem entsprechenden Bezeichner, kann die Darstellung umgekehrt werden. Beispiel: "i,u": installierte Skripten werden zuerst dargestellt, sortiert nach dem Datum ihrer letzten Überarbeitung]
** Typ: Zeichenkette
** Werte: beliebige Zeichenkette
** Standardwert: `+"p,n"+`
** Standardwert: `+"i,p,n"+`
* [[option_script.look.translate_description]] *script.look.translate_description*
** Beschreibung: pass:none[für die Beschreibung der Skripten wird die Muttersprache verwendet (sollte keine Übersetzung in der eigenen Sprache verfügbar sein, wird auf die englische Beschreibung zurückgegriffen)]

View File

@ -192,7 +192,7 @@
** description: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date]
** type: string
** values: any string
** default value: `+"p,n"+`
** default value: `+"i,p,n"+`
* [[option_script.look.translate_description]] *script.look.translate_description*
** description: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)]

View File

@ -192,7 +192,7 @@
** description: pass:none[tri par défaut des scripts : liste d'identifiants séparés par des virgules : a=auteur, A=chargé auto, d=date d'ajout, e=extension, i=installé, l=langage, n=nom, o=obsolète, p=populaire, r=chargé, u=date de mise à jour ; le caractère "-" peut être utilisé avant l'identifiant pour inverser l'ordre ; exemple : "i,u" : scripts installés en premier, triés par date de mise à jour]
** type: chaîne
** valeurs: toute chaîne
** valeur par défaut: `+"p,n"+`
** valeur par défaut: `+"i,p,n"+`
* [[option_script.look.translate_description]] *script.look.translate_description*
** description: pass:none[traduire la description des scripts (si une traduction est disponible dans votre langue, sinon la version anglaise est utilisée)]

View File

@ -192,7 +192,7 @@
** descrizione: pass:none[default sort keys for scripts: comma-separated list of identifiers: a=author, A=autoloaded, d=date added, e=extension, i=installed, l=language, n=name, o=obsolete, p=popularity, r=running, u=date updated; char "-" can be used before identifier to reverse order; example: "i,u": installed scripts first, sorted by update date]
** tipo: stringa
** valori: qualsiasi stringa
** valore predefinito: `+"p,n"+`
** valore predefinito: `+"i,p,n"+`
* [[option_script.look.translate_description]] *script.look.translate_description*
** descrizione: pass:none[translate description of scripts (if translation is available in your language, otherwise English version is used)]

View File

@ -192,7 +192,7 @@
** 説明: pass:none[デフォルトのスクリプト表示ソートキー: 識別子のコンマ区切りリスト: a=作者、A=自動ロード、d=追加日、e=拡張子、i=インストール済み、l=言語、n=名前、o=アップデートが必要、p=人気、r=実行中、u=アップデート日; 識別子直前の文字 "-" は逆順でソートを意味; 例: "i,u": インストール済みが最初に来て、アップデート日の順にソート]
** タイプ: 文字列
** 値: 未制約文字列
** デフォルト値: `+"p,n"+`
** デフォルト値: `+"i,p,n"+`
* [[option_script.look.translate_description]] *script.look.translate_description*
** 説明: pass:none[スクリプトの翻訳済み説明文 (翻訳が利用できない場合は、英語で表示)]

View File

@ -192,7 +192,7 @@
** opis: pass:none[domyślne sortowania dla skryptów: oddzielona przecinkami lista identyfikatorów: a=autor, A=automatycznie ładowany, d=data dodania, e=rozszerzenie, i=zainstalowany, l=język, n=nazwa, o=przestarzały, p=popularność, r=uruchomiony, u=data aktualizacji; znak "-" może zostać użyty przed identyfikatorem w celu odwrócenia kolejności; przykład: "i,u": najpierw zainstalowane skrypty, sortowane po dacie aktualizacji]
** typ: ciąg
** wartości: dowolny ciąg
** domyślna wartość: `+"p,n"+`
** domyślna wartość: `+"i,p,n"+`
* [[option_script.look.translate_description]] *script.look.translate_description*
** opis: pass:none[przetłumaczony opis skryptu (jeśli tłumaczenie jest dostępne w twoim języku, w przeciwnym wypadku zostanie użyta angielska wersja)]

View File

@ -455,7 +455,7 @@ script_config_init ()
"u=date updated; char \"-\" can be used before identifier to reverse "
"order; example: \"i,u\": installed scripts first, sorted by update "
"date"),
NULL, 0, 0, "p,n", NULL, 0,
NULL, 0, 0, "i,p,n", NULL, 0,
NULL, NULL, NULL,
&script_config_reload_scripts_cb, NULL, NULL,
NULL, NULL, NULL);