diff --git a/js/slideshow/Modal.js b/js/slideshow/Modal.js index 97d2376..25cd17a 100644 --- a/js/slideshow/Modal.js +++ b/js/slideshow/Modal.js @@ -109,6 +109,10 @@ subscribe("modal/translations", function(){ html += " "+getWords("translations_original")+""; html += "
"; html += _createLinks(" · "); + + // ar + html += " · العربية"; + $("#modal_content").innerHTML = html; // Show in large box 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 +}