diff --git a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationForgottenPasswordViewController.mm b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationForgottenPasswordViewController.mm index 0c2cbc75a9..d4e2a077d7 100644 --- a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationForgottenPasswordViewController.mm +++ b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationForgottenPasswordViewController.mm @@ -16,7 +16,7 @@ - (void)viewDidLoad { [super viewDidLoad]; - self.title = L(@"forgotten_password"); + self.title = L(@"forgot_password").capitalizedString; self.isCorrect = NO; } diff --git a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm index bfab6d4ae1..4636f17a64 100644 --- a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm +++ b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm @@ -10,6 +10,12 @@ #include "editor/osm_auth.hpp" #include "editor/server_api.hpp" +namespace +{ +NSString * const kWebViewAuthSegue = @"Authorization2WebViewAuthorizationSegue"; +NSString * const kOSMAuthSegue = @"Authorization2OSMAuthorizationSegue"; +} // namespace + using namespace osm; @interface MWMAuthorizationLoginViewController () @@ -116,13 +122,12 @@ using namespace osm; } catch (exception const & ex) { - // TODO(@igrechuhin): Should we display some error here? LOG(LWARNING, ("Can't load user preferences from OSM server:", ex.what())); } }); // TODO(@igrechuhin): Cache user name and other info to display while offline. // Note that this cache should be reset if user logs out. - self.title = @""; + self.title = L(@"osm_account").capitalizedString; self.message.hidden = YES; self.loginGoogleButton.hidden = YES; self.loginFacebookButton.hidden = YES; @@ -148,14 +153,14 @@ using namespace osm; self.logoutButton.hidden = YES; if (isAfterFirstEdit) { - self.title = L(@"thank_you"); - self.message.text = L(@"thank_you_message"); + self.title = L(@"thank_you").capitalizedString; + self.message.text = L(@"you_have_edited_your_first_object"); self.leftBarButton.image = [UIImage imageNamed:@"ic_nav_bar_close"]; } else { - self.title = L(@"profile"); - self.message.text = L(@"profile_message"); + self.title = L(@"profile").capitalizedString; + self.message.text = L(@"login_and_edit_map_motivation_message"); self.leftBarButton.image = [UIImage imageNamed:@"btn_back_arrow"]; } } @@ -174,7 +179,7 @@ using namespace osm; size_t const uploadedChanges = stats.m_uploadedCount; size_t const localChanges = totalChanges - uploadedChanges; - self.localChangesLabel.text = [NSString stringWithFormat:@"%@: %@", L(@"changes"), @(localChanges).stringValue]; + self.localChangesLabel.text = [NSString stringWithFormat:@"%@: %@", L(@"changes").capitalizedString, @(localChanges)]; BOOL const noLocalChanges = (localChanges == 0); self.localChangesNotUploadedLabel.hidden = noLocalChanges; self.localChangesActionButton.hidden = noLocalChanges; @@ -182,13 +187,16 @@ using namespace osm; self.localChangesLabelCenter.priority = noLocalChanges ? UILayoutPriorityDefaultHigh : UILayoutPriorityDefaultLow; BOOL const noUploadedChanges = (uploadedChanges == 0); - self.uploadedChangesLabel.text = [NSString stringWithFormat:@"%@: %@", L(@"changes"), @(uploadedChanges).stringValue]; + self.uploadedChangesLabel.text = [NSString stringWithFormat:@"%@: %@", L(@"changes").capitalizedString, @(uploadedChanges)]; self.lastUploadLabel.hidden = noUploadedChanges; if (!noUploadedChanges) - self.lastUploadLabel.text = [NSDateFormatter + { + NSString * lastUploadDate = [NSDateFormatter localizedStringFromDate:[NSDate dateWithTimeIntervalSince1970:stats.m_lastUploadTimestamp] dateStyle:NSDateFormatterShortStyle timeStyle:NSDateFormatterNoStyle]; + self.lastUploadLabel.text = [NSString stringWithFormat:@"%@ %@", L(@"last_upload"), lastUploadDate]; + } self.uploadedChangesViewHeight.constant = noUploadedChanges ? 44.0 : 64.0; self.uploadedChangesLabelCenter.priority = noUploadedChanges ? UILayoutPriorityDefaultHigh : UILayoutPriorityDefaultLow; self.messageTopOffset.priority = UILayoutPriorityDefaultLow; @@ -197,27 +205,50 @@ using namespace osm; #pragma mark - Actions +- (void)performOnlineAction:(TMWMVoidBlock)block +{ + if (Platform::IsConnected()) + block(); + else + [self showAlert:L(@"no_internet_connection_detected") withButtonTitle:L(@"ok")]; +} + - (IBAction)loginGoogle { - [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatGoogle)]; + [self performOnlineAction:^ + { + [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatGoogle)]; + [self performSegueWithIdentifier:kWebViewAuthSegue sender:self.loginGoogleButton]; + }]; } - (IBAction)loginFacebook { - [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatFacebook)]; + [self performOnlineAction:^ + { + [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatFacebook)]; + [self performSegueWithIdentifier:kWebViewAuthSegue sender:self.loginFacebookButton]; + }]; } - (IBAction)loginOSM { - [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatOSM)]; + [self performOnlineAction:^ + { + [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatOSM)]; + [self performSegueWithIdentifier:kOSMAuthSegue sender:self.loginOSMButton]; + }]; } - (IBAction)signup { - [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatSignup)]; - OsmOAuth const auth = OsmOAuth::ServerAuth(); - NSURL * url = [NSURL URLWithString:@(auth.GetRegistrationURL().c_str())]; - [[UIApplication sharedApplication] openURL:url]; + [self performOnlineAction:^ + { + [[Statistics instance] logEvent:kStatEventName(kStatAuthorization, kStatSignup)]; + OsmOAuth const auth = OsmOAuth::ServerAuth(); + NSURL * url = [NSURL URLWithString:@(auth.GetRegistrationURL().c_str())]; + [[UIApplication sharedApplication] openURL:url]; + }]; } - (IBAction)logout diff --git a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm index a9df879a44..967f8938ec 100644 --- a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm +++ b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm @@ -38,7 +38,7 @@ using namespace osm; - (void)viewDidLoad { [super viewDidLoad]; - self.title = L(@"osm_login"); + self.title = L(@"osm_account").capitalizedString; self.isCorrect = MWMFieldCorrectNO; [self checkConnection]; [self stopSpinner]; @@ -163,7 +163,7 @@ using namespace osm; } else { - [self showAlert:L(@"no_internet_connection") withButtonTitle:L(@"ok")]; + [self showAlert:L(@"no_internet_connection_detected") withButtonTitle:L(@"ok")]; } } diff --git a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationWebViewLoginViewController.mm b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationWebViewLoginViewController.mm index 7368d7056b..50dbb90aeb 100644 --- a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationWebViewLoginViewController.mm +++ b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationWebViewLoginViewController.mm @@ -101,8 +101,11 @@ NSString * getVerifier(NSString * urlString) } catch (exception const & ex) { - // TODO(@igrechuhin): What should we do in the error case? - // Stop spinner? Show some dialog? + dispatch_async(dispatch_get_main_queue(), ^ + { + [self stopSpinner]; + [self showAlert:L(@"dialog_routing_system_error") withButtonTitle:L(@"ok")]; + }); LOG(LWARNING, ("Can't loadAuthorizationPage", ex.what())); } }); @@ -151,8 +154,7 @@ NSString * getVerifier(NSString * urlString) else { [self loadAuthorizationPage]; - // TODO Add error handling - [self showAlert:L(@"authorization_error") withButtonTitle:L(@"ok")]; + [self showAlert:L(@"invalid_username_or_password") withButtonTitle:L(@"ok")]; } }); }); @@ -192,8 +194,8 @@ NSString * getVerifier(NSString * urlString) - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { - // TODO Add error handling - [self showAlert:L(@"authorization_error") withButtonTitle:L(@"ok")]; + // TODO Rename string + [self showAlert:L(@"dialog_routing_system_error") withButtonTitle:L(@"ok")]; } @end diff --git a/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.mm b/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.mm index 283cb84ff7..b40fcd7656 100644 --- a/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.mm +++ b/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.mm @@ -37,7 +37,7 @@ using WeekDayView = MWMPlacePageOpeningHoursDayView *; NSString * stringFromTimeSpan(Timespan const & timeSpan) { - return [NSString stringWithFormat:@"%@-%@", stringFromTime(timeSpan.GetStart()), stringFromTime(timeSpan.GetEnd())]; + return [NSString stringWithFormat:@"%@ - %@", stringFromTime(timeSpan.GetStart()), stringFromTime(timeSpan.GetEnd())]; } NSArray * arrayFromClosedTimes(TTimespans const & closedTimes) @@ -149,7 +149,7 @@ WeekDayView getWeekDayView() if (timeTable.IsTwentyFourHours()) { - label = L(@"24/7"); + label = L(@"twentyfour_seven"); openTime = @""; breaks = @[]; } @@ -157,7 +157,7 @@ WeekDayView getWeekDayView() { BOOL const everyDay = (timeTable.GetOpeningDays().size() == 7); self.haveExpandSchedule |= !everyDay; - label = everyDay ? L(@"every_day") : L(@"today"); + label = everyDay ? L(@"daily") : L(@"today"); openTime = stringFromTimeSpan(timeTable.GetOpeningTime()); breaks = arrayFromClosedTimes(timeTable.GetExcludeTime()); } @@ -171,7 +171,7 @@ WeekDayView getWeekDayView() - (void)addEmptyCurrentDay { WeekDayView cd = self.currentDay; - [cd setLabelText:L(@"closed_today") isRed:YES]; + [cd setLabelText:L(@"day_off_today") isRed:YES]; [cd setOpenTimeText:@""]; [cd setBreaks:@[]]; [cd setClosed:NO]; @@ -185,7 +185,7 @@ WeekDayView getWeekDayView() [wd setLabelText:stringFromOpeningDays(timeTable.GetOpeningDays()) isRed:NO]; if (timeTable.IsTwentyFourHours()) { - [wd setOpenTimeText:L(@"24/7")]; + [wd setOpenTimeText:L(@"twentyfour_seven")]; [wd setBreaks:@[]]; } else @@ -207,7 +207,7 @@ WeekDayView getWeekDayView() wd.currentDay = NO; wd.frame = {{0, self.weekDaysViewEstimatedHeight}, {self.weekDaysView.width, 0}}; [wd setLabelText:stringFromOpeningDays(closedDays) isRed:NO]; - [wd setOpenTimeText:L(@"closed_this_day")]; + [wd setOpenTimeText:L(@"day_off")]; [wd setBreaks:@[]]; [wd invalidate]; [self.weekDaysView addSubview:wd]; diff --git a/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.xib b/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.xib index a3f2b19d1a..15012733af 100644 --- a/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.xib +++ b/iphone/Maps/Classes/CustomViews/MapViewControls/PlacePage/Cells/OpeningHours/MWMPlacePageOpeningHoursCell.xib @@ -85,7 +85,7 @@ - + diff --git a/iphone/Maps/Classes/Editor/MWMEditorNameTableViewCell.xib b/iphone/Maps/Classes/Editor/MWMEditorNameTableViewCell.xib index fc94000615..2ddb2fadec 100644 --- a/iphone/Maps/Classes/Editor/MWMEditorNameTableViewCell.xib +++ b/iphone/Maps/Classes/Editor/MWMEditorNameTableViewCell.xib @@ -11,7 +11,7 @@ - + @@ -38,7 +38,7 @@ - + @@ -86,7 +86,7 @@ - diff --git a/iphone/Maps/Classes/Editor/MWMEditorViewController.mm b/iphone/Maps/Classes/Editor/MWMEditorViewController.mm index aae2620f8e..c61252ce3c 100644 --- a/iphone/Maps/Classes/Editor/MWMEditorViewController.mm +++ b/iphone/Maps/Classes/Editor/MWMEditorViewController.mm @@ -105,7 +105,7 @@ NSString * reuseIdentifier(MWMPlacePageCellType cellType) - (void)configNavBar { - self.title = L(@"edit_poi"); + self.title = L(@"edit_place").capitalizedString; self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self @@ -316,7 +316,7 @@ NSString * reuseIdentifier(MWMPlacePageCellType cellType) case MWMPlacePageCellTypeOpenHours: { MWMPlacePageOpeningHoursCell * tCell = (MWMPlacePageOpeningHoursCell *)cell; - NSString * text = entityValue ? entityValue : L(@"editor_time_title"); + NSString * text = entityValue ? entityValue : L(@"add_opening_hours"); [tCell configWithDelegate:self info:text lastCell:lastCell]; break; } @@ -348,7 +348,7 @@ NSString * reuseIdentifier(MWMPlacePageCellType cellType) [tCell configWithDelegate:self icon:[UIImage imageNamed:@"ic_placepage_adress"] text:entityValue - placeholder:L(@"street") + placeholder:L(@"add_street") lastCell:lastCell]; break; } @@ -358,7 +358,7 @@ NSString * reuseIdentifier(MWMPlacePageCellType cellType) [tCell configWithDelegate:self icon:nil text:entityValue - placeholder:L(@"building") + placeholder:L(@"house") keyboardType:UIKeyboardTypeDefault lastCell:lastCell]; break; diff --git a/iphone/Maps/Classes/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm b/iphone/Maps/Classes/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm index 37dc6db773..0c7efe3d6e 100644 --- a/iphone/Maps/Classes/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm +++ b/iphone/Maps/Classes/Editor/OpeningHours/MWMOpeningHoursEditorViewController.mm @@ -52,7 +52,7 @@ extern NSDictionary * const kMWMOpeningHoursEditorTableCells = @{ - (void)configNavBar { - self.title = L(@"editor_time_title"); + self.title = L(@"editor_time_title").capitalizedString; self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self diff --git a/iphone/Maps/Classes/Editor/Street/MWMStreetEditorViewController.mm b/iphone/Maps/Classes/Editor/Street/MWMStreetEditorViewController.mm index d49a6e772a..71b27341c0 100644 --- a/iphone/Maps/Classes/Editor/Street/MWMStreetEditorViewController.mm +++ b/iphone/Maps/Classes/Editor/Street/MWMStreetEditorViewController.mm @@ -38,7 +38,7 @@ namespace - (void)configNavBar { - self.title = L(@"street"); + self.title = L(@"choose_street").capitalizedString; self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self diff --git a/iphone/Maps/Mapsme.storyboard b/iphone/Maps/Mapsme.storyboard index e69e4ad229..eb95e7b0c2 100644 --- a/iphone/Maps/Mapsme.storyboard +++ b/iphone/Maps/Mapsme.storyboard @@ -66,10 +66,10 @@ - + - + - + - + - + - +