From 5c9a93342d0afbd240e27fa3b68f747be8eb12ab Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Fri, 17 Aug 2018 15:45:24 +0200 Subject: [PATCH] Fixed typo. --- MacPass/MPDocument.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MacPass/MPDocument.m b/MacPass/MPDocument.m index 4d894864..efb2352c 100644 --- a/MacPass/MPDocument.m +++ b/MacPass/MPDocument.m @@ -383,7 +383,7 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGrou backing:NSBackingStoreBuffered defer:NO]; MPPasswordInputController *passwordInputController = [[MPPasswordInputController alloc] init]; - [passwordInputController requestPasswordWithMessage:NSLocalizedString(@"EXTERN_CHANGE_OF_MASTERKEY", @"The master key was changed by an extrenal program!") + [passwordInputController requestPasswordWithMessage:NSLocalizedString(@"EXTERN_CHANGE_OF_MASTERKEY", @"The master key was changed by an external program!") cancelLabel:NSLocalizedString(@"ABORT_MERGE_KEEP_MINE", @"Button label to abort a merge on a file with changed master key!") completionHandler:^BOOL(NSString *password, NSURL *keyURL, BOOL didCancel, NSError *__autoreleasing *error) { [self.windowForSheet endSheet:sheet returnCode:(didCancel ? NSModalResponseCancel : NSModalResponseOK)];