more concise phrasing and localization

This commit is contained in:
Mitchell Livingston 2007-01-15 18:48:44 +00:00
parent fbeb566c2f
commit 2e6263efb5
1 changed files with 6 additions and 7 deletions

View File

@ -580,14 +580,14 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
{
NSOpenPanel * panel = [NSOpenPanel openPanel];
[panel setPrompt: @"Select"];
[panel setPrompt: NSLocalizedString(@"Select", "Default incomplete folder cannot be found alert -> prompt")];
[panel setAllowsMultipleSelection: NO];
[panel setCanChooseFiles: NO];
[panel setCanChooseDirectories: YES];
[panel setCanCreateDirectories: YES];
[panel setMessage: NSLocalizedString(@"The incomplete download folder cannot be found."
" Choose a new incomplete folder or cancel to not use an incomplete folder.",
[panel setMessage: NSLocalizedString(@"The incomplete folder cannot be found."
" Choose a new location or cancel for none.",
"Default incomplete folder cannot be found alert -> message")];
NSDictionary * dict = [[NSDictionary alloc] initWithObjectsAndKeys:
@ -604,15 +604,14 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
{
NSOpenPanel * panel = [NSOpenPanel openPanel];
[panel setPrompt: @"Select"];
[panel setPrompt: NSLocalizedString(@"Select", "Default folder cannot be found alert -> prompt")];
[panel setAllowsMultipleSelection: NO];
[panel setCanChooseFiles: NO];
[panel setCanChooseDirectories: YES];
[panel setCanCreateDirectories: YES];
[panel setMessage: NSLocalizedString(@"The download folder cannot be found."
" Choose a new download folder to start the transfer.",
"Default incomplete folder cannot be found alert -> message")];
[panel setMessage: NSLocalizedString(@"The download folder cannot be found. Choose a new location.",
"Default folder cannot be found alert -> message")];
NSDictionary * dict = [[NSDictionary alloc] initWithObjectsAndKeys:
filenames, @"Filenames",