l10n: update translations

This commit is contained in:
Gautier Pelloux-Prayer 2015-10-07 15:10:15 +02:00
parent 5414821492
commit e71265bf53
21 changed files with 7 additions and 9 deletions

View file

@ -821,8 +821,7 @@ static UICompositeViewDescription *compositeDescription = nil;
- (void)emailAttachments:(NSArray *)attachments {
NSString *error = nil;
#if TARGET_IPHONE_SIMULATOR
error =
NSLocalizedString(@"Cannot send emails on the Simulator. To test this feature, please use a real device.", nil);
error = @"Cannot send emails on the Simulator. To test this feature, please use a real device.";
#else
if ([MFMailComposeViewController canSendMail] == NO) {
error = NSLocalizedString(
@ -842,12 +841,11 @@ static UICompositeViewDescription *compositeDescription = nil;
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:NSLocalizedString(@"Linphone iOS Logs", nil)];
[picker setSubject:@"Linphone iOS Logs"];
[picker setToRecipients:[NSArray arrayWithObjects:@"linphone-iphone@belledonne-communications.com", nil]];
[picker setMessageBody:NSLocalizedString(@"Here are information about an issue I had on my device.\nI was "
@"doing ...\nI expected Linphone to ...\nInstead, I got an "
@"unexpected result: ...",
nil)
[picker setMessageBody:@"Here are information about an issue I had on my device.\nI was "
@"doing ...\nI expected Linphone to ...\nInstead, I got an "
@"unexpected result: ..."
isHTML:NO];
for (NSArray *attachment in attachments) {
if ([[NSFileManager defaultManager] fileExistsAtPath:attachment[0]]) {

View file

@ -12,4 +12,3 @@
"Limits" = "Limits";
"Adaptive rate control" = "Adaptive rate control";
"Adaptive rate control" = "Adaptive rate control";
"Adaptive rate algorithm" = "Adaptive rate algorithm";

Binary file not shown.

View file

@ -34,7 +34,8 @@ function generate_localizable_from_sources {
#WARNING: sed issue "extra characters at the end of g command" means that
# we are trying to modify an UTF-16 file which is not supported..
localizable_en=$root_directory/Resources/en.lproj/Localizable.strings
find $root_directory/Classes -name '*.m' | xargs genstrings -u -a -o $(dirname $localizable_en)
rm -f $localizable_en
find $root_directory/Classes -name '*.m' | xargs genstrings -u -a -o "$(dirname $localizable_en)"
}
##### 2. Generate .strings for all XIB files