Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: about/translators.js

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 2, 2012, 1:15 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « about/thanks.js ('k') | common/back.js » ('j') | files/background.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+}
« no previous file with comments | « about/thanks.js ('k') | common/back.js » ('j') | files/background.js » ('J')

Powered by Google App Engine
This is Rietveld