From 468487bef2c89b3fccf9dc6657fda623f8a0f8a1 Mon Sep 17 00:00:00 2001 From: Alex Clay Date: Wed, 16 May 2018 17:46:07 -0400 Subject: [PATCH] hardcode arabic link in Translation.js --- js/slideshow/Translations.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/slideshow/Translations.js b/js/slideshow/Translations.js index 41ef4d0..24f726a 100644 --- a/js/slideshow/Translations.js +++ b/js/slideshow/Translations.js @@ -40,6 +40,10 @@ r.onreadystatechange = function () { html += " "+getWords("translations_add")+""; html += " | "; html += _createLinks(" · "); + + // ar + html += " · العربية"; + $("#translations").innerHTML = html; } @@ -58,4 +62,4 @@ function _createLinks(separator){ html += ""; } return html; -} \ No newline at end of file +}