hardcode arabic link in Translation.js

This commit is contained in:
Alex Clay 2018-05-16 17:46:07 -04:00 committed by GitHub
parent 11a8915d20
commit 468487bef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -40,6 +40,10 @@ r.onreadystatechange = function () {
html += " <a target='_blank' href='"+window.ADD_YOUR_OWN_LINK+"'>"+getWords("translations_add")+"</a>";
html += " | ";
html += _createLinks(" · ");
// ar
html += " · <a href='http://alexanderclay.github.io/crowds/ar.html' style='text-decoration:none'>العربية</a>";
$("#translations").innerHTML = html;
}
@ -58,4 +62,4 @@ function _createLinks(separator){
html += "</a>";
}
return html;
}
}