From 41b1d72f838943df2eb258c14b47b9fbba43998b Mon Sep 17 00:00:00 2001 From: Stephan Diederich Date: Sat, 7 Sep 2013 16:02:47 +0200 Subject: [PATCH] adjust locallizable strings in authenticationViewController --- Classes/BITAuthenticationViewController.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Classes/BITAuthenticationViewController.m b/Classes/BITAuthenticationViewController.m index 2a607e7a7f..24a181d937 100644 --- a/Classes/BITAuthenticationViewController.m +++ b/Classes/BITAuthenticationViewController.m @@ -110,7 +110,7 @@ - (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section { if (section == 0) { - return BITHockeyLocalizedString(@"HockeyAuthenticationDataDescription"); + return BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerDataDescription"); } return nil; @@ -136,7 +136,7 @@ textField.backgroundColor = [UIColor lightGrayColor]; if (0 == [indexPath row]) { - textField.placeholder = BITHockeyLocalizedString(@"HockeyFeedbackUserDataEmailPlaceholder"); + textField.placeholder = BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerEmailPlaceholder"); textField.text = self.email; textField.keyboardType = UIKeyboardTypeEmailAddress; @@ -148,7 +148,7 @@ [textField addTarget:self action:@selector(userEmailEntered:) forControlEvents:UIControlEventEditingChanged]; [textField becomeFirstResponder]; } else { - textField.placeholder = BITHockeyLocalizedString(@"HockeyAuthenticatorViewControllerPasswordPlaceHolder"); + textField.placeholder = BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerPasswordPlaceholder"); textField.text = self.password; textField.keyboardType = UIKeyboardTypeDefault; @@ -171,9 +171,9 @@ } if (0 == [indexPath row]) { - cell.textLabel.text = BITHockeyLocalizedString(@"HockeyFeedbackUserDataEmail"); + cell.textLabel.text = BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerEmailDescription"); } else { - cell.textLabel.text = BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerPassword"); + cell.textLabel.text = BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerPasswordDescription"); } return cell;