[iOS] Fixed titles capitalization #8424

Merged
matheusgomesms merged 3 commits from capitalized into master 2024-06-09 06:39:32 +00:00
3 changed files with 3 additions and 3 deletions

View file

@ -199,7 +199,7 @@ void registerCellsForTableView(std::vector<MWMEditorCellID> const & cells, UITab
- (void)configNavBar
{
self.title =
L(self.isCreating ? @"editor_add_place_title" : @"editor_edit_place_title").capitalizedString;
L(self.isCreating ? @"editor_add_place_title" : @"editor_edit_place_title");
self.navigationItem.rightBarButtonItem =
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave
target:self

View file

@ -56,7 +56,7 @@ extern NSDictionary * const kMWMOpeningHoursEditorTableCells = @{
- (void)configNavBar
{
self.title = L(@"editor_time_title").capitalizedString;
self.title = L(@"editor_time_title");
self.navigationItem.rightBarButtonItem =
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone
target:self

View file

@ -27,7 +27,7 @@
- (void)configNavBar
{
self.title = L(@"choose_street").capitalizedString;
self.title = L(@"choose_street");
self.navigationItem.leftBarButtonItem =
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
target:self