User:Euphoria/नेपालीकरण.js: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Created page with "$(document).ready(function() { var नेपालीकरण = function() { $('#wpTextbox1').wikiEditor('addToToolbar', { 'section': 'main', 'group': 'insert', 'tools': { 'नेपालीकरण': { label: 'नेपालीकरण गर्नुहोस्', type: 'button', icon: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Devana..." |
(No difference)
|
Revision as of 17:55, 10 January 2023
$(document).ready(function() {
var नेपालीकरण = function() {
$('#wpTextbox1').wikiEditor('addToToolbar', {
'section': 'main',
'group': 'insert',
'tools': {
'नेपालीकरण': {
label: 'नेपालीकरण गर्नुहोस्',
type: 'button',
icon: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Devanagari_ah.svg/24px-Devanagari_ah.svg.png',
action: {
type: 'callback',
execute: function() {
getText = $('#wpTextbox1').val();
x = getText.replace(/यहाँ नलेख्नुहोस् !!!!/g, "यहाँ नलेख्नुहोस् !!!!");
x = x.replace(/\bcat\b/g, 'रूप');
$('#wpTextbox1').val(x);
document.getElementById('wpSummary').value += "एक उपकरण प्रयोग गरेर व्याकरण ठीक गरियो";
document.editform.wpMinoredit.checked = true;
document.editform.wpDiff.click()
}
}
}
}
});
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ($.inArray(mw.config.get('wgAction'), ['edit', 'submit']) !== -1) {
$.when(mw.loader.using('ext.wikiEditor'), $.ready)
.then(नेपालीकरण);
}
});