Index: about/translators.js |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/about/translators.js |
@@ -0,0 +1,11 @@ |
+var transParent = document.getElementById('translators'); |
+ |
+var title = document.createElement('h2'); |
+title.appendChild(document.createTextNode(translate.get('about_translators'))); |
+transParent.appendChild(title); |
+ |
+for(i in translators) { |
+ var text = document.createElement('p'); |
+ text.appendChild(document.createTextNode(translate.get(i) + ' - ' + translators[i])); |
+ transParent.appendChild(text); |
+} |