မီႇတီႇယႃႇဝီႇၶီႇ:Gadget-DeluxeBar.js

လုၵ်ႉတီႈ ဝီႇၶီႇပပ်ႉ မႃး
မၢႆတွင်း: ဝၢႆးသေသိမ်းပၼ်ယဝ်ႉ၊ တွၼ်ႈတႃႇ ၸဝ်ႈၵဝ်ႇ တေႁၼ်လႆႈ လွင်ႈလႅၵ်ႈလၢႆႈၼၼ်ႉ ၸဝ်ႈၵဝ်ႇတေၸၢင်ႈလႆႈလတ်းၶၢမ်ႈ ၶႅတ်ႉၶျ် တူဝ်ပိုတ်ႇဝႅပ်ႉၸဝ်ႈၵဝ်ႇယဝ်ႉ။
  • ၽွင်းမိူဝ်ႈတိုၵ်ႉၼဵၵ်း Reload တီႈ Firefox / Safari: ၼၼ်ႉ ၼဵၵ်းဝႆႉပႃး Shift ၊ဢမ်ႇၼၼ် ၼဵၵ်းပၼ် Ctrl-F5 ဢမ်ႇၼၼ် Ctrl-R (တီႈၼႂ်း Mac ၼႆ ၼဵၵ်းပၼ်⌘-R)
  • တီႈၼႂ်း Google Chrome: ၼဵၵ်းပၼ် Ctrl-Shift-R (တီႈၼႂ်း Mac ၼႆႉ ၼဵၵ်းပၼ်⌘-Shift-R )
  • ၽွင်းမိူဝ်ႈ တိုၵ်ႉၼဵၵ်း Refreshတီႈ Internet Explorer/ Edge: ၼဵၵ်းဝႆႉပၼ် Ctrl ဢမ်ႇၼၼ် ၼဵၵ်းပၼ် Ctrl-F5
  • တီႈၼႂ်း Opera: ၵႂႃႇၸူးတီႈ Menu → Settings (ပေႃးပဵၼ်တီႈၼႂ်း Mac ၸိုင် Opera → Preferences ) သေ သိုပ်ႇၵႂႃႇ Privacy & security → Clear browsing data → Cached images and files ၼၼ်ႉလႄႈ။
//<nowiki> Keep system from trying to read this as wikitext

// Edition buttons
mw.loader.using( 'mediawiki.util', function() {
 
  if (['edit', 'submit'].indexOf(mw.config.get('wgAction')) == -1)
    return;
 
  $.each([
    // Format: for each button
    // [
    //   'Text to insert before the selection',
    //   'Text to insert after',
    //   'Image',
    //   'Tooltip',
    //   'Image ID'
    // ],

    [
      "{{closed|1=Deleted. ~~"+"~~}}\n\n{{end closed}}\n",
      "",
      "d/dc/Circle-Thumb",
      "box",
      ""
    ],

    [
      "{{subst:" + "joinus",
      "}} ~~" + "~~",
      "a/a7/Button_smiley3",
      "joinus",
      ""
    ],

    [
      "{{subst:" + "welcome",
      "}} ~~" + "~~",
      "e/eb/Button_accueilB",
      "welcome",
      ""
    ],

    [
      "{{subst:" + "test1",
      "}} ~~" + "~~",
      "3/3b/Button_crocs",
      "test1",
      ""
    ],

    [
      "{{subst:" + "test2",
      "}} ~~" + "~~",
      "e/ec/Button_aviso",
      "test2",
      ""
    ],

    [
      "{{subst:" + "blocked",
      "}} ~~" + "~~",
      "0/00/Button_vandale",
      "blocked",
      ""
    ],

    [
      "{{subst:" + "Spam",
      "}} ~~" + "~~",
      "6/6d/Button_exclamation_1",
      "Spam",
      ""
    ],

    [
      "== References ==\n{{Reflist}}",
      "",
      "6/64/Buttonrefvs8",
      "References",
      ""
    ]

  ], function(_, button) {
    mw.toolbar.addButton('//upload.wikimedia.org/wikipedia/commons/' + button[2] + '.png', button[3], button[0], button[1], (button[0] ? button[4] : ''), 'mw-editbutton-' + button[4]);
  });
});


// Per [[Wikibooks:Comments_in_Local_Time#Custom_settings]]
LocalComments = {
	dateDifference: true,
	dateFormat: 'mdy',
	timeFirst: true,
	twentyFourHours: false
};


//</nowiki>