From: <cod...@go...> - 2008-12-10 16:26:23
|
Author: M0...@gm... Date: Wed Dec 10 07:33:58 2008 New Revision: 385 Modified: branches/iVL/.lang/FMain.pot branches/iVL/.project branches/iVL/FMain.class branches/iVL/installer.gambas Log: fixed bug in lilo setup warning Modified: branches/iVL/.lang/FMain.pot ============================================================================== --- branches/iVL/.lang/FMain.pot (original) +++ branches/iVL/.lang/FMain.pot Wed Dec 10 07:33:58 2008 @@ -14,111 +14,111 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: FMain.class:188 +#: FMain.class:189 msgid "Restart" msgstr "" -#: FMain.class:351 +#: FMain.class:352 msgid "Please wait while setup attampts to run the partitioning utility" msgstr "" -#: FMain.class:353 +#: FMain.class:354 msgid "Please wait while setup analyses your current partition setup." msgstr "" -#: FMain.class:353 +#: FMain.class:354 msgid "This may take a while ..." msgstr "" -#: FMain.class:373 +#: FMain.class:374 msgid "You must select a \"/\" partition. This is the target where the system will install to" msgstr "" -#: FMain.class:441 +#: FMain.class:442 msgid "You have not selected any operating systems for your boot menu." msgstr "" -#: FMain.class:441 +#: FMain.class:442 msgid "If you wish to bypass the bootloader setup, uncheck the" msgstr "" -#: FMain.class:441 +#: FMain.class:442 msgid "checkbox." msgstr "" -#: FMain.class:450 +#: FMain.class:452 msgid "Please select a default operating system to boot before proceeding" msgstr "" -#: FMain.class:451 +#: FMain.class:453 msgid "Select an entry from this list" msgstr "" -#: FMain.class:460 +#: FMain.class:462 msgid "Skipping boot loader setup" msgstr "" -#: FMain.class:486 +#: FMain.class:488 msgid "Skipping lilo setup" msgstr "" -#: FMain.class:502 +#: FMain.class:504 msgid "Please enter the root password. For your security purposes, do not leave this blank" msgstr "" -#: FMain.class:507 +#: FMain.class:509 msgid "Passwords do not match. Please enter the same password twice" msgstr "" -#: FMain.class:521 +#: FMain.class:523 msgid "Setup has detected existing directories in the partition you selected for /home." msgstr "" -#: FMain.class:521 +#: FMain.class:523 msgid "Would you like to import these user accounts into your new Operating System" msgstr "" -#: FMain.class:521 +#: FMain.class:523 msgid "Yes" msgstr "" -#: FMain.class:521 +#: FMain.class:523 msgid "No" msgstr "" -#: FMain.class:539 +#: FMain.class:541 msgid "You have not created any user accounts for this system yet. There is not enough information" msgstr "" -#: FMain.class:539 +#: FMain.class:541 msgid "to create an account here. It is recommended that you create at least one." msgstr "" -#: FMain.class:539 +#: FMain.class:541 msgid "Would you like to continue anyway?" msgstr "" -#: FMain.class:557 +#: FMain.class:559 msgid "Please specify a hostname for this computer" msgstr "" -#: FMain.class:562 +#: FMain.class:564 msgid "Please specify the domain this computer belongs to" msgstr "" -#: FMain.class:811 +#: FMain.class:813 msgid "Back" msgstr "" -#: FMain.class:822 +#: FMain.class:824 msgid "Exit Installation" msgstr "" -#: FMain.class:833 +#: FMain.class:835 msgid "Next" msgstr "" -#: FMain.class:847 +#: FMain.class:849 msgid "Button1" msgstr "" Modified: branches/iVL/.project ============================================================================== --- branches/iVL/.project (original) +++ branches/iVL/.project Wed Dec 10 07:33:58 2008 @@ -2,7 +2,7 @@ # Compiled with Gambas 2.9.0 Title=VectorLinux Installer Startup=MdlCore -Version=0.1.14 +Version=0.1.17 Library=gb.gtk Library=gb.form Library=gb.debug Modified: branches/iVL/FMain.class ============================================================================== --- branches/iVL/FMain.class (original) +++ branches/iVL/FMain.class Wed Dec 10 07:33:58 2008 @@ -178,6 +178,7 @@ DIM sDev AS String DIM sLang AS String DIM i AS Integer + DIM cb AS CheckBox DIM cbox AS ComboBox 'tvPlan.Refresh() @@ -429,16 +430,17 @@ frmNext = FrmLiloSetup CASE "FrmLiloSetup" - FOR EACH cbox IN MdlLilo.arrLinuxIncCheckboxes - IF cbox.Value = TRUE THEN INC i + FOR EACH cb IN MdlLilo.arrLinuxIncCheckboxes + IF cb.Value = TRUE THEN INC i NEXT - FOR EACH cbox IN MdlLilo.arrWinBootChecks - IF cbox.Value = TRUE THEN INC i + FOR EACH cb IN MdlLilo.arrWinBootChecks + IF cb.Value = TRUE THEN INC i NEXT IF i = 0 THEN Message.error(("You have not selected any operating systems for your boot menu.") & "<br>" & ("If you wish to bypass the bootloader setup, uncheck the") & Space(1) & "\"" & FrmLiloSetup.cbYNLilo.Text & "\"" & Space(1) & ("checkbox.")) + ME.btnext.Enabled = TRUE STOP EVENT RETURN END IF Modified: branches/iVL/installer.gambas ============================================================================== Binary files. No diff available. |