Index: trunk/ChameleonPrefPane/Sources/BootSetupController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 399) +++ trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 400) @@ -182,15 +182,18 @@ - (IBAction)onInjectPartsToFreeze: (id)sender { int size = [[PartsInfoMgr parts] count ]; + NSString * title = GetLocStrDef(@"Freeze_Dialog", @"msgbox", @"Inject Partitions to Freeze Configuration"); if (!size) { // nothing to inject - NSRunAlertPanel(@"Inject Partitions to Freeze Configuration", - @"No current partitions to inject, did you check boot config file ?",@"OK", nil,nil); + NSRunAlertPanel(title, + GetLocStrDef(@"Freeze_NoPart", @"msgbox", @"No current partitions to inject, did you check boot config file ?"), + @"OK", nil,nil); return; } // generate the parts list in preferences proplist - NSInteger n = NSRunAlertPanel(@"Inject Partitions to Freeze Configuration", - @"Are you sure you want to overwrite your Freeze settings with current partition list ?", + NSInteger n = NSRunAlertPanel(title, + GetLocStrDef(@"Freeze_Overwrite", @"msgbox", + @"Are you sure you want to overwrite your Freeze settings with current partition list ?"), @"OK", @"Cancel",nil); if (n==1) { Index: trunk/ChameleonPrefPane/English.lproj/Localizable.strings =================================================================== --- trunk/ChameleonPrefPane/English.lproj/Localizable.strings (revision 399) +++ trunk/ChameleonPrefPane/English.lproj/Localizable.strings (revision 400) @@ -32,4 +32,13 @@ "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 +"CD_Failure" = "ERROR: Couldn't execute boot cd creator script successfully!"; + +/* msgbox */ +"Freeze_Dialog" = "Inject Partitions to Freeze Configuration"; + +/* msgbox */ +"Freeze_NoPart" = "No current partitions to inject, did you check boot config file ?"; + +/* msgbox */ +"Freeze_Overwrite" = "Are you sure you want to overwrite your Freeze settings with current partition list ?";