summaryrefslogtreecommitdiff
path: root/MobileCydia.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-02-25 04:11:58 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-07 02:41:18 -0800
commit8d5bc2adf44fa65f9990999b8c3f97507ed41637 (patch)
treed2fa79ce5ab6a72b877c4cef3d60b94927c6fd54 /MobileCydia.mm
parent5df7ecfbd8ada3b6bd104d4508c7b7e551f3278a (diff)
Rely on cydia.localize() for ProgressController's .title.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r--MobileCydia.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index 694be20..38364ce 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -9146,7 +9146,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
- (void) repairWithInvocation:(NSInvocation *)invocation {
_trace();
- [self invokeNewProgress:invocation forController:nil withTitle:UCLocalize("REPAIRING")];
+ [self invokeNewProgress:invocation forController:nil withTitle:@"REPAIRING"];
_trace();
}
@@ -9172,7 +9172,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
fclose(file);
- [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:UCLocalize("UPDATING_SOURCES")];
+ [self detachNewProgressSelector:@selector(update_) toTarget:self forController:nil title:@"UPDATING_SOURCES"];
[self complete];
}
@@ -9278,7 +9278,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
- (void) confirmWithNavigationController:(UINavigationController *)navigation {
Queuing_ = false;
++locked_;
- [self detachNewProgressSelector:@selector(perform) toTarget:database_ forController:navigation title:UCLocalize("RUNNING")];
+ [self detachNewProgressSelector:@selector(perform) toTarget:database_ forController:navigation title:@"RUNNING"];
--locked_;
[self complete];
}