summaryrefslogtreecommitdiff
path: root/Cydia.app/localize.js
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2010-10-28 02:25:18 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2010-11-01 22:56:25 -0700
commite17a8c4f2ae16f8daab460936a9b130d024173dd (patch)
tree1544816ffb283219f2de45b0a8e99d6f7ebe24f6 /Cydia.app/localize.js
parent6067f1b8116d8fb2502359f430b9d958e10807b9 (diff)
Rename Cydia.* to MobileCydia.* and add Cydia.frappliance.
Diffstat (limited to 'Cydia.app/localize.js')
-rw-r--r--Cydia.app/localize.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/Cydia.app/localize.js b/Cydia.app/localize.js
deleted file mode 100644
index 9be82d0..0000000
--- a/Cydia.app/localize.js
+++ /dev/null
@@ -1,15 +0,0 @@
-document.addEventListener("DOMContentLoaded", function () {
- var results = document.evaluate("//*[@localize]", document, null, XPathResult.ANY_TYPE, null);
- var result, nodes = [];
- while (result = results.iterateNext())
- nodes.push(result);
- for (var index in nodes) {
- var node = nodes[index];
- var key = node.getAttribute('localize');
- var value = cydia.localize(key, node.innerHTML);
- if (node.nodeName == 'TITLE')
- document.title = value;
- else
- node.innerHTML = value;
- }
-});