mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
l10n: update translations
This commit is contained in:
parent
5414821492
commit
e71265bf53
21 changed files with 7 additions and 9 deletions
|
|
@ -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]]) {
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -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.
BIN
Settings/InAppSettings.bundle/ja.lproj/Call.strings
Normal file
BIN
Settings/InAppSettings.bundle/ja.lproj/Call.strings
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue