diff --git a/stepmania/src/archutils/Darwin/Crash.m b/stepmania/src/archutils/Darwin/Crash.m index 15af691a82..4d1040fe42 100644 --- a/stepmania/src/archutils/Darwin/Crash.m +++ b/stepmania/src/archutils/Darwin/Crash.m @@ -3,11 +3,12 @@ void InformUserOfCrash( const char *sPath ) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + NSString *sQuit = NSLocalizedString( @"Quit " PRODUCT_FAMILY, @"Button name" ); NSString *s = @PRODUCT_FAMILY " has crashed. Debugging information has been output to\n\n%s\n\n" @"Please file a bug report at\n\n" REPORT_BUG_URL; int ret = NSRunCriticalAlertPanel( @PRODUCT_FAMILY " has crashed", s, @"File Bug Report", - @"Quit", @"Open crashinfo.txt", sPath ); + sQuit, @"Open crashinfo.txt", sPath ); NSWorkspace *ws = [NSWorkspace sharedWorkspace];