[ios] Remove OSM login titles capitalization #8147

Merged
itfarrier merged 1 commit from fix-osm-login-titles-uppercase-respect into master 2024-05-11 20:02:07 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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];
}