Fix missing localized placeholder in dialer

This commit is contained in:
Guillaume BIENKOWSKI 2014-01-22 16:54:15 +01:00
parent 1fc2b10e7e
commit 27261010d6
4 changed files with 1 additions and 1 deletions

View file

@ -159,7 +159,7 @@ static UICompositeViewDescription *compositeDescription = nil;
// fix placeholder bar color in iOS7
UIColor *color = [UIColor grayColor];
addressField.attributedPlaceholder = [[NSAttributedString alloc]
initWithString:addressField.placeholder
initWithString:NSLocalizedString(@"Enter an address", @"Enter an address")
attributes:@{NSForegroundColorAttributeName: color}];
}
#endif