CB-5593 iOS: Make InAppBrowser localizable

Wrapping all UI strings in NSLocalizedString macro
This commit is contained in:
Tomáš Fejfar 2013-11-08 17:32:32 +01:00 committed by Andrew Grieve
parent f448ce88ab
commit 034b599315

View File

@ -487,17 +487,17 @@
self.addressLabel.numberOfLines = 1; self.addressLabel.numberOfLines = 1;
self.addressLabel.opaque = NO; self.addressLabel.opaque = NO;
self.addressLabel.shadowOffset = CGSizeMake(0.0, -1.0); self.addressLabel.shadowOffset = CGSizeMake(0.0, -1.0);
self.addressLabel.text = @"Loading..."; self.addressLabel.text = NSLocalizedString(@"Loading...", nil);
self.addressLabel.textAlignment = UITextAlignmentLeft; self.addressLabel.textAlignment = UITextAlignmentLeft;
self.addressLabel.textColor = [UIColor colorWithWhite:1.000 alpha:1.000]; self.addressLabel.textColor = [UIColor colorWithWhite:1.000 alpha:1.000];
self.addressLabel.userInteractionEnabled = NO; self.addressLabel.userInteractionEnabled = NO;
NSString* frontArrowString = @"►"; // create arrow from Unicode char NSString* frontArrowString = NSLocalizedString(@"►", nil); // create arrow from Unicode char
self.forwardButton = [[UIBarButtonItem alloc] initWithTitle:frontArrowString style:UIBarButtonItemStylePlain target:self action:@selector(goForward:)]; self.forwardButton = [[UIBarButtonItem alloc] initWithTitle:frontArrowString style:UIBarButtonItemStylePlain target:self action:@selector(goForward:)];
self.forwardButton.enabled = YES; self.forwardButton.enabled = YES;
self.forwardButton.imageInsets = UIEdgeInsetsZero; self.forwardButton.imageInsets = UIEdgeInsetsZero;
NSString* backArrowString = @"◄"; // create arrow from Unicode char NSString* backArrowString = NSLocalizedString(@"◄", nil); // create arrow from Unicode char
self.backButton = [[UIBarButtonItem alloc] initWithTitle:backArrowString style:UIBarButtonItemStylePlain target:self action:@selector(goBack:)]; self.backButton = [[UIBarButtonItem alloc] initWithTitle:backArrowString style:UIBarButtonItemStylePlain target:self action:@selector(goBack:)];
self.backButton.enabled = YES; self.backButton.enabled = YES;
self.backButton.imageInsets = UIEdgeInsetsZero; self.backButton.imageInsets = UIEdgeInsetsZero;
@ -713,7 +713,7 @@
{ {
// loading url, start spinner, update back/forward // loading url, start spinner, update back/forward
self.addressLabel.text = @"Loading..."; self.addressLabel.text = NSLocalizedString(@"Loading...", nil);
self.backButton.enabled = theWebView.canGoBack; self.backButton.enabled = theWebView.canGoBack;
self.forwardButton.enabled = theWebView.canGoForward; self.forwardButton.enabled = theWebView.canGoForward;
@ -770,7 +770,7 @@
self.forwardButton.enabled = theWebView.canGoForward; self.forwardButton.enabled = theWebView.canGoForward;
[self.spinner stopAnimating]; [self.spinner stopAnimating];
self.addressLabel.text = @"Load Error"; self.addressLabel.text = NSLocalizedString(@"Load Error", nil);
[self.navigationDelegate webView:theWebView didFailLoadWithError:error]; [self.navigationDelegate webView:theWebView didFailLoadWithError:error];
} }