X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/0470069371352de4f0b448ea31c0984a8cbdc9d7..1636cf2976bbc6940ec85b3a41017492db9f17fa:/Cydia.app/confirm.js diff --git a/Cydia.app/confirm.js b/Cydia.app/confirm.js index 41f7a0d1..bd78c2e5 100644 --- a/Cydia.app/confirm.js +++ b/Cydia.app/confirm.js @@ -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("
" + + $("#i" + i).append("
" + "" + - "" + $.xml(entry[1] + " " + entry[3]) + "" + + "" + "
"); } } 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("
" + - "" + + "" + "" + "
");