diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-12-03 01:12:46 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2010-12-03 01:12:46 -0800 |
commit | eab7d275bff63899eba77011b22bd09702e9ea64 (patch) | |
tree | 8cefe8ba9d99799d023183aaa12af9db9d2f80bd /MobileCydia.mm | |
parent | e5b743ed6e59f5a7db0c4847bc0dac973f93d1fe (diff) |
Added Chinese localization (complete), updated English localization, updated Cydia to use two new strings. French and German localizations are currently lacking.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index dd77a84..267fa21 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -7944,7 +7944,7 @@ freeing the view controllers on tab change */ captrect.origin.x = 0; captrect.origin.y = ([[self view] frame].size.height / 2) - (captrect.size.height * 2); caption_ = [[[UILabel alloc] initWithFrame:captrect] autorelease]; - [caption_ setText:@"Initializing Filesystem"]; + [caption_ setText:UCLocalize("PREPARING_FILESYSTEM")]; [caption_ setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; [caption_ setFont:[UIFont boldSystemFontOfSize:28.0f]]; [caption_ setTextColor:[UIColor whiteColor]]; @@ -7960,7 +7960,7 @@ freeing the view controllers on tab change */ statusrect.origin.y = ([[self view] frame].size.height / 2) - statusrect.size.height; status_ = [[[UILabel alloc] initWithFrame:statusrect] autorelease]; [status_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; - [status_ setText:@"(Cydia will exit when complete.)"]; + [status_ setText:UCLocalize("EXIT_WHEN_COMPLETE")]; [status_ setFont:[UIFont systemFontOfSize:16.0f]]; [status_ setTextColor:[UIColor whiteColor]]; [status_ setBackgroundColor:[UIColor clearColor]]; |