Roger Roger

This commit is contained in:
Mitchell Livingston 2006-12-15 01:35:42 +00:00
parent 6e46fc05d4
commit 2b890a0376
1 changed files with 2 additions and 2 deletions

View File

@ -86,11 +86,11 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
&& [[dic objectForKey: @"NSApplicationProcessIdentifier"] intValue] != processIdentifier) && [[dic objectForKey: @"NSApplicationProcessIdentifier"] intValue] != processIdentifier)
{ {
NSAlert * alert = [[NSAlert alloc] init]; NSAlert * alert = [[NSAlert alloc] init];
[alert addButtonWithTitle: NSLocalizedString(@"Quit", "Transmission already running alert -> button")]; [alert addButtonWithTitle: NSLocalizedString(@"OK", "Transmission already running alert -> button")];
[alert setMessageText: NSLocalizedString(@"Transmission is already running", [alert setMessageText: NSLocalizedString(@"Transmission is already running",
"Transmission already running alert -> title")]; "Transmission already running alert -> title")];
[alert setInformativeText: NSLocalizedString(@"There is already a copy of Transmission running. " [alert setInformativeText: NSLocalizedString(@"There is already a copy of Transmission running. "
"Please quit that instance before opening another.", "Transmission already running alert -> message")]; "This copy cannot open until that instance is quit.", "Transmission already running alert -> message")];
[alert setAlertStyle: NSWarningAlertStyle]; [alert setAlertStyle: NSWarningAlertStyle];
[alert runModal]; [alert runModal];