Chameleon Applications

Chameleon Applications Commit Details

Date:2011-12-04 02:35:06 (12 years 4 months ago)
Author:ErmaC
Commit:401
Parents: 400
Message:- More cleaning my branch - Add the new field for Italian Localizable.strings
Changes:
D/branches/ErmaC/ChameleonPrefPane/bin
M/branches/ErmaC/ChameleonPrefPane/Italian.lproj/Localizable.strings
M/branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.mm
M/branches/ErmaC/ChameleonPrefPane/English.lproj/Localizable.strings

File differences

branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.mm
182182
183183
184184
185
185186
186187
187
188
188
189
190
189191
190192
191193
192
193
194
195
196
194197
195198
196199
......
371374
372375
373376
374
375
377
378
379
376380
377381
378
382
383
379384
380385
381386
- (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)
{
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];
branches/ErmaC/ChameleonPrefPane/Italian.lproj/Localizable.strings
2626
2727
2828
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* error */
"Error_Searching" = "Errore durante la ricerca dell'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!";
/* 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" = "Sei sicuro di voler sovrascrivere le impostazioni Freeze con la lista attuale delle partizioni ?";
branches/ErmaC/ChameleonPrefPane/English.lproj/Localizable.strings
2727
2828
2929
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* 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!";
/* 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 ?";

Archive Download the corresponding diff file

Revision: 401