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

מתוך ויקיסוגיה
קפיצה לניווט קפיצה לחיפוש
הגרסה להדפסה אינה נתמכת עוד וייתכן שיש בה שגיאות תיצוג. נא לעדכן את הסימניות בדפדפן שלך ולהשתמש בפעולת ההדפסה הרגילה של הדפדפן במקום זה.

הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload), או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh), או ללחוץ על צירוף המקשים Ctrl-F5.
  • אופרה: ללחוץ על Ctrl-F5.
// <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>