Index: trunk/ChameleonPrefPane/Sources/BootSetupController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 398) +++ trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 399) @@ -371,11 +371,13 @@ 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]; Index: trunk/ChameleonPrefPane/English.lproj/Localizable.strings =================================================================== --- trunk/ChameleonPrefPane/English.lproj/Localizable.strings (revision 398) +++ trunk/ChameleonPrefPane/English.lproj/Localizable.strings (revision 399) @@ -27,3 +27,9 @@ /* 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!"; \ No newline at end of file