]> git.saurik.com Git - cydia.git/blobdiff - Cydia.app/confirm.js
Fixed memory retain issue in _H<> and a crash bug in sources_ (causing nils).
[cydia.git] / Cydia.app / confirm.js
index 41f7a0d17bacfc7c9e3234fe1f8883145e7c2052..bd78c2e5da8022c714853809218b3ed5c1927a42 100644 (file)
@@ -24,10 +24,10 @@ $(function () {
             size = size.substr(1);
         }
 
-        $("#disk-key").html(negative ? "Disk Freeing" : "Disk Using");
+        $("#disk-key").html(cydia.localize(negative ? "DISK_FREEING" : "DISK_USING"));
         $("#disk-value").html($.xml(size));
     } else for (var i = 0; i != issues.length; ++i) {
-        document.title = "Cannot Comply";
+        document.title = cydia.localize("CANNOT_COMPLY");
 
         $("._issues").remove();
 
@@ -43,19 +43,19 @@ $(function () {
             var type = entry[0];
             if (type == "PreDepends")
                 type = "Depends";
-            $("#i" + i).append("<div><div>" +
+            $("#i" + i).append("<div class=\"clearfix\"><div>" +
                 "<label>" + $.xml(type) + "</label>" +
-                "<labe>" + $.xml(entry[1] + " " + entry[3]) + "</label>" +
+                "<label>" + $.xml(entry[1] + " " + entry[3]) + "</label>" +
             "</div></div>");
         }
     }
 
     var keys = [
-        "Install",
-        "Reinstall",
-        "Upgrade",
-        "Downgrade",
-        "Remove"
+        "INSTALL",
+        "REINSTALL",
+        "UPGRADE",
+        "DOWNGRADE",
+        "REMOVE"
     ];
 
     for (var i = 0; i != 5; ++i) {
@@ -64,7 +64,7 @@ $(function () {
 
         if (length != 0) {
             $("#modifications").append("<div class=\"clearfix\"><div>" +
-                "<label>" + $.xml(keys[i]) + "</label>" +
+                "<label>" + cydia.localize($.xml(keys[i])) + "</label>" +
                 "<label id=\"c" + i + "\"></label>" +
             "</div></div>");