From: Jay Freeman (saurik) Date: Fri, 25 Feb 2011 12:11:58 +0000 (-0800) Subject: Rely on cydia.localize() for ProgressController's .title. X-Git-Tag: v1.1.0%b1~186 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/8d5bc2adf44fa65f9990999b8c3f97507ed41637?ds=inline Rely on cydia.localize() for ProgressController's .title. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 694be20b..38364ceb 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]; }