From 611f5c5f0bc105b8b0b43b5df2cc5ba9ccc692d3 Mon Sep 17 00:00:00 2001 From: Frederic Jacobs Date: Tue, 2 Sep 2014 18:48:48 +0200 Subject: [PATCH] Closes #138 --- Signal/src/view controllers/RegisterViewController.m | 6 ++---- Signal/translations/en.lproj/Localizable.strings | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Signal/src/view controllers/RegisterViewController.m b/Signal/src/view controllers/RegisterViewController.m index 531652417..8bb4dc394 100644 --- a/Signal/src/view controllers/RegisterViewController.m +++ b/Signal/src/view controllers/RegisterViewController.m @@ -275,7 +275,7 @@ TOCUntilOperation callStarter = ^TOCFuture *(TOCCancelToken* internalUntilCancelledToken) { HttpRequest* voiceVerifyReq = [HttpRequest httpRequestToStartRegistrationOfPhoneNumberWithVoice]; - [self.voiceChallengeTextLabel setText:@"Calling" ]; + [self.voiceChallengeTextLabel setText:NSLocalizedString(@"REGISTER_CALL_CALLING", @"")]; return [HttpManager asyncOkResponseFromMasterServer:voiceVerifyReq unlessCancelled:internalUntilCancelledToken andErrorHandler:[Environment errorNoter]]; @@ -291,13 +291,11 @@ [futureVoiceVerificationStarted finallyTry:^(id _id) { dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, VOICE_VERIFICATION_COOLDOWN_SECONDS * NSEC_PER_SEC); dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ - [self.voiceChallengeTextLabel setText:@"Re-Call"]; + [self.voiceChallengeTextLabel setText:NSLocalizedString(@"REGISTER_CALL_RECALL", @"")]; }); return _id; }]; - - } - (IBAction)initiateVoiceVerificationButtonHandler { diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index fc3095b3f..dd1696ed1 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -91,6 +91,8 @@ "RECENT_CALLS_SORTING_TITLE" = "Sorting Method"; "RECENT_NAV_BAR_TITLE" = "Call Log"; "REGISTER_BUTTON_TITLE" = "REGISTER"; +"REGISTER_CALL_CALLING" = "Calling"; +"REGISTER_CALL_RECALL" = "Re-Call"; "REGISTER_CC_ERR_ALERT_VIEW_MESSAGE" = "Please enter a valid country code"; "REGISTER_CC_ERR_ALERT_VIEW_TITLE" = "Country Code Error"; "REGISTER_CHALLENGE_TEXTBLOCK_PART1" = "Let’s make sure you’re real. We've sent you a SMS with a six digit code to:";