diff options
author | Damiano Galassi <[email protected]> | 2016-01-14 08:41:48 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-01-14 08:41:48 +0100 |
commit | 3c1781b9857df3d72f137f92e4d71c59b0e63658 (patch) | |
tree | 2463823e49b80bd8ed8d7f6c38adcb7b183e04d6 /macosx/HBCore.m | |
parent | a1c1a3c240d25e9d69b82917ce0768162c7066fb (diff) |
MacGui: disk -> disc, plus a bunch of NSLocalizedString.
Diffstat (limited to 'macosx/HBCore.m')
-rw-r--r-- | macosx/HBCore.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/HBCore.m b/macosx/HBCore.m index ec08b2caa..cdb831fb3 100644 --- a/macosx/HBCore.m +++ b/macosx/HBCore.m @@ -158,7 +158,7 @@ static void hb_error_handler(const char *errmsg) if (detector.isVideoDVD || detector.isVideoBluRay) { - [HBUtilities writeToActivityLog:"%s trying to open a physical disk at: %s", self.name.UTF8String, url.path.UTF8String]; + [HBUtilities writeToActivityLog:"%s trying to open a physical disc at: %s", self.name.UTF8String, url.path.UTF8String]; void *lib = NULL; if (detector.isVideoDVD) @@ -173,17 +173,17 @@ static void hb_error_handler(const char *errmsg) if (lib) { dlclose(lib); - [HBUtilities writeToActivityLog:"%s library found for decrypting physical disk", self.name.UTF8String]; + [HBUtilities writeToActivityLog:"%s library found for decrypting physical disc", self.name.UTF8String]; } else { // Notify the user that we don't support removal of copy protection. - [HBUtilities writeToActivityLog:"%s, library not found for decrypting physical disk", self.name.UTF8String]; + [HBUtilities writeToActivityLog:"%s, library not found for decrypting physical disc", self.name.UTF8String]; if (error) { *error = [NSError errorWithDomain:@"HBErrorDomain" code:101 - userInfo:@{ NSLocalizedDescriptionKey: @"library not found for decrypting physical disk" }]; + userInfo:@{ NSLocalizedDescriptionKey: @"library not found for decrypting physical disc" }]; } } } |