Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2013-02-07 20:30:55 +0400
committerMikkel Krautz <mikkel@krautz.dk>2013-02-07 20:30:55 +0400
commit410151ec95d7021f5f39e56e6d0a9bd2af59ca79 (patch)
treefc90d1c45364f67cdab60b4d62a26558f924c8fb
parent53b4da7d5858a0ec5c4071aca1c844eefebafca5 (diff)
MUCertificateDiskImportViewController: fix copy/paste string formatting bug.
-rw-r--r--Source/Classes/MUCertificateDiskImportViewController.m5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Classes/MUCertificateDiskImportViewController.m b/Source/Classes/MUCertificateDiskImportViewController.m
index 4dff05d..3995114 100644
--- a/Source/Classes/MUCertificateDiskImportViewController.m
+++ b/Source/Classes/MUCertificateDiskImportViewController.m
@@ -271,9 +271,8 @@ static void ShowAlertDialog(NSString *title, NSString *msg) {
ShowAlertDialog(NSLocalizedString(@"Import Error", nil), @"Unable to decode PKCS12 file");
[[self tableView] deselectRowAtIndexPath:_attemptIndexPath animated:YES];
} else {
- NSString *msg = [NSString stringWithFormat:
- NSLocalizedString(@"Mumble was unable to import the certificate.",
- @"Generic import error for iTunes Import."), err];
+ NSString *msg = NSLocalizedString(@"Mumble was unable to import the certificate.",
+ @"Generic import error for iTunes Import.");
ShowAlertDialog(NSLocalizedString(@"Import Error", nil), msg);
[[self tableView] deselectRowAtIndexPath:_attemptIndexPath animated:YES];
}