[downloader][ios] Closed #406 - Done on the right, about on the left

This commit is contained in:
Alex Zolotarev 2011-11-17 20:19:35 +03:00 committed by Alex Zolotarev
parent c05a5f3a9b
commit 3f8bc6e7c5
2 changed files with 7 additions and 8 deletions

View file

@ -81,17 +81,16 @@ static bool IsOurIndex(TIndex const & theirs, TIndex const & ours)
if ((self = [super initWithNibName:nil bundle:nil]))
{
self.navigationItem.title = header;
UIBarButtonItem * aboutButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"About", @"Settings/Downloader - About the program button") style: UIBarButtonItemStylePlain
target:self action:@selector(onAboutButton:)] autorelease];
self.navigationItem.rightBarButtonItem = aboutButton;
// Show Close button only on the first page
// Show About button only on the first page
if ([header compare:NSLocalizedString(@"Download", @"Settings/Downloader - Main downloader window title")] == NSOrderedSame)
{
UIBarButtonItem * closeButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Close", @"Settings/Downloader - Close downloader button") style: UIBarButtonItemStylePlain
target:self action:@selector(onCloseButton:)] autorelease];
self.navigationItem.leftBarButtonItem = closeButton;
UIBarButtonItem * aboutButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"About", @"Settings/Downloader - About the program button") style: UIBarButtonItemStylePlain
target:self action:@selector(onAboutButton:)] autorelease];
self.navigationItem.leftBarButtonItem = aboutButton;
}
UIBarButtonItem * closeButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Done", @"Settings/Downloader - Close downloader button") style: UIBarButtonItemStyleDone
target:self action:@selector(onCloseButton:)] autorelease];
self.navigationItem.rightBarButtonItem = closeButton;
}
return self;
}