User:Euphoria/नेपालीकरण.js: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Tag: Undo |
No edit summary |
||
Line 18: | Line 18: | ||
x = x.replace(/\bcat\b/g, 'dog'); |
x = x.replace(/\bcat\b/g, 'dog'); |
||
x = x.replace(/(? |
x = x.replace(/(?<![\u0900-\u097F])कुकुर(?![\u0900-\u097F])/g, 'बिरालो'); |
||
$('#wpTextbox1').val(x); |
$('#wpTextbox1').val(x); |
Revision as of 14:08, 26 December 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, 'dog');
x = x.replace(/(?<![\u0900-\u097F])कुकुर(?![\u0900-\u097F])/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(नेपालीकरण);
}
});