Chameleon Applications

Chameleon Applications Commit Details

Date:2011-12-04 02:16:17 (12 years 4 months ago)
Author:Rekursor
Commit:399
Parents: 398
Message:Added localization for cd boot messages
Changes:
M/trunk/ChameleonPrefPane/Sources/BootSetupController.mm
M/trunk/ChameleonPrefPane/English.lproj/Localizable.strings

File differences

trunk/ChameleonPrefPane/Sources/BootSetupController.mm
371371
372372
373373
374
375
374
375
376
376377
377378
378
379
380
379381
380382
381383
if (result)
{
[self msgBoxInfo:
[NSString stringWithFormat:@"Boot cd creator script successfully executed. BootCD.iso created in %@.",
destination]];
[NSString stringWithFormat:
GetLocStrDef(@"CD_Success", @"msgbox", @"Boot cd creator script successfully executed. BootCD.iso created in %@."),
destination]];
}
else
[self msgBoxError:@"ERROR: Couldn't execute boot cd creator script successfully!"];
[self msgBoxError:
GetLocStrDef(@"CD_Failure", @"msgbox", @"ERROR: Couldn't execute boot cd creator script successfully!")];
}
[arr release];
trunk/ChameleonPrefPane/English.lproj/Localizable.strings
2727
2828
2929
30
31
32
33
34
35
/* error */
"Error_Searching" = "Error while searching for org.chameleon.Boot.plist";
/* msgbox */
"CD_Success" = "Boot cd creator script successfully executed. BootCD.iso has been created in %@.";
/* msgbox */
"CD_Failure" = "ERROR: Couldn't execute boot cd creator script successfully!";

Archive Download the corresponding diff file

Revision: 399