User:Elph/ArticleTranslatorar.js
Appearance
(Redirected from User:Elph/ArticleTranslator to Ar.js)
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Elph/ArticleTranslatorar. |
// <nowiki>
/*jslint regexp: true, indent: 4 */
/*global $: false, wgNamespaceNumber: false, autoStart: false, wgAction: false,
homeWiki: true, translatorFormat: true, translatorKeepLinksLables: true, wgScriptPath: true */
if (typeof homeWiki === "undefined") {
var homeWiki = "ar";
}
if (typeof translatorFormat === "undefined") {
var translatorFormat = "($1: $2)";
}
if (typeof translatorKeepLinksLables === "undefined") {
var translatorKeepLinksLables = false;
}
// Regexp.escape() from: http://80.68.89.23/2006/Jan/20/escape/
RegExp.escape = function (text) {
"use strict";
return text.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
};
function Translator() {
"use strict";
var translationTextArea;
function queryTranslationFromData(data) {
var xmlDocument = $(data),
xmlQuery = 'll[lang="' + homeWiki + '"]';
return xmlDocument.find(xmlQuery).text();
}
function addTranslationToNode(node, translation) {
var injectionString = translatorFormat.replace("$1", homeWiki).replace("$2", translation);
node.append(injectionString);
}
function translateFromLanguageLinkNode(title, node) {
$.get(wgScriptPath + "/api.php?action=query&prop=langlinks&titles=" + encodeURIComponent(title) + "&redirects=&format=xml&lllimit=500", function (data) {
var translation = queryTranslationFromData(data);
if (translation !== "") {
addTranslationToNode(node, translation);
}
});
}
// for [[Link]]s in textareas
function addTranslationToTextareaLink(title, translation) {
translationTextArea.val(translationTextArea.val().replace(
new RegExp("(\\[\\[:?)" + RegExp.escape(title) + "(\\|?.*?)(\\]\\])"),
"$1" + translation + (translatorKeepLinksLables ? "$2" : "") + "$3"
));
}
function translateFromLanguageLinks(title) {
$.get(wgScriptPath + "/api.php?action=query&prop=langlinks&titles=" + encodeURIComponent(title) + "&redirects=&format=xml&lllimit=500", function (data) {
var translation = queryTranslationFromData(data);
if (translation !== "") {
addTranslationToTextareaLink(title, translation);
}
});
}
//
// for {{TemplateLink}}s in textareas
function addTranslationToTextareaTemplateLink(title, translation) {
translationTextArea.val(translationTextArea.val().replace(
new RegExp("(\\{\\{\\s*(?:[Tt]emplate:)?)" + RegExp.escape(title) + "([\\n\\|\\}])"),
"$1" + translation + "$2"
));
}
function translateFromLanguageTemplateLinks(title) {
$.get(wgScriptPath + "/api.php?action=query&prop=langlinks&titles=Template:" + encodeURIComponent(title) + "&redirects=&format=xml&lllimit=500", function (data) {
var translation = queryTranslationFromData(data);
if (translation !== "") {
addTranslationToTextareaTemplateLink(title, translation.replace(/^.*?:/, "")); // removing local template name
}
});
}
//
this.run = function () {
if (wgAction === "view" || wgAction === "purge" || wgAction === "historysubmit") {
$("#bodyContent a").each(function () {
var iter = $(this),
title = iter.attr("title");
if (title !== undefined) {
translateFromLanguageLinkNode(title, iter);
}
});
} else if (wgAction === "edit" || wgAction === "submit") {
$("#wpTextbox2").remove();
translationTextArea = $("#wpTextbox1").clone().attr({
"id": "wpTextbox2"
}).css({
"background-color": "#CCCEFF"
});
$("#wpTextbox1").before(translationTextArea);
// for links
var links = translationTextArea.val().match(/\[\[.*?\]\]/g),
templates = translationTextArea.val().match(/\{\{.*?[\n\|\}]/g),
i,
title;
for (i = 0; i < links.length; i = i + 1) { // equals with <code>for (i in matched)</code>
title = links[i].replace(/\[\[:?([^\]\|]*)\|?.*?\]\]/g, "$1");
translateFromLanguageLinks(title);
}
for (i = 0; i < templates.length; i = i + 1) { // equals with <code>for (i in matched)</code>
title = templates[i].replace(/\{\{\s*(?:[Tt]emplate:)?(.*)\s*[\n\|\}]/g, "$1");
translateFromLanguageTemplateLinks(title);
}
}
};
}
var translator = new Translator();
$(function () {
"use strict";
if (typeof autoStart !== "undefined") {
if (autoStart === true) {
translator.run();
}
} else {
$("h1").append(' <span style="font-size:40%"><a id="translatorButton">translate</a> links to <a id="translatorLanguage">' + homeWiki + '</a><input style="display: none" id="translatorLanguageInput"></span>');
$("#translatorButton").click(function() {
translator.run();
});
$("#translatorLanguage").click(function() {
$("#translatorLanguage").hide()
$("#translatorLanguageInput").show().val(homeWiki);
});
$("#translatorLanguageInput").keyup(function() {
if (event.keyCode == 13) { // on enter
$(this).focusout();
} else if (event.keyCode == 27) { // on escape
$("#translatorLanguage").show();
$("#translatorLanguageInput").hide().val(homeWiki);
}
}).focusout(function() {
var selectedLanugage = $(this).val();
if (/...?/.test(selectedLanugage)) {
homeWiki = selectedLanugage;
$("#translatorLanguage").html(homeWiki);
}
$("#translatorLanguage").show()
$("#translatorLanguageInput").hide();
});
}
});