הבדלים בין גרסאות בדף "מדיה ויקי:Gadget-HotCat.js/local defaults"

מתוך ויקיסוגיה
קפיצה לניווט קפיצה לחיפוש
(יצירת דף עם התוכן "// <syntaxhighlight lang="javascript"> $.extend(window.HotCat.messages, { cat_removed : 'הסרת קטגוריה:$1' ,template_removed : 'הסרת {{ק...")
 
(מגזין יהלום שינה את מודל התוכן של הדף מדיה ויקי:Gadget-HotCat.js/local defaults מקוד ויקי ל־JavaScript)
תגית: שינוי מודל התוכן
 
(אין הבדלים)

גרסה אחרונה מ־15:33, 2 בנובמבר 2020

// <syntaxhighlight lang="javascript">
$.extend(window.HotCat.messages, {
	cat_removed  : 'הסרת [[קטגוריה:$1]]'
	,template_removed  : 'הסרת {{[[קטגוריה:$1]]}}'
	,cat_added    : 'הוספת [[קטגוריה:$1]]'
	,cat_keychange: 'מיון חדש ל[[קטגוריה:$1]]: "$2"' // $2 is the new key
	,cat_notFound : 'קטגוריה "$1" לא נמצאה'
	,cat_exists   : 'הקטגוריה "$1" קיימת כבר; לא הוספה.'
	,cat_resolved : ' (הפניה של [[קטגוריה:$1]] תוקנה)'
	,uncat_removed: 'הסרת {{uncategorized}}'
	,separator    : '; '
	,prefix       : ""
		// Some text to prefix to the edit summary.
	,using        : ' באמצעות [[עזרה:Gadget-HotCat|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>