diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-18 19:12:43 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-18 19:12:43 -0700 |
commit | c8fbe1f43f894bfcc6e4a61ce77e3d865b39101f (patch) | |
tree | b1033fb484d36f60bf51d383ee08ce17ec1368b0 | |
parent | 821b1a0cfad8b1f3cdb3b32b69694ab2cbf39473 (diff) |
Rename Simple segment to User under Installed tab.
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index ce62d77..2baba6c 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -7864,7 +7864,7 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi - (id) initWithDatabase:(Database *)database { if ((self = [super initWithDatabase:database title:UCLocalize("INSTALLED")]) != nil) { - UISegmentedControl *segmented([[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:UCLocalize("SIMPLE"), UCLocalize("EXPERT"), UCLocalize("RECENT"), nil]] autorelease]); + UISegmentedControl *segmented([[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:UCLocalize("USER"), UCLocalize("EXPERT"), UCLocalize("RECENT"), nil]] autorelease]); [segmented setSelectedSegmentIndex:0]; [segmented setSegmentedControlStyle:UISegmentedControlStyleBar]; [[self navigationItem] setTitleView:segmented]; |