User:Dixtosa/link to GED.js

Hello, you have come here looking for the meaning of the word User:Dixtosa/link to GED.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Dixtosa/link to GED.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:Dixtosa/link to GED.js in singular and plural. Everything you need to know about the word User:Dixtosa/link to GED.js you have here. The definition of the word User:Dixtosa/link to GED.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Dixtosa/link to GED.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
$(() => {
	const pageName = mw.config.values.wgPageName;
	if ($("h2 span.mw-headline#Georgian").length > 0 || $("h2 span.mw-headline#Old_Georgian").length > 0 || mw.config.values.wgRelevantArticleId == 0)
	{
		addToRightVectorTabs("ena.ge", get_ena_ge());
		addToRightVectorTabs("translate.ge", get_translate_ge());
	}
	else if ($("h2 span.mw-headline#English").length > 0)
		addToRightVectorTabs("translate.ge", get_translate_ge());
	
	function addToRightVectorTabs(title, link) {
		let description = "გადადი ამ საიტზე და შეამოწმე ეს ტერმინი";
		mw.util.addPortletLink('p-views', link, title, 'ca-' + title.replace(".", "-"), description, null, "#ca-view");
	}
	function get_translate_ge() {
		const base = "http://translate.ge/word/";
		return base + pageName;
	}
	function get_ena_ge() {
		const base = "http://ena.ge/explanatory-online?ls=";
		const phpobj = 'a:2:{s:12:"word_metauri";s:' + 3 * pageName.length + ':"' + pageName + '";s:11:"word_statia";s:0:"";}';
		const php_base64 = btoa(unescape(encodeURIComponent(phpobj)));
		return base + php_base64;
	}
});