X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/b04fe171f0375ecd5d8a24747ca1dff85720a0ca..6b200bc335dc93c5516ccb52f14bd896d8c7fad7:/SharedWebCredentialViewService/SWCViewController.m?ds=inline diff --git a/SharedWebCredentialViewService/SWCViewController.m b/SharedWebCredentialViewService/SWCViewController.m index 35b3a7e5..336232b0 100755 --- a/SharedWebCredentialViewService/SWCViewController.m +++ b/SharedWebCredentialViewService/SWCViewController.m @@ -96,7 +96,7 @@ const NSString* SWC_SERVER_KEY = @"srvr"; self.textLabel.baselineAdjustment = UIBaselineAdjustmentAlignCenters; NSString *title = [dict objectForKey:SWC_ACCOUNT_KEY]; - self.textLabel.text = title ? title : @"--"; + self.textLabel.text = title ? title : NSLocalizedString(@"--", nil); self.detailTextLabel.textColor = [UIColor darkGrayColor]; self.detailTextLabel.textAlignment = NSTextAlignmentLeft; @@ -104,7 +104,7 @@ const NSString* SWC_SERVER_KEY = @"srvr"; self.detailTextLabel.baselineAdjustment = UIBaselineAdjustmentAlignCenters; NSString *subtitle = [dict objectForKey:SWC_SERVER_KEY]; - self.detailTextLabel.text = subtitle ? subtitle : @"--"; + self.detailTextLabel.text = subtitle ? subtitle : NSLocalizedString(@"--", nil); self.backgroundView = [[UIView alloc] init]; self.backgroundView.backgroundColor = self.backgroundColor;