מדיה ויקי:Gadget-HotCat.js/local defaults

מתוך ויקישיבה
קפיצה לניווט קפיצה לחיפוש

// <syntaxhighlight lang="javascript"> $.extend(window.HotCat.messages, { cat_removed  : 'הסרת' ,template_removed  : 'הסרת {{}}' ,cat_added  : 'הוספת' ,cat_keychange: 'מיון חדש ל: "$2"' // $2 is the new key ,cat_notFound : 'קטגוריה "$1" לא נמצאה' ,cat_exists  : 'הקטגוריה "$1" קיימת כבר; לא הוספה.' ,cat_resolved : ' (הפניה של תוקנה)' ,uncat_removed: 'הסרת תבנית:Uncategorized' ,separator  : '; ' ,prefix  : "" // Some text to prefix to the edit summary. ,using  : ' באמצעות HotCat' // Some text to append to the edit summary. Named 'using' for historical reasons. If you prefer // to have a marker at the front, use prefix and set this to the empty string. ,multi_change : '$1 קטגוריות' // $1 is replaced by a number. If your language has several plural forms (c.f. en:Dual (grammatical form)), // you can set this to an array of strings suitable for passing to mw.language.configPlural(). // If that function doesn't exist, HotCat will simply fall back to using the last // entry in the array. ,commit  : 'שמירה' // Button text. Localize to wgContentLanguage here; localize to wgUserLanguage in a subpage, // see localization hook below. ,ok  : 'אישור' // Button text. Localize to wgContentLanguage here; localize to wgUserLanguage in a subpage, // see localization hook below. ,cancel  : 'ביטול' }); // </syntaxhighlight>