Эзоҳ: Баъди захира намудан, Шумо метавонед тағйиротҳои худро аз хотираи браузер гузариш карда, бубинед. Дар браузерҳои Mozilla / Firefox / Safari: тугмаи Shift-ро пахш намуда бо мушак Reload-ро пахш кунед, ё Ctrl-Shift-R-ро пахш намоед (Cmd-Shift-R барои компютерҳои Apple Mac); дар браузери IE: тугмаи Ctrl-ро пахш намуда бо мушак Refresh-ро пахш намоед, ё Ctrl-F5-ро пахш намоед; дар браузери Konqueror:: бо мушак Reload-ро пахш кунед, ё тугмаи F5-ро пахш намоед; дар браузери Opera ба Шумо пурра тоза кардани хотираи браузер ба воситаи Tools→Preferences лозим аст.

// <nowiki>
importScript('User:Cj005257/scripts/useronline.js/Version2.js');
/*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 = "fa";
}

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('&nbsp;&nbsp;&nbsp;<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();
        });
    }
});