diff --git a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm index eb071bda07..e6954e587d 100644 --- a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm +++ b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationLoginViewController.mm @@ -57,7 +57,7 @@ using namespace osm_auth_ios; - (void)configHaveAuth { NSString * osmUserName = OSMUserName(); - self.title = osmUserName.length > 0 ? osmUserName : L(@"osm_account").capitalizedString; + self.title = osmUserName.length > 0 ? osmUserName : L(@"osm_account"); self.authView.hidden = YES; self.accountView.hidden = NO; @@ -67,7 +67,7 @@ using namespace osm_auth_ios; - (void)configNoAuth { - self.title = L(@"profile").capitalizedString; + self.title = L(@"profile"); self.authView.hidden = NO; self.accountView.hidden = YES; } diff --git a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm index d509da3481..e8cfabc2a4 100644 --- a/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm +++ b/iphone/Maps/Classes/CustomViews/Login/MWMAuthorizationOSMLoginViewController.mm @@ -29,7 +29,7 @@ using namespace osm; - (void)viewDidLoad { [super viewDidLoad]; - self.title = L(@"osm_account").capitalizedString; + self.title = L(@"osm_account"); [self checkConnection]; [self stopSpinner]; }