From 55f1c273634a9ffd6c03698151de476407a5da3c Mon Sep 17 00:00:00 2001 From: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com> Date: Sat, 8 Jun 2024 17:02:21 -0300 Subject: [PATCH 1/3] Update MWMOpeningHoursEditorViewController.mm Signed-off-by: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com> --- .../Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/UI/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm b/iphone/Maps/UI/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm index ac307b8945..05decb8363 100644 --- a/iphone/Maps/UI/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm +++ b/iphone/Maps/UI/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm @@ -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 -- 2.45.3 From 28dd6c955a36eed68b58325b0f23a3516ffd9a7c Mon Sep 17 00:00:00 2001 From: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com> Date: Sat, 8 Jun 2024 17:02:53 -0300 Subject: [PATCH 2/3] Update MWMStreetEditorViewController.mm Signed-off-by: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com> --- iphone/Maps/UI/Editor/Street/MWMStreetEditorViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/UI/Editor/Street/MWMStreetEditorViewController.mm b/iphone/Maps/UI/Editor/Street/MWMStreetEditorViewController.mm index 62075f9c04..77891e31f3 100644 --- a/iphone/Maps/UI/Editor/Street/MWMStreetEditorViewController.mm +++ b/iphone/Maps/UI/Editor/Street/MWMStreetEditorViewController.mm @@ -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 -- 2.45.3 From cf6e9c1ae2b84d21dc7ad0650dae40b30e974c86 Mon Sep 17 00:00:00 2001 From: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com> Date: Sat, 8 Jun 2024 19:55:13 -0300 Subject: [PATCH 3/3] Update MWMEditorViewController.mm Signed-off-by: Matheus Gomes <86851490+matheusgomesms@users.noreply.github.com> --- iphone/Maps/UI/Editor/MWMEditorViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/UI/Editor/MWMEditorViewController.mm b/iphone/Maps/UI/Editor/MWMEditorViewController.mm index 9530334753..7d984e4f7f 100644 --- a/iphone/Maps/UI/Editor/MWMEditorViewController.mm +++ b/iphone/Maps/UI/Editor/MWMEditorViewController.mm @@ -199,7 +199,7 @@ void registerCellsForTableView(std::vector 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 -- 2.45.3