summaryrefslogtreecommitdiffstats
path: root/macosx/HBController.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-07-04 16:42:06 +0000
committerritsuka <[email protected]>2015-07-04 16:42:06 +0000
commitb3e5779d36d465fc660676bd5553e3c1ac120981 (patch)
tree3a93e75ac2420d2774fb9add29f43a844d0aa287 /macosx/HBController.m
parent32a305bcc81475098b12dbeea26c3d2202100b54 (diff)
MacGui: updated the text on some warning messages.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7339 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r--macosx/HBController.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m
index ec470c454..d5599e899 100644
--- a/macosx/HBController.m
+++ b/macosx/HBController.m
@@ -1096,8 +1096,8 @@
if ([[NSFileManager defaultManager] fileExistsAtPath:destinationDirectory] == 0)
{
NSAlert *alert = [[NSAlert alloc] init];
- [alert setMessageText:NSLocalizedString(@"Warning!", @"")];
- [alert setInformativeText:NSLocalizedString(@"This is not a valid destination directory!", @"")];
+ [alert setMessageText:NSLocalizedString(@"Invalid destination.", @"")];
+ [alert setInformativeText:NSLocalizedString(@"The current destination folder is not a valid.", @"")];
[alert runModal];
return;
}
@@ -1106,7 +1106,7 @@
if ([[NSFileManager defaultManager] fileExistsAtPath:self.job.destURL.path])
{
NSAlert *alert = [[NSAlert alloc] init];
- [alert setMessageText:NSLocalizedString(@"Warning!", @"")];
+ [alert setMessageText:NSLocalizedString(@"A file already exists at the selected destination.", @"")];
[alert setInformativeText:[NSString stringWithFormat:NSLocalizedString(@"Do you want to overwrite %@?", @""), self.job.destURL.path]];
[alert addButtonWithTitle:NSLocalizedString(@"Cancel", @"")];
[alert addButtonWithTitle:NSLocalizedString(@"Overwrite", @"")];