You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
(40) |
Apr
(76) |
May
(31) |
Jun
(39) |
Jul
(44) |
Aug
(87) |
Sep
(32) |
Oct
(23) |
Nov
(36) |
Dec
(10) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(49) |
Sep
(14) |
Oct
|
Nov
|
Dec
(1) |
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(63) |
Aug
(95) |
Sep
(39) |
Oct
(61) |
Nov
(75) |
Dec
(118) |
| 2009 |
Jan
(25) |
Feb
(37) |
Mar
(20) |
Apr
(15) |
May
(14) |
Jun
(48) |
Jul
(82) |
Aug
(160) |
Sep
(94) |
Oct
(55) |
Nov
(59) |
Dec
(4) |
| 2010 |
Jan
(5) |
Feb
(17) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|
From: <cod...@go...> - 2008-10-29 20:13:50
|
Author: M0...@gm...
Date: Wed Oct 29 13:12:51 2008
New Revision: 246
Added:
branches/iVL/clsXconf.class
Modified:
branches/iVL/FrmXconf.class
branches/iVL/FrmXconf.form
Log:
Added video driver detection to xconf module
Modified: branches/iVL/FrmXconf.class
==============================================================================
--- branches/iVL/FrmXconf.class (original)
+++ branches/iVL/FrmXconf.class Wed Oct 29 13:12:51 2008
@@ -16,6 +16,8 @@
' You should have received a copy of the GNU General Public License
' along with vinstall-ng. If not, see <http://www.gnu.org/licenses/>.
+
+
PUBLIC SUB cbSetupMethod_Click()
DIM sMsg AS String
SELECT CASE cbSetupMethod.Text
@@ -26,7 +28,7 @@
CASE "Fbdev"
smsg = ("Use the console framebuffer driver")
CASE ELSE
- smsg = ""
+ smsg = clsXconf.sVidID
END SELECT
ME.tlChoiceExp.text = sMsg
ME.tlChoiceExp.Width = MdlObjSizer.get_object_width(sMsg)
@@ -38,7 +40,7 @@
DIM sLine AS String
DIM i, imark, ii AS Integer
- Message.Warning(("We will now setup your graphical user interface. Your
screen may flicker during this process"))
+ 'Message.Warning(("We will now setup your graphical user interface. Your
screen may flicker during this process"))
'SHELL "/usr/bin/X -configure :2 2>/dev/null" WAIT' let's assume this
produced a basic xorg.conf
'SHELL "cat /etc/X11.xorg.conf.new | grep ^Driver |cut -f 2 -d \':\'" TO
sOut
@@ -56,8 +58,19 @@
INC ii
END IF
UNTIL InStr(sFileIn[i + ii], "Driver") OR InStr(sFileIn[i +
ii], "EndSection") '= TRUE
- 'Message("Found Driver: " & sFileIn[i + ii])
sOut = Trim(Mid(sFileIn[i + ii], InStr(sFileIn[i + ii], "\"") +
1, Len(sFileIn[i + ii]) - InStr(sFileIn[i + ii], "\"") - 1))
+ Message(sOut)
+ ' look for the indentifier string
+ ii = 0
+ REPEAT
+ IF InStr(sFileIn[i + ii], "Identifier") = FALSE THEN
+ INC ii
+ END IF
+ UNTIL InStr(sFileIn[i + ii], "Identifier") OR InStr(sFileIn[i
+ ii], "EndSection")
+ clsXconf.sVidID = Trim(Mid(sFileIn[i + ii], InStr(sFileIn[i +
ii], "\"") + 1, Len(sFileIn[i + ii]) - InStr(sFileIn[i + ii], "\"") - 1))
+ 'Message(sID)
+ 'Message("Found Driver: " & sFileIn[i + ii])
+
'END IF
END IF
NEXT
@@ -68,5 +81,14 @@
'Message(sOut)
+
+END
+
+PUBLIC SUB Form_Resize()
+
+ WITH ME
+ .TlBanner.Move(4, 24, .hbBanner.Width - (.TlBanner.Left * 2))
+
+ END WITH
END
Modified: branches/iVL/FrmXconf.form
==============================================================================
--- branches/iVL/FrmXconf.form (original)
+++ branches/iVL/FrmXconf.form Wed Oct 29 13:12:51 2008
@@ -4,26 +4,24 @@
MoveScaled(0,0,89,59)
Text = ("")
Arrangement = Arrange.Vertical
- { hbBanner HBox
- MoveScaled(1,1,77,6)
+ { hbBanner Panel
+ MoveScaled(1,1,86,4)
+ Arrangement = Arrange.Horizontal
{ TlBanner TextLabel
- MoveScaled(1,1,27,3)
+ MoveScaled(1,0,27,3)
Text = ("Graphical Interface Settings")
}
- { hrsep Separator
- MoveScaled(3,4,14,1)
- }
}
{ Panel1 Panel
- MoveScaled(1,8,69,13)
+ MoveScaled(0,6,69,13)
Arrangement = Arrange.Horizontal
AutoResize = True
{ Frame1 Frame
- MoveScaled(0,0,63,11)
+ MoveScaled(0,0,69,13)
Expand = True
Text = ("")
{ tlChoiceExp TextLabel
- MoveScaled(1,6,48,3)
+ MoveScaled(1,5,58,3)
Text = ("")
}
{ cbSetupMethod ComboBox
Added: branches/iVL/clsXconf.class
==============================================================================
--- (empty file)
+++ branches/iVL/clsXconf.class Wed Oct 29 13:12:51 2008
@@ -0,0 +1,3 @@
+' Gambas class file
+
+STATIC PUBLIC sVidID AS String
|
|
From: <cod...@go...> - 2008-10-29 18:47:53
|
Author: M0...@gm...
Date: Wed Oct 29 11:46:14 2008
New Revision: 245
Modified:
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/.project
branches/iVL/FMain.class
branches/iVL/FrmXconf.class
branches/iVL/FrmXconf.form
branches/iVL/MdlConfLilo.module
branches/iVL/MdlLiloOsList.module
Log:
Beginning work on xconf module
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/ClsGlobal.class
+# /home/remote/projects/installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/ClsPartSel.class
+# /home/remote/projects/installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/ClsWinDrives.class
+# /home/remote/projects/installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FMain.class
+# /home/remote/projects/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmDiskPart.class
+# /home/remote/projects/installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmPartScheme.class
+# /home/remote/projects/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmPartSel.class
+# /home/remote/projects/installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmPkgSel.class
+# /home/remote/projects/installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmSelISO.class
+# /home/remote/projects/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmSummary.class
+# /home/remote/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/FrmWinDrives.class
+# /home/remote/projects/installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlCore.module
+# /home/remote/projects/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlDiskPart.module
+# /home/remote/projects/installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlObjSizer.module
+# /home/remote/projects/installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlPartSel.module
+# /home/remote/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlPkgSel.module
+# /home/remote/projects/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlSetup.module
+# /home/remote/projects/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlSummarize.module
+# /home/remote/projects/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Wed Oct 29 11:46:14 2008
@@ -1,4 +1,4 @@
-# /home/uel/gui-installer/MdlWinDrives.module
+# /home/remote/projects/installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Wed Oct 29 11:46:14 2008
@@ -1,7 +1,7 @@
# Gambas Project File 2.0
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
-Startup=MdlCore
+Startup=FrmXconf
Version=0.0.112
Library=gb.gtk
Library=gb.form
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Wed Oct 29 11:46:14 2008
@@ -278,7 +278,7 @@
MdlConfLilo.GENERATE_LILO_DOT_CONF()
MdlConfLilo.GATHER_OTHER_LINUX_KERNELS_AND_INITRDS()
MdlConfLilo.WRITE_LILO_DOT_CONF()
- MdlConfLilo.EXECUTE_LILO()
+ IF MdlConfLilo.EXECUTE_LILO() <> 0 THEN RETURN
ELSE
' lilo installation / setup has been skipped
FrmLilo.tlBanner.Text = "<b>" & ("Skipping lilo setup") & "</b>"
Modified: branches/iVL/FrmXconf.class
==============================================================================
--- branches/iVL/FrmXconf.class (original)
+++ branches/iVL/FrmXconf.class Wed Oct 29 11:46:14 2008
@@ -1,2 +1,72 @@
' Gambas class file
+
+' This file is part of vinstall-ng
+
+' vinstall-ng is free software: you can redistribute it and/or modify
+' it under the terms of the GNU General Public License as published by
+' the Free Software Foundation, either version 2 of the License, or
+' (at your option) any later version.
+
+' vinstall-ng is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+' GNU General Public License for more details.
+
+' You should have received a copy of the GNU General Public License
+' along with vinstall-ng. If not, see <http://www.gnu.org/licenses/>.
+
+PUBLIC SUB cbSetupMethod_Click()
+DIM sMsg AS String
+ SELECT CASE cbSetupMethod.Text
+ CASE "Vesa"
+ smsg = ("Uses the default (failsafe) configuration.")
+ CASE "Probe"
+ smsg = ("Probe hardware to setup your Graphical Environment using
your preffered settings")
+ CASE "Fbdev"
+ smsg = ("Use the console framebuffer driver")
+ CASE ELSE
+ smsg = ""
+ END SELECT
+ ME.tlChoiceExp.text = sMsg
+ ME.tlChoiceExp.Width = MdlObjSizer.get_object_width(sMsg)
+END
+
+PUBLIC SUB Form_Open()
+ DIM sOut AS String
+ DIM sFileIn AS String[]
+ DIM sLine AS String
+ DIM i, imark, ii AS Integer
+
+ Message.Warning(("We will now setup your graphical user interface. Your
screen may flicker during this process"))
+
+ 'SHELL "/usr/bin/X -configure :2 2>/dev/null" WAIT' let's assume this
produced a basic xorg.conf
+ 'SHELL "cat /etc/X11.xorg.conf.new | grep ^Driver |cut -f 2 -d \':\'" TO
sOut
+
+ sFileIn = Split(DConv(File.Load("/etc/X11/xorg.conf")), "\n")
+ FOR i = 0 TO sFileIn.Count - 1
+
+ 'PRINT sFileIn[i]
+ IF InStr(sFileIn[i], "Section \"Device\"") THEN
+ 'PRINT sFileIn[i]
+ 'imark = i
+ 'ii = 1
+ REPEAT
+ IF InStr(sFileIn[i + ii], "Driver") = FALSE THEN
+ INC ii
+ END IF
+ UNTIL InStr(sFileIn[i + ii], "Driver") OR InStr(sFileIn[i +
ii], "EndSection") '= TRUE
+ 'Message("Found Driver: " & sFileIn[i + ii])
+ sOut = Trim(Mid(sFileIn[i + ii], InStr(sFileIn[i + ii], "\"") +
1, Len(sFileIn[i + ii]) - InStr(sFileIn[i + ii], "\"") - 1))
+ 'END IF
+ END IF
+ NEXT
+
+
+ FrmXconf.cbSetupMethod.Add(sOut)
+ FrmXconf.cbSetupMethod.text = sOut
+
+ 'Message(sOut)
+
+
+END
Modified: branches/iVL/FrmXconf.form
==============================================================================
--- branches/iVL/FrmXconf.form (original)
+++ branches/iVL/FrmXconf.form Wed Oct 29 11:46:14 2008
@@ -1,6 +1,79 @@
# Gambas Form File 2.0
-{ FrmXconf Form
- MoveScaled(0, 0, 64, 64)
- Border = Window.Resizable
+{ Form Form
+ MoveScaled(0,0,89,59)
+ Text = ("")
+ Arrangement = Arrange.Vertical
+ { hbBanner HBox
+ MoveScaled(1,1,77,6)
+ { TlBanner TextLabel
+ MoveScaled(1,1,27,3)
+ Text = ("Graphical Interface Settings")
+ }
+ { hrsep Separator
+ MoveScaled(3,4,14,1)
+ }
+ }
+ { Panel1 Panel
+ MoveScaled(1,8,69,13)
+ Arrangement = Arrange.Horizontal
+ AutoResize = True
+ { Frame1 Frame
+ MoveScaled(0,0,63,11)
+ Expand = True
+ Text = ("")
+ { tlChoiceExp TextLabel
+ MoveScaled(1,6,48,3)
+ Text = ("")
+ }
+ { cbSetupMethod ComboBox
+ MoveScaled(14,1,22,3)
+ Text = ("")
+ ReadOnly = True
+ List = [("Vesa"), ("Fbdev")]
+ }
+ { tlSetupMethod TextLabel
+ MoveScaled(1,1,13,3)
+ Text = ("Video Driver")
+ Alignment = Align.Normal
+ }
+ }
+ }
+ { Panel2 Panel
+ MoveScaled(1,21,83,34)
+ Arrangement = Arrange.Horizontal
+ AutoResize = True
+ { Frame2 Frame
+ MoveScaled(0,0,35,25)
+ Expand = True
+ Text = ("Keyboard Layout")
+ { cvKbdLayout ColumnView
+ MoveScaled(1,2,32,21)
+ Expand = True
+ }
+ }
+ { Panel3 Panel
+ MoveScaled(38,2,38,22)
+ { tlColorDepth TextLabel
+ MoveScaled(0,2,11,3)
+ Text = ("Color Depth")
+ Alignment = Align.Normal
+ }
+ { tlScreenRes TextLabel
+ MoveScaled(0,5,18,3)
+ Text = ("Screen Resolution")
+ Alignment = Align.Normal
+ }
+ { cbScreenRes ComboBox
+ MoveScaled(21,5,15,3)
+ Text = ("")
+ List = [("1920x1280"), ("1600x1200"), ("1280x1024"), ("1440x900"),
("1280x800"), ("1024x768"), ("800x600"), ("640x480")]
+ }
+ { cbColorDepth ComboBox
+ MoveScaled(12,2,24,3)
+ Text = ("")
+ List = [("24 bit True Color"), ("16 bit Pseudo Color"), ("8 bit
256 Color"), ("4 bit 16 Color"), ("1 bit Mono B/W")]
+ }
+ }
+ }
}
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Wed Oct 29 11:46:14 2008
@@ -69,7 +69,8 @@
'message(sOut)
' Now we want to write the actual file to the root partition
IF Exist(ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.conf") THEN
- TRY MOVE ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.conf" TO
ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.dist"
+ IF Exist(ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.conf.dist") THEN
KILL ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.conf.dist"
+ TRY MOVE ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.conf" TO
ClsGlobal.sTargetMnt &/ "etc" &/ "lilo.conf.dist"
END IF
' THE FOLLOWING LINE IS FOR TESTING ONLY
@@ -80,11 +81,11 @@
' to make sure the new changes are written to the MBR, we need a
copy in the local running install
'File.Save("/etc/lilo.conf", sOut)
' now run lilo
- File.Save("/tmp/target_lilo.conf", sOut)
+ 'File.Save("/tmp/target_lilo.conf", sOut)
END
-PUBLIC SUB EXECUTE_LILO()
+PUBLIC FUNCTION EXECUTE_LILO() AS Integer
DIM sOut AS String
DIM sDump AS String
@@ -93,8 +94,10 @@
SHELL "chroot " & ClsGlobal.sTargetMnt & " /sbin/lilo -v || echo
\'FAILED\' " TO sDump
IF InStr(sDump, "FAILED") > 0 THEN
Message.Error(("Lilo returned an error. Please see below") &
gb.NewLine & sDump)
+ RETURN 1
ELSE
Message(("Boot loader has been setup successfully"))
+ RETURN 0
END IF
'SHELL "umount " & ClsGlobal.sTargetMnt &/ "dev" WAIT
'SHELL "umount " & ClsGlobal.sTargetMnt &/ "proc" WAIT
@@ -211,7 +214,7 @@
DIM sCliSection AS String
DIM sWinSection AS String
DIM sBootAddr AS String
-
+DIM cbox AS ComboBox
@@ -259,15 +262,18 @@
"read-only" & " \n \n"
ENDIF
-
- IF bInc.tag = ClsPartSel.sRoot AND MdlLiloOsList.bVlCliOption =
TRUE THEN
+ FOR EACH cbox IN MdlPartSel.oMountPoints
+ IF cbox.text = "/" AND bInc.tag = cbox.tag THEN
+ IF MdlLiloOsList.bVlCliOption = TRUE THEN
+ 'IF bInc.tag = ClsPartSel.sRoot AND MdlLiloOsList.bVlCliOption =
TRUE THEN
sCliSection = Replace(sSection, "append = \"" & sEntryApnd
& "\"", "append = \"2 " & sEntryApnd & "\"") 'splash=silent\"")
sCliSection = Replace(sCliSection, "label = " &
sEntryLbl, "label = " & sEntryLbl & "-tui")
sCliSection = sCliSection & gb.NewLine
ELSE
sCliSection = ""
END IF
-
+ END IF
+ NEXT
ELSE
sSection = ""
Modified: branches/iVL/MdlLiloOsList.module
==============================================================================
--- branches/iVL/MdlLiloOsList.module (original)
+++ branches/iVL/MdlLiloOsList.module Wed Oct 29 11:46:14 2008
@@ -227,6 +227,7 @@
DIM tl AS TextLabel
DIM sShortAddr AS String
DIM iwidth AS Integer = FrmLilo.TabStrip1.Width
+ DIM cb AS ComboBox
x = 4
y = 4
@@ -369,7 +370,9 @@
' Add an option to boot the recently installed OS to CLI mode
'ClsPartSel.sRoot = "/dev/sdb" ' for testing only
'IF sLiloDesc LIKE "Vector" THEN
- IF arrLinux[i] = ClsPartSel.sRoot THEN
+ FOR EACH cb IN MdlPartSel.oMountPoints
+ IF cb.text = "/" AND cb.tag = arrLinux[i] THEN
+ 'IF arrLinux[i] = ClsPartSel.sRoot THEN
cbInclude = NEW CheckBox(FrmLilo.TabStrip1)
AS "VlCliOption"
WITH cbInclude
.Value = FALSE
@@ -383,6 +386,7 @@
END WITH
ME.iVlTag = FrmLilo.TabStrip1.Index - 1
END IF
+ NEXT
'END IF
END WITH ' end jacking with the tabstrip itself
END IF
|
|
From: <cod...@go...> - 2008-10-28 16:19:26
|
Author: uelsk8s
Date: Tue Oct 28 09:18:14 2008
New Revision: 244
Added:
branches/iVL/FrmAlsaConf.class
branches/iVL/FrmAlsaConf.form
Log:
added alsa embedder again
Added: branches/iVL/FrmAlsaConf.class
==============================================================================
--- (empty file)
+++ branches/iVL/FrmAlsaConf.class Tue Oct 28 09:18:14 2008
@@ -0,0 +1,88 @@
+' Gambas class file
+
+' This file is part of vinstall-ng
+
+' vinstall-ng is free software: you can redistribute it and/or modify
+' it under the terms of the GNU General Public License as published by
+' the Free Software Foundation, either version 2 of the License, or
+' (at your option) any later version.
+
+' vinstall-ng is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+' GNU General Public License for more details.
+
+' You should have received a copy of the GNU General Public License
+' along with vinstall-ng. If not, see <http://www.gnu.org/licenses/>.
+
+
+
+PRIVATE sRevText AS String
+
+PUBLIC SUB Form_Open()
+
+ FMain.FrmCurr = ME
+
+
+ MdlDiskPart.EMBED_ALSA()
+
+ WITH ME
+ .tlBanner.Text = "<b>ALSA Config:</b><br>" &
+ "Advanced Linux Sound Architecture:" &
+ "This portion of the setup process allows you to sutup your soundcard
for your new operating system." &
+ "Please use the setup program below to setup the sound system."
+ .tlBanner.Adjust
+
+ END WITH
+
+ sRevText = ME.tlBanner.text
+
+
+END
+
+PUBLIC SUB Form_Resize()
+
+ WITH ME
+ .tlBanner.Width = .Width
+ .EmbALSA.Move(.tlBanner.Left, .tlBanner.Top + .tlBanner.Height +
4, .ClientWidth - 16, .ClientHeight)
+ END WITH
+END
+
+PUBLIC SUB EmbALSA_Embed()
+
+ FMain.btnext.Enabled = FALSE
+ FMain.btnext.ForeColor = Color.Gray
+ FMain.btback.Enabled = FALSE
+ FMain.btback.ForeColor = Color.Gray
+ FMain.btQuit.Enabled = FALSE
+ FMain.btQuit.ForeColor = Color.Gray
+
+
+END
+
+PUBLIC SUB EmbALSA_Close()
+
+ DIM bReboot AS Boolean
+
+ FrmDiskPart.tlBanner.Text = "<h3><br>Analyzing system partitioning
scheme... Please wait<br>This will take a few seconds...</h3>"
+ FrmDiskPart.tlBanner.Refresh
+ FrmDiskPart.tlBanner.Adjust
+ 'Message("Exiting GParted")
+ WAIT 1
+
+
+
+ ME.Hide
+
+ FrmPartSel.Show
+
+
+
+ FMain.btnext.Enabled = TRUE
+ FMain.btnext.ForeColor = Color.Black
+ FMain.btback.Enabled = TRUE
+ FMain.btback.ForeColor = Color.Black
+ FMain.btQuit.Enabled = TRUE
+ FMain.btQuit.ForeColor = Color.Black
+ 'END IF
+END
Added: branches/iVL/FrmAlsaConf.form
==============================================================================
--- (empty file)
+++ branches/iVL/FrmAlsaConf.form Tue Oct 28 09:18:14 2008
@@ -0,0 +1,19 @@
+# Gambas Form File 2.0
+
+{ Form Form
+ MoveScaled(0,0,84,55)
+ Text = ("")
+ Arrangement = Arrange.Vertical
+ { tlBanner TextLabel
+ MoveScaled(1,2,81,9)
+ Text = ("Alsa Config:")
+ }
+ { VPanel1 VPanel
+ MoveScaled(1,12,74,48)
+ Expand = True
+ { EmbALSA Embedder
+ MoveScaled(6,7,76,32)
+ Expand = True
+ }
+ }
+}
|
|
From: <cod...@go...> - 2008-10-28 15:59:44
|
Author: uelsk8s
Date: Tue Oct 28 08:57:39 2008
New Revision: 243
Added:
branches/iVL/FrmXconf.class
branches/iVL/FrmXconf.form
Modified:
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
Log:
added alsa embedder
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/ClsGlobal.class
+# /home/uel/gui-installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/ClsPartSel.class
+# /home/uel/gui-installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/ClsWinDrives.class
+# /home/uel/gui-installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FMain.class
+# /home/uel/gui-installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmDiskPart.class
+# /home/uel/gui-installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmPartScheme.class
+# /home/uel/gui-installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmPartSel.class
+# /home/uel/gui-installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmPkgSel.class
+# /home/uel/gui-installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmSelISO.class
+# /home/uel/gui-installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmSummary.class
+# /home/uel/gui-installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/FrmWinDrives.class
+# /home/uel/gui-installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlCore.module
+# /home/uel/gui-installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlDiskPart.module
+# /home/uel/gui-installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlObjSizer.module
+# /home/uel/gui-installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlPartSel.module
+# /home/uel/gui-installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlPkgSel.module
+# /home/uel/gui-installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlSetup.module
+# /home/uel/gui-installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlSummarize.module
+# /home/uel/gui-installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Tue Oct 28 08:57:39 2008
@@ -1,4 +1,4 @@
-# /home/uel/svn-install-ng/MdlWinDrives.module
+# /home/uel/gui-installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Added: branches/iVL/FrmXconf.class
==============================================================================
--- (empty file)
+++ branches/iVL/FrmXconf.class Tue Oct 28 08:57:39 2008
@@ -0,0 +1,2 @@
+' Gambas class file
+
Added: branches/iVL/FrmXconf.form
==============================================================================
--- (empty file)
+++ branches/iVL/FrmXconf.form Tue Oct 28 08:57:39 2008
@@ -0,0 +1,6 @@
+# Gambas Form File 2.0
+
+{ FrmXconf Form
+ MoveScaled(0, 0, 64, 64)
+ Border = Window.Resizable
+}
|
|
From: <cod...@go...> - 2008-10-28 01:17:09
|
Author: uelsk8s
Date: Mon Oct 27 18:16:01 2008
New Revision: 242
Added:
branches/iVL/FrmHalSwitch.class
branches/iVL/FrmHalSwitch.form
Modified:
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/DevLog
branches/iVL/FrmRootPass.class
branches/iVL/FrmUserAdd.class
branches/iVL/MdlConfLilo.module
Log:
started adding hardware config
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/ClsGlobal.class
+# /home/uel/svn-install-ng/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/ClsPartSel.class
+# /home/uel/svn-install-ng/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/ClsWinDrives.class
+# /home/uel/svn-install-ng/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FMain.class
+# /home/uel/svn-install-ng/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -82,23 +82,23 @@
msgid "The VectorLinux installer will now exit. Enjoy your new operating
system"
msgstr ""
-#: FMain.class:443
+#: FMain.class:435
msgid "Process Overview"
msgstr ""
-#: FMain.class:463
+#: FMain.class:455
msgid "Next"
msgstr ""
-#: FMain.class:469
+#: FMain.class:461
msgid "Back"
msgstr ""
-#: FMain.class:475
+#: FMain.class:467
msgid "Exit Installation"
msgstr ""
-#: FMain.class:491
+#: FMain.class:483
msgid "Button1"
msgstr ""
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmDiskPart.class
+# /home/uel/svn-install-ng/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmPartScheme.class
+# /home/uel/svn-install-ng/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmPartSel.class
+# /home/uel/svn-install-ng/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmPkgSel.class
+# /home/uel/svn-install-ng/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmSelISO.class
+# /home/uel/svn-install-ng/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmSummary.class
+# /home/uel/svn-install-ng/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/FrmWinDrives.class
+# /home/uel/svn-install-ng/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlCore.module
+# /home/uel/svn-install-ng/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlDiskPart.module
+# /home/uel/svn-install-ng/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlObjSizer.module
+# /home/uel/svn-install-ng/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlPartSel.module
+# /home/uel/svn-install-ng/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlPkgSel.module
+# /home/uel/svn-install-ng/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlSetup.module
+# /home/uel/svn-install-ng/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlSummarize.module
+# /home/uel/svn-install-ng/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Mon Oct 27 18:16:01 2008
@@ -1,4 +1,4 @@
-# /home/vluser/projects/installer/MdlWinDrives.module
+# /home/uel/svn-install-ng/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Mon Oct 27 18:16:01 2008
@@ -7,3 +7,8 @@
+-I added the non-gui config code to run in the BG when lilo window starts.
+ this is how it is done in old installer.
+ we still need vhalswitch, ALSA-config(this should be done in xterm IMO),
vxconf, hwinit??, and runlevel??.
+ we can skip last 2 IMO
+ I added code to mount all needed binds to liloconfig and stoppped
mount/umount in root, and useradd.
\ No newline at end of file
Added: branches/iVL/FrmHalSwitch.class
==============================================================================
--- (empty file)
+++ branches/iVL/FrmHalSwitch.class Mon Oct 27 18:16:01 2008
@@ -0,0 +1,2 @@
+' Gambas class file
+
Added: branches/iVL/FrmHalSwitch.form
==============================================================================
--- (empty file)
+++ branches/iVL/FrmHalSwitch.form Mon Oct 27 18:16:01 2008
@@ -0,0 +1,18 @@
+# Gambas Form File 2.0
+
+{ Form Form
+ MoveScaled(0,0,64,64)
+ Text = ("")
+ { TextBox1 TextBox
+ MoveScaled(1,1,46,9)
+ Text = ("Would you like to use Vl-Hot or HAL to manage your removable
devices?")
+ }
+ { RadioButton1 RadioButton
+ MoveScaled(2,17,15,3)
+ Text = ("HAL")
+ }
+ { RadioButton2 RadioButton
+ MoveScaled(2,23,16,3)
+ Text = ("VL-Hot")
+ }
+}
Modified: branches/iVL/FrmRootPass.class
==============================================================================
--- branches/iVL/FrmRootPass.class (original)
+++ branches/iVL/FrmRootPass.class Mon Oct 27 18:16:01 2008
@@ -36,10 +36,10 @@
IF ME.tbPasswd1.Text = ME.tbPasswd2.Text THEN
'Message("chroot /mnt/target /sbin/passwdx root " &
ME.tbPasswd1.Text)
' bind mounting necessary here
- SHELL "mount -o bind /sys " & ClsGlobal.sTargetMnt &/ "sys" WAIT
- SHELL "mount -o bind /proc " & ClsGlobal.sTargetMnt &/ "proc"
WAIT
- SHELL "mount -o bind /tmp " & ClsGlobal.sTargetMnt &/ "tmp" WAIT
- SHELL "mount -o bind /dev " & ClsGlobal.sTargetMnt &/ "dev" WAIT
+ 'SHELL "mount -o bind /sys " & ClsGlobal.sTargetMnt &/ "sys" WAIT
+ 'SHELL "mount -o bind /proc " & ClsGlobal.sTargetMnt &/ "proc"
WAIT
+ 'SHELL "mount -o bind /tmp " & ClsGlobal.sTargetMnt &/ "tmp" WAIT
+ 'SHELL "mount -o bind /dev " & ClsGlobal.sTargetMnt &/ "dev" WAIT
SHELL "chroot /mnt/target /sbin/passwdx root " & ME.tbPasswd1.Text
WAIT
'Message("Root password Set.")
ME.tbPasswd1.Clear
@@ -51,10 +51,10 @@
ME.tbPasswd1.SetFocus
ENDIF
ENDIF
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "sys" WAIT
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "proc" WAIT
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "tmp" WAIT
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "dev" WAIT
+ 'SHELL "umount " & ClsGlobal.sTargetMnt &/ "sys" WAIT
+ 'SHELL "umount " & ClsGlobal.sTargetMnt &/ "proc" WAIT
+ 'SHELL "umount " & ClsGlobal.sTargetMnt &/ "tmp" WAIT
+ 'SHELL "umount " & ClsGlobal.sTargetMnt &/ "dev" WAIT
END
PUBLIC SUB Form_Resize()
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Mon Oct 27 18:16:01 2008
@@ -132,10 +132,10 @@
' need to do some binding for this to work
'PRINT "Mounting system locations with bind options"
- SHELL "mount -o bind /sys /mnt/target/sys" WAIT
- SHELL "mount -o bind /tmp /mnt/target/tmp" WAIT
- SHELL "mount -o bind /proc /mnt/target/proc" WAIT
- SHELL "mount -o bind /dev /mnt/target/dev" WAIT
+ 'SHELL "mount -o bind /sys /mnt/target/sys" WAIT
+ 'SHELL "mount -o bind /tmp /mnt/target/tmp" WAIT
+ 'SHELL "mount -o bind /proc /mnt/target/proc" WAIT
+ 'SHELL "mount -o bind /dev /mnt/target/dev" WAIT
'PRINT "Deleting old user group"
SHELL "chroot /mnt/target /usr/sbin/groupdel " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
@@ -168,10 +168,10 @@
ENDIF
ENDIF
ENDIF
- SHELL "umount /mnt/target/dev" WAIT
- SHELL "umount /mnt/target/proc" WAIT
- SHELL "umount /mnt/target/tmp" WAIT
- SHELL "umount /mnt/target/sys" WAIT
+ 'SHELL "umount /mnt/target/dev" WAIT
+ 'SHELL "umount /mnt/target/proc" WAIT
+ 'SHELL "umount /mnt/target/tmp" WAIT
+ 'SHELL "umount /mnt/target/sys" WAIT
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Mon Oct 27 18:16:01 2008
@@ -301,17 +301,42 @@
DIM sOut AS String
+SHELL "mount -o bind /sys " & ClsGlobal.sTargetMnt &/ "sys" WAIT
+SHELL "mount -o bind /proc " & ClsGlobal.sTargetMnt &/ "proc" WAIT
+SHELL "mount -o bind /tmp " & ClsGlobal.sTargetMnt &/ "tmp" WAIT
SHELL "mount -o bind /dev " & ClsGlobal.sTargetMnt &/ "dev" WAIT
-SHELL "mount -o bind /proc " & ClsGlobal.sTargetMnt &/ "proc" WAIT
-SHELL "mkdir -p " & ClsGlobal.sTargetMnt &/ "var/log/setup/init" WAIT
-SHELL "chmod 700 " & ClsGlobal.sTargetMnt &/ "var/log/setup/init" WAIT
+'SHELL "mkdir -p " & ClsGlobal.sTargetMnt &/ "var/log/setup/init" WAIT
+'SHELL "chmod 700 " & ClsGlobal.sTargetMnt &/ "var/log/setup/init" WAIT
'SHELL "touch " & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
-sOut = "#!/bin/bash \n" &
-"/sbin/config-stage1 gui-installer"
-File.Save(ClsGlobal.sTargetMnt &/ "var/log/setup/init/config-stage2", sOut)
+'sOut = "#!/bin/bash \n" &
+'"/sbin/config-stage1 gui-installer"
+'File.Save(ClsGlobal.sTargetMnt &/ "var/log/setup/init/config-stage2",
sOut)
'SHELL "echo \"" & sOut & "\" >" & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
-SHELL "chmod +x " & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
-
+'SHELL "chmod +x " & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
+
+'We will run the commands neccisary to setup the newly installed system
here
+SHELL "mkdir -p " & ClsGlobal.sTargetMnt &/ "var/log/setup" WAIT
+SHELL "chmod 700 " & ClsGlobal.sTargetMnt &/ "var/log/setup" WAIT
+sOut = "#!/bin/bash \n" &
+"chmod +x /etc/rc.d/rc.udev" &
+"/etc/rc.d/rc.udev restart" &
+"/etc/rc.d/rc.modules" &
+"/sbin/vlsetup" &
+"sh /var/log/scripts/gsb-desktop* & 2>/dev/null" &
+"rm -r /root/.mc 2>/dev/null" &
+"for i in /usr/share/icons/*;do cd $i 2>/dev/null && if [ -e convert.sh
];then sh convert.sh & 2>/dev/null;fi;done" &
+"for i in /var/log/scripts/x11-fonts*;do sh $i &>/dev/null;done" &
+"update-mime-database /usr/share/mime/" &
+"cd /usr/lib && ln -sf preloadable_libintl.so libgnuintl.so.8 && rm
libintl.so 2>/dev/null; ln -s preloadable_libintl.so libintl.so" &
+"/sbin/vhwconf"
+File.Save(ClsGlobal.sTargetMnt &/ "var/log/setup/config-vinstall-ng", sOut)
+SHELL "echo \"" & sOut & "\" >" & ClsGlobal.sTargetMnt
&/ "var/log/setup/config-vinstall-ng"
+SHELL "chmod +x " & ClsGlobal.sTargetMnt
&/ "var/log/setup/config-vinstall-ng"
+
+SHELL "chroot /mnt/target /sbin/depmod -aq" WAIT
+SHELL "chroot /mnt/target /var/log/setup/config-vinstall-ng &"
+'SHELL "chroot /mnt/target " WAIT
+
END
|
|
From: <cod...@go...> - 2008-10-27 18:18:25
|
Author: M0E.lnx
Date: Mon Oct 27 11:13:44 2008
New Revision: 241
Modified:
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/.lang/en_US.po
branches/iVL/.lang/es.po
branches/iVL/DevLog
branches/iVL/FMain.class
branches/iVL/FrmLangSel.class
branches/iVL/FrmLangSel.form
Log:
- Re-worked the language selection
* Changed the listview for a columnview
\- This will eliminate the need to create an array
with a long list of languages. Instead, the installer will
look in it's .lang dir and list all the .mo files, then it
will populate the columnview using only the languages found.
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/ClsGlobal.class
+# /home/vluser/projects/installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/ClsPartSel.class
+# /home/vluser/projects/installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/ClsWinDrives.class
+# /home/vluser/projects/installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FMain.class
+# /home/vluser/projects/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -82,23 +82,23 @@
msgid "The VectorLinux installer will now exit. Enjoy your new operating
system"
msgstr ""
-#: FMain.class:435
+#: FMain.class:443
msgid "Process Overview"
msgstr ""
-#: FMain.class:455
+#: FMain.class:463
msgid "Next"
msgstr ""
-#: FMain.class:461
+#: FMain.class:469
msgid "Back"
msgstr ""
-#: FMain.class:467
+#: FMain.class:475
msgid "Exit Installation"
msgstr ""
-#: FMain.class:483
+#: FMain.class:491
msgid "Button1"
msgstr ""
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmDiskPart.class
+# /home/vluser/projects/installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmPartScheme.class
+# /home/vluser/projects/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmPartSel.class
+# /home/vluser/projects/installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmPkgSel.class
+# /home/vluser/projects/installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmSelISO.class
+# /home/vluser/projects/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmSummary.class
+# /home/vluser/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmWinDrives.class
+# /home/vluser/projects/installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlCore.module
+# /home/vluser/projects/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlDiskPart.module
+# /home/vluser/projects/installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlObjSizer.module
+# /home/vluser/projects/installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlPartSel.module
+# /home/vluser/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlPkgSel.module
+# /home/vluser/projects/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlSetup.module
+# /home/vluser/projects/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlSummarize.module
+# /home/vluser/projects/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Mon Oct 27 11:13:44 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlWinDrives.module
+# /home/vluser/projects/installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/en_US.po
==============================================================================
--- branches/iVL/.lang/en_US.po (original)
+++ branches/iVL/.lang/en_US.po Mon Oct 27 11:13:44 2008
@@ -50,52 +50,71 @@
msgid "Skipping lilo setup"
msgstr "Skipping lilo setup per user request"
-#: FMain.class:314
-#, fuzzy
-msgid "has been installed on your computer. Additional system
configuration"
-msgstr "Packages have been installed to your system. Please click"
+#: FMain.class:298
+msgid "Passwords do not match. Please enter the same password twice"
+msgstr ""
-#: FMain.class:314
+#: FMain.class:313
msgid ""
-"will take place after you reboot your system.Part of this process must
be "
-"done in text mode."
+"You have not created any user accounts for this system yet. There is not "
+"enough information"
msgstr ""
-#: FMain.class:314
-msgid "Would you like to reboot your computer now?"
+#: FMain.class:313
+msgid ""
+"to create an account here. It is recommended that you create at least
one."
msgstr ""
-#: FMain.class:314
+#: FMain.class:313
+msgid "Would you like to continue anyway?"
+msgstr ""
+
+#: FMain.class:313
msgid "Yes"
msgstr ""
-#: FMain.class:314
+#: FMain.class:313
#, fuzzy
msgid "No"
msgstr "None"
-#: FMain.class:319
+#: FMain.class:335
+#, fuzzy
+msgid "has been installed on your computer. Additional system
configuration"
+msgstr "Packages have been installed to your system. Please click"
+
+#: FMain.class:335
+msgid ""
+"will take place after you reboot your system.Part of this process must
be "
+"done in text mode."
+msgstr ""
+
+#: FMain.class:335
+msgid "Would you like to reboot your computer now?"
+msgstr ""
+
+#: FMain.class:340
msgid ""
"The VectorLinux installer will now exit. Enjoy your new operating system"
msgstr ""
-#: FMain.class:411
+#: FMain.class:437
msgid "Process Overview"
msgstr "Process Overview"
-#: FMain.class:431
+#: FMain.class:457
msgid "Next"
msgstr "Next"
-#: FMain.class:437
+#: FMain.class:463
msgid "Back"
msgstr "Back"
-#: FMain.class:443
+#: FMain.class:469
msgid "Exit Installation"
msgstr "Exit Installation"
-#: FMain.class:459
+#: FMain.class:485
msgid "Button1"
msgstr "-"
@@ -111,7 +130,7 @@
msgid "Current Status"
msgstr "Current Status"
-#: FrmHostPrep.class:139 FrmLilo.class:213 FrmPartScheme.class:127
+#: FrmHostPrep.class:139 FrmLilo.class:223 FrmPartScheme.class:127
#: FrmPkgSel.class:101 FrmPkgsel2.class:86 FrmSelISO.class:247
#: FrmSummaryOld.class:87
msgid "TextLabel1"
@@ -142,7 +161,7 @@
msgid "Total Progress"
msgstr "Total progress"
-#: FrmLangSel.class:100
+#: FrmLangSel.class:116
msgid "Select your language"
msgstr "Select your language"
@@ -182,47 +201,47 @@
msgid "Standard"
msgstr "Standard"
-#: FrmLilo.class:196
+#: FrmLilo.class:206
msgid "Configure and install lilo (Linux Boot Loader)"
msgstr "Configure and install lilo (Linux Boot Loader)"
-#: FrmLilo.class:201
+#: FrmLilo.class:211
msgid "Don't Install Lilo"
msgstr "Don't Install Lilo"
-#: FrmLilo.class:207 FrmNetConf.class:141
+#: FrmLilo.class:217 FrmNetConf.class:141
msgid "Tab 0"
msgstr "-"
-#: FrmLilo.class:225
+#: FrmLilo.class:235
msgid "Target"
msgstr "Target"
-#: FrmLilo.class:231
+#: FrmLilo.class:241
msgid "Video Resolution"
msgstr "Video Resolution"
-#: FrmLilo.class:239
+#: FrmLilo.class:249
msgid "Bootsplash Med"
msgstr "Bootsplash Med"
-#: FrmLilo.class:239
+#: FrmLilo.class:249
msgid "Bootsplash High"
msgstr "Bootsplash High"
-#: FrmLilo.class:239
+#: FrmLilo.class:249
msgid "Bootsplash Extra high"
msgstr "Bootsplash Extra High"
-#: FrmLilo.class:244
+#: FrmLilo.class:254
msgid "Prompt Timeout"
msgstr "Prompt Timeout"
-#: FrmLilo.class:255
+#: FrmLilo.class:265
msgid "Seconds"
msgstr "Seconds"
-#: FrmLilo.class:261
+#: FrmLilo.class:271
msgid "Boot Default"
msgstr "Boot Default"
@@ -403,7 +422,7 @@
msgid "Detect and Setup Windows partitions for auto-mounting at boot"
msgstr "Detect and Setup Windows partitions for auto-mounting at boot"
-#: FrmPartSel.class:189 FrmUserAdd.class:448
+#: FrmPartSel.class:189 FrmUserAdd.class:486
msgid "Help"
msgstr "Help"
@@ -465,11 +484,11 @@
"Passwords do not match. Please enter the same password twice for
accuracy."
msgstr ""
-#: FrmRootPass.class:107 MdlCore.module:460
+#: FrmRootPass.class:118 MdlCore.module:460
msgid "System Administrator"
msgstr "System Administrator"
-#: FrmRootPass.class:120
+#: FrmRootPass.class:131
msgid ""
"The linux root account is pre-assigned to be used as the system "
"administrator's account. This account is used to perform system-wide
changes "
@@ -489,15 +508,15 @@
"a root password, think of something easy for you to remember, but hard
for "
"others to guess."
-#: FrmRootPass.class:126 FrmUserAdd.class:475
+#: FrmRootPass.class:137 FrmUserAdd.class:514
msgid "Enter Password"
msgstr "Enter Password"
-#: FrmRootPass.class:131
+#: FrmRootPass.class:142
msgid "Re-Enter Password"
msgstr "Re-Enter Password"
-#: FrmRootPass.class:148
+#: FrmRootPass.class:159
msgid "Set Password"
msgstr "Set Password"
@@ -604,62 +623,80 @@
msgid "Software Selection"
msgstr "Software Selection"
-#: FrmUserAdd.class:36
+#: FrmUserAdd.class:37
#, fuzzy
msgid "Create User Accounts"
msgstr "User Accounts"
-#: FrmUserAdd.class:73
-msgid "Enter the login name that this user will use to login to this
system."
+#: FrmUserAdd.class:78
+msgid "Enter the login name that this user will user to login to this
system."
msgstr ""
-#: FrmUserAdd.class:78
+#: FrmUserAdd.class:86
msgid ""
"Login name field contains illegal characters. Please use only lowercase "
"letters and numbers"
msgstr ""
-#: FrmUserAdd.class:89
+#: FrmUserAdd.class:99
msgid "Username contains illegal characters"
msgstr ""
-#: FrmUserAdd.class:92
-msgid "Username already exists"
+#: FrmUserAdd.class:102
+#, fuzzy
+msgid "User account for"
+msgstr "User Accounts"
+
+#: FrmUserAdd.class:102
+msgid "already exists"
+msgstr ""
+
+#: FrmUserAdd.class:106
+#, fuzzy
+msgid "Enter a password for"
+msgstr "Enter Password"
+
+#: FrmUserAdd.class:157
+msgid "was created."
+msgstr ""
+
+#: FrmUserAdd.class:161
+msgid "Passwords do not match"
msgstr ""
-#: FrmUserAdd.class:96
+#: FrmUserAdd.class:162
#, fuzzy
-msgid "Enter a Password."
+msgid "Enter the same password twice"
msgstr "Enter Password"
-#: FrmUserAdd.class:301
+#: FrmUserAdd.class:311
msgid "Select picture for user Login"
msgstr ""
-#: FrmUserAdd.class:333
+#: FrmUserAdd.class:350
msgid ""
"Your password selections do not match. Please enter the same password
twice"
msgstr ""
-#: FrmUserAdd.class:358
+#: FrmUserAdd.class:375
msgid ""
"Groups are a way of administering permissions for your users. You grant
the "
"user"
msgstr ""
-#: FrmUserAdd.class:358
+#: FrmUserAdd.class:375
msgid "permission to do certain things by adding them to certain groups."
msgstr ""
-#: FrmUserAdd.class:358
+#: FrmUserAdd.class:375
msgid "Select which groups you want this user to be a part of here"
msgstr ""
-#: FrmUserAdd.class:359
+#: FrmUserAdd.class:376
msgid "OK"
msgstr ""
-#: FrmUserAdd.class:395
+#: FrmUserAdd.class:433
msgid ""
"Choose a unique name for each user. Enter the password for twice for "
"accuracy. You can make as many users as you want, and when you are
finished "
@@ -669,35 +706,35 @@
"accuracy. You can make as many users as you want, and when you are
finished "
"click next to continue."
-#: FrmUserAdd.class:433
+#: FrmUserAdd.class:471
msgid "Select"
msgstr ""
-#: FrmUserAdd.class:439
+#: FrmUserAdd.class:477
msgid "Use Picture ID for Login greeting"
msgstr ""
-#: FrmUserAdd.class:444
+#: FrmUserAdd.class:482
msgid "User Rights Management"
msgstr ""
-#: FrmUserAdd.class:455
+#: FrmUserAdd.class:494
msgid "Create User"
msgstr "Create User"
-#: FrmUserAdd.class:461
+#: FrmUserAdd.class:500
msgid "Clear Form"
msgstr ""
-#: FrmUserAdd.class:468
+#: FrmUserAdd.class:507
msgid "Login Name"
msgstr ""
-#: FrmUserAdd.class:482
+#: FrmUserAdd.class:521
msgid "ReEnter Password"
msgstr "ReEnter Password"
-#: FrmUserAdd.class:503
+#: FrmUserAdd.class:542
#, fuzzy
msgid "Real Name"
msgstr "Name"
@@ -710,23 +747,23 @@
msgid "Timezone configuration"
msgstr "Timezone configuration"
-#: FrmZoneSet.class:156
+#: FrmZoneSet.class:169
msgid "Choose the correct timezone for the area in which you live."
msgstr "Choose the correct timezone for the area in which you live."
-#: FrmZoneSet.class:161
+#: FrmZoneSet.class:174
msgid "ComboBox1"
msgstr "-"
-#: FrmZoneSet.class:163
+#: FrmZoneSet.class:176
msgid "LocalTime"
msgstr "LocalTime"
-#: FrmZoneSet.class:163
+#: FrmZoneSet.class:176
msgid "UTC"
msgstr "UTC"
-#: FrmZoneSet.class:168
+#: FrmZoneSet.class:181
msgid ""
"Choose how\n"
"your hardware clock is set up.\n"
@@ -991,47 +1028,40 @@
msgid "Installing Final configuration files..."
msgstr "Installing final configuration files ..."
-#: MdlLiloOsList.module:68
-msgid "Windows installation found in "
+#: MdlLiloOsList.module:136
+#, fuzzy
+msgid "Windows installation found in"
msgstr "Windows installation found in "
-#: MdlLiloOsList.module:76
-msgid "Name "
-msgstr "Name "
-
-#: MdlLiloOsList.module:95
-msgid "Include this Operating System in the boot menu"
-msgstr "Include this Operating System in the boot menu"
-
-#: MdlLiloOsList.module:144
+#: MdlLiloOsList.module:146
msgid "Include this installation in the boot menu"
msgstr "Include this installation in the boot menu"
-#: MdlLiloOsList.module:153
+#: MdlLiloOsList.module:155
msgid "Label"
msgstr "Label"
-#: MdlLiloOsList.module:274
+#: MdlLiloOsList.module:276
msgid "Operating system installed in "
msgstr "Operating system installed in"
-#: MdlLiloOsList.module:286
+#: MdlLiloOsList.module:288
msgid "Include this operating system in the boot menu"
msgstr "Include this operating system in the boot menu"
-#: MdlLiloOsList.module:297
+#: MdlLiloOsList.module:299
msgid "Name"
msgstr "Name"
-#: MdlLiloOsList.module:318
+#: MdlLiloOsList.module:320
msgid "Initial Ram Disk"
msgstr "Initial Ram Disk"
-#: MdlLiloOsList.module:343
+#: MdlLiloOsList.module:345
msgid "Kernel boot options"
msgstr "Kernel boot options"
-#: MdlLiloOsList.module:374
+#: MdlLiloOsList.module:376
msgid "Add option to boot this Operating system into Text mode"
msgstr "Add option to boot this Operating system into Text mode"
@@ -1171,53 +1201,53 @@
msgid "OPTIONAL PACKAGES:"
msgstr "OPTIONAL PACKAGES:"
-#: MdlUsrAdd.module:41
+#: MdlUsrAdd.module:44
msgid "This user can access CD/DVD devices"
msgstr ""
-#: MdlUsrAdd.module:44
+#: MdlUsrAdd.module:47
msgid "This user can access floppy disks"
msgstr ""
-#: MdlUsrAdd.module:47
+#: MdlUsrAdd.module:50
msgid "This user is allowed to print"
msgstr ""
-#: MdlUsrAdd.module:50
+#: MdlUsrAdd.module:53
msgid "This user can access scanner devices"
msgstr ""
-#: MdlUsrAdd.module:53
+#: MdlUsrAdd.module:56
msgid "This user is allowed to change audio settings"
msgstr ""
-#: MdlUsrAdd.module:56
+#: MdlUsrAdd.module:59
msgid "This user is allowed to change video settings"
msgstr ""
-#: MdlUsrAdd.module:59
+#: MdlUsrAdd.module:62
msgid "This user is allowed to play restricted games"
msgstr ""
-#: MdlUsrAdd.module:62
+#: MdlUsrAdd.module:65
#, fuzzy
msgid "Restricted administrator (backup)"
msgstr "System Administrator"
-#: MdlUsrAdd.module:65
+#: MdlUsrAdd.module:68
#, fuzzy
msgid "This user is a system administrator"
msgstr "System Administrator"
-#: MdlUsrAdd.module:68
+#: MdlUsrAdd.module:71
msgid "Elite user"
msgstr ""
-#: MdlUsrAdd.module:71
+#: MdlUsrAdd.module:74
msgid "Allow user to mount / un-mount Pendrive (USB Sticks)"
msgstr ""
-#: MdlUsrAdd.module:74
+#: MdlUsrAdd.module:77
msgid "Allow user to mount / un-mount Removable HD Storage Devices"
msgstr ""
@@ -1240,6 +1270,12 @@
#: MdlZoneSet.module:28
msgid "localtime"
msgstr "localtime"
+
+#~ msgid "Name "
+#~ msgstr "Name "
+
+#~ msgid "Include this Operating System in the boot menu"
+#~ msgstr "Include this Operating System in the boot menu"
#~ msgid "Hardware Configuration"
#~ msgstr "Hardware Configuration"
Modified: branches/iVL/.lang/es.po
==============================================================================
--- branches/iVL/.lang/es.po (original)
+++ branches/iVL/.lang/es.po Mon Oct 27 11:13:44 2008
@@ -10,1075 +10,1280 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FrmNetConf.class:161
-msgid "192.168.1.254"
-msgstr "-"
-
-#: FrmPartSel.class:149
-msgid "ABOUT SYSTEM PARTITIONING IN LINUX"
-msgstr "Acerca del particionado en Linux"
+#: .project:1
+msgid "VectorLinux Installer"
+msgstr "Instalador de VectorLinux"
-#: FrmRootPass.class:28
-msgid "About the root account"
-msgstr "Acerca de la cuenta del usuario root"
+#: .project:2
+msgid "GUI installer for Vector linux"
+msgstr "Instaladaor Gráfico de VectorLinux"
-#: MdlNetConf.module:250
-msgid "Access Point"
-msgstr "Punto de Accesso (Access Point)"
+#: FMain.class:205
+msgid "Please wait while setup attampts to run the partitioning utility"
+msgstr ""
+"Por favor espere, el instalador intentará ejecutar la herramienta de "
+"particionado"
-#: MdlSetup.module:243
-msgid "Activating swap space"
-msgstr "Activando la partición Swap"
+#: FMain.class:207
+msgid "Please wait while setup analyses your current partition setup."
+msgstr "Por favor espere mientras el instalador analiza su particonado
actual."
-#: MdlLiloOsList.module:374
-msgid "Add option to boot this Operating system into Text mode"
-msgstr "Añadir una opción para arrancar este sistema operativo en modo
texto"
+#: FMain.class:207
+msgid "This may take a while ..."
+msgstr "Esto puede tardar unos minutos ..."
-#: MdlUsrAdd.module:71
-msgid "Allow user to mount / un-mount Pendrive (USB Sticks)"
-msgstr "Permitir al usuario montar o desmontar Pendrives (USB Sticks)"
+#: FMain.class:221
+msgid ""
+"You must select a \"/\" partition. This is the target where the system
will "
+"install to"
+msgstr ""
+"Debes seleccionar una partición para \"/\" (raíz). Allí sera instalado
el "
+"sistema operativo"
-#: MdlUsrAdd.module:74
-msgid "Allow user to mount / un-mount Removable HD Storage Devices"
-msgstr "Permitir al usuario montar o desmontar Dispositivos de
Almacenamiento Externos (HD Storage)"
+#: FMain.class:271
+msgid "Please select a default operating system to boot before proceeding"
+msgstr "Por favor selectione el sistema operativo que se iniciara por
defecto"
-#: MdlNetConf.module:290
-msgid "Automatic settings via DHCP."
-msgstr "Configuración automática utilizando DHCP"
+#: FMain.class:272
+msgid "Select an entry from this list"
+msgstr "Seleccione una de esta opciones"
-#: MdlNetConf.module:166
-msgid "Automatically activate this interface at start-up"
-msgstr "Activar esta interfaz automáticamente al arrancar"
+#: FMain.class:284
+msgid "Skipping lilo setup"
+msgstr "Salteando configuración de LILO"
-#: MdlSetup.module:227
-msgid "BROUGHT TO YOU BY"
-msgstr "Créditos "
+#: FMain.class:298
+#, fuzzy
+msgid "Passwords do not match. Please enter the same password twice"
+msgstr ""
+"Las contraseñas no coinciden. Por favor ingrese la misma contraseña dos "
+"veces para estar seguros de que es la que Usted verdaderamente desea."
+
+#: FMain.class:313
+msgid ""
+"You have not created any user accounts for this system yet. There is not "
+"enough information"
+msgstr ""
+
+#: FMain.class:313
+msgid ""
+"to create an account here. It is recommended that you create at least
one."
+msgstr ""
+
+#: FMain.class:313
+#, fuzzy
+msgid "Would you like to continue anyway?"
+msgstr "Deseas reiniciar ahora?"
-#: FrmSummary.class:173
-msgid "BULK PACKAGES"
-msgstr "PAQUETES POR CATEGORIA"
+#: FMain.class:313
+msgid "Yes"
+msgstr "Sí"
-#: MdlSummarize.module:58
-msgid "BULK PACKAGES:"
-msgstr "Paquetes por categoría"
+#: FMain.class:313
+msgid "No"
+msgstr "No"
-#: FMain.class:437
-msgid "Back"
-msgstr "Regresar"
+#: FMain.class:335
+msgid "has been installed on your computer. Additional system
configuration"
+msgstr "se ha instalado en este ordenador. Configuracion adicional del
systema"
-#: FrmLilo.class:261
-msgid "Boot Default"
-msgstr "Arranque por defecto"
+#: FMain.class:335
+msgid ""
+"will take place after you reboot your system.Part of this process must
be "
+"done in text mode."
+msgstr ""
+"occurira en el arranque inicial. Parte de este proceso debe hacerce en
modo "
+"texto."
-#: MdlCore.module:458
-msgid "Boot Menu Options"
-msgstr "Opciones de arranque"
+#: FMain.class:335
+msgid "Would you like to reboot your computer now?"
+msgstr "Deseas reiniciar ahora?"
-#: MdlConfLilo.module:97
-msgid "Boot loader has been setup successfully"
-msgstr "El cargador de arranque ha sido configurado con éxito"
+#: FMain.class:340
+msgid ""
+"The VectorLinux installer will now exit. Enjoy your new operating system"
+msgstr ""
+"El instalador de Vector Linux ha terminado sus funciones. Que disfrute
su "
+"nuevo sistema operativo."
-#: FrmLilo.class:239
-msgid "Bootsplash Extra high"
-msgstr "Resolución del arranque gráfico (bootsplash) súper alta"
+#: FMain.class:437
+msgid "Process Overview"
+msgstr "Resumen del proceso"
-#: FrmLilo.class:239
-msgid "Bootsplash High"
-msgstr "Resolución del arranque gráfico (bootsplash) alta"
+#: FMain.class:457
+msgid "Next"
+msgstr "Siguiente"
-#: FrmLilo.class:239
-msgid "Bootsplash Med"
-msgstr "Resolución del arranque gráfico (bootsplash) media"
+#: FMain.class:463
+msgid "Back"
+msgstr "Regresar"
-#: MdlCore.module:361
-msgid "Build Date: "
-msgstr "Compilado el: "
+#: FMain.class:469
+msgid "Exit Installation"
+msgstr "Cancelar Instalación"
-#: FMain.class:459
+#: FMain.class:485
msgid "Button1"
msgstr "-"
-#: MdlInstallCustom.module:459
-msgid "Calculating package count ... Please wait"
-msgstr "Calculando el número de paquetes ... Por favor espere"
-
-#: MdlCore.module:439
-msgid "Cannot find SETUP.CONF"
-msgstr "No se pudo encontrar SETUP.CONF"
-
-#: FrmPartSel.class:183
-msgid "Check this box if you have a Windows installation on your system or
any other windows partition (FAT, FAT32, NTFS) that you want auto-mounted
as soon as your computer starts"
-msgstr "Selecciona esta casilla si hay una instalación Windows en tu
sistema o otra partición Windows (FAT, FAT32, NTFS) que quieras montar
automáticamente al arrancar el ordenador"
-
-#: FrmUserAdd.class:395
-msgid "Choose a unique name for each user. Enter the password for twice
for accuracy. You can make as many users as you want, and when you are
finished click next to continue."
-msgstr "Elige un nombre único para cada usuario. Es necesario ingresar las
contraseñas dos veces. Puedes crear todas las cuentas de usuarios que
desees"
-
-#: FrmZoneSet.class:168
-msgid "Choose how\nyour hardware clock is set up.\nChoose UTC if you know
that the clock is set up to\nthe Coordinated Universal Time (UTC/GMT).
Otherwise,\nChoose localtime since most PCs are setup this way."
-msgstr "Elige como funciona el reloj de esta máquina. Si tienes dudas
elige UTC/GMT"
-
-#: FrmZoneSet.class:156
-msgid "Choose the correct timezone for the area in which you live."
-msgstr "Selecciona la zona horaria del área donde vives"
-
-#: FrmPkgSel.class:22
-msgid "Choose your installation mode"
-msgstr "Selecciona el modo de instalación"
-
-#: FrmPkgSel.class:60
-msgid "Choose your optional components to install."
-msgstr "Selecciona los componentes opcionales a instalar."
-
-#: FrmUserAdd.class:461
-msgid "Clear Form"
-msgstr "Limpiar Formulario"
-
-#: FrmSelISO.class:73
-msgid "Click"
-msgstr "Haz click en"
-
-#: FrmZoneSet.class:161
-msgid "ComboBox1"
-msgstr "-"
-
-#: FrmNetConf.class:125
-msgid "Computer Name"
-msgstr "Nombre Local"
-
-#: FrmLilo.class:196
-msgid "Configure and install lilo (Linux Boot Loader)"
-msgstr "Confuguración de LILO"
-
-#: FrmUserAdd.class:455
-msgid "Create User"
-msgstr "Agregar Usuario"
+#: FrmDiskPart.class:115
+msgid "Disk Partitioning:"
+msgstr "Particionado de disco:"
-#: FrmUserAdd.class:36
-msgid "Create User Accounts"
-msgstr "Limiar cuentas de usuario"
+#: FrmHostPrep.class:130
+msgid "Vectorlinux is preparing your system for installation. Please wait."
+msgstr ""
+"Por favor espere mientras VectorLinux prepara su sistema para instalacion"
#: FrmHostPrep.class:135
msgid "Current Status"
msgstr "Estado Actual"
+#: FrmHostPrep.class:139 FrmLilo.class:223 FrmPartScheme.class:127
+#: FrmPkgSel.class:101 FrmPkgsel2.class:86 FrmSelISO.class:247
+#: FrmSummaryOld.class:87
+msgid "TextLabel1"
+msgstr "-"
+
#: FrmInstallSys.class:57 FrmInstallSysN.class:72
msgid "Current Step"
msgstr "Este paso"
+#: FrmInstallSys.class:181
+msgid "Vectorlinux is currently being installed to your system... Please
wait"
+msgstr "Por favor espere mientras VectorLinux se instala en su sistema"
+
+#: FrmInstallSys.class:194
+msgid "Total progress"
+msgstr "Progreso Total"
+
+#: FrmInstallSys.class:204
+msgid "Installing ..."
+msgstr "Instalando..."
+
#: FrmInstallSys.class:209
msgid "Current Step "
msgstr "Este paso"
-#: FrmSummary.class:16 MdlSummarize.module:56
-msgid "Custom"
-msgstr "Personalisado"
+#: FrmInstallSysN.class:82
+msgid "Total Progress"
+msgstr "Progreso Total"
-#: FrmPkgSel.class:112
-msgid "Custom Install"
-msgstr "Instalación Personalizada"
+#: FrmLangSel.class:116
+msgid "Select your language"
+msgstr "Selecciona tu idioma"
-#: FrmPartSel.class:184
-msgid "Detect and Setup Windows partitions for auto-mounting at boot"
-msgstr "Detectar volúmenes con sistemas Windows"
+#: FrmLicense.class:99
+msgid "LICENSE AGREEMENT"
+msgstr "Aceptación de licencia"
-#: MdlCore.module:450
-msgid "Disk Partitioning"
-msgstr "Particionado de disco"
+#: FrmLicense.class:104
+msgid "TextArea1"
+msgstr "-"
-#: FrmPartScheme.class:112
-msgid "Disk Partitioning Options"
-msgstr "Opciones de particionado de disco"
+#: FrmLicense.class:110
+msgid "Yes, I Agree to the License Agreement"
+msgstr "De acuerdo"
-#: FrmDiskPart.class:115
-msgid "Disk Partitioning:"
-msgstr "Particionado de disco:"
+#: FrmLicense.class:115
+msgid "No, I Do Not Agree"
+msgstr "No estoy de acuerdo"
-#: MdlInstallSys.module:167 MdlPartFrmt.module:33 MdlPartSel.module:141
-msgid "Do not format"
-msgstr "No Formatear"
+#: FrmLilo.class:35
+msgid ""
+"The following Operating Systems have been detected on this computer.
Choose "
+"your desired option"
+msgstr ""
+"los siguientes Sistemas Operativos han sido detectados en su ordenador. "
+"Selecciona la opción deseada"
-#: FrmSummary.class:112 MdlInstallSys.module:190 MdlWinDrives.module:123
-msgid "Do not mount"
-msgstr "No montar"
+#: FrmLilo.class:35
+msgid ""
+"for each one of them by clicking on each tab. To proceed with the
default "
+"pre-set values, simply click"
+msgstr ""
+"para cada uno de ellos seleccionando cada pestaña. Para continuar con
los "
+"valores seleccionados por defecto simplemente haz click en "
+
+#: FrmLilo.class:132
+msgid "Standard"
+msgstr "Estandar"
+
+#: FrmLilo.class:206
+msgid "Configure and install lilo (Linux Boot Loader)"
+msgstr "Confuguración de LILO"
-#: FrmLilo.class:201
+#: FrmLilo.class:211
msgid "Don't Install Lilo"
msgstr "No quiero instalar LILO"
-#: MdlNetConf.module:290
-msgid "Dynamic Host Control Protocol"
-msgstr "Dynamic Host Control Protocol (DHCP)"
+#: FrmLilo.class:217 FrmNetConf.class:141
+msgid "Tab 0"
+msgstr "-"
-#: MdlUsrAdd.module:68
-msgid "Elite user"
-msgstr "Usuario Privilegiado"
+#: FrmLilo.class:235
+msgid "Target"
+msgstr "-"
-#: MdlNetConf.module:231
-msgid "Encryption key"
-msgstr "Clave encriptada"
+#: FrmLilo.class:241
+msgid "Video Resolution"
+msgstr "Resolucion de pantalla"
-#: MdlNetConf.module:205
-msgid "Encryption type"
-msgstr "Tipo de encriptación"
+#: FrmLilo.class:249
+msgid "Bootsplash Med"
+msgstr "Resolución del arranque gráfico (bootsplash) media"
-#: FrmRootPass.class:126 FrmUserAdd.class:475
-msgid "Enter Password"
-msgstr "Ingresa contraseña"
+#: FrmLilo.class:249
+msgid "Bootsplash High"
+msgstr "Resolución del arranque gráfico (bootsplash) alta"
-#: FrmRootPass.class:34
-msgid "Enter a Password for root."
-msgstr "Ingresa una contraseña para root."
+#: FrmLilo.class:249
+msgid "Bootsplash Extra high"
+msgstr "Resolución del arranque gráfico (bootsplash) súper alta"
-#: FrmUserAdd.class:96
-msgid "Enter a Password."
-msgstr "Ingresa una contraseña."
+#: FrmLilo.class:254
+msgid "Prompt Timeout"
+msgstr "Esperar"
-#: FrmUserAdd.class:73
-msgid "Enter the login name that this user will use to login to this
system."
-msgstr "Ingresa el nombre de usuario que será utilizado para registrarse
en el sistema."
+#: FrmLilo.class:265
+msgid "Seconds"
+msgstr "Segundos"
-#: MdlInstallSys.module:509
-msgid "Error occurred while installing"
-msgstr "Ha ocurrido un error durante la instalación"
+#: FrmLilo.class:271
+msgid "Boot Default"
+msgstr "Arranque por defecto"
-#: MdlInstallCustom.module:539
-msgid "Error while installing "
-msgstr "Error al instalar "
-
-#: MdlInstallCustom.module:72
-msgid "Error while installing required system software. "
-msgstr "Error al instalar el software base. "
-
-#: MdlInstallCustom.module:81
-msgid "Error while installing system configuration. "
-msgstr "Error al instalar la configuración del sistema. "
+#: FrmNetConf.class:58
+msgid "Network Interfaces"
+msgstr "Dispositivos de red"
-#: FMain.class:443
-msgid "Exit Installation"
-msgstr "Cancelar Instalación"
+#: FrmNetConf.class:125
+msgid "Computer Name"
+msgstr "Nombre Local"
-#: MdlPartSel.module:92
-msgid "FILESYSTEM"
-msgstr "Sistema de archivos"
+#: FrmNetConf.class:148
+msgid "Manual DNS Server Specification"
+msgstr "Configuración Manual de servidores de nombres (DNS)"
-#: MdlInstallSys.module:786
-msgid "Failed to install"
-msgstr "La instalación ha fallado"
+#: FrmNetConf.class:153
+msgid "Primary DNS Server"
+msgstr "Servidor de nombres primario (DNS)"
-#: FrmSummary.class:41
-msgid "Filesystem"
-msgstr "Sistema de Archivos"
+#: FrmNetConf.class:161
+msgid "192.168.1.254"
+msgstr "-"
-#: MdlCore.module:449
-msgid "Find installation media"
-msgstr "Buscar medio de instalación"
+#: FrmNetConf.class:166
+msgid "Secondary DNS Server"
+msgstr "Servidor de nombres (DNS) secundario"
-#: MdlInstallSys.module:630
-msgid "Finished intalling Bulks"
-msgstr "Instalación de paquetes finalizada"
+#: FrmNetConf.class:179 MdlCore.module:462
+msgid "Network Configuration"
+msgstr "Configuración de red"
-#: FrmRootPass.class:13
-msgid "For added security, use a password that is easy for you to
remember, but hard for others to guess"
-msgstr "Por motivos de seguridad, deberías utilizar una clave fácil de
recordar, pero difícil de adivinar"
+#: FrmPartScheme.class:61
+msgid ""
+"Select this option if you already have a linux installation that you wish
to "
+"overwrite or if a linux partition scheme exists in your hard disk."
+msgstr ""
+"Selecciona esta opción si ya dispones de una instalación de Linux que "
+"quieras sobreescribir o si las particines Linux ya existen en tu disco
duro."
-#: FrmSummary.class:20 MdlSummarize.module:69
-msgid "Full"
-msgstr "Completa"
+#: FrmPartScheme.class:61
+msgid "This option will overwrite any existing data in the selected
partitions"
+msgstr "Esta opción sobreescribirá los datos de las particiones
seleccionadas"
-#: FrmPkgSel.class:107
-msgid "Full Install"
-msgstr "Instalacion Completa"
+#: FrmPartScheme.class:61
+msgid ""
+"Use this option if you already prepared your partitions using the "
+"VectorLinux installer"
+msgstr ""
+"Usa esta opción si ya haz preparado tus particiones utilizando el
instalador "
+"de VectorLinux"
-#: .project:2
-msgid "GUI installer for Vector linux"
-msgstr "Instaladaor Gráfico de VectorLinux"
+#: FrmPartScheme.class:70
+msgid ""
+"Select this option is you wish to create, more or resize partitions in
order "
+"to make room for your new VectorLinux installation."
+msgstr ""
+"Selecciona esta opción si deseas crear o redimensionar particiones para "
+"conseguir espacio para tu nueva instalación de VectorLinux."
-#: MdlNetConf.module:397
-msgid "Gateway Address"
-msgstr "Dirección de Puerta de Enlace"
+#: FrmPartScheme.class:70
+msgid ""
+"This option is the safest choice if you have other existing
installations "
+"that you wish to keep."
+msgstr "Esta opción es la más segura si quieres conservar otras
instalaciones."
-#: MdlDiskPart.module:53
-msgid "Gparted was not found on this system. Please install gparted and
try again"
-msgstr "No se encontró Gparted en el sistema. Por favor, instala Gparted
y prueba de nuevo"
+#: FrmPartScheme.class:112
+msgid "Disk Partitioning Options"
+msgstr "Opciones de particionado de disco"
-#: FrmUserAdd.class:358
-msgid "Groups are a way of administering permissions for your users. You
grant the user"
-msgstr "Los Grupos son un método para administrar los permisos de los
usuarios. Le garantizas a cada usuario"
+#: FrmPartScheme.class:117
+msgid "Use existing disk partitions"
+msgstr "Utilizar las particiones existentes en mi disco duro"
-#: MdlNetConf.module:126
-msgid "Hardware Address"
-msgstr "Dirección MAC"
+#: FrmPartScheme.class:122
+msgid "Modify my disk partitions to make room for new installation"
+msgstr "Modificaré mi disco duro para hacer lugar para la nueva
instalación"
-#: FrmPartSel.class:189 FrmUserAdd.class:448
-msgid "Help"
-msgstr "Ayuda"
+#: FrmPartSel.class:149
+msgid "ABOUT SYSTEM PARTITIONING IN LINUX"
+msgstr "Acerca del particionado en Linux"
-#: MdlSummarize.module:56
-msgid "INSTALL TYPE:"
-msgstr "Tipo de instalación:"
+#: FrmPartSel.class:149
+msgid ""
+"Linux is a modular operating system. This means that is has the ability
to "
+"store system and"
+msgstr ""
+"Linux es un sistema operativo modular. Esto significa que tiene la
capacidad "
+"de alojar el sistema y"
-#: MdlNetConf.module:352
-msgid "IP Address"
-msgstr "Dirección IP"
+#: FrmPartSel.class:149
+msgid ""
+"user data separately for added data security. You may install the system
to "
+"a single partition"
+msgstr ""
+"datos del usuario separadamente para incrementar la seguridad de sus
datos. "
+"Puedes instalar el sistema en una única partición"
-#: MdlNetConf.module:290
-msgid "If in doubt, choose this option"
-msgstr "Si dudas, elige esta opción"
+#: FrmPartSel.class:149
+msgid ""
+"by simply selecting a \"/\" value on this screen. The rest is optional.
The "
+"following is a"
+msgstr ""
+"simplemente seleccionando un valor para \"/\" en esta pantalla. El resto
es "
+"opcional. Lo siguiente es un"
-#: MdlLiloOsList.module:95
-msgid "Include this Operating System in the boot menu"
-msgstr "Incluir este sistema operativo en el menú de arranque"
+#: FrmPartSel.class:149
+msgid "suggested setup for a typical Linux installation"
+msgstr "configuración recomendada para una instalación típica de Linux"
-#: MdlLiloOsList.module:144
-msgid "Include this installation in the boot menu"
-msgstr "Incluir esta instalación en el menú de arranque"
+#: FrmPartSel.class:149
+msgid ""
+"Used to store system data. This particular install requires a minimum of"
+msgstr ""
+"Utilizada para almacenar los datos del sistema. Esta instalación en "
+"particular requiere un mínimo de"
-#: MdlLiloOsList.module:286
-msgid "Include this operating system in the boot menu"
-msgstr "Incluir este sistema operativo en el menú de arranque"
+#: FrmPartSel.class:149
+msgid "for this"
+msgstr "para esto"
-#: MdlLiloOsList.module:318
-msgid "Initial Ram Disk"
-msgstr "Disco Ram inicial"
+#: FrmPartSel.class:149
+msgid ""
+"but you should considear a higher value to make sure you have room to "
+"install additional software"
+msgstr ""
+"pero deberías considerar un valor más alto para asegurarte espacio para "
+"software adicional que desees instlar luego"
-#: MdlCore.module:456
-msgid "Install Operating System"
-msgstr "Instalación del sistema operativo"
+#: FrmPartSel.class:149
+msgid "in case you wish to."
+msgstr "en caso que lo desees."
-#: MdlCore.module:453
-msgid "Installation"
-msgstr "Instalación"
+#: FrmPartSel.class:149
+msgid ""
+"Used to store user documents, pictures, videos. Give yourself as much
room "
+"as you want"
+msgstr ""
+"Utilizada para almacenar los ficheros del usuario, documentos, imágenes, "
+"videos, etc. Puedes asignar tanto espacio como desees"
-#: FrmSummary.class:14 MdlCore.module:454
-msgid "Installation Summary"
-msgstr "Resumen del proceso"
+#: FrmPartSel.class:149
+msgid "Typically, you want to use the largest partition for this."
+msgstr "Normalmente querrías utilizar tu partición más grande para esto."
-#: FrmSummary.class:243
-msgid "Installation Type"
-msgstr "Tipo de instalación"
+#: FrmPartSel.class:149
+msgid ""
+"Using a swap partition is suggested if your total RAM is less than 1GB. "
+"Suggested ammount"
+msgstr ""
+"Utilizar una partición Swap es recomendado si tu cantidad de memoria RAM
es "
+"inferior a 1GB. El monto sugerido "
-#: MdlInstallSys.module:736
-msgid "Installation phase complete. Ready for configuration"
-msgstr "Fase de instalación completada. Vamos a por la configuración"
+#: FrmPartSel.class:149
+msgid "for this is"
+msgstr "para esto es"
-#: MdlInstallSys.module:471
-msgid "Installing"
-msgstr "Instalando"
+#: FrmPartSel.class:149
+msgid "but can also be calculated as 2 times your ammount of RAM"
+msgstr ""
+"pero también puede ser calculada duplicando el tamaño de tu memoria RAM"
-#: FrmInstallSys.class:204
-msgid "Installing ..."
-msgstr "Instalando..."
+#: FrmPartSel.class:174
+msgid "Please select the partitions you wish to use and how to use them"
+msgstr ""
+"For favor, seleccione las secciones del disco que desea usar, y también
como "
+"usarlas"
-#: MdlInstallSys.module:826
-msgid "Installing Final configuration files..."
-msgstr "Instalando los últimos ficheros de configuración ..."
+#: FrmPartSel.class:183
+msgid ""
+"Check this box if you have a Windows installation on your system or any "
+"other windows partition (FAT, FAT32, NTFS) that you want auto-mounted as "
+"soon as your computer starts"
+msgstr ""
+"Selecciona esta casilla si hay una instalación Windows en tu sistema o
otra "
+"partición Windows (FAT, FAT32, NTFS) que quieras montar automáticamente
al "
+"arrancar el ordenador"
-#: MdlInstallSys.module:775
-msgid "Installing Required Package ..."
-msgstr "Instalando paquetes requeridos ..."
+#: FrmPartSel.class:184
+msgid "Detect and Setup Windows partitions for auto-mounting at boot"
+msgstr "Detectar volúmenes con sistemas Windows"
-#: MdlInstallSys.module:739
-msgid "Installing default system configuration and required software."
-msgstr "Instalando el software necesario y las configuraciones por
defecto."
+#: FrmPartSel.class:189 FrmUserAdd.class:486
+msgid "Help"
+msgstr "Ayuda"
-#: MdlInstallCustom.module:269
-msgid "Installing user-selected package"
-msgstr "Instalando paquetes selecionados por el usuario"
+#: FrmPkgSel.class:22
+msgid "Choose your installation mode"
+msgstr "Selecciona el modo de instalación"
#: FrmPkgSel.class:51
msgid "Installs everything in your VectorLinux media to your system"
msgstr "Instalar todo lo que incluye el medio de instalación en tu disco
duro"
-#: MdlNetConf.module:147
-msgid "Interface Type"
-msgstr "Tipo de interfaz"
-
-#: MdlDiskPart.module:46
-msgid "It is still possible to install VectorLinux on your system, but you
need to pre-partition your disks first"
-msgstr "Es posible instalar VectorLinux entu sistema, pero derías
particionar el disco primero"
+#: FrmPkgSel.class:60
+msgid "Choose your optional components to install."
+msgstr "Selecciona los componentes opcionales a instalar."
-#: MdlLiloOsList.module:343
-msgid "Kernel boot options"
-msgstr "Opciones de arranque de kernel"
+#: FrmPkgSel.class:107
+msgid "Full Install"
+msgstr "Instalacion Completa"
-#: FrmLicense.class:99
-msgid "LICENSE AGREEMENT"
-msgstr "Aceptación de licencia"
+#: FrmPkgSel.class:112
+msgid "Custom Install"
+msgstr "Instalación Personalizada"
-#: MdlLiloOsList.module:153
-msgid "Label"
-msgstr "Etiqueta"
+#: FrmPkgsel2.class:21
+msgid "Select your indivirual packages to install."
+msgstr "Selecciona paquetes individuales para su instalación."
-#: MdlCore.module:448
-msgid "Language Selection"
-msgstr "Seleccion de idioma"
+#: FrmPkgsel2.class:21
+msgid "To install them all, just click next"
+msgstr "Para instalarlos todos, simplemente presiona Sigiente"
-#: MdlConfLilo.module:95
-msgid "Lilo returned an error. Please see below"
-msgstr "Lilo ha devuelto un error. Por favor, lee más abajo"
+#: FrmRootPass.class:6
+msgid "System Administrator Password"
+msgstr "Contraseña del administrador del sistema"
-#: FrmPartSel.class:149
-msgid "Linux is a modular operating system. This means that is has the
ability to store system and"
-msgstr "Linux es un sistema operativo modular. Esto significa que tiene la
capacidad de alojar el sistema y"
+#: FrmRootPass.class:13
+msgid "Most other every-day taks do not require administrative
priviledges."
+msgstr "Las tareas diarias no requieren privilegios de administrador"
-#: MdlDiskPart.module:57
-msgid "Loading gparted ... Please wait"
-msgstr "Cargando Gparted ... Por favor espere"
+#: FrmRootPass.class:13
+msgid ""
+"For added security, use a password that is easy for you to remember, but "
+"hard for others to guess"
+msgstr ""
+"Por motivos de seguridad, deberías utilizar una clave fácil de recordar, "
+"pero difícil de adivinar"
-#: FrmZoneSet.class:163
-msgid "LocalTime"
-msgstr "Hora Local"
+#: FrmRootPass.class:28
+msgid "About the root account"
+msgstr "Acerca de la cuenta del usuario root"
-#: FrmUserAdd.class:468
-msgid "Login Name"
-msgstr "Nombre de usuario"
+#: FrmRootPass.class:34
+msgid "Enter a Password for root."
+msgstr "Ingresa una contraseña para root."
-#: FrmUserAdd.class:78
-msgid "Login name field contains illegal characters. Please use only
lowercase letters and numbers"
-msgstr "Tu nombre de usuario contiene caracteres ilegales. Por favor
utiliza solo letras minúsculas y números"
+#: FrmRootPass.class:48
+msgid ""
+"Passwords do not match. Please enter the same password twice for
accuracy."
+msgstr ""
+"Las contraseñas no coinciden. Por favor ingrese la misma contraseña dos "
+"veces para estar seguros de que es la que Usted verdaderamente desea."
-#: MdlCore.module:361
-msgid "MINIMUM REQUIREMENTS"
-msgstr "Requerimientos mínimos del sistema"
+#: FrmRootPass.class:118 MdlCore.module:460
+msgid "System Administrator"
+msgstr "Administrador del sistema"
-#: MdlPartSel.module:82
-msgid "MOUNT POINT"
-msgstr "Punto de montaje"
+#: FrmRootPass.class:131
+msgid ""
+"The linux root account is pre-assigned to be used as the system "
+"administrator's account. This account is used to perform system-wide
changes "
+"such as software upgrades, managing user accounts etc. \n"
+"\n"
+"Most other operations do not require administrative priviledges.\n"
+"The root password must be entered twice for ensured accuracy. When
choosing "
+"a root password, think of something easy for you to remember, but hard
for "
+"others to guess."
+msgstr ""
+"La cuenta root en los sistemas Linux está diseñada como la cuenta del "
+"administrador del sistema. Es utilizada para realizar tareas de "
+"mantenimiento del sistema globales, tales como actualizaciones de
software, "
+"gestionar los permisos o crear nuevos usuarios, etc. \n"
+"\n"
+"La mayoría de las otras operaciones no requieren privilegios de "
+"administrador.\n"
+"La contraseña para el usuario root deberá ser ingresada dos veces para "
+"asegurar que es la contraseña deseada. Al elegir la contraseña de "
+"administrador, piensa en algo fácil de recordar, pero al mismo tiempo "
+"difícil de adivinar para los otros. "
-#: MdlWinDrives.module:84
-msgid "MOUNT TO"
-msgstr "Montar en"
+#: FrmRootPass.class:137 FrmUserAdd.class:514
+msgid "Enter Password"
+msgstr "Ingresa contraseña"
-#: FrmNetConf.class:148
-msgid "Manual DNS Server Specification"
-msgstr "Configuración Manual de servidores de nombres (DNS)"
+#: FrmRootPass.class:142
+msgid "Re-Enter Password"
+msgstr "Vuelva a ingresar la contraseña"
-#: FrmSelISO.class:133
-msgid "Minimum Disk Space Requirements"
-msgstr "Requerimientos mínimos de espacio en disco"
+#: FrmRootPass.class:159
+msgid "Set Password"
+msgstr "Define tu contraseña"
-#: FrmPartScheme.class:122
-msgid "Modify my disk partitions to make room for new installation"
-msgstr "Modificaré mi disco duro para hacer lugar para la nueva
instalación"
+#: FrmSelISO.class:29 MdlCore.module:198
+msgid "No Installable Media Found"
+msgstr "No se encontró ningún medio instalable"
-#: FrmRootPass.class:13
-msgid "Most other every-day taks do not require administrative
priviledges."
-msgstr "Las tareas diarias no requieren privilegios de administrador"
+#: FrmSelISO.class:73
+msgid "Click"
+msgstr "Haz click en"
-#: FrmSummary.class:43
-msgid "Mount Point"
-msgstr "Punto de montaje"
+#: FrmSelISO.class:73
+msgid "to begin installating"
+msgstr "para comenzar la instalación"
-#: MdlLiloOsList.module:297
-msgid "Name"
-msgstr "Nombre"
+#: FrmSelISO.class:98
+msgid "Unable to identify distro."
+msgstr "No se pudo detectar la distribución."
-#: MdlLiloOsList.module:76
-msgid "Name "
-msgstr "Nombre "
+#: FrmSelISO.class:133
+msgid "Minimum Disk Space Requirements"
+msgstr "Requerimientos mínimos de espacio en disco"
-#: FrmNetConf.class:179 MdlCore.module:462
-msgid "Network Configuration"
-msgstr "Configuración de red"
+#: FrmSelISO.class:236
+msgid "No installable images found."
+msgstr "No se encontró ninguna imagen que se pueda instalar"
-#: FrmNetConf.class:58
-msgid "Network Interfaces"
-msgstr "Dispositivos de red"
+#: FrmSelISO.class:242
+msgid ""
+"Select which VectorLinux version you wish to install from the list below"
+msgstr "Selectiona la imagen que deseas instalar de la lista"
-#: FMain.class:431
-msgid "Next"
-msgstr "Siguiente"
+#: FrmSelISO.class:252
+msgid "Search Again"
+msgstr "Buscar nuevamente"
-#: FMain.class:314
-msgid "No"
-msgstr "No"
+#: FrmSummary.class:14 MdlCore.module:454
+msgid "Installation Summary"
+msgstr "Resumen del proceso"
-#: FrmSelISO.class:29 MdlCore.module:198
-msgid "No Installable Media Found"
-msgstr "No se encontró ningún medio instalable"
+#: FrmSummary.class:16 MdlSummarize.module:56
+msgid "Custom"
+msgstr "Personalisado"
-#: MdlWinDrives.module:186
-msgid "No Windows partitions detected"
-msgstr "Particiones Windows no detectadas en tu sistema"
+#: FrmSummary.class:20 MdlSummarize.module:69
+msgid "Full"
+msgstr "Completa"
-#: FrmSelISO.class:236
-msgid "No installable images found."
-msgstr "No se encontró ninguna imagen que se pueda instalar"
+#: FrmSummary.class:37
+msgid "Partition"
+msgstr "Partición"
-#: FrmLicense.class:115
-msgid "No, I Do Not Agree"
-msgstr "No estoy de acuerdo"
+#: FrmSummary.class:39
+msgid "Size"
+msgstr "Tamano"
-#: FrmSummary.class:90 MdlNetConf.module:218
-msgid "None"
-msgstr "Ninguno"
+#: FrmSummary.class:41
+msgid "Filesystem"
+msgstr "Sistema de Archivos"
+
+#: FrmSummary.class:43
+msgid "Mount Point"
+msgstr "Punto de montaje"
#: FrmSummary.class:49 MdlInstallSys.module:142 MdlPartSel.module:143
msgid "Not Used"
msgstr "Sin usar"
-#: FrmUserAdd.class:359
-msgid "OK"
-msgstr "OK"
-
-#: MdlSummarize.module:62
-msgid "OPTIONAL PACKAGES:"
-msgstr "Paquetes opcionales"
-
-#: MdlSummarize.module:49
-msgid "OPTIONAL WINDOWS PARTITIONS TO BE MOUNTED AT BOOT TIME."
-msgstr "Particiones Windows que se montarán al inicio del sistema."
-
-#: MdlLiloOsList.module:274
-msgid "Operating system installed in "
-msgstr "Sistema operativo montado en"
-
-#: MdlPartSel.module:71 MdlWinDrives.module:74
-msgid "PARTITION"
-msgstr "Partición"
+#: FrmSummary.class:90 MdlNetConf.module:218
+msgid "None"
+msgstr "Ninguno"
-#: MdlSummarize.module:28
-msgid "PARTITIONING LAYOUT"
-msgstr "Diseño del particionado"
+#: FrmSummary.class:112 MdlInstallSys.module:190 MdlWinDrives.module:123
+msgid "Do not mount"
+msgstr "No montar"
#: FrmSummary.class:164
msgid "Package Name"
msgstr "Nombre del paquete"
-#: MdlInstallSys.module:362
-msgid "Packages have been installed in your system. Please click"
-msgstr "Los paquetes han sido instalados en tu sistema. Por favor haga
click"
+#: FrmSummary.class:173
+msgid "BULK PACKAGES"
+msgstr "PAQUETES POR CATEGORIA"
-#: FrmSummary.class:37
-msgid "Partition"
-msgstr "Partición"
+#: FrmSummary.class:190
+msgid "USER-SELECTED PACKAGES"
+msgstr "PAQUETES INDIVIDUALES"
+
+#: FrmSummary.class:243
+msgid "Installation Type"
+msgstr "Tipo de instalación"
#: FrmSummary.class:253
msgid "Partition Selection Scheme"
msgstr "Selección del esquema de particionado"
-#: FrmRootPass.class:48
-msgid "Passwords do not match. Please enter the same password twice for
accuracy."
-msgstr "Las contraseñas no coinciden. Por favor ingrese la misma
contraseña dos veces para estar seguros de que es la que Usted
verdaderamente desea."
-
-#: FMain.class:271
-msgid "Please select a default operating system to boot before proceeding"
-msgstr "Por favor selectione el sistema operativo que se iniciara por
defecto"
-
-#: MdlPartSel.module:289
-msgid "Please select only one "
-msgstr "Por favor, seleccione solo una"
-
-#: FrmPartSel.class:174
-msgid "Please select the partitions you wish to use and how to use them"
-msgstr "For favor, seleccione las secciones del disco que desea usar, y
también como usarlas"
+#: FrmSummary.class:263 MdlCore.module:451
+msgid "Software Selection"
+msgstr "Selección de software"
-#: FMain.class:207
-msgid "Please wait while setup analyses your current partition setup."
-msgstr "Por favor espere mientras el instalador analiza su particonado
actual."
+#: FrmUserAdd.class:37
+msgid "Create User Accounts"
+msgstr "Limiar cuentas de usuario"
-#: FMain.class:205
-msgid "Please wait while setup attampts to run the partitioning utility"
-msgstr "Por favor espere, el instalador intentará ejecutar la herramienta
de particionado"
+#: FrmUserAdd.class:78
+#, fuzzy
+msgid "Enter the login name that this user will user to login to this
system."
+msgstr ""
+"Ingresa el nombre de usuario que será utilizado para registrarse en el "
+"sistema."
+
+#: FrmUserAdd.class:86
+msgid ""
+"Login name field contains illegal characters. Please use only lowercase "
+"letters and numbers"
+msgstr ""
+"Tu nombre de usuario contiene caracteres ilegales. Por favor utiliza
solo "
+"letras minúsculas y números"
-#: MdlNetConf.module:105
-msgid "Plugged-in"
-msgstr "Conectado"
+#: FrmUserAdd.class:99
+msgid "Username contains illegal characters"
+msgstr "El nombre de usuario contiene caracteres ilegales"
-#: MdlCore.module:447
-msgid "Preparation"
-msgstr "Preparación"
+#: FrmUserAdd.class:102
+#, fuzzy
+msgid "User account for"
+msgstr "Usuarios"
-#: MdlSetup.module:245
-msgid "Preparing filesystems"
-msgstr "Preparando sistemas de archivos"
+#: FrmUserAdd.class:102
+#, fuzzy
+msgid "already exists"
+msgstr "El nombre de usuario ya existe"
-#: FrmNetConf.class:153
-msgid "Primary DNS Server"
-msgstr "Servidor de nombres primario (DNS)"
+#: FrmUserAdd.class:106
+#, fuzzy
+msgid "Enter a password for"
+msgstr "Ingresa una contraseña para root."
-#: FMain.class:411
-msgid "Process Overview"
-msgstr "Resumen del proceso"
+#: FrmUserAdd.class:157
+msgid "was created."
+msgstr ""
+
+#: FrmUserAdd.class:161
+msgid "Passwords do not match"
+msgstr ""
+
+#: FrmUserAdd.class:162
+#, fuzzy
+msgid "Enter the same password twice"
+msgstr "Ingresa una contraseña."
-#: FrmLilo.class:244
-msgid "Prompt Timeout"
-msgstr "Esperar"
+#: FrmUserAdd.class:311
+msgid "Select picture for user Login"
+msgstr "Selecciona una imagen para el usuario"
-#: FrmRootPass.class:131
-msgid "Re-Enter Password"
-msgstr "Vuelva a ingresar la contraseña"
+#: FrmUserAdd.class:350
+msgid ""
+"Your password selections do not match. Please enter the same password
twice"
+msgstr ""
+"Sus contraseñas no coinciden. Por favor ingrese la misma contraseña dos "
+"veces."
+
+#: FrmUserAdd.class:375
+msgid ""
+"Groups are a way of administering permissions for your users. You grant
the "
+"user"
+msgstr ""
+"Los Grupos son un método para administrar los permisos de los usuarios.
Le "
...
[truncated message content] |
|
From: <cod...@go...> - 2008-10-22 18:12:07
|
Author: M0...@gm...
Date: Wed Oct 22 11:09:53 2008
New Revision: 240
Modified:
branches/iVL/.lang/#project.pot
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/FMain.class
branches/iVL/FrmLilo.class
branches/iVL/FrmRootPass.class
branches/iVL/FrmUserAdd.class
branches/iVL/FrmUserAdd.form
branches/iVL/FrmZoneSet.class
branches/iVL/MdlLiloOsList.module
branches/iVL/MdlUsrAdd.module
Log:
- Added functionality to create the user account (if enough information is
provided) from the next button on FMain
- Enabled reverse navigation for configuration state.
Modified: branches/iVL/.lang/#project.pot
==============================================================================
--- branches/iVL/.lang/#project.pot (original)
+++ branches/iVL/.lang/#project.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/.project
+# /home/remote/projects/installer/.project
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/ClsGlobal.class
+# /home/remote/projects/installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/ClsPartSel.class
+# /home/remote/projects/installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/ClsWinDrives.class
+# /home/remote/projects/installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FMain.class
+# /home/remote/projects/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -46,59 +46,59 @@
msgid "Passwords do not match. Please enter the same password twice"
msgstr ""
-#: FMain.class:310
-msgid "You have not created any user accounts for this system yet. It is
recommended that you"
+#: FMain.class:313
+msgid "You have not created any user accounts for this system yet. There
is not enough information"
msgstr ""
-#: FMain.class:310
-msgid "create at least one."
+#: FMain.class:313
+msgid "to create an account here. It is recommended that you create at
least one."
msgstr ""
-#: FMain.class:310
+#: FMain.class:313
msgid "Would you like to continue anyway?"
msgstr ""
-#: FMain.class:310
+#: FMain.class:313
msgid "Yes"
msgstr ""
-#: FMain.class:310
+#: FMain.class:313
msgid "No"
msgstr ""
-#: FMain.class:329
+#: FMain.class:335
msgid "has been installed on your computer. Additional system
configuration"
msgstr ""
-#: FMain.class:329
+#: FMain.class:335
msgid "will take place after you reboot your system.Part of this process
must be done in text mode."
msgstr ""
-#: FMain.class:329
+#: FMain.class:335
msgid "Would you like to reboot your computer now?"
msgstr ""
-#: FMain.class:334
+#: FMain.class:340
msgid "The VectorLinux installer will now exit. Enjoy your new operating
system"
msgstr ""
-#: FMain.class:426
+#: FMain.class:435
msgid "Process Overview"
msgstr ""
-#: FMain.class:446
+#: FMain.class:455
msgid "Next"
msgstr ""
-#: FMain.class:452
+#: FMain.class:461
msgid "Back"
msgstr ""
-#: FMain.class:458
+#: FMain.class:467
msgid "Exit Installation"
msgstr ""
-#: FMain.class:474
+#: FMain.class:483
msgid "Button1"
msgstr ""
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmDiskPart.class
+# /home/remote/projects/installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmPartScheme.class
+# /home/remote/projects/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmPartSel.class
+# /home/remote/projects/installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmPkgSel.class
+# /home/remote/projects/installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmSelISO.class
+# /home/remote/projects/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmSummary.class
+# /home/remote/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmWinDrives.class
+# /home/remote/projects/installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlCore.module
+# /home/remote/projects/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlDiskPart.module
+# /home/remote/projects/installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlObjSizer.module
+# /home/remote/projects/installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlPartSel.module
+# /home/remote/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlPkgSel.module
+# /home/remote/projects/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlSetup.module
+# /home/remote/projects/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlSummarize.module
+# /home/remote/projects/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Wed Oct 22 11:09:53 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlWinDrives.module
+# /home/remote/projects/installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Wed Oct 22 11:09:53 2008
@@ -36,7 +36,7 @@
-'ME.Maximized = TRUE
+ME.Maximized = TRUE
frmInit = MdlCore.frmInit
'MdlCore.LOCK_GUI
'frmInit = FrmLangSel
@@ -306,12 +306,18 @@
CASE "FrmUserAdd"
IF MdlUsrAdd.iUsrAccts = 0 THEN
- SELECT CASE Message.Question(("You have not created any user
accounts for this system yet. It is recommended that you") & "<br>" &
- ("create at least one.") & "<br><br>" & ("Would you like to
continue anyway?"), ("Yes"), ("No"))
-
+ 'IF FrmUserAdd.tbUsername.text = "" THEN
+ IF MdlUsrAdd.CREATE_USER_ON_A_SNAP() = FALSE THEN
+ SELECT CASE Message.Question(("You have not created any user
accounts for this system yet. There is not enough information") & "<br>" &
+ ("to create an account here. It is recommended that you create
at least one.") & "<br>" &
+ "<br>" & ("Would you like to continue anyway?"), ("Yes"),
("No"))
+
CASE 2
RETURN
END SELECT
+ ELSE IF MdlUsrAdd.CREATE_USER_ON_A_SNAP() = TRUE THEN
+ FrmUserAdd.Button1_Click()
+ END IF
END IF
@@ -377,6 +383,9 @@
iKey = ClsGlobal.sBackNav.Find(FrmCurr)
IF iKey <> -1 THEN
frm = ClsGlobal.sBackNav[iKey - 1]
+ WITH FMain
+ .tvPlan.MoveBack
+ END WITH
FrmCurr.Hide
frm.Show
END IF
Modified: branches/iVL/FrmLilo.class
==============================================================================
--- branches/iVL/FrmLilo.class (original)
+++ branches/iVL/FrmLilo.class Wed Oct 22 11:09:53 2008
@@ -165,3 +165,13 @@
'MdlConfLilo.WRITE_LILO_DOT_CONF()
END
+
+PUBLIC SUB Form_Show()
+
+ FMain.FrmCurr = ME
+ FMain.tvPlan["Conf0"].Selected = TRUE
+ FMain.tvPlan["Conf0"].Picture = MdlCore.sNowPic
+ FMain.tvPlan["Inst1"].Picture = MdlCore.sDonePic
+ ME.sVidMode = "Standard"
+
+END
Modified: branches/iVL/FrmRootPass.class
==============================================================================
--- branches/iVL/FrmRootPass.class (original)
+++ branches/iVL/FrmRootPass.class Wed Oct 22 11:09:53 2008
@@ -81,3 +81,14 @@
END WITH
END
+
+PUBLIC SUB Form_Show()
+FMain.FrmCurr = ME
+
+ WITH FMain
+ .tvPlan["Conf1"].Picture = MdlCore.sDonePic
+ .tvPlan["Conf2"].picture = MdlCore.sNowPic
+ .tvPlan["Conf2"].Selected = TRUE
+ END WITH
+
+END
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Wed Oct 22 11:09:53 2008
@@ -20,7 +20,7 @@
PUBLIC iUID AS Integer = 1000
PRIVATE otl AS Object[]
-PRIVATE otb AS Object[]
+PUBLIC otb AS Object[]
PUBLIC SUB Form_Open()
@@ -75,13 +75,18 @@
'Message("Ateempting to create user now")
IF ME.tbUsername.Text = "" THEN
- Message(("Enter the login name that this user will use to login to
this system."))
+ Balloon.Error(("Enter the login name that this user will user to login
to this system."), ME.tbUsername)
+ 'Message(("Enter the login name that this user will use to login to
this system."))
+ RETURN
+ STOP EVENT
ELSE
'SHELL "echo " & ME.tbUsername.Text & "| grep -e \'[A-Z]\'" TO sCAPS
IF ME.tbUsername.text LIKE "*[A-Z]*" THEN
'IF ME.tbUsername.textNOT LIKE "*[a-z0-9_-]*" THEN
- Message.Error(("Login name field contains illegal characters. Please
use only lowercase letters and numbers"))
+ Balloon.Error(("Login name field contains illegal characters. Please
use only lowercase letters and numbers"), ME.tbUsername)
+ 'Message.Error(("Login name field contains illegal characters. Please
use only lowercase letters and numbers"))
RETURN
+ STOP EVENT
'ELSE IF ME.tbUsernameNOT LIKE "*[a-z0-9_-]*" THEN
@@ -94,11 +99,11 @@
Message(("Username contains illegal characters"))
RETURN
ELSE IF sLogE <> "" THEN
- Message(("Username already exists"))
+ Message(("User account for") & Space(1) & ME.tbUsername.Text &
Space(1) & ("already exists"))
RETURN
ELSE
IF ME.tbPasswd1.Text = "" THEN
- Message(("Enter a Password."))
+ Message(("Enter a password for") & Space(1) & ME.tbUsername.text)
RETURN
ELSE
IF ME.tbPasswd1.Text = ME.tbPasswd2.Text THEN
@@ -126,12 +131,12 @@
' need to do some binding for this to work
- PRINT "Mounting system locations with bind options"
+ 'PRINT "Mounting system locations with bind options"
SHELL "mount -o bind /sys /mnt/target/sys" WAIT
SHELL "mount -o bind /tmp /mnt/target/tmp" WAIT
SHELL "mount -o bind /proc /mnt/target/proc" WAIT
SHELL "mount -o bind /dev /mnt/target/dev" WAIT
- PRINT "Deleting old user group"
+ 'PRINT "Deleting old user group"
SHELL "chroot /mnt/target /usr/sbin/groupdel " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
'SHELL "chroot /mnt/target /usr/sbin/groupadd -g " & iUID &
Space(1) & ME.tbUsername.Text WAIT
@@ -149,13 +154,16 @@
'Message("chroot /mnt/target /sbin/passwdx " &
ME.tbUsername.Text & Space(1) & ME.tbPasswd1.Text)
SHELL "chroot /mnt/target /sbin/passwdx " & ME.tbUsername.Text &
Space(1) & ME.tbPasswd1.Text WAIT
- Message("user " & ME.tbUsername.Text & " was created.")
+ Message(("User account for") & Space(1) & ME.tbUsername.Text &
Space(1) & ("was created."))
btClrFrm_Click() ' clear the form
INC iUID
ELSE
- Message("Passwords do not match")
+ Message(("Passwords do not match"))
+ Balloon.Info(("Enter the same password twice"), ME.tbPasswd1)
ME.tbPasswd1.Clear
ME.tbPasswd2.Clear
+ RETURN
+ STOP EVENT
ENDIF
ENDIF
ENDIF
@@ -295,11 +303,7 @@
END
-PUBLIC SUB Form_Menu()
-
- MdlUsrAdd.DISPLAY_USER_GROUP_OPTIONS()
-END
PUBLIC SUB btBrowse_Click()
'ClsGlobal.sTargetMnt = "/"
@@ -329,6 +333,8 @@
.tbPicPath.Visible = FALSE
'.pbUsrPic.c
.pbUsrPic.Visible = FALSE
+ .Button1.Enabled = FALSE
+ .Button1.ForeColor = Color.Gray
END WITH
FOR EACH cb IN MdlUsrAdd.objGrps
cb.Delete
@@ -368,5 +374,26 @@
("permission to do certain things by adding them to certain groups.")
& "<br><br>" &
("Select which groups you want this user to be a part of here")
Message(sMsg, ("OK"))
+
+END
+
+PUBLIC SUB tbUsername_LostFocus()
+
+ WITH ME
+ .Button1.Enabled = TRUE
+ .Button1.ForeColor = Color.Black
+ END WITH
+END
+
+PUBLIC SUB Form_Show()
+
+ Fmain.frmcurr = ME
+
+ WITH FMain
+ .FrmCurr = ME
+ .tvPlan["Conf2"].Picture = MdlCore.sDonePic
+ .tvPlan["Conf3"].picture = MdlCore.sNowPic
+ .tvPlan["Conf3"].Selected = TRUE
+ END WITH
END
Modified: branches/iVL/FrmUserAdd.form
==============================================================================
--- branches/iVL/FrmUserAdd.form (original)
+++ branches/iVL/FrmUserAdd.form Wed Oct 22 11:09:53 2008
@@ -55,6 +55,7 @@
}
{ Button1 Button
MoveScaled(1,63,14,3)
+ Enabled = False
Text = ("Create User")
Picture = Picture["icon:/16/add"]
}
Modified: branches/iVL/FrmZoneSet.class
==============================================================================
--- branches/iVL/FrmZoneSet.class (original)
+++ branches/iVL/FrmZoneSet.class Wed Oct 22 11:09:53 2008
@@ -24,7 +24,7 @@
.tvPlan["Conf1"].picture = MdlCore.sNowPic
.tvPlan["Conf1"].Selected = TRUE
END WITH
-
+ MdlCore.unlock_gui() ' unlock the back button
FMain.btnext.Enabled = FALSE
MdlZoneSet.TIME_ZONES()
'ME.lbTmZone.Index = 9
@@ -127,5 +127,18 @@
' RETURN
' LOOP
+
+END
+
+PUBLIC SUB Form_Show()
+
+ Fmain.frmcurr = ME
+ ME.tlbanner.Text = "<h3>" & ("Timezone configuration") & "</h3>"
+ WITH FMain
+ .tvPlan["Conf0"].Picture = MdlCore.sDonePic
+ .tvPlan["Conf1"].picture = MdlCore.sNowPic
+ .tvPlan["Conf1"].Selected = TRUE
+ END WITH
+
END
Modified: branches/iVL/MdlLiloOsList.module
==============================================================================
--- branches/iVL/MdlLiloOsList.module (original)
+++ branches/iVL/MdlLiloOsList.module Wed Oct 22 11:09:53 2008
@@ -50,60 +50,61 @@
arrWinInstalls = NEW Object[]
arrWinLabels = NEW Object[]
- SHELL "fdisk -l | grep -E \'^/dev/.* \\* .*(FAT16)\' | cut -f 1 -d \'
\'" TO sFatList
- sFatList = Trim(sFatList)
- IF sFatList <> "" THEN
- arrFat = Split(sFatList, "\n")
- iTotalEntries = iTotalEntries + (arrFat.count - 1)
- FOR i = 0 TO arrFat.Count - 1
- sWinPart = Trim(arrFat[i])
- sWinAddr = Right(sWinPart, Len(sWinPart) -
RInStr(sWinPart, "/"))
- WITH FrmLilo.TabStrip1
- .count = .count + 1
- .text = "Windows-" & sWinAddr
- .Tag = sWinPart
- ' now populate it with the necessary stuff
- tl = NEW TextLabel(FrmLilo.TabStrip1) AS "WinBanner"
- WITH tl
- .text = "<b>" & ("Windows installation found
in") & Space(1) & sWinPart & "</b>"
- .Move(4, 16, MdlObjSizer.get_object_width(.text)
+ 24, 27)
- .Alignment = Align.Normal
- .BackColor = Color.Background
- END WITH
-
- tl = NEW TextLabel(FrmLilo.TabStrip1) AS "WinName"
- WITH tl
- .text = ("Name ")
- .Move(tl.left, tl.top + tl.height + 8,
MdlObjSizer.get_object_width(.text) + 8, 27)
- .Alignment = Align.Normal
- .BackColor = Color.Background
- END WITH
-
- tb = NEW TextBox(FrmLilo.TabStrip1) AS "WinNameBox"
- WITH tb
- .text = FrmLilo.TabStrip1.Current.Text
- .MaxLength = 15
- .Height = 27
- .Width = MdlObjSizer.get_object_width(.text) * 2
- .Move(tl.left + tl.Width + 8, tl.top)
- .BackColor = Color.Background
- END WITH
-
-
- cb = NEW CheckBox(FrmLilo.TabStrip1) AS "WinInclude"
- WITH cb
- .text = ("Include this Operating System in the
boot menu")
- .Move(tl.left, tl.top + tl.height,
MdlObjSizer.get_object_width(.text) + 36, 27)
- .Value = TRUE
- .BackColor = Color.Background
- .tag = sWinPart
- END WITH
- arrWinInstalls.Add(cb) ' add to the array to find
out wether to include or not in the boot menu
-
- END WITH ' end jacking with the tabstrip
- NEXT
- END IF
- SHELL "fdisk -l| grep -E \'^/dev/.* * .*(FAT32|HPFS|NTFS|Win)\' | cut -f
1 -d \' \'" TO sNTFSLst
+ ' ' ' ' ' ' ' ' ' ' ' SHELL "fdisk -l | grep -E \'^/dev/.*
\\* .*(FAT16)\' | cut -f 1 -d \' \'" TO sFatList
+ ' ' ' ' ' ' ' ' ' ' ' sFatList = Trim(sFatList)
+ ' ' ' ' ' ' ' ' ' ' ' IF sFatList <> "" THEN
+ ' ' ' ' ' ' ' ' ' ' ' arrFat = Split(sFatList, "\n")
+ ' ' ' ' ' ' ' ' ' ' ' iTotalEntries = iTotalEntries +
(arrFat.count - 1)
+ ' ' ' ' ' ' ' ' ' ' ' FOR i = 0 TO arrFat.Count - 1
+ ' ' ' ' ' ' ' ' ' ' ' sWinPart = Trim(arrFat[i])
+ ' ' ' ' ' ' ' ' ' ' ' sWinAddr = Right(sWinPart,
Len(sWinPart) - RInStr(sWinPart, "/"))
+ ' ' ' ' ' ' ' ' ' ' ' WITH FrmLilo.TabStrip1
+ ' ' ' ' ' ' ' ' ' ' ' .count = .count + 1
+ ' ' ' ' ' ' ' ' ' ' ' .text = "Windows-" & sWinAddr
+ ' ' ' ' ' ' ' ' ' ' ' .Tag = sWinPart
+ ' ' ' ' ' ' ' ' ' ' ' ' now populate it with the
necessary stuff
+ ' ' ' ' ' ' ' ' ' ' ' tl = NEW
TextLabel(FrmLilo.TabStrip1) AS "WinBanner"
+ ' ' ' ' ' ' ' ' ' ' ' WITH tl
+ ' ' ' ' ' ' ' ' ' ' ' .text = "<b>" & ("Windows
installation found in") & Space(1) & sWinPart & "</b>"
+ ' ' ' ' ' ' ' ' ' ' ' .Move(4, 16,
MdlObjSizer.get_object_width(.text) + 24, 27)
+ ' ' ' ' ' ' ' ' ' ' ' .Alignment = Align.Normal
+ ' ' ' ' ' ' ' ' ' ' ' .BackColor =
Color.Background
+ ' ' ' ' ' ' ' ' ' ' ' END WITH
+ ' ' ' ' ' ' ' ' ' ' '
+ ' ' ' ' ' ' ' ' ' ' ' tl = NEW
TextLabel(FrmLilo.TabStrip1) AS "WinName"
+ ' ' ' ' ' ' ' ' ' ' ' WITH tl
+ ' ' ' ' ' ' ' ' ' ' ' .text = ("Name ")
+ ' ' ' ' ' ' ' ' ' ' ' .Move(tl.left, tl.top +
tl.height + 8, MdlObjSizer.get_object_width(.text) + 8, 27)
+ ' ' ' ' ' ' ' ' ' ' ' .Alignment = Align.Normal
+ ' ' ' ' ' ' ' ' ' ' ' .BackColor =
Color.Background
+ ' ' ' ' ' ' ' ' ' ' ' END WITH
+ ' ' ' ' ' ' ' ' ' ' '
+ ' ' ' ' ' ' ' ' ' ' ' tb = NEW
TextBox(FrmLilo.TabStrip1) AS "WinNameBox"
+ ' ' ' ' ' ' ' ' ' ' ' WITH tb
+ ' ' ' ' ' ' ' ' ' ' ' .text =
FrmLilo.TabStrip1.Current.Text
+ ' ' ' ' ' ' ' ' ' ' ' .MaxLength = 15
+ ' ' ' ' ' ' ' ' ' ' ' .Height = 27
+ ' ' ' ' ' ' ' ' ' ' ' .Width =
MdlObjSizer.get_object_width(.text) * 2
+ ' ' ' ' ' ' ' ' ' ' ' .Move(tl.left + tl.Width +
8, tl.top)
+ ' ' ' ' ' ' ' ' ' ' ' .BackColor =
Color.Background
+ ' ' ' ' ' ' ' ' ' ' ' END WITH
+ ' ' ' ' ' ' ' ' ' ' '
+ ' ' ' ' ' ' ' ' ' ' '
+ ' ' ' ' ' ' ' ' ' ' ' cb = NEW
CheckBox(FrmLilo.TabStrip1) AS "WinInclude"
+ ' ' ' ' ' ' ' ' ' ' ' WITH cb
+ ' ' ' ' ' ' ' ' ' ' ' .text = ("Include this
Operating System in the boot menu")
+ ' ' ' ' ' ' ' ' ' ' ' .Move(tl.left, tl.top +
tl.height, MdlObjSizer.get_object_width(.text) + 36, 27)
+ ' ' ' ' ' ' ' ' ' ' ' .Value = TRUE
+ ' ' ' ' ' ' ' ' ' ' ' .BackColor =
Color.Background
+ ' ' ' ' ' ' ' ' ' ' ' .tag = sWinPart
+ ' ' ' ' ' ' ' ' ' ' ' END WITH
+ ' ' ' ' ' ' ' ' ' ' ' arrWinInstalls.Add(cb) ' add
to the array to find out wether to include or not in the boot menu
+ ' ' ' ' ' ' ' ' ' ' '
+ ' ' ' ' ' ' ' ' ' ' ' END WITH ' end jacking with the
tabstrip
+ ' ' ' ' ' ' ' ' ' ' ' NEXT
+ ' ' ' ' ' ' ' ' ' ' ' END IF
+ 'SHELL "fdisk -l| grep -E \'^/dev/.* * .*(FAT32|HPFS|NTFS|Win)\' | cut
-f 1 -d \' \'" TO sNTFSLst
+ SHELL "fdisk -l| grep -E \'^/dev/.* * .*(FAT16|FAT32|HPFS|NTFS|Win)\' |
cut -f 1 -d \' \'" TO sNTFSLst
sNTFSLst = Trim(sNTFSLst)
'Message(sNTFSLst)
IF sNTFSLst <> "" THEN
@@ -120,8 +121,8 @@
SHELL "mkdir /mnt" &/ sWinAddr WAIT
PRINT "mounting " & sWinAddr
SHELL "mount " & "/dev" &/ sWinAddr & Space(1) & "/mnt" &/
sWinAddr WAIT
- 'IF Exist("/mnt" &/ sWinAddr &/ "windows" &/ "system32"
&/ "winver.exe") = TRUE THEN
- IF IsDir("/mnt" &/ sWinAddr &/ "windows") = TRUE THEN
+ IF Exist("/mnt" &/ sWinAddr &/ "windows" &/ "system32"
&/ "winver.exe") OR Exist("/mnt" &/ sWinAddr &/ "winnt" &/ "system32"
&/ "winver.exe") THEN
+ 'IF IsDir("/mnt" &/ sWinAddr &/ "windows") = TRUE THEN
' this is indeed a windows installation
WITH FrmLilo.TabStrip1
Modified: branches/iVL/MdlUsrAdd.module
==============================================================================
--- branches/iVL/MdlUsrAdd.module (original)
+++ branches/iVL/MdlUsrAdd.module Wed Oct 22 11:09:53 2008
@@ -121,3 +121,24 @@
END
+PUBLIC FUNCTION CREATE_USER_ON_A_SNAP() AS Boolean
+ DIM bcont AS Boolean
+ DIM tb AS TextBox
+
+ FOR EACH tb IN FrmUserAdd.otb
+ IF tb.Text = "" THEN
+ bcont = FALSE
+ BREAK
+ ELSE
+ bcont = TRUE
+ END IF
+ NEXT
+
+ 'IF NOT bcont THEN bcont = TRUE
+ RETURN bcont
+
+ 'Message.Error("Please
+
+END
+
+
|
|
From: <cod...@go...> - 2008-10-21 21:28:16
|
Author: M0...@gm...
Date: Tue Oct 21 14:26:24 2008
New Revision: 239
Modified:
branches/iVL/.lang/#project.pot
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/.project
branches/iVL/FrmUserAdd.class
branches/iVL/installer.gambas
Log:
updated binary
Modified: branches/iVL/.lang/#project.pot
==============================================================================
--- branches/iVL/.lang/#project.pot (original)
+++ branches/iVL/.lang/#project.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/.project
+# /home/moe/projects/installer/.project
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/ClsGlobal.class
+# /home/moe/projects/installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/ClsPartSel.class
+# /home/moe/projects/installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/ClsWinDrives.class
+# /home/moe/projects/installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FMain.class
+# /home/moe/projects/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmDiskPart.class
+# /home/moe/projects/installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmPartScheme.class
+# /home/moe/projects/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmPartSel.class
+# /home/moe/projects/installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmPkgSel.class
+# /home/moe/projects/installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmSelISO.class
+# /home/moe/projects/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmSummary.class
+# /home/moe/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/FrmWinDrives.class
+# /home/moe/projects/installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlCore.module
+# /home/moe/projects/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlDiskPart.module
+# /home/moe/projects/installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlObjSizer.module
+# /home/moe/projects/installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlPartSel.module
+# /home/moe/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlPkgSel.module
+# /home/moe/projects/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlSetup.module
+# /home/moe/projects/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlSummarize.module
+# /home/moe/projects/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Tue Oct 21 14:26:24 2008
@@ -1,4 +1,4 @@
-# /home/remote/projects/installer/MdlWinDrives.module
+# /home/moe/projects/installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Tue Oct 21 14:26:24 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.111
+Version=0.0.112
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Tue Oct 21 14:26:24 2008
@@ -327,7 +327,7 @@
.bUsePic.Value = FALSE
.tbPicPath.Text = ""
.tbPicPath.Visible = FALSE
- .pbUsrPic.Picture.Clear
+ '.pbUsrPic.c
.pbUsrPic.Visible = FALSE
END WITH
FOR EACH cb IN MdlUsrAdd.objGrps
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|
|
From: <cod...@go...> - 2008-10-21 21:03:12
|
Author: M0...@gm...
Date: Tue Oct 21 14:02:28 2008
New Revision: 238
Modified:
branches/iVL/.lang/FMain.pot
branches/iVL/FMain.class
branches/iVL/FrmUserAdd.class
branches/iVL/MdlLiloOsList.module
branches/iVL/MdlUsrAdd.module
Log:
- Added a message bump to stop on root passwords not matching
- Reduced the spaced available for objects in user add window to keep
checkboxes from overlaping
the help button
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Tue Oct 21 14:02:28 2008
@@ -42,59 +42,63 @@
msgid "Skipping lilo setup"
msgstr ""
-#: FMain.class:305
+#: FMain.class:298
+msgid "Passwords do not match. Please enter the same password twice"
+msgstr ""
+
+#: FMain.class:310
msgid "You have not created any user accounts for this system yet. It is
recommended that you"
msgstr ""
-#: FMain.class:305
+#: FMain.class:310
msgid "create at least one."
msgstr ""
-#: FMain.class:305
+#: FMain.class:310
msgid "Would you like to continue anyway?"
msgstr ""
-#: FMain.class:305
+#: FMain.class:310
msgid "Yes"
msgstr ""
-#: FMain.class:305
+#: FMain.class:310
msgid "No"
msgstr ""
-#: FMain.class:324
+#: FMain.class:329
msgid "has been installed on your computer. Additional system
configuration"
msgstr ""
-#: FMain.class:324
+#: FMain.class:329
msgid "will take place after you reboot your system.Part of this process
must be done in text mode."
msgstr ""
-#: FMain.class:324
+#: FMain.class:329
msgid "Would you like to reboot your computer now?"
msgstr ""
-#: FMain.class:329
+#: FMain.class:334
msgid "The VectorLinux installer will now exit. Enjoy your new operating
system"
msgstr ""
-#: FMain.class:421
+#: FMain.class:426
msgid "Process Overview"
msgstr ""
-#: FMain.class:441
+#: FMain.class:446
msgid "Next"
msgstr ""
-#: FMain.class:447
+#: FMain.class:452
msgid "Back"
msgstr ""
-#: FMain.class:453
+#: FMain.class:458
msgid "Exit Installation"
msgstr ""
-#: FMain.class:469
+#: FMain.class:474
msgid "Button1"
msgstr ""
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Tue Oct 21 14:02:28 2008
@@ -294,6 +294,11 @@
frmNext = FrmRootPass
CASE "FrmRootPass"
+ IF FrmRootPass.tbPasswd1.Text <> FrmRootPass.tbPasswd2.Text THEN
+ Balloon.Error(("Passwords do not match. Please enter the same
password twice"), FrmRootPass.tbPasswd2)
+ FrmRootPass.tbPasswd2.SelectAll
+ RETURN
+ END IF
FrmRootPass.Button1_Click()
frmNext = FrmUserAdd
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Tue Oct 21 14:02:28 2008
@@ -225,7 +225,7 @@
icbspace = 4
FOR EACH cb IN MdlUsrAdd.objGrps
- IF icbspace >= .fGroupSel.Width * 0.75 THEN
+ IF icbspace >= .fGroupSel.Width * 0.70 THEN
icbspace = 4
icby = icby + cb.Height + 4
END IF
@@ -324,6 +324,11 @@
.tbRealname.Clear
.tbPicPath.Clear
.tbUsername.Clear
+ .bUsePic.Value = FALSE
+ .tbPicPath.Text = ""
+ .tbPicPath.Visible = FALSE
+ .pbUsrPic.Picture.Clear
+ .pbUsrPic.Visible = FALSE
END WITH
FOR EACH cb IN MdlUsrAdd.objGrps
cb.Delete
Modified: branches/iVL/MdlLiloOsList.module
==============================================================================
--- branches/iVL/MdlLiloOsList.module (original)
+++ branches/iVL/MdlLiloOsList.module Tue Oct 21 14:02:28 2008
@@ -65,7 +65,7 @@
' now populate it with the necessary stuff
tl = NEW TextLabel(FrmLilo.TabStrip1) AS "WinBanner"
WITH tl
- .text = "<b>" & ("Windows installation found
in ") & sWinPart & "</b>"
+ .text = "<b>" & ("Windows installation found
in") & Space(1) & sWinPart & "</b>"
.Move(4, 16, MdlObjSizer.get_object_width(.text)
+ 24, 27)
.Alignment = Align.Normal
.BackColor = Color.Background
@@ -120,7 +120,8 @@
SHELL "mkdir /mnt" &/ sWinAddr WAIT
PRINT "mounting " & sWinAddr
SHELL "mount " & "/dev" &/ sWinAddr & Space(1) & "/mnt" &/
sWinAddr WAIT
- IF Exist("/mnt" &/ sWinAddr &/ "windows" &/ "system32"
&/ "winver.exe") = TRUE THEN
+ 'IF Exist("/mnt" &/ sWinAddr &/ "windows" &/ "system32"
&/ "winver.exe") = TRUE THEN
+ IF IsDir("/mnt" &/ sWinAddr &/ "windows") = TRUE THEN
' this is indeed a windows installation
WITH FrmLilo.TabStrip1
@@ -131,7 +132,7 @@
tl = NEW TextLabel(FrmLilo.TabStrip1) AS "WinPartLbl"
WITH tl
.Move(4, 24)
- .text = "<b>" & ("Windows installation found
in ") & sWinPart & "</b>"
+ .text = "<b>" & ("Windows installation found
in") & Space(1) & sWinPart & "</b>"
.Height = 27
.Width = MdlObjSizer.get_object_width(.text)
.BackColor = Color.Background
Modified: branches/iVL/MdlUsrAdd.module
==============================================================================
--- branches/iVL/MdlUsrAdd.module (original)
+++ branches/iVL/MdlUsrAdd.module Tue Oct 21 14:02:28 2008
@@ -109,7 +109,7 @@
cb.Move(x, y)
x = x + 116
htotal = x
- IF htotal >= FrmUserAdd.fGroupSel.Width * 0.75 THEN
+ IF htotal >= FrmUserAdd.fGroupSel.Width * 0.70 THEN
htotal = 4
x = 4
y = y + cb.Height + 4
|
|
From: <cod...@go...> - 2008-10-20 19:25:13
|
Author: M0...@gm...
Date: Mon Oct 20 12:24:22 2008
New Revision: 237
Added:
branches/iVL/images/arrow_old.png (contents, props changed)
branches/iVL/images/check_old.png (contents, props changed)
branches/iVL/images/circle_old.png (contents, props changed)
Modified:
branches/iVL/.lang/FMain.pot
branches/iVL/FMain.class
branches/iVL/FrmCredits.class
branches/iVL/FrmUserAdd.class
branches/iVL/MdlUsrAdd.module
branches/iVL/images/arrow.png
branches/iVL/images/check.png
branches/iVL/images/circle.png
Log:
- Modified credits scroller to make the VL logo appear from underneath the
crollview
- Modified overview graphics (oMasta)
- Added question to ask whether to proceed without creating user accounts
or not
- Optimized UserAdd window for 800x600 resolution
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Mon Oct 20 12:24:22 2008
@@ -42,47 +42,59 @@
msgid "Skipping lilo setup"
msgstr ""
-#: FMain.class:314
-msgid "has been installed on your computer. Additional system
configuration"
+#: FMain.class:305
+msgid "You have not created any user accounts for this system yet. It is
recommended that you"
msgstr ""
-#: FMain.class:314
-msgid "will take place after you reboot your system.Part of this process
must be done in text mode."
+#: FMain.class:305
+msgid "create at least one."
msgstr ""
-#: FMain.class:314
-msgid "Would you like to reboot your computer now?"
+#: FMain.class:305
+msgid "Would you like to continue anyway?"
msgstr ""
-#: FMain.class:314
+#: FMain.class:305
msgid "Yes"
msgstr ""
-#: FMain.class:314
+#: FMain.class:305
msgid "No"
msgstr ""
-#: FMain.class:319
+#: FMain.class:324
+msgid "has been installed on your computer. Additional system
configuration"
+msgstr ""
+
+#: FMain.class:324
+msgid "will take place after you reboot your system.Part of this process
must be done in text mode."
+msgstr ""
+
+#: FMain.class:324
+msgid "Would you like to reboot your computer now?"
+msgstr ""
+
+#: FMain.class:329
msgid "The VectorLinux installer will now exit. Enjoy your new operating
system"
msgstr ""
-#: FMain.class:411
+#: FMain.class:421
msgid "Process Overview"
msgstr ""
-#: FMain.class:431
+#: FMain.class:441
msgid "Next"
msgstr ""
-#: FMain.class:437
+#: FMain.class:447
msgid "Back"
msgstr ""
-#: FMain.class:443
+#: FMain.class:453
msgid "Exit Installation"
msgstr ""
-#: FMain.class:459
+#: FMain.class:469
msgid "Button1"
msgstr ""
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Mon Oct 20 12:24:22 2008
@@ -299,6 +299,16 @@
CASE "FrmUserAdd"
+
+ IF MdlUsrAdd.iUsrAccts = 0 THEN
+ SELECT CASE Message.Question(("You have not created any user
accounts for this system yet. It is recommended that you") & "<br>" &
+ ("create at least one.") & "<br><br>" & ("Would you like to
continue anyway?"), ("Yes"), ("No"))
+
+ CASE 2
+ RETURN
+ END SELECT
+ END IF
+
frmNext = FrmNetConf
Modified: branches/iVL/FrmCredits.class
==============================================================================
--- branches/iVL/FrmCredits.class (original)
+++ branches/iVL/FrmCredits.class Mon Oct 20 12:24:22 2008
@@ -41,7 +41,8 @@
WITH ME
'.PictureBox1.Move(.ClientWidth / 2 - (.PictureBox1.Width / 2), 4)
.ScrollView1.Move(.ClientWidth / 2 - (.ScrollView1.Width / 2), 8)
- .PictureBox1.Move(.ScrollView1.Width / 2 - (.PictureBox1.Width / 2),
12)
+ .PictureBox1.Move(.ScrollView1.Width / 2 - (.PictureBox1.Width /
2), .ScrollView1.Height + .PictureBox1.Height)
+ .TextLabel1.Move(.ScrollView1.Width / 2 - (.TextLabel1.Width /
2), .PictureBox1.Top + .PictureBox1.Height * 2)
'.TextLabel1.Move(
'.ScrollView1.Move(.ClientWidth / 2 - (.ScrollView1.Width /
2), .PictureBox1.top + .PictureBox1.Height + 8)
.ScrollView1.Height = .ClientH - .ScrollView1.top - 12
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Mon Oct 20 12:24:22 2008
@@ -24,8 +24,9 @@
PUBLIC SUB Form_Open()
- Fmain.frmcurr = ME
+ Fmain.frmcurr = ME
+ MdlUsrAdd.iUsrAccts = 0
WITH FMain
.FrmCurr = ME
.tvPlan["Conf2"].Picture = MdlCore.sDonePic
@@ -67,6 +68,10 @@
DIM sGroups AS
String '= '"plugdev,disk,cdrom,floppy,lp,scanner,audio,video,games"
DIM cb AS CheckBox
+
+ ' increment the number of user accounts created
+ INC MdlUsrAdd.iUsrAccts
+
'Message("Ateempting to create user now")
IF ME.tbUsername.Text = "" THEN
@@ -160,15 +165,7 @@
SHELL "umount /mnt/target/tmp" WAIT
SHELL "umount /mnt/target/sys" WAIT
- ' ' ' SELECT CASE Message.Question(ClsGlobal.DISTRO & Space(1) & ("has
been installed on your computer.") & "<br>" &
- ' ' ' ("Would you like to reboot your computer now?"), ("Yes"), ("No"))
- ' ' ' CASE 1
- ' ' ' SHELL "shutdown -r now"
- ' ' ' CASE ELSE
- ' ' ' RETURN
- ' ' ' 'STOP EVENT
- ' ' ' END SELECT
-
+
END
@@ -224,19 +221,28 @@
.pbUsrPic.Move(.btBrowse.Left + .btBrowse.Width, tbUsername.top)
.btgrpHelp.Move(.fGroupSel.Width - (.btgrpHelp.Width + 4), 12)
- icby = 4
- icbspace = 24
+ icby = 16
+ icbspace = 4
FOR EACH cb IN MdlUsrAdd.objGrps
- 'icbspace = icbspace + cb.Height + 4
- IF icbspace >= .fGroupSel.Height * 0.75 THEN
- icby = icby + 128
- icbspace = 24
+ IF icbspace >= .fGroupSel.Width * 0.75 THEN
+ icbspace = 4
+ icby = icby + cb.Height + 4
END IF
- cb.Move(icby, icbspace)
- icbspace = icbspace + cb.Height + 4
- NEXT
-
+ cb.Move(icbspace, icby)
+ icbspace = icbspace + 116
+ NEXT
+ '
+ ' ' FOR EACH cb IN MdlUsrAdd.objGrps
+ ' ' 'icbspace = icbspace + cb.Height + 4
+ ' ' IF icbspace >= .fGroupSel.Height * 0.60 THEN
+ ' ' icby = icby + 128
+ ' ' icbspace = 24
+ ' ' END IF
+ ' ' cb.Move(icby, icbspace)
+ ' ' icbspace = icbspace + cb.Height + 4
+ ' ' NEXT
+ '
Modified: branches/iVL/MdlUsrAdd.module
==============================================================================
--- branches/iVL/MdlUsrAdd.module (original)
+++ branches/iVL/MdlUsrAdd.module Mon Oct 20 12:24:22 2008
@@ -14,6 +14,9 @@
' You should have received a copy of the GNU General Public License
' along with vinstall-ng. If not, see <http://www.gnu.org/licenses/>.
+
+PUBLIC iUsrAccts AS Integer
+
PUBLIC objGrps AS Object[]
PUBLIC SUB DISPLAY_USER_GROUP_OPTIONS()
@@ -75,11 +78,11 @@
bdefval = TRUE
END SELECT
'x = 4
- IF htotal > FrmUserAdd.width THEN
- x = 4
- y = y + 24
- htotal = x
- END IF
+ ' ' ' IF htotal > FrmUserAdd.fGroupSel.Width * 0.75 THEN
+ ' ' ' x = 4
+ ' ' ' y = y + 25
+ ' ' ' htotal = x
+ ' ' ' END IF
'y = 12
cb = NEW CheckBox(FrmUserAdd.fGroupSel)
WITH cb
@@ -87,10 +90,10 @@
.Value = bdefval
.Height = 21
.Width = MdlObjSizer.get_object_width(.text) + 24
- .Move(x, y)
+ '.Move(x, y)
.ToolTip = sComment
'y = y + cb.Height
- x = x + 100
+ x = x + 128
htotal = htotal + x
END WITH
objGrps.Add(cb)
@@ -98,12 +101,23 @@
NEXT
-
-END
+ ' now move the objects to their places
+ x = 4
+ htotal = 4
+ y = 16
+ FOR EACH cb IN objGrps
+ cb.Move(x, y)
+ x = x + 116
+ htotal = x
+ IF htotal >= FrmUserAdd.fGroupSel.Width * 0.75 THEN
+ htotal = 4
+ x = 4
+ y = y + cb.Height + 4
+ END IF
+ NEXT
+
+
-PUBLIC FUNCTION CREATE_NEW_ACCOUNT()
-
-
END
Modified: branches/iVL/images/arrow.png
==============================================================================
Binary files. No diff available.
Added: branches/iVL/images/arrow_old.png
==============================================================================
Binary file. No diff available.
Modified: branches/iVL/images/check.png
==============================================================================
Binary files. No diff available.
Added: branches/iVL/images/check_old.png
==============================================================================
Binary file. No diff available.
Modified: branches/iVL/images/circle.png
==============================================================================
Binary files. No diff available.
Added: branches/iVL/images/circle_old.png
==============================================================================
Binary file. No diff available.
|
|
From: <M0...@gm...> - 2008-10-17 18:53:46
|
Your friend, M0...@gm..., has sent you the following Google Gadget and included this message: See "Updates for project vinstall-ng on Google Code" on your Google homepage » |
|
From: <cod...@go...> - 2008-10-17 17:41:58
|
Author: M0...@gm...
Date: Fri Oct 17 10:40:21 2008
New Revision: 236
Modified:
branches/iVL/.lang/#project.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/en_US.po
branches/iVL/.lang/es.mo
branches/iVL/.lang/es.po
branches/iVL/.project
branches/iVL/FMain.class
branches/iVL/FrmCredits.class
branches/iVL/FrmCredits.form
branches/iVL/FrmSummary.class
branches/iVL/MdlCore.module
branches/iVL/MdlLiloOsList.module
branches/iVL/MdlNetConf.module
branches/iVL/installer.gambas
Log:
- Fixed error in path to rc.net[0-9] in Netconf modules
- Removed "Hardware Configuration" step from process overview
- Fixed problem with Sector option not being offered as a LILO target
- Added offer to reboot and re-worded message after install is complete
- Fixed problem with empty default boot option in Lilo Config
+ Added a warning before proceeding, and a balloon that indicates
where to select from.
- Fixed problem with default boot list options.
* The list was getting wiped out when the recently installed linux was
unchecked.
- Modified partition selection algorithm to keep it from re-drawing all
partition selection objets.
[This was causing a long delay from an unsuccessful attempt to
click "Next"
The delay was due to the the function being ran all over again, thus,
re-
drawing all objects all over again.]
- Updated es_ES translation
- Updated binary
Modified: branches/iVL/.lang/#project.pot
==============================================================================
--- branches/iVL/.lang/#project.pot (original)
+++ branches/iVL/.lang/#project.pot Fri Oct 17 10:40:21 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/.project
+# /home/remote/projects/installer/.project
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Fri Oct 17 10:40:21 2008
@@ -30,47 +30,59 @@
msgid "You must select a \"/\" partition. This is the target where the
system will install to"
msgstr ""
-#: FMain.class:277
+#: FMain.class:271
+msgid "Please select a default operating system to boot before proceeding"
+msgstr ""
+
+#: FMain.class:272
+msgid "Select an entry from this list"
+msgstr ""
+
+#: FMain.class:284
msgid "Skipping lilo setup"
msgstr ""
-#: FMain.class:307
-msgid "has been installed on your computer."
+#: FMain.class:314
+msgid "has been installed on your computer. Additional system
configuration"
msgstr ""
-#: FMain.class:307
-msgid "Additional system configuration will take place after you reboot
your system.Part of this process must be done in text mode."
+#: FMain.class:314
+msgid "will take place after you reboot your system.Part of this process
must be done in text mode."
msgstr ""
-#: FMain.class:307
+#: FMain.class:314
msgid "Would you like to reboot your computer now?"
msgstr ""
-#: FMain.class:307
+#: FMain.class:314
msgid "Yes"
msgstr ""
-#: FMain.class:307
+#: FMain.class:314
msgid "No"
msgstr ""
-#: FMain.class:401
+#: FMain.class:319
+msgid "The VectorLinux installer will now exit. Enjoy your new operating
system"
+msgstr ""
+
+#: FMain.class:411
msgid "Process Overview"
msgstr ""
-#: FMain.class:421
+#: FMain.class:431
msgid "Next"
msgstr ""
-#: FMain.class:427
+#: FMain.class:437
msgid "Back"
msgstr ""
-#: FMain.class:433
+#: FMain.class:443
msgid "Exit Installation"
msgstr ""
-#: FMain.class:449
+#: FMain.class:459
msgid "Button1"
msgstr ""
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Fri Oct 17 10:40:21 2008
@@ -106,7 +106,3 @@
msgid "Network Configuration"
msgstr ""
-#: MdlCore.module:463
-msgid "Hardware Configuration"
-msgstr ""
-
Modified: branches/iVL/.lang/en_US.po
==============================================================================
--- branches/iVL/.lang/en_US.po (original)
+++ branches/iVL/.lang/en_US.po Fri Oct 17 10:40:21 2008
@@ -18,19 +18,19 @@
msgid "GUI installer for Vector linux"
msgstr "GUI installer for Vector linux"
-#: FMain.class:226
+#: FMain.class:205
msgid "Please wait while setup attampts to run the partitioning utility"
msgstr "Please wait while setup attempts to run the partitioning utility"
-#: FMain.class:228
+#: FMain.class:207
msgid "Please wait while setup analyses your current partition setup."
msgstr "Please wait while setup analyses your current partition setup."
-#: FMain.class:228
+#: FMain.class:207
msgid "This may take a while ..."
msgstr "This may take a while ..."
-#: FMain.class:242
+#: FMain.class:221
msgid ""
"You must select a \"/\" partition. This is the target where the system
will "
"install to"
@@ -38,45 +38,64 @@
"You must select a \"/\" partition. This is the target where the system
will "
"install to"
-#: FMain.class:298
+#: FMain.class:271
+msgid "Please select a default operating system to boot before proceeding"
+msgstr ""
+
+#: FMain.class:272
+msgid "Select an entry from this list"
+msgstr ""
+
+#: FMain.class:284
msgid "Skipping lilo setup"
msgstr "Skipping lilo setup per user request"
-#: FMain.class:327
+#: FMain.class:314
#, fuzzy
-msgid "has been installed on your computer."
+msgid "has been installed on your computer. Additional system
configuration"
msgstr "Packages have been installed to your system. Please click"
-#: FMain.class:327
+#: FMain.class:314
+msgid ""
+"will take place after you reboot your system.Part of this process must
be "
+"done in text mode."
+msgstr ""
+
+#: FMain.class:314
msgid "Would you like to reboot your computer now?"
msgstr ""
-#: FMain.class:327
+#: FMain.class:314
msgid "Yes"
msgstr ""
-#: FMain.class:327
+#: FMain.class:314
#, fuzzy
msgid "No"
msgstr "None"
-#: FMain.class:421
+#: FMain.class:319
+msgid ""
+"The VectorLinux installer will now exit. Enjoy your new operating system"
+msgstr ""
+
+#: FMain.class:411
msgid "Process Overview"
msgstr "Process Overview"
-#: FMain.class:441
+#: FMain.class:431
msgid "Next"
msgstr "Next"
-#: FMain.class:447
+#: FMain.class:437
msgid "Back"
msgstr "Back"
-#: FMain.class:453
+#: FMain.class:443
msgid "Exit Installation"
msgstr "Exit Installation"
-#: FMain.class:469
+#: FMain.class:459
msgid "Button1"
msgstr "-"
@@ -84,28 +103,6 @@
msgid "Disk Partitioning:"
msgstr "Disk Partitioning:"
-#: FrmEmbUsrAdd.class:20 MdlCore.module:461
-msgid "User Accounts"
-msgstr "User Accounts"
-
-#: FrmEmbUsrAdd.class:23
-msgid "Create initial user accounts"
-msgstr "Create initial user accounts"
-
-#: FrmEmbUsrAdd.class:23
-msgid "Click the button below to create a new user account."
-msgstr "Click the button below to create a new user account."
-
-#: FrmEmbUsrAdd.class:23
-msgid ""
-"New user accounts can also be created after the install process is
completed."
-msgstr ""
-"New user accounts can also be created after the install process is
completed."
-
-#: FrmEmbUsrAdd.class:130
-msgid "New User Account"
-msgstr "New User Account"
-
#: FrmHostPrep.class:130
msgid "Vectorlinux is preparing your system for installation. Please wait."
msgstr "Vectorlinux is preparing your system for installation. Please
wait."
@@ -193,7 +190,7 @@
msgid "Don't Install Lilo"
msgstr "Don't Install Lilo"
-#: FrmLilo.class:207 FrmNetConf.class:139
+#: FrmLilo.class:207 FrmNetConf.class:141
msgid "Tab 0"
msgstr "-"
@@ -229,31 +226,31 @@
msgid "Boot Default"
msgstr "Boot Default"
-#: FrmNetConf.class:56
+#: FrmNetConf.class:58
msgid "Network Interfaces"
msgstr ""
-#: FrmNetConf.class:123
+#: FrmNetConf.class:125
msgid "Computer Name"
msgstr "Computer Name"
-#: FrmNetConf.class:146
+#: FrmNetConf.class:148
msgid "Manual DNS Server Specification"
msgstr "Manual DNS Server Specification"
-#: FrmNetConf.class:151
+#: FrmNetConf.class:153
msgid "Primary DNS Server"
msgstr "Primary DNS Server"
-#: FrmNetConf.class:159
+#: FrmNetConf.class:161
msgid "192.168.1.254"
msgstr "-"
-#: FrmNetConf.class:164
+#: FrmNetConf.class:166
msgid "Secondary DNS Server"
msgstr "Secondary DNS Server"
-#: FrmNetConf.class:177 MdlCore.module:462
+#: FrmNetConf.class:179 MdlCore.module:462
msgid "Network Configuration"
msgstr "Network Configuration"
@@ -538,59 +535,72 @@
msgid "Search Again"
msgstr "Search Again"
-#: FrmSummary.class:8 MdlSummarize.module:56
+#: FrmSummary.class:14 MdlCore.module:454
+msgid "Installation Summary"
+msgstr "Installation Summary"
+
+#: FrmSummary.class:16 MdlSummarize.module:56
msgid "Custom"
msgstr "Custom"
-#: FrmSummary.class:12 MdlSummarize.module:69
+#: FrmSummary.class:20 MdlSummarize.module:69
msgid "Full"
msgstr "Full"
-#: FrmSummary.class:28
+#: FrmSummary.class:37
#, fuzzy
msgid "Partition"
msgstr "Preparation"
-#: FrmSummary.class:30
-msgid "Size / GiB"
+#: FrmSummary.class:39
+msgid "Size"
msgstr ""
-#: FrmSummary.class:32
+#: FrmSummary.class:41
msgid "Filesystem"
msgstr ""
-#: FrmSummary.class:33
-#, fuzzy
-msgid "Do Not Format"
-msgstr "Do not format"
-
-#: FrmSummary.class:34
+#: FrmSummary.class:43
#, fuzzy
msgid "Mount Point"
msgstr "Do not mount"
-#: FrmSummary.class:40 MdlInstallSys.module:142 MdlPartSel.module:139
+#: FrmSummary.class:49 MdlInstallSys.module:142 MdlPartSel.module:143
msgid "Not Used"
msgstr "Not Used"
-#: FrmSummary.class:77
+#: FrmSummary.class:90 MdlNetConf.module:218
+msgid "None"
+msgstr "None"
+
+#: FrmSummary.class:112 MdlInstallSys.module:190 MdlWinDrives.module:123
+msgid "Do not mount"
+msgstr "Do not mount"
+
+#: FrmSummary.class:164
msgid "Package Name"
msgstr ""
-#: FrmSummary.class:79
-msgid "Size / KiB"
-msgstr ""
+#: FrmSummary.class:173
+#, fuzzy
+msgid "BULK PACKAGES"
+msgstr "BULK PACKAGES:"
+
+#: FrmSummary.class:190
+#, fuzzy
+msgid "USER-SELECTED PACKAGES"
+msgstr "BULK PACKAGES:"
-#: FrmSummary.class:116
+#: FrmSummary.class:243
#, fuzzy
msgid "Installation Type"
msgstr "Installation"
-#: FrmSummary.class:126
+#: FrmSummary.class:253
msgid "Partition Selection Scheme"
msgstr ""
-#: FrmSummary.class:136 MdlCore.module:451
+#: FrmSummary.class:263 MdlCore.module:451
msgid "Software Selection"
msgstr "Software Selection"
@@ -798,10 +808,6 @@
msgid "Installation"
msgstr "Installation"
-#: MdlCore.module:454
-msgid "Installation Summary"
-msgstr "Installation Summary"
-
#: MdlCore.module:456
msgid "Install Operating System"
msgstr "Install Operating System"
@@ -818,9 +824,9 @@
msgid "Regional Settings"
msgstr "Regional Settings"
-#: MdlCore.module:463
-msgid "Hardware Configuration"
-msgstr "Hardware Configuration"
+#: MdlCore.module:461
+msgid "User Accounts"
+msgstr "User Accounts"
#: MdlDiskPart.module:46
msgid ""
@@ -926,14 +932,10 @@
msgid "Writing new /etc/fstab to system"
msgstr "Writing new /etc/fstab to system"
-#: MdlInstallSys.module:167 MdlPartFrmt.module:33 MdlPartSel.module:137
+#: MdlInstallSys.module:167 MdlPartFrmt.module:33 MdlPartSel.module:141
msgid "Do not format"
msgstr "Do not format"
-#: MdlInstallSys.module:190 MdlWinDrives.module:119
-msgid "Do not mount"
-msgstr "Do not mount"
-
#: MdlInstallSys.module:361
msgid "Vectorlinux is now installed in your system. Please click"
msgstr "Vectorlinux is now installed in your system. Please click"
@@ -1069,10 +1071,6 @@
msgid "Encryption type"
msgstr "Encryption type"
-#: MdlNetConf.module:218
-msgid "None"
-msgstr "None"
-
#: MdlNetConf.module:231
msgid "Encryption key"
msgstr "Encryption Key"
@@ -1101,19 +1099,19 @@
msgid "If in doubt, choose this option"
msgstr "If in doubt, choose this option"
-#: MdlNetConf.module:340
+#: MdlNetConf.module:330
msgid "Static IP Address Settings"
msgstr ""
-#: MdlNetConf.module:362
+#: MdlNetConf.module:352
msgid "IP Address"
msgstr "IP Address"
-#: MdlNetConf.module:385
+#: MdlNetConf.module:375
msgid "Subnet Mask"
msgstr "Subnet Mask"
-#: MdlNetConf.module:407
+#: MdlNetConf.module:397
msgid "Gateway Address"
msgstr "Gateway Address"
@@ -1121,23 +1119,23 @@
msgid "There has been an error while trying to format "
msgstr ""
-#: MdlPartSel.module:67 MdlWinDrives.module:71
+#: MdlPartSel.module:71 MdlWinDrives.module:74
msgid "PARTITION"
msgstr "PARTITION"
-#: MdlPartSel.module:78
+#: MdlPartSel.module:82
msgid "MOUNT POINT"
msgstr "MOUNT POINT"
-#: MdlPartSel.module:88
+#: MdlPartSel.module:92
msgid "FILESYSTEM"
msgstr "FYLESYSTEM"
-#: MdlPartSel.module:284
+#: MdlPartSel.module:289
msgid "Please select only one "
msgstr "Please select only one "
-#: MdlPartSel.module:284
+#: MdlPartSel.module:289
msgid "partition"
msgstr ""
@@ -1223,15 +1221,15 @@
msgid "Allow user to mount / un-mount Removable HD Storage Devices"
msgstr ""
-#: MdlWinDrives.module:55
+#: MdlWinDrives.module:58
msgid "Windows Partitions Detected"
msgstr "Windows Partitions Detected"
-#: MdlWinDrives.module:81
+#: MdlWinDrives.module:84
msgid "MOUNT TO"
msgstr "MOUNT TO"
-#: MdlWinDrives.module:181
+#: MdlWinDrives.module:186
msgid "No Windows partitions detected"
msgstr "No Windows partitions detected"
@@ -1242,6 +1240,29 @@
#: MdlZoneSet.module:28
msgid "localtime"
msgstr "localtime"
+
+#~ msgid "Hardware Configuration"
+#~ msgstr "Hardware Configuration"
+
+#~ msgid "Create initial user accounts"
+#~ msgstr "Create initial user accounts"
+
+#~ msgid "Click the button below to create a new user account."
+#~ msgstr "Click the button below to create a new user account."
+
+#~ msgid ""
+#~ "New user accounts can also be created after the install process is "
+#~ "completed."
+#~ msgstr ""
+#~ "New user accounts can also be created after the install process is "
+#~ "completed."
+
+#~ msgid "New User Account"
+#~ msgstr "New User Account"
+
+#, fuzzy
+#~ msgid "Do Not Format"
+#~ msgstr "Do not format"
#~ msgid "Add Users"
#~ msgstr "Add Users"
Modified: branches/iVL/.lang/es.mo
==============================================================================
Binary files. No diff available.
Modified: branches/iVL/.lang/es.po
==============================================================================
--- branches/iVL/.lang/es.po (original)
+++ branches/iVL/.lang/es.po Fri Oct 17 10:40:21 2008
@@ -10,686 +10,605 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: .project:1
-msgid "VectorLinux Installer"
-msgstr "Instalador de VectorLinux"
+#: FrmNetConf.class:161
+msgid "192.168.1.254"
+msgstr "-"
-#: .project:2
-msgid "GUI installer for Vector linux"
-msgstr "Instaladaor Gráfico de VectorLinux"
+#: FrmPartSel.class:149
+msgid "ABOUT SYSTEM PARTITIONING IN LINUX"
+msgstr "Acerca del particionado en Linux"
-#: FMain.class:226
-msgid "Please wait while setup attampts to run the partitioning utility"
-msgstr ""
-"Por favor espere, el instalador intentará ejecutar la herramienta de "
-"particionado"
+#: FrmRootPass.class:28
+msgid "About the root account"
+msgstr "Acerca de la cuenta del usuario root"
-#: FMain.class:228
-msgid "Please wait while setup analyses your current partition setup."
-msgstr "Por favor espere mientras el instalador analiza su particonado
actual."
+#: MdlNetConf.module:250
+msgid "Access Point"
+msgstr "Punto de Accesso (Access Point)"
-#: FMain.class:228
-msgid "This may take a while ..."
-msgstr "Esto puede tardar unos minutos ..."
+#: MdlSetup.module:243
+msgid "Activating swap space"
+msgstr "Activando la partición Swap"
-#: FMain.class:242
-msgid ""
-"You must select a \"/\" partition. This is the target where the system
will "
-"install to"
-msgstr ""
-"Debes seleccionar una partición para \"/\" (raíz). Allí sera instalado
el "
-"sistema operativo"
+#: MdlLiloOsList.module:374
+msgid "Add option to boot this Operating system into Text mode"
+msgstr "Añadir una opción para arrancar este sistema operativo en modo
texto"
-#: FMain.class:298
-msgid "Skipping lilo setup"
-msgstr "Salteando configuración de LILO"
+#: MdlUsrAdd.module:71
+msgid "Allow user to mount / un-mount Pendrive (USB Sticks)"
+msgstr "Permitir al usuario montar o desmontar Pendrives (USB Sticks)"
-#: FMain.class:327
-msgid "has been installed on your computer."
-msgstr " ha sido instalado en tu computadora."
+#: MdlUsrAdd.module:74
+msgid "Allow user to mount / un-mount Removable HD Storage Devices"
+msgstr "Permitir al usuario montar o desmontar Dispositivos de
Almacenamiento Externos (HD Storage)"
-#: FMain.class:327
-msgid "Would you like to reboot your computer now?"
-msgstr "Deseas reiniciar ahora?"
+#: MdlNetConf.module:290
+msgid "Automatic settings via DHCP."
+msgstr "Configuración automática utilizando DHCP"
-#: FMain.class:327
-msgid "Yes"
-msgstr "Sí"
+#: MdlNetConf.module:166
+msgid "Automatically activate this interface at start-up"
+msgstr "Activar esta interfaz automáticamente al arrancar"
-#: FMain.class:327
-msgid "No"
-msgstr ""
+#: MdlSetup.module:227
+msgid "BROUGHT TO YOU BY"
+msgstr "Créditos "
-#: FMain.class:421
-msgid "Process Overview"
-msgstr "Resumen del proceso"
+#: FrmSummary.class:173
+msgid "BULK PACKAGES"
+msgstr "PAQUETES POR CATEGORIA"
-#: FMain.class:441
-msgid "Next"
-msgstr "Siguiente"
+#: MdlSummarize.module:58
+msgid "BULK PACKAGES:"
+msgstr "Paquetes por categoría"
-#: FMain.class:447
+#: FMain.class:437
msgid "Back"
msgstr "Regresar"
-#: FMain.class:453
-msgid "Exit Installation"
-msgstr "Cancelar Instalación"
+#: FrmLilo.class:261
+msgid "Boot Default"
+msgstr "Arranque por defecto"
-#: FMain.class:469
-msgid "Button1"
-msgstr ""
+#: MdlCore.module:458
+msgid "Boot Menu Options"
+msgstr "Opciones de arranque"
-#: FrmDiskPart.class:115
-msgid "Disk Partitioning:"
-msgstr "Particionado de disco:"
+#: MdlConfLilo.module:97
+msgid "Boot loader has been setup successfully"
+msgstr "El cargador de arranque ha sido configurado con éxito"
-#: FrmEmbUsrAdd.class:20 MdlCore.module:461
-msgid "User Accounts"
-msgstr "Usuarios"
+#: FrmLilo.class:239
+msgid "Bootsplash Extra high"
+msgstr "Resolución del arranque gráfico (bootsplash) súper alta"
-#: FrmEmbUsrAdd.class:23
-msgid "Create initial user accounts"
-msgstr "Crear la cuenta del usuario inicial"
-
-#: FrmEmbUsrAdd.class:23
-msgid "Click the button below to create a new user account."
-msgstr "Presiona el botón para crear una nueva cuenta de usuario."
-
-#: FrmEmbUsrAdd.class:23
-msgid ""
-"New user accounts can also be created after the install process is
completed."
-msgstr ""
-"Podras crear nuevas cuentas de usuario también luego del proceso de "
-"instalación."
-
-#: FrmEmbUsrAdd.class:130
-msgid "New User Account"
-msgstr "Nueva cuenta de usuario"
+#: FrmLilo.class:239
+msgid "Bootsplash High"
+msgstr "Resolución del arranque gráfico (bootsplash) alta"
-#: FrmHostPrep.class:130
-msgid "Vectorlinux is preparing your system for installation. Please wait."
-msgstr ""
-"Por favor espere mientras VectorLinux prepara su sistema para instalacion"
+#: FrmLilo.class:239
+msgid "Bootsplash Med"
+msgstr "Resolución del arranque gráfico (bootsplash) media"
-#: FrmHostPrep.class:135
-msgid "Current Status"
-msgstr "Estado Actual"
+#: MdlCore.module:361
+msgid "Build Date: "
+msgstr "Compilado el: "
-#: FrmHostPrep.class:139 FrmLilo.class:213 FrmPartScheme.class:127
-#: FrmPkgSel.class:101 FrmPkgsel2.class:86 FrmSelISO.class:247
-#: FrmSummaryOld.class:87
-msgid "TextLabel1"
+#: FMain.class:459
+msgid "Button1"
msgstr "-"
-#: FrmInstallSys.class:57 FrmInstallSysN.class:72
-msgid "Current Step"
-msgstr "Este paso"
-
-#: FrmInstallSys.class:181
-msgid "Vectorlinux is currently being installed to your system... Please
wait"
-msgstr "Por favor espere mientras VectorLinux se instala en su sistema"
-
-#: FrmInstallSys.class:194
-msgid "Total progress"
-msgstr "Progreso Total"
+#: MdlInstallCustom.module:459
+msgid "Calculating package count ... Please wait"
+msgstr "Calculando el número de paquetes ... Por favor espere"
-#: FrmInstallSys.class:204
-msgid "Installing ..."
-msgstr "Instalando..."
+#: MdlCore.module:439
+msgid "Cannot find SETUP.CONF"
+msgstr "No se pudo encontrar SETUP.CONF"
-#: FrmInstallSys.class:209
-msgid "Current Step "
-msgstr "Este paso"
+#: FrmPartSel.class:183
+msgid "Check this box if you have a Windows installation on your system or
any other windows partition (FAT, FAT32, NTFS) that you want auto-mounted
as soon as your computer starts"
+msgstr "Selecciona esta casilla si hay una instalación Windows en tu
sistema o otra partición Windows (FAT, FAT32, NTFS) que quieras montar
automáticamente al arrancar el ordenador"
-#: FrmInstallSysN.class:82
-msgid "Total Progress"
-msgstr "Progreso Total"
+#: FrmUserAdd.class:395
+msgid "Choose a unique name for each user. Enter the password for twice
for accuracy. You can make as many users as you want, and when you are
finished click next to continue."
+msgstr "Elige un nombre único para cada usuario. Es necesario ingresar las
contraseñas dos veces. Puedes crear todas las cuentas de usuarios que
desees"
-#: FrmLangSel.class:100
-msgid "Select your language"
-msgstr "Selecciona tu idioma"
+#: FrmZoneSet.class:168
+msgid "Choose how\nyour hardware clock is set up.\nChoose UTC if you know
that the clock is set up to\nthe Coordinated Universal Time (UTC/GMT).
Otherwise,\nChoose localtime since most PCs are setup this way."
+msgstr "Elige como funciona el reloj de esta máquina. Si tienes dudas
elige UTC/GMT"
-#: FrmLicense.class:99
-msgid "LICENSE AGREEMENT"
-msgstr "Aceptación de licencia"
+#: FrmZoneSet.class:156
+msgid "Choose the correct timezone for the area in which you live."
+msgstr "Selecciona la zona horaria del área donde vives"
-#: FrmLicense.class:104
-msgid "TextArea1"
-msgstr "-"
+#: FrmPkgSel.class:22
+msgid "Choose your installation mode"
+msgstr "Selecciona el modo de instalación"
-#: FrmLicense.class:110
-msgid "Yes, I Agree to the License Agreement"
-msgstr "De acuerdo"
+#: FrmPkgSel.class:60
+msgid "Choose your optional components to install."
+msgstr "Selecciona los componentes opcionales a instalar."
-#: FrmLicense.class:115
-msgid "No, I Do Not Agree"
-msgstr "No estoy de acuerdo"
+#: FrmUserAdd.class:461
+msgid "Clear Form"
+msgstr "Limpiar Formulario"
-#: FrmLilo.class:35
-msgid ""
-"The following Operating Systems have been detected on this computer.
Choose "
-"your desired option"
-msgstr ""
-"los siguientes Sistemas Operativos han sido detectados en su ordenador. "
-"Selecciona la opción deseada"
+#: FrmSelISO.class:73
+msgid "Click"
+msgstr "Haz click en"
-#: FrmLilo.class:35
-msgid ""
-"for each one of them by clicking on each tab. To proceed with the
default "
-"pre-set values, simply click"
-msgstr ""
-"para cada uno de ellos seleccionando cada pestaña. Para continuar con
los "
-"valores seleccionados por defecto simplemente haz click en "
+#: FrmZoneSet.class:161
+msgid "ComboBox1"
+msgstr "-"
-#: FrmLilo.class:132
-msgid "Standard"
-msgstr "Estandar"
+#: FrmNetConf.class:125
+msgid "Computer Name"
+msgstr "Nombre Local"
#: FrmLilo.class:196
msgid "Configure and install lilo (Linux Boot Loader)"
msgstr "Confuguración de LILO"
-#: FrmLilo.class:201
-msgid "Don't Install Lilo"
-msgstr "No quiero instalar LILO"
+#: FrmUserAdd.class:455
+msgid "Create User"
+msgstr "Agregar Usuario"
-#: FrmLilo.class:207 FrmNetConf.class:139
-msgid "Tab 0"
-msgstr "-"
+#: FrmUserAdd.class:36
+msgid "Create User Accounts"
+msgstr "Limiar cuentas de usuario"
-#: FrmLilo.class:225
-msgid "Target"
-msgstr "-"
+#: FrmHostPrep.class:135
+msgid "Current Status"
+msgstr "Estado Actual"
-#: FrmLilo.class:231
-msgid "Video Resolution"
-msgstr "Resolucion de pantalla"
+#: FrmInstallSys.class:57 FrmInstallSysN.class:72
+msgid "Current Step"
+msgstr "Este paso"
-#: FrmLilo.class:239
-msgid "Bootsplash Med"
-msgstr "Resolución del arranque gráfico (bootsplash) media"
+#: FrmInstallSys.class:209
+msgid "Current Step "
+msgstr "Este paso"
-#: FrmLilo.class:239
-msgid "Bootsplash High"
-msgstr "Resolución del arranque gráfico (bootsplash) alta"
+#: FrmSummary.class:16 MdlSummarize.module:56
+msgid "Custom"
+msgstr "Personalisado"
-#: FrmLilo.class:239
-msgid "Bootsplash Extra high"
-msgstr "Resolución del arranque gráfico (bootsplash) súper alta"
+#: FrmPkgSel.class:112
+msgid "Custom Install"
+msgstr "Instalación Personalizada"
-#: FrmLilo.class:244
-msgid "Prompt Timeout"
-msgstr "Esperar"
+#: FrmPartSel.class:184
+msgid "Detect and Setup Windows partitions for auto-mounting at boot"
+msgstr "Detectar volúmenes con sistemas Windows"
-#: FrmLilo.class:255
-msgid "Seconds"
-msgstr "Segundos"
+#: MdlCore.module:450
+msgid "Disk Partitioning"
+msgstr "Particionado de disco"
-#: FrmLilo.class:261
-msgid "Boot Default"
-msgstr "Arranque por defecto"
+#: FrmPartScheme.class:112
+msgid "Disk Partitioning Options"
+msgstr "Opciones de particionado de disco"
-#: FrmNetConf.class:56
-msgid "Network Interfaces"
-msgstr "Dispositivos de red"
+#: FrmDiskPart.class:115
+msgid "Disk Partitioning:"
+msgstr "Particionado de disco:"
-#: FrmNetConf.class:123
-msgid "Computer Name"
-msgstr "Nombre Local"
+#: MdlInstallSys.module:167 MdlPartFrmt.module:33 MdlPartSel.module:141
+msgid "Do not format"
+msgstr "No Formatear"
-#: FrmNetConf.class:146
-msgid "Manual DNS Server Specification"
-msgstr "Configuración Manual de servidores de nombres (DNS)"
+#: FrmSummary.class:112 MdlInstallSys.module:190 MdlWinDrives.module:123
+msgid "Do not mount"
+msgstr "No montar"
-#: FrmNetConf.class:151
-msgid "Primary DNS Server"
-msgstr "Servidor de nombres primario (DNS)"
+#: FrmLilo.class:201
+msgid "Don't Install Lilo"
+msgstr "No quiero instalar LILO"
-#: FrmNetConf.class:159
-msgid "192.168.1.254"
-msgstr ""
+#: MdlNetConf.module:290
+msgid "Dynamic Host Control Protocol"
+msgstr "Dynamic Host Control Protocol (DHCP)"
-#: FrmNetConf.class:164
-msgid "Secondary DNS Server"
-msgstr "Servidor de nombres (DNS) secundario"
+#: MdlUsrAdd.module:68
+msgid "Elite user"
+msgstr "Usuario Privilegiado"
-#: FrmNetConf.class:177 MdlCore.module:462
-msgid "Network Configuration"
-msgstr "Configuración de red"
+#: MdlNetConf.module:231
+msgid "Encryption key"
+msgstr "Clave encriptada"
-#: FrmPartScheme.class:61
-msgid ""
-"Select this option if you already have a linux installation that you wish
to "
-"overwrite or if a linux partition scheme exists in your hard disk."
-msgstr ""
-"Selecciona esta opción si ya dispones de una instalación de Linux que "
-"quieras sobreescribir o si las particines Linux ya existen en tu disco
duro."
+#: MdlNetConf.module:205
+msgid "Encryption type"
+msgstr "Tipo de encriptación"
-#: FrmPartScheme.class:61
-msgid "This option will overwrite any existing data in the selected
partitions"
-msgstr "Esta opción sobreescribirá los datos de las particiones
seleccionadas"
-
-#: FrmPartScheme.class:61
-msgid ""
-"Use this option if you already prepared your partitions using the "
-"VectorLinux installer"
-msgstr ""
-"Usa esta opción si ya haz preparado tus particiones utilizando el
instalador "
-"de VectorLinux"
-
-#: FrmPartScheme.class:70
-msgid ""
-"Select this option is you wish to create, more or resize partitions in
order "
-"to make room for your new VectorLinux installation."
-msgstr ""
-"Selecciona esta opción si deseas crear o redimensionar particiones para "
-"conseguir espacio para tu nueva instalación de VectorLinux."
+#: FrmRootPass.class:126 FrmUserAdd.class:475
+msgid "Enter Password"
+msgstr "Ingresa contraseña"
-#: FrmPartScheme.class:70
-msgid ""
-"This option is the safest choice if you have other existing
installations "
-"that you wish to keep."
-msgstr "Esta opción es la más segura si quieres conservar otras
instalaciones."
+#: FrmRootPass.class:34
+msgid "Enter a Password for root."
+msgstr "Ingresa una contraseña para root."
-#: FrmPartScheme.class:112
-msgid "Disk Partitioning Options"
-msgstr "Opciones de particionado de disco"
+#: FrmUserAdd.class:96
+msgid "Enter a Password."
+msgstr "Ingresa una contraseña."
-#: FrmPartScheme.class:117
-msgid "Use existing disk partitions"
-msgstr "Utilizar las particiones existentes en mi disco duro"
+#: FrmUserAdd.class:73
+msgid "Enter the login name that this user will use to login to this
system."
+msgstr "Ingresa el nombre de usuario que será utilizado para registrarse
en el sistema."
-#: FrmPartScheme.class:122
-msgid "Modify my disk partitions to make room for new installation"
-msgstr "Modificaré mi disco duro para hacer lugar para la nueva
instalación"
+#: MdlInstallSys.module:509
+msgid "Error occurred while installing"
+msgstr "Ha ocurrido un error durante la instalación"
-#: FrmPartSel.class:149
-msgid "ABOUT SYSTEM PARTITIONING IN LINUX"
-msgstr "Acerca del particionado en Linux"
+#: MdlInstallCustom.module:539
+msgid "Error while installing "
+msgstr "Error al instalar "
-#: FrmPartSel.class:149
-msgid ""
-"Linux is a modular operating system. This means that is has the ability
to "
-"store system and"
-msgstr ""
-"Linux es un sistema operativo modular. Esto significa que tiene la
capacidad "
-"de alojar el sistema y"
+#: MdlInstallCustom.module:72
+msgid "Error while installing required system software. "
+msgstr "Error al instalar el software base. "
-#: FrmPartSel.class:149
-msgid ""
-"user data separately for added data security. You may install the system
to "
-"a single partition"
-msgstr ""
-"datos del usuario separadamente para incrementar la seguridad de sus
datos. "
-"Puedes instalar el sistema en una única partición"
+#: MdlInstallCustom.module:81
+msgid "Error while installing system configuration. "
+msgstr "Error al instalar la configuración del sistema. "
-#: FrmPartSel.class:149
-msgid ""
-"by simply selecting a \"/\" value on this screen. The rest is optional.
The "
-"following is a"
-msgstr ""
-"simplemente seleccionando un valor para \"/\" en esta pantalla. El resto
es "
-"opcional. Lo siguiente es un"
+#: FMain.class:443
+msgid "Exit Installation"
+msgstr "Cancelar Instalación"
-#: FrmPartSel.class:149
-msgid "suggested setup for a typical Linux installation"
-msgstr "configuración recomendada para una instalación típica de Linux"
+#: MdlPartSel.module:92
+msgid "FILESYSTEM"
+msgstr "Sistema de archivos"
-#: FrmPartSel.class:149
-msgid ""
-"Used to store system data. This particular install requires a minimum of"
-msgstr ""
-"Utilizada para almacenar los datos del sistema. Esta instalación en "
-"particular requiere un mínimo de"
+#: MdlInstallSys.module:786
+msgid "Failed to install"
+msgstr "La instalación ha fallado"
-#: FrmPartSel.class:149
-msgid "for this"
-msgstr "para esto"
+#: FrmSummary.class:41
+msgid "Filesystem"
+msgstr "Sistema de Archivos"
-#: FrmPartSel.class:149
-msgid ""
-"but you should considear a higher value to make sure you have room to "
-"install additional software"
-msgstr ""
-"pero deberías considerar un valor más alto para asegurarte espacio para "
-"software adicional que desees instlar luego"
+#: MdlCore.module:449
+msgid "Find installation media"
+msgstr "Buscar medio de instalación"
-#: FrmPartSel.class:149
-msgid "in case you wish to."
-msgstr "en caso que lo desees."
+#: MdlInstallSys.module:630
+msgid "Finished intalling Bulks"
+msgstr "Instalación de paquetes finalizada"
-#: FrmPartSel.class:149
-msgid ""
-"Used to store user documents, pictures, videos. Give yourself as much
room "
-"as you want"
-msgstr ""
-"Utilizada para almacenar los ficheros del usuario, documentos, imágenes, "
-"videos, etc. Puedes asignar tanto espacio como desees"
+#: FrmRootPass.class:13
+msgid "For added security, use a password that is easy for you to
remember, but hard for others to guess"
+msgstr "Por motivos de seguridad, deberías utilizar una clave fácil de
recordar, pero difícil de adivinar"
-#: FrmPartSel.class:149
-msgid "Typically, you want to use the largest partition for this."
-msgstr "Normalmente querrías utilizar tu partición más grande para esto."
+#: FrmSummary.class:20 MdlSummarize.module:69
+msgid "Full"
+msgstr "Completa"
-#: FrmPartSel.class:149
-msgid ""
-"Using a swap partition is suggested if your total RAM is less than 1GB. "
-"Suggested ammount"
-msgstr ""
-"Utilizar una partición Swap es recomendado si tu cantidad de memoria RAM
es "
-"inferior a 1GB. El monto sugerido "
+#: FrmPkgSel.class:107
+msgid "Full Install"
+msgstr "Instalacion Completa"
-#: FrmPartSel.class:149
-msgid "for this is"
-msgstr "para esto es"
+#: .project:2
+msgid "GUI installer for Vector linux"
+msgstr "Instaladaor Gráfico de VectorLinux"
-#: FrmPartSel.class:149
-msgid "but can also be calculated as 2 times your ammount of RAM"
-msgstr ""
-"pero también puede ser calculada duplicando el tamaño de tu memoria RAM"
+#: MdlNetConf.module:397
+msgid "Gateway Address"
+msgstr "Dirección de Puerta de Enlace"
-#: FrmPartSel.class:174
-msgid "Please select the partitions you wish to use and how to use them"
-msgstr ""
-"For favor, seleccione las secciones del disco que desea usar, y también
como "
-"usarlas"
+#: MdlDiskPart.module:53
+msgid "Gparted was not found on this system. Please install gparted and
try again"
+msgstr "No se encontró Gparted en el sistema. Por favor, instala Gparted
y prueba de nuevo"
-#: FrmPartSel.class:183
-msgid ""
-"Check this box if you have a Windows installation on your system or any "
-"other windows partition (FAT, FAT32, NTFS) that you want auto-mounted as "
-"soon as your computer starts"
-msgstr ""
-"Selecciona esta casilla si hay una instalación Windows en tu sistema o
otra "
-"partición Windows (FAT, FAT32, NTFS) que quieras montar automáticamente
al "
-"arrancar el ordenador"
+#: FrmUserAdd.class:358
+msgid "Groups are a way of administering permissions for your users. You
grant the user"
+msgstr "Los Grupos son un método para administrar los permisos de los
usuarios. Le garantizas a cada usuario"
-#: FrmPartSel.class:184
-msgid "Detect and Setup Windows partitions for auto-mounting at boot"
-msgstr "Detectar volúmenes con sistemas Windows"
+#: MdlNetConf.module:126
+msgid "Hardware Address"
+msgstr "Dirección MAC"
#: FrmPartSel.class:189 FrmUserAdd.class:448
msgid "Help"
msgstr "Ayuda"
-#: FrmPkgSel.class:22
-msgid "Choose your installation mode"
-msgstr "Selecciona el modo de instalación"
+#: MdlSummarize.module:56
+msgid "INSTALL TYPE:"
+msgstr "Tipo de instalación:"
+
+#: MdlNetConf.module:352
+msgid "IP Address"
+msgstr "Dirección IP"
+
+#: MdlNetConf.module:290
+msgid "If in doubt, choose this option"
+msgstr "Si dudas, elige esta opción"
+
+#: MdlLiloOsList.module:95
+msgid "Include this Operating System in the boot menu"
+msgstr "Incluir este sistema operativo en el menú de arranque"
+
+#: MdlLiloOsList.module:144
+msgid "Include this installation in the boot menu"
+msgstr "Incluir esta instalación en el menú de arranque"
+
+#: MdlLiloOsList.module:286
+msgid "Include this operating system in the boot menu"
+msgstr "Incluir este sistema operativo en el menú de arranque"
+
+#: MdlLiloOsList.module:318
+msgid "Initial Ram Disk"
+msgstr "Disco Ram inicial"
+
+#: MdlCore.module:456
+msgid "Install Operating System"
+msgstr "Instalación del sistema operativo"
+
+#: MdlCore.module:453
+msgid "Installation"
+msgstr "Instalación"
+
+#: FrmSummary.class:14 MdlCore.module:454
+msgid "Installation Summary"
+msgstr "Resumen del proceso"
+
+#: FrmSummary.class:243
+msgid "Installation Type"
+msgstr "Tipo de instalación"
+
+#: MdlInstallSys.module:736
+msgid "Installation phase complete. Ready for configuration"
+msgstr "Fase de instalación completada. Vamos a por la configuración"
+
+#: MdlInstallSys.module:471
+msgid "Installing"
+msgstr "Instalando"
+
+#: FrmInstallSys.class:204
+msgid "Installing ..."
+msgstr "Instalando..."
+
+#: MdlInstallSys.module:826
+msgid "Installing Final configuration files..."
+msgstr "Instalando los últimos ficheros de configuración ..."
+
+#: MdlInstallSys.module:775
+msgid "Installing Required Package ..."
+msgstr "Instalando paquetes requeridos ..."
+
+#: MdlInstallSys.module:739
+msgid "Installing default system configuration and required software."
+msgstr "Instalando el software necesario y las configuraciones por
defecto."
+
+#: MdlInstallCustom.module:269
+msgid "Installing user-selected package"
+msgstr "Instalando paquetes selecionados por el usuario"
#: FrmPkgSel.class:51
msgid "Installs everything in your VectorLinux media to your system"
msgstr "Instalar todo lo que incluye el medio de instalación en tu disco
duro"
-#: FrmPkgSel.class:60
-msgid "Choose your optional components to install."
-msgstr "Selecciona los componentes opcionales a instalar."
+#: MdlNetConf.module:147
+msgid "Interface Type"
+msgstr "Tipo de interfaz"
-#: FrmPkgSel.class:107
-msgid "Full Install"
-msgstr "Instalacion Completa"
+#: MdlDiskPart.module:46
+msgid "It is still possible to install VectorLinux on your system, but you
need to pre-partition your disks first"
+msgstr "Es posible instalar VectorLinux entu sistema, pero derías
particionar el disco primero"
-#: FrmPkgSel.class:112
-msgid "Custom Install"
-msgstr "Instalación Personalizada"
+#: MdlLiloOsList.module:343
+msgid "Kernel boot options"
+msgstr "Opciones de arranque de kernel"
-#: FrmPkgsel2.class:21
-msgid "Select your indivirual packages to install."
-msgstr "Selecciona paquetes individuales para su instalación."
+#: FrmLicense.class:99
+msgid "LICENSE AGREEMENT"
+msgstr "Aceptación de licencia"
-#: FrmPkgsel2.class:21
-msgid "To install them all, just click next"
-msgstr "Para instalarlos todos, simplemente presiona Sigiente"
+#: MdlLiloOsList.module:153
+msgid "Label"
+msgstr "Etiqueta"
-#: FrmRootPass.class:6
-msgid "System Administrator Password"
-msgstr "Contraseña del administrador del sistema"
+#: MdlCore.module:448
+msgid "Language Selection"
+msgstr "Seleccion de idioma"
+
+#: MdlConfLilo.module:95
+msgid "Lilo returned an error. Please see below"
+msgstr "Lilo ha devuelto un error. Por favor, lee más abajo"
+
+#: FrmPartSel.class:149
+msgid "Linux is a modular operating system. This means that is has the
ability to store system and"
+msgstr "Linux es un sistema operativo modular. Esto significa que tiene la
capacidad de alojar el sistema y"
+
+#: MdlDiskPart.module:57
+msgid "Loading gparted ... Please wait"
+msgstr "Cargando Gparted ... Por favor espere"
+
+#: FrmZoneSet.class:163
+msgid "LocalTime"
+msgstr "Hora Local"
+
+#: FrmUserAdd.class:468
+msgid "Login Name"
+msgstr "Nombre de usuario"
+
+#: FrmUserAdd.class:78
+msgid "Login name field contains illegal characters. Please use only
lowercase letters and numbers"
+msgstr "Tu nombre de usuario contiene caracteres ilegales. Por favor
utiliza solo letras minúsculas y números"
+
+#: MdlCore.module:361
+msgid "MINIMUM REQUIREMENTS"
+msgstr "Requerimientos mínimos del sistema"
+
+#: MdlPartSel.module:82
+msgid "MOUNT POINT"
+msgstr "Punto de montaje"
+
+#: MdlWinDrives.module:84
+msgid "MOUNT TO"
+msgstr "Montar en"
+
+#: FrmNetConf.class:148
+msgid "Manual DNS Server Specification"
+msgstr "Configuración Manual de servidores de nombres (DNS)"
+
+#: FrmSelISO.class:133
+msgid "Minimum Disk Space Requirements"
+msgstr "Requerimientos mínimos de espacio en disco"
+
+#: FrmPartScheme.class:122
+msgid "Modify my disk partitions to make room for new installation"
+msgstr "Modificaré mi disco duro para hacer lugar para la nueva
instalación"
#: FrmRootPass.class:13
msgid "Most other every-day taks do not require administrative
priviledges."
msgstr "Las tareas diarias no requieren privilegios de administrador"
-#: FrmRootPass.class:13
-msgid ""
-"For added security, use a password that is easy for you to remember, but "
-"hard for others to guess"
-msgstr ""
-"Por motivos de seguridad, deberías utilizar una clave fácil de recordar, "
-"pero difícil de adivinar"
-
-#: FrmRootPass.class:28
-msgid "About the root account"
-msgstr "Acerca de la cuenta del usuario root"
-
-#: FrmRootPass.class:34
-msgid "Enter a Password for root."
-msgstr "Ingresa una contraseña para root."
+#: FrmSummary.class:43
+msgid "Mount Point"
+msgstr "Punto de montaje"
-#: FrmRootPass.class:48
-msgid ""
-"Passwords do not match. Please enter the same password twice for
accuracy."
-msgstr ""
-"Las contraseñas no coinciden. Por favor ingrese la misma contraseña dos "
-"veces para estar seguros de que es la que Usted verdaderamente desea."
+#: MdlLiloOsList.module:297
+msgid "Name"
+msgstr "Nombre"
-#: FrmRootPass.class:107 MdlCore.module:460
-msgid "System Administrator"
-msgstr "Administrador del sistema"
+#: MdlLiloOsList.module:76
+msgid "Name "
+msgstr "Nombre "
-#: FrmRootPass.class:120
-msgid ""
-"The linux root account is pre-assigned to be used as the system "
-"administrator's account. This account is used to perform system-wide
changes "
-"such as software upgrades, managing user accounts etc. \n"
-"\n"
-"Most other operations do not require administrative priviledges.\n"
-"The root password must be entered twice for ensured accuracy. When
choosing "
-"a root password, think of something easy for you to remember, but hard
for "
-"others to guess."
-msgstr ""
-"La cuenta root en los sistemas Linux está diseñada como la cuenta del "
-"administrador del sistema. Es utilizada para realizar tareas de "
-"mantenimiento del sistema globales, tales como actualizaciones de
software, "
-"gestionar los permisos o crear nuevos usuarios, etc. \n"
-"\n"
-"La mayoría de las otras operaciones no requieren privilegios de "
-"administrador.\n"
-"La contraseña para el usuario root deberá ser ingresada dos veces para "
-"asegurar que es la contraseña deseada. Al elegir la contraseña de "
-"administrador, piensa en algo fácil de recordar, pero al mismo tiempo "
-"difícil de adivinar para los otros. "
+#: FrmNetConf.class:179 MdlCore.module:462
+msgid "Network Configuration"
+msgstr "Configuración de red"
-#: FrmRootPass.class:126 FrmUserAdd.class:475
-msgid "Enter Password"
-msgstr "Ingresa contraseña"
+#: FrmNetConf.class:58
+msgid "Network Interfaces"
+msgstr "Dispositivos de red"
-#: FrmRootPass.class:131
-msgid "Re-Enter Password"
-msgstr "Vuelva a ingresar la contraseña"
+#: FMain.class:431
+msgid "Next"
+msgstr "Siguiente"
-#: FrmRootPass.class:148
-msgid "Set Password"
-msgstr "Define tu contraseña"
+#: FMain.class:314
+msgid "No"
+msgstr "No"
#: FrmSelISO.class:29 MdlCore.module:198
msgid "No Installable Media Found"
msgstr "No se encontró ningún medio instalable"
-#: FrmSelISO.class:73
-msgid "Click"
-msgstr "Haz click en"
-
-#: FrmSelISO.class:73
-msgid "to begin installating"
-msgstr "para comenzar la instalación"
-
-#: FrmSelISO.class:98
-msgid "Unable to identify distro."
-msgstr "No se pudo detectar la distribución."
-
-#: FrmSelISO.class:133
-msgid "Minimum Disk Space Requirements"
-msgstr "Requerimientos mínimos de espacio en disco"
+#: MdlWinDrives.module:186
+msgid "No Windows partitions detected"
+msgstr "Particiones Windows no detectadas en tu sistema"
#: FrmSelISO.class:236
msgid "No installable images found."
msgstr "No se encontró ninguna imagen que se pueda instalar"
-#: FrmSelISO.class:242
-msgid ""
-"Select which VectorLinux version you wish to install from the list below"
-msgstr "Selectiona la imagen que deseas instalar de la lista"
-
-#: FrmSelISO.class:252
-msgid "Search Again"
-msgstr "Buscar nuevamente"
+#: FrmLicense.class:115
+msgid "No, I Do Not Agree"
+msgstr "No estoy de acuerdo"
-#: FrmSummary.class:8 MdlSummarize.module:56
-msgid "Custom"
-msgstr ""
+#: FrmSummary.class:90 MdlNetConf.module:218
+msgid "None"
+msgstr "Ninguno"
-#: FrmSummary.class:12 MdlSummarize.module:69
-msgid "Full"
-msgstr "Completa"
+#: FrmSummary.class:49 MdlInstallSys.module:142 MdlPartSel.module:143
+msgid "Not Used"
+msgstr "Sin usar"
-#: FrmSummary.class:28
-msgid "Partition"
-msgstr "Partición"
+#: FrmUserAdd.class:359
+msgid "OK"
+msgstr "OK"
-#: FrmSummary.class:30
-msgid "Size / GiB"
-msgstr "Tamaño / GiB"
+#: MdlSummarize.module:62
+msgid "OPTIONAL PACKAGES:"
+msgstr "Paquetes opcionales"
-#: FrmSummary.class:32
-msgid "Filesystem"
-msgstr "Sistema de Archivos"
+#: MdlSummarize.module:49
+msgid "OPTIONAL WINDOWS PARTITIONS TO BE MOUNTED AT BOOT TIME."
+msgstr "Particiones Windows que se montarán al inicio del sistema."
-#: FrmSummary.class:33
-msgid "Do Not Format"
-msgstr "No formatear"
+#: MdlLiloOsList.module:274
+msgid "Operating system installed in "
+msgstr "Sistema operativo montado en"
-#: FrmSummary.class:34
-msgid "Mount Point"
-msgstr "Punto de montaje"
+#: MdlPartSel.module:71 MdlWinDrives.module:74
+msgid "PARTITION"
+msgstr "Partición"
-#: FrmSummary.class:40 MdlInstallSys.module:142 MdlPartSel.module:139
-msgid "Not Used"
-msgstr "Sin usar"
+#: MdlSummarize.module:28
+msgid "PARTITIONING LAYOUT"
+msgstr "Diseño del particionado"
-#: FrmSummary.class:77
+#: FrmSummary.class:164
msgid "Package Name"
msgstr "Nombre del paquete"
-#: FrmSummary.class:79
-msgid "Size / KiB"
-msgstr "Tamaño / KiB"
+#: MdlInstallSys.module:362
+msgid "Packages have been installed in your system. Please click"
+msgstr "Los paquetes han sido instalados en tu sistema. Por favor haga
click"
-#: FrmSummary.class:116
-msgid "Installation Type"
-msgstr "Tipo de instalación"
+#: FrmSummary.class:37
+msgid "Partition"
+msgstr "Partición"
-#: FrmSummary.class:126
+#: FrmSummary.class:253
msgid "Partition Selection Scheme"
msgstr "Selección del esquema de particionado"
-#: FrmSummary.class:136 MdlCore.module:451
-msgid "Software Selection"
-msgstr "Selección de software"
-
-#: FrmUserAdd.class:36
-msgid "Create User Accounts"
-msgstr "Limiar cuentas de usuario"
-
-#: FrmUserAdd.class:73
-msgid "Enter the login name that this user will use to login to this
system."
-msgstr ""
-"Ingresa el nombre de usuario que será utilizado para registrarse en el "
-"sistema."
-
-#: FrmUserAdd.class:78
-msgid ""
-"Login name field contains illegal characters. Please use only lowercase "
-"letters and numbers"
-msgstr ""
-"Tu nombre de usuario contiene caracteres ilegales. Por favor utiliza
solo "
-"letras minúsculas y números"
-
-#: FrmUserAdd.class:89
-msgid "Username contains illegal characters"
-msgstr "El nombre de usuario contiene caracteres ilegales"
-
-#: FrmUserAdd.class:92
-msgid "Username already exists"
-msgstr "El nombre de usuario ya existe"
-
-#: FrmUserAdd.class:96
-msgid "Enter a Password."
-msgstr "Ingresa una contraseña."
-
-#: FrmUserAdd.class:301
-msgid "Select picture for user Login"
-msgstr "Selecciona una imagen para el usuario"
+#: FrmRootPass.class:48
+msgid "Passwords do not match. Please enter the same password twice for
accuracy."
+msgstr "Las contraseñas no coinciden. Por favor ingrese la misma
contraseña dos veces para estar seguros de que es la que Usted
verdaderamente desea."
-#: FrmUserAdd.class:333
-msgid ""
-"Your password selections do not match. Please enter the same password
twice"
-msgstr ""
-"Sus contraseñas no coinciden. Por favor ingrese la misma contraseña dos "
-"veces."
+#: FMain.class:271
+msgid "Please select a default operating system to boot before proceeding"
+msgstr "Por favor selectione el sistema operativo que se iniciara por
defecto"
-#: FrmUserAdd.class:358
-msgid ""
-"Groups are a way of administering permissions for your users. You grant
the "
-"user"
-msgstr ""
-"Los Grupos son un método para administrar los permisos de los usuarios.
Le "
-"garantizas a cada usuario"
+#: MdlPartSel.module:289
+msgid "Please select only one "
+msgstr "Por favor, seleccione solo una"
-#: FrmUserAdd.class:358
-msgid "permission to do certain things by adding them to certain groups."
-msgstr ""
-"permisos para realizar determinadas acciones agregándolo a un grupo o a "
-"varios grupos determinados."
+#: FrmPartSel.class:174
+msgid "Please select the partitions you wish to use and how to use them"
+msgstr "For favor, seleccione las secciones del disco que desea usar, y
también como usarlas"
-#: FrmUserAdd.class:358
-msgid "Select which groups you want this user to be a part of here"
-msgstr "Selecciona los grupos de los que este usuario será parte"
+#: FMain.class:207
+msgid "Please wait while setup analyses your current partition setup."
+msgstr "Por favor espere mientras el instalador analiza su particonado
actual."
-#: FrmUserAdd.class:359
-msgid "OK"
-msgstr ""
+#: FMain.class:205
+msgid "Please wait while setup attampts to run the partitioning utility"
+msgstr "Por favor espere, el instalador intentará ejecutar la herramienta
de particionado"
-#: FrmUserAdd.class:395
-msgid ""
-"Choose a unique name for each user. Enter the password for twice for "
-"accuracy. You can make as many users as you want, and when you are
finished "
-"click next to continue."
-msgstr ""
-"Elige un nombre único para cada usuario. Es necesario ingresar las "
-"contraseñas dos veces. Puedes crear todas las cuentas de usuarios que
desees"
+#: MdlNetConf.module:105
+msgid "Plugged-in"
+msgstr "Conectado"
-#: FrmUserAdd.class:433
-msgid "Select"
-msgstr "Seleciona"
+#: MdlCore.module:447
+msgid "Preparation"
+msgstr "Preparación"
-#: FrmUserAdd.class:439
-msgid "Use Picture ID for Login greeting"
-msgstr "Utilizar una imágen para el usuario en el gestor de sesiones"
+#: MdlSetup.module:245
+msgid "Preparing filesystems"
+msgstr "Preparando sistemas de archivos"
-#: FrmUserAdd.class:444
-msgid "User Rights Management"
-msgstr "Administración de los Permisos de Usuario"
+#: FrmNetConf.class:153
+msgid "Primary DNS Server"
+msgstr "Servidor de nombres primario (DNS)"
-#: FrmUserAdd.class:455
-msgid "Create User"
-msgstr "Agregar Usuario"
+#: FMain.class:411
+msgid "Process Overview"
+msgstr "Resumen del proceso"
-#: FrmUserAdd.class:461
-msgid "Clear Form"
-msgstr "Limpiar Formulario"
+#: FrmLilo.class:244
+msgid "Prompt Timeout"
+msgstr "Esperar"
-#: FrmUserAdd.class:468
-msgid "Login Name"
-msgstr "Nombre de usuario"
+#: FrmRootPass.class:131
+msgid "Re-Enter Password"
+msgstr "Vuelva a ingresar la contraseña"
#: FrmUserAdd.class:482
msgid "ReEnter Password"
@@ -699,548 +618,467 @@
msgid "Real Name"
msgstr "Nombre Real"
-#: FrmWinDrives.class:72
-msgid "Select the windows partitions you would like to mount during boot"
-msgstr "Selecciona qué volumenes usados por Windows deseas acceder desde
Linux"
-
-#: FrmZoneSet.class:21
-msgid "Timezone configuration"
-msgstr "Configuración de la Zona Horaria"
-
-#: FrmZoneSet.class:156
-msgid "Choose the correct timezone for the area in which you live."
-msgstr "Selecciona la zona horaria del área donde vives"
-
-#: FrmZoneSet.class:161
-msgid "ComboBox1"
-msgstr "-"
-
-#: FrmZoneSet.class:163
-msgid "LocalTime"
-msgstr "Hora Local"
-
-#: FrmZoneSet.class:163
-msgid "UTC"
-msgstr "UTC"
-
-#: FrmZoneSet.class:168
-msgid ""
-"Choose how\n"
-"your hardware clock is set up.\n"
-"Choose UTC if you know that the clock is set up to\n"
-"the Coordinated Universal Time (UTC/GMT). Otherwise,\n"
-"Choose localtime since most PCs are setup this way."
-msgstr ""
-"Elige como funciona el reloj de esta máquina. Si tienes dudas elige
UTC/GMT"
+#: MdlCore.module:459
+msgid "Regional Settings"
+msgstr "Opciones de regionalización"
-#: MdlConfLilo.module:95
-msgid "Lilo returned an error. Please see below"
-msgstr "Lilo ha devuelto un error. Por favor, lee más abajo"
+#: MdlUsrAdd.module:62
+msgid "Restricted administrator (backup)"
+msgstr "Administrador de sistema con restricciones"
-#: MdlConfLilo.module:97
-msgid "Boot loader has been setup successfully"
-msgstr "El cargador de arranque ha sido configurado con éxito"
+#: MdlNetConf.module:274
+msgid "STATUS:"
+msgstr "Estado Actual:"
#: MdlCore.module:182
msgid "Scanning system for installable media. Please wait ..."
msgstr "Buscando medios de instalación en el sistema. Por favor espere ..."
-#: MdlCore.module:200
-msgid ""
-"Setup was unable to find any installable media on your system. Please
insert "
-"your VectorLinux "
-msgstr ""
-"El instalador no ha podido encontrar ningún medio instalable en tu
sistema. "
-"Por favor inserta Vectorlinux"
-
-#: MdlCore.module:200
-msgid "installation CD and click "
-msgstr "CD de instalación y haz click en"
-
-#: MdlCore.module:200
-msgid "to try again"
-msgstr "para intentarlo nuevamente"
-
-#: MdlCore.module:361
-msgid "Build Date: "
-msgstr "Compilado el: "
-
-#: MdlCore.module:361
-msgid "MINIMUM REQUIREMENTS"
-msgstr "Requerimientos mínimos del sistema"
-
-#: MdlCore.module:366
-msgid ""
-"Setup is unable to find SETUP.CONF in your install media. This could be "
-"symptoms of a bad burn or a bad ISO"
-msgstr ""
-"El instalador no puede encontrar SETUP.CONF en el medio de instalación.
Eso "
-"puede ser síntoma de una mala grabación de la ISO"
-
-#: MdlCore.module:439
-msgid "Cannot find SETUP.CONF"
-msgstr "No se pudo encontrar SETUP.CONF"
+#: FrmSelISO.class:252
+msgid "Search Again"
+msgstr "Buscar nuevamente"
-#: MdlCore.module:447
-msgid "Preparation"
-msgstr "Preparación"
+#: FrmNetConf.class:166
+msgid "Secondary DNS Server"
+msgstr "Servidor de nombres (DNS) secundario"
-#: MdlCore.module:448
-msgid "Language Selection"
-msgstr "Seleccion de idioma"
+#: FrmLilo.class:255
+msgid "Seconds"
+msgstr "Segundos"
-#: MdlCore.module:449
-msgid "Find installation media"
-msgstr "Buscar medio de instalación"
+#: FrmUserAdd.class:433
+msgid "Select"
+msgstr "Seleciona"
-#: MdlCore.module:450
-msgid "Disk Partitioning"
-msgstr "Particionado de disco"
+#: FMain.class:272
+msgid "Select an entry from this list"
+msgstr "Seleccione una de esta opciones"
-#: MdlCore.module:453
-msgid "Installation"
-msgstr "Instalación"
+#: FrmUserAdd.class:301
+msgid "Select picture for user Login"
+msgstr "Selecciona una imagen para el usuario"
-#: MdlCore.module:454
-msgid "Installation Summary"
-msgstr "Resumen del proceso"
+#: FrmWinDrives.class:72
+msgid "Select the windows partitions you would like to mount during boot"
+msgstr "Selecciona qué volumenes usados por Windows deseas acceder desde
Linux"
-#: MdlCore.module:456
-msgid "Install Operating System"
-msgstr "Instalación del sistema operativo"
+#: FrmPartScheme.class:61
+msgid "Select this option if you already have a linux installation that
you wish to overwrite or if a linux partition scheme exists in your hard
disk."
+msgstr "Selecciona esta opción si ya dispones de una instalación de Linux
que quieras sobreescribir o si las particines Linux ya existen en tu disco
duro."
-#: MdlCore.module:457
-msgid "System Configuration"
-msgstr "Configurar el sistema"
+#: FrmPartScheme.class:70
+msgid "Select this option is you wish to create, more or resize partitions
in order to make room for your new VectorLinux installation."
+msgstr "Selecciona esta opción si deseas crear o redimensionar particiones
para conseguir espacio para tu nueva instalación de VectorLinux."
-#: MdlCore.module:458
-msgid "Boot Menu Options"
-msgstr "Opciones de arranque"
+#: FrmSelISO.class:242
+msgid "Select which VectorLinux version you wish to install from the list
below"
+msgstr "Selectiona la imagen que deseas instalar de la lista"
-#: MdlCore.module:459
-msgid "Regional Settings"
-msgstr "Opciones de regionalización"
+#: FrmUserAdd.class:358
+msgid "Select which groups you want this user to be a part of here"
+msgstr "Selecciona los grupos de los que este usuario será parte"
-#: MdlCore.module:463
-msgid "Hardware Configuration"
-msgstr "Configuración de hardware"
+#: FrmPkgsel2.class:21
+msgid "Select your indivirual packages to install."
+msgstr "Selecciona paquetes individuales para su instalación."
-#: MdlDiskPart.module:46
-msgid ""
-"VectorLinux is unable to determine the type of hard disks on your system."
-msgstr ""
-"El instalador no ha podido determinar el tipo de disco duro en tu
sistema."
+#: FrmLangSel.class:100
+msgid "Select your language"
+msgstr "Selecciona tu idioma"
-#: MdlDiskPart.module:46
-msgid ""
-"It is still possible to install VectorLinux on your system, but you need
to "
-"pre-partition your disks first"
-msgstr ""
-"Es posible instalar VectorLinux entu sistema, pero derías particionar el "
-"disco primero"
+#: FrmRootPass.class:148
+msgid "Set Password"
+msgstr "Define tu contraseña"
-#: MdlDiskPart.module:53
-msgid ""
-"Gparted was not found on this system. Please install gparted and try
again"
-msgstr ""
-"No se encontró Gparted en el sistema. Por favor, instala Gparted y
prueba "
-"de nuevo"
+#: MdlNetConf.module:179
+msgid "Setup Mode"
+msgstr "Modo de configuración"
-#: MdlDiskPart.module:57
-msgid "Loading gparted ... Please wait"
-msgstr "Cargando Gparted ... Por favor espere"
+#: MdlCore.module:366
+msgid "Setup is unable to find SETUP.CONF in your install media. This
could be symptoms of a bad burn or a bad ISO"
+msgstr "El instalador no puede encontrar SETUP.CONF en el medio de
instalación. Eso puede ser síntoma de una mala grabación de la ISO"
#: MdlDiskPart.module:90
-msgid ""
-"Setup is unable to successfully run gparted on this system. This may be
a "
-"sign of "
-msgstr ""
-"El programa de instalación no pudo ejecutar Gparted en tu sistema. Esto "
-"puede ser señal de"
+msgid "Setup is unable to successfully run gparted on this system. This
may be a sign of "
+msgstr "El programa de instalación no pudo ejecutar Gparted en tu sistema.
Esto puede ser señal de"
-#: MdlDiskPart.module:90
-msgid "a bad install media. Setup cannot continue."
-msgstr ""
-"error en el medio de instalación. El programa de instalación no puede "
-"continuar."
+#: MdlCore.module:200
+msgid "Setup was unable to find any installable media on your system.
Please insert your VectorLinux "
+msgstr "El instalador no ha podido encontrar ningún medio instalable en tu
sistema. Por favor inserta Vectorlinux"
#: MdlDiskPart.module:95
msgid "Several windows found. I will take the first one!"
msgstr "Se han encontrado varios windows. Cogeré el primero!"
-#: MdlInstallCustom.module:44
-msgid "There as been an error while installing required system software. "
-msgstr "Ha ocurrido un error durante la instalación del software base. "
+#: FrmSummary.class:39
+msgid "Size"
+msgstr "Tamano"
-#: MdlInstallCustom.module:52
-msgid ""
-"There has been an err...
[truncated message content] |
|
From: <cod...@go...> - 2008-10-17 13:55:55
|
Author: M0...@gm...
Date: Fri Oct 17 06:54:46 2008
New Revision: 235
Modified:
branches/iVL/.lang/FMain.pot
branches/iVL/FMain.class
branches/iVL/FrmNetConf.class
branches/iVL/MdlConfLilo.module
branches/iVL/MdlNetConf.module
Log:
Debugging lilo setup window
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Fri Oct 17 06:54:46 2008
@@ -14,59 +14,63 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FMain.class:226
+#: FMain.class:205
msgid "Please wait while setup attampts to run the partitioning utility"
msgstr ""
-#: FMain.class:228
+#: FMain.class:207
msgid "Please wait while setup analyses your current partition setup."
msgstr ""
-#: FMain.class:228
+#: FMain.class:207
msgid "This may take a while ..."
msgstr ""
-#: FMain.class:242
+#: FMain.class:221
msgid "You must select a \"/\" partition. This is the target where the
system will install to"
msgstr ""
-#: FMain.class:298
+#: FMain.class:277
msgid "Skipping lilo setup"
msgstr ""
-#: FMain.class:327
+#: FMain.class:307
msgid "has been installed on your computer."
msgstr ""
-#: FMain.class:327
+#: FMain.class:307
+msgid "Additional system configuration will take place after you reboot
your system.Part of this process must be done in text mode."
+msgstr ""
+
+#: FMain.class:307
msgid "Would you like to reboot your computer now?"
msgstr ""
-#: FMain.class:327
+#: FMain.class:307
msgid "Yes"
msgstr ""
-#: FMain.class:327
+#: FMain.class:307
msgid "No"
msgstr ""
-#: FMain.class:421
+#: FMain.class:401
msgid "Process Overview"
msgstr ""
-#: FMain.class:441
+#: FMain.class:421
msgid "Next"
msgstr ""
-#: FMain.class:447
+#: FMain.class:427
msgid "Back"
msgstr ""
-#: FMain.class:453
+#: FMain.class:433
msgid "Exit Installation"
msgstr ""
-#: FMain.class:469
+#: FMain.class:449
msgid "Button1"
msgstr ""
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Fri Oct 17 06:54:46 2008
@@ -182,28 +182,7 @@
SELECT CASE FrmCurr.Name ' very nice navigation algoritm
- ' CASE "FrmLangSel"
- ' sLang = MdlLangSel.ID_LANG(Trim(FrmLangSel.lbLangSel.text))
- ' System.Language = sLang
- ' FMain.Close
- ' 'System.Language = sLang
- ' ''MdlCore.frmInit = FrmSelISO
- ' 'WAIT
- ' MdlCore.main
-
-
-
- ' now need to restart the application to make sure it takes effect
-
- 'SHELL Application.Args[0] & Space(1) & sLang
- 'QUIT
-
-
- ' SHELL "LC_ALL=" & sLang & Space(1) & "LANG=" & sLang & " ./" &
Application.Args[0] & Space(1) & sLang ' this will set the LANG environment
to what the user selects and restart the application.
- 'SHELL "LC_ALL=" & Application.Args[1] & Space(1) & "LANG=" &
Application.Args[1] & Space(1) & "./" & Application.Args[0] & Space(1) &
Trim(FrmLangSel.listbox1.text)
-' IF ERROR THEN Message(Error.Text & gb.NewLine & Error.where)
- 'QUIT
-
+
CASE "FrmSelISO"
sDev = Right(FrmSelISO.lstInstallableImg.Text,
Len(FrmSelISO.lstInstallableImg.Text) -
InStr(FrmSelISO.lstInstallableImg.text, "/") + 1)
@@ -324,7 +303,8 @@
'offer to reboot here
SELECT CASE Message.Question(ClsGlobal.DISTRO & Space(1) &
("has been installed on your computer.") & "<br>" &
- ("Would you like to reboot your computer now?"), ("Yes"), ("No"))
+ ("Additional system configuration will take place after you
reboot your system.Part of this process must be done in text mode.")
& "<br>" &
+ ("Would you like to reboot your computer now?"), ("Yes"),
("No"))
CASE 1
SHELL "shutdown -r now"
CASE ELSE
Modified: branches/iVL/FrmNetConf.class
==============================================================================
--- branches/iVL/FrmNetConf.class (original)
+++ branches/iVL/FrmNetConf.class Fri Oct 17 06:54:46 2008
@@ -42,7 +42,9 @@
END WITH
ME.txtHostName.text = ME.GET_CURRENT_HOST_NAME()
+
MdlNetConf.LIST_NETWORK_INTERFACES()
+ 'CATCH
cbUseManDNS.Value = FALSE
tlBanner.text = "<h3>" & tlBanner.text & "</h3>"
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Fri Oct 17 06:54:46 2008
@@ -110,6 +110,8 @@
DIM i AS Integer
DIM sTarget AS String
DIM sDump AS String
+ DIM cb AS ComboBox
+ DIM cb1 AS ComboBox
SHELL "probedisk | grep -v cdrom |cut -f 1 -d \'|\'" TO sList
sList = Trim(sList)
@@ -120,9 +122,22 @@
NEXT
WITH FrmLilo.LiloTarget
- IF LCase(ClsPartSel.fRoot) <> "xfs" THEN
- .Add("Sector")
- END IF
+ 'IF LCase(ClsPartSel.fRoot) <> "xfs" THEN
+ FOR EACH cb IN MdlPartSel.oMountPoints
+ IF cb.text = "/" THEN
+ FOR EACH cb1 IN MdlPartSel.oFsTypes
+ IF cb1.tag = cb.tag THEN
+ IF cb1.text <> "xfs" THEN .Add("Sector")
+ END IF
+ NEXT
+ END IF
+ NEXT
+
+ '.Add("Sector")
+' END IF
+
+
+
SHELL "lsdev | grep floppy" TO sDump
IF sDump <> "" THEN
.Add("Floppy")
Modified: branches/iVL/MdlNetConf.module
==============================================================================
--- branches/iVL/MdlNetConf.module (original)
+++ branches/iVL/MdlNetConf.module Fri Oct 17 06:54:46 2008
@@ -299,17 +299,7 @@
END IF
-
- ' ' ELSE
- ' tl = NEW TextLabel(FrmNetConf.TSNetDevices)
AS "tlWirelessSecType"
- ' WITH tl
- ' .Move(4, y)
- ' .text = "Security Mode"
- ' .Width = MdlObjSizer.get_object_width(.text)
- ' .Height = 21
- ' .Alignment = Align.Normal
- ' END WITH
- ' END IF
+
END WITH
@@ -468,19 +458,6 @@
END IF
-END
-
-PUBLIC SUB bEnableInterface_click()
-
- ' ' DIM fFrm AS Frame
- ' ' DIM Comb AS ComboBox
- ' ' FOR EACH fFrm IN objFrames
- ' ' IF fFrm.tag = LAST.tag THEN fFrm.Enabled = LAST.Value
- ' ' NEXT
- ' ' FOR EACH Comb IN objCombos
- ' ' IF Comb.tag = LAST.tag THEN Comb.Enabled = LAST.Value
- ' ' NEXT
- '''''' ******* Instead of that ^, this will only determing if the inet
script will be set executable or not
END
|
|
From: <cod...@go...> - 2008-10-17 13:00:36
|
Author: M0...@gm...
Date: Fri Oct 17 05:59:28 2008
New Revision: 234
Modified:
branches/iVL/images/category.png
Log:
Replaced the V logo with the correct size png
Modified: branches/iVL/images/category.png
==============================================================================
Binary files. No diff available.
|
|
From: <cod...@go...> - 2008-10-16 21:27:45
|
Author: M0...@gm...
Date: Thu Oct 16 14:26:36 2008
New Revision: 233
Added:
branches/iVL/images/category.png (contents, props changed)
Log:
Restored category.png
Added: branches/iVL/images/category.png
==============================================================================
Binary file. No diff available.
|
|
From: <cod...@go...> - 2008-10-15 22:41:51
|
Author: M0...@gm...
Date: Wed Oct 15 14:33:43 2008
New Revision: 232
Modified:
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/FrmSummary.class
branches/iVL/MdlConfLilo.module
Log:
debugging lilo.conf
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/ClsGlobal.class
+# /home/remote/projects/installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/ClsPartSel.class
+# /home/remote/projects/installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/ClsWinDrives.class
+# /home/remote/projects/installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/FMain.class
+# /home/remote/projects/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmDiskPart.class
+# /home/remote/projects/installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/FrmPartScheme.class
+# /home/remote/projects/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmPartSel.class
+# /home/remote/projects/installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmPkgSel.class
+# /home/remote/projects/installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/FrmSelISO.class
+# /home/remote/projects/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmSummary.class
+# /home/remote/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -31,7 +31,7 @@
msgstr ""
#: FrmSummary.class:39
-msgid "Size / GiB"
+msgid "Size"
msgstr ""
#: FrmSummary.class:41
@@ -46,35 +46,35 @@
msgid "Not Used"
msgstr ""
-#: FrmSummary.class:87
+#: FrmSummary.class:90
msgid "None"
msgstr ""
-#: FrmSummary.class:108
+#: FrmSummary.class:112
msgid "Do not mount"
msgstr ""
-#: FrmSummary.class:160
+#: FrmSummary.class:164
msgid "Package Name"
msgstr ""
-#: FrmSummary.class:169
+#: FrmSummary.class:173
msgid "BULK PACKAGES"
msgstr ""
-#: FrmSummary.class:186
+#: FrmSummary.class:190
msgid "USER-SELECTED PACKAGES"
msgstr ""
-#: FrmSummary.class:239
+#: FrmSummary.class:243
msgid "Installation Type"
msgstr ""
-#: FrmSummary.class:249
+#: FrmSummary.class:253
msgid "Partition Selection Scheme"
msgstr ""
-#: FrmSummary.class:259
+#: FrmSummary.class:263
msgid "Software Selection"
msgstr ""
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmWinDrives.class
+# /home/remote/projects/installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/MdlCore.module
+# /home/remote/projects/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlDiskPart.module
+# /home/remote/projects/installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlObjSizer.module
+# /home/remote/projects/installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlPartSel.module
+# /home/remote/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/MdlPkgSel.module
+# /home/remote/projects/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/MdlSetup.module
+# /home/remote/projects/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/MdlSummarize.module
+# /home/remote/projects/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Wed Oct 15 14:33:43 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlWinDrives.module
+# /home/remote/projects/installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/FrmSummary.class
==============================================================================
--- branches/iVL/FrmSummary.class (original)
+++ branches/iVL/FrmSummary.class Wed Oct 15 14:33:43 2008
@@ -36,7 +36,7 @@
ME.GridView1.Columns.count = 4
ME.GridView1.Columns[0].text = ("Partition")
ME.GridView1.Columns[0].Width =
MdlObjSizer.get_object_width("/dev/hda1***")
- ME.GridView1.Columns[1].text = ("Size / GiB")
+ ME.GridView1.Columns[1].text = ("Size")
ME.GridView1.Columns[1].Width =
MdlObjSizer.get_object_width(ME.GridView1.Columns[1].text) * 1.5
ME.GridView1.Columns[2].text = ("Filesystem")
ME.GridView1.Columns[2].Width =
MdlObjSizer.get_object_width(("Filesystem")) * 1.25
@@ -57,7 +57,7 @@
IF tl.tag = cb.tag THEN
sSize = Mid(tl.text, InStr(tl.text, "("),
Len(tl.text) - RInStr(tl.text, "("))
sSize = Trim(Replace(sSize, "(", ""))
- sSize = Replace(sSize, "GB", "")
+ 'sSize = Replace(sSize, "GB", "")
END IF
NEXT
WITH ME
@@ -71,19 +71,22 @@
NEXT
INC GridView1.Rows.Count
+ INC GridView1.Rows.Count
+ INC GridView1.Rows.Count
'INC irow
FOR EACH cb IN MdlPartSel.oSwaps
IF cb.text <> ("Not Used") THEN
- FOR EACH tl IN MdlPartSel.oTlSwapLbls
- IF tl.tag = cb.tag THEN
- sSize = Mid(tl.text, InStr(tl.text, "("), Len(tl.text) -
RInStr(tl.text, "("))
- sSize = Trim(Replace(sSize, "(", ""))
- sSize = Replace(sSize, "GB", "")
- sSize = Replace(sSize, "MB", "")
- END IF
- NEXT
+ FOR EACH tl IN MdlPartSel.oTlSwapLbls
+ IF tl.tag = cb.tag THEN
+ sSize = Mid(tl.text, InStr(tl.text, "("), Len(tl.text)
- RInStr(tl.text, "("))
+ sSize = Trim(Replace(sSize, "(", ""))
+ 'sSize = Replace(sSize, "GB", "")
+ 'sSize = Replace(sSize, "MB", "")
+ END IF
+ NEXT
+
spart = cb.Tag
- sFsType = "swap"
+ sFsType = "Swap"
sMountPnt = ("None")
WITH ME
.GridView1[irow, 0].text = sPart
@@ -96,12 +99,13 @@
.GridView1[irow, 3].BackColor = Color.LightBackground
END WITH
INC irow
+ 'INC GridView1.Rows.Count
END IF
NEXT
IF MdlWinDrives.oWMntPoints THEN
- INC GridView1.Rows.Count
+ 'INC GridView1.Rows.Count
INC GridView1.Rows.Count
FOR EACH cb IN MdlWinDrives.oWMntPoints
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Wed Oct 15 14:33:43 2008
@@ -80,7 +80,7 @@
' to make sure the new changes are written to the MBR, we need a
copy in the local running install
'File.Save("/etc/lilo.conf", sOut)
' now run lilo
-
+ File.Save("/tmp/target_lilo.conf", sOut)
END
@@ -90,7 +90,7 @@
DIM sDump AS String
- SHELL "chroot " & ClsGlobal.sTargetMnt & " /sbin/lilo || echo
\'FAILED\'" TO sDump
+ SHELL "chroot " & ClsGlobal.sTargetMnt & " /sbin/lilo -v || echo
\'FAILED\' " TO sDump
IF InStr(sDump, "FAILED") > 0 THEN
Message.Error(("Lilo returned an error. Please see below") &
gb.NewLine & sDump)
ELSE
|
|
From: <cod...@go...> - 2008-10-15 17:49:04
|
Author: M0...@gm...
Date: Wed Oct 15 10:45:40 2008
New Revision: 231
Modified:
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/DevLog
branches/iVL/FrmSummary.class
branches/iVL/FrmSummary.form
branches/iVL/FrmUserAdd.class
branches/iVL/MdlPartSel.module
branches/iVL/MdlWinDrives.module
Log:
- New Process Sumary window is complete.
- Fixed problem with user account/shell not being specified (BUG)
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Wed Oct 15 10:45:40 2008
@@ -1,4 +1,4 @@
-# /home/rbistolfi/installer/FrmSummary.class
+# /home/moe/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -14,55 +14,67 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FrmSummary.class:8
+#: FrmSummary.class:14
+msgid "Installation Summary"
+msgstr ""
+
+#: FrmSummary.class:16
msgid "Custom"
msgstr ""
-#: FrmSummary.class:12
+#: FrmSummary.class:20
msgid "Full"
msgstr ""
-#: FrmSummary.class:28
+#: FrmSummary.class:37
msgid "Partition"
msgstr ""
-#: FrmSummary.class:30
+#: FrmSummary.class:39
msgid "Size / GiB"
msgstr ""
-#: FrmSummary.class:32
+#: FrmSummary.class:41
msgid "Filesystem"
msgstr ""
-#: FrmSummary.class:33
-msgid "Do Not Format"
-msgstr ""
-
-#: FrmSummary.class:34
+#: FrmSummary.class:43
msgid "Mount Point"
msgstr ""
-#: FrmSummary.class:40
+#: FrmSummary.class:49
msgid "Not Used"
msgstr ""
-#: FrmSummary.class:77
+#: FrmSummary.class:87
+msgid "None"
+msgstr ""
+
+#: FrmSummary.class:108
+msgid "Do not mount"
+msgstr ""
+
+#: FrmSummary.class:160
msgid "Package Name"
msgstr ""
-#: FrmSummary.class:79
-msgid "Size / KiB"
+#: FrmSummary.class:169
+msgid "BULK PACKAGES"
+msgstr ""
+
+#: FrmSummary.class:186
+msgid "USER-SELECTED PACKAGES"
msgstr ""
-#: FrmSummary.class:116
+#: FrmSummary.class:239
msgid "Installation Type"
msgstr ""
-#: FrmSummary.class:126
+#: FrmSummary.class:249
msgid "Partition Selection Scheme"
msgstr ""
-#: FrmSummary.class:136
+#: FrmSummary.class:259
msgid "Software Selection"
msgstr ""
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Wed Oct 15 10:45:40 2008
@@ -14,31 +14,31 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: MdlPartSel.module:67
+#: MdlPartSel.module:71
msgid "PARTITION"
msgstr ""
-#: MdlPartSel.module:78
+#: MdlPartSel.module:82
msgid "MOUNT POINT"
msgstr ""
-#: MdlPartSel.module:88
+#: MdlPartSel.module:92
msgid "FILESYSTEM"
msgstr ""
-#: MdlPartSel.module:137
+#: MdlPartSel.module:141
msgid "Do not format"
msgstr ""
-#: MdlPartSel.module:139
+#: MdlPartSel.module:143
msgid "Not Used"
msgstr ""
-#: MdlPartSel.module:284
+#: MdlPartSel.module:289
msgid "Please select only one "
msgstr ""
-#: MdlPartSel.module:284
+#: MdlPartSel.module:289
msgid "partition"
msgstr ""
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Wed Oct 15 10:45:40 2008
@@ -14,23 +14,23 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: MdlWinDrives.module:55
+#: MdlWinDrives.module:58
msgid "Windows Partitions Detected"
msgstr ""
-#: MdlWinDrives.module:71
+#: MdlWinDrives.module:74
msgid "PARTITION"
msgstr ""
-#: MdlWinDrives.module:81
+#: MdlWinDrives.module:84
msgid "MOUNT TO"
msgstr ""
-#: MdlWinDrives.module:119
+#: MdlWinDrives.module:123
msgid "Do not mount"
msgstr ""
-#: MdlWinDrives.module:181
+#: MdlWinDrives.module:186
msgid "No Windows partitions detected"
msgstr ""
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Wed Oct 15 10:45:40 2008
@@ -1,4 +1,5 @@
-- Began working on new re-designed installation summary window
- (Not yet complete... but will be better)
+- New Process Sumary window is complete.
+- Fixed problem with user account/shell not being specified (BUG)
+
Modified: branches/iVL/FrmSummary.class
==============================================================================
--- branches/iVL/FrmSummary.class (original)
+++ branches/iVL/FrmSummary.class Wed Oct 15 10:45:40 2008
@@ -4,6 +4,14 @@
PUBLIC SUB Form_Open()
+FMain.FrmCurr = ME
+ FMain.tvPlan["Inst0"].Selected = TRUE
+ FMain.tvPlan["Prep3"].Picture = MdlCore.sDonePic
+ FMain.tvPlan["Inst0"].Picture = MdlCore.sNowPic
+ FMain.btback.Enabled = TRUE
+
+
+ ME.tlBanner.text = "<h3>" & ("Installation Summary") & "</h3>"
IF ClsPkgSel.bCustom = TRUE THEN
ME.TextBox1.text = ("Custom")
ME.Frame2.Visible = TRUE
@@ -22,6 +30,7 @@
DIM iRow AS Integer = 0
DIM cb AS ComboBox
DIM cb1 AS ComboBox
+ DIM tl AS TextLabel
DIM sPart, sMountPnt, sFsType, sSize AS String
ME.GridView1.Columns.count = 4
@@ -30,7 +39,7 @@
ME.GridView1.Columns[1].text = ("Size / GiB")
ME.GridView1.Columns[1].Width =
MdlObjSizer.get_object_width(ME.GridView1.Columns[1].text) * 1.5
ME.GridView1.Columns[2].text = ("Filesystem")
- ME.GridView1.Columns[2].Width = MdlObjSizer.get_object_width(("Do
Not Format")) * 1.5
+ ME.GridView1.Columns[2].Width =
MdlObjSizer.get_object_width(("Filesystem")) * 1.25
ME.GridView1.Columns[3].text = ("Mount Point")
'ME.GridView1.Columns[3].Width =
MdlObjSizer.get_object_width(ME.GridView1.Columns[3].text)
@@ -44,6 +53,13 @@
FOR EACH cb1 IN MdlPartSel.oFsTypes
IF cb1.tag = cb.tag THEN sFsType = cb1.Text
NEXT
+ FOR EACH tl IN MdlPartSel.oPartLbls
+ IF tl.tag = cb.tag THEN
+ sSize = Mid(tl.text, InStr(tl.text, "("),
Len(tl.text) - RInStr(tl.text, "("))
+ sSize = Trim(Replace(sSize, "(", ""))
+ sSize = Replace(sSize, "GB", "")
+ END IF
+ NEXT
WITH ME
.GridView1[irow, 0].text = sPart
.GridView1[irow, 1].text = sSize
@@ -54,7 +70,73 @@
END IF
NEXT
-
+ INC GridView1.Rows.Count
+ 'INC irow
+ FOR EACH cb IN MdlPartSel.oSwaps
+ IF cb.text <> ("Not Used") THEN
+ FOR EACH tl IN MdlPartSel.oTlSwapLbls
+ IF tl.tag = cb.tag THEN
+ sSize = Mid(tl.text, InStr(tl.text, "("), Len(tl.text) -
RInStr(tl.text, "("))
+ sSize = Trim(Replace(sSize, "(", ""))
+ sSize = Replace(sSize, "GB", "")
+ sSize = Replace(sSize, "MB", "")
+ END IF
+ NEXT
+ spart = cb.Tag
+ sFsType = "swap"
+ sMountPnt = ("None")
+ WITH ME
+ .GridView1[irow, 0].text = sPart
+ .GridView1[irow, 0].BackColor = Color.LightBackground
+ .GridView1[irow, 1].text = sSize
+ .GridView1[irow, 1].BackColor = Color.LightBackground
+ .GridView1[irow, 2].text = sFsType
+ .GridView1[irow, 2].BackColor = Color.LightBackground
+ .GridView1[irow, 3].Text = sMountPnt
+ .GridView1[irow, 3].BackColor = Color.LightBackground
+ END WITH
+ INC irow
+ END IF
+ NEXT
+
+ IF MdlWinDrives.oWMntPoints THEN
+
+ INC GridView1.Rows.Count
+ INC GridView1.Rows.Count
+
+ FOR EACH cb IN MdlWinDrives.oWMntPoints
+ IF cb.text <> ("Do not mount") THEN
+ sPart = cb.Tag
+ sMountPnt = cb.Text
+ FOR EACH tl IN MdlWinDrives.tlWnParts
+ IF tl.tag = cb.tag THEN
+ sSize = Mid(tl.text, InStr(tl.text, "["), Len(tl.text) -
RInStr(tl.text, "["))
+ sSize = Trim(Replace(sSize, "[", ""))
+ sSize = Replace(sSize, "GB", "")
+ sSize = Replace(sSize, "MB", "")
+ END IF
+
+ NEXT
+
+ 'sFsType = "Windows"
+ SHELL "l=$(probepart | grep " & cb.tag & "); echo $l | cut
-f 6,7 -d \' \'" TO sFsType
+
+ WITH ME
+ .GridView1[irow, 0].text = sPart
+ .GridView1[irow, 0].BackColor = Color.LightGray
+ .GridView1[irow, 1].BackColor = Color.LightGray
+ .GridView1[irow, 1].Text = sSize
+ .GridView1[irow, 2].BackColor = Color.LightGray
+ .GridView1[irow, 2].text = sFsType
+ .GridView1[irow, 3].text = sMountPnt
+ .GridView1[irow, 3].BackColor = Color.LightGray
+ END WITH
+ INC irow
+ END IF
+ NEXT
+
+ END IF
+
' ADD SWAP PARTITIONS HERE.
' NEED TO ADD WINDOWS PARTITIONS HERE
@@ -71,25 +153,64 @@
DIM irow AS Integer = 0
DIM sPkg, sSize AS String
DIM cb AS CheckBox
+ DIM sDesc AS String
WITH ME.GridView2
- .Columns.count = 2
+ .Columns.count = 1
.Columns[0].Title = ("Package Name")
.Columns[0].Width = MdlObjSizer.get_object_width(.Columns[0].text) *
2.5
- .Columns[1].Title = ("Size / KiB")
- .Columns[1].Width = MdlObjSizer.get_object_width(.Columns[1].Text) *
1.5
+ '.Columns[1].Title = ("Size / KiB")
+ '.Columns[1].Width = MdlObjSizer.get_object_width(.Columns[1].Text)
* 1.5
END WITH
-
+ GridView2.Rows.count = 2
+ GridView2[0, 0].BackColor = Color.SelectedBackground
+ ' GridView2[0, 1].BackColor = Color.SelectedBackground
+ GridView2[0, 0].Alignment = Align.Center
+ GridView2[0, 0].text = ("BULK PACKAGES")
+ GridView2.MoveTo(1, 0)
+ irow = 1
' add bulk packages
FOR EACH cb IN MdlPkgSel.Bulks
IF cb.Value = TRUE THEN
INC ME.GridView2.Rows.Count
- GridView2[irow, 0].text = cb.Tag
-
+ GridView2[irow, 0].text = File.BaseName(cb.Tag)
+
+ INC irow
+ END IF
+
+ NEXT
+ INC GridView2.Rows.Count
+ 'irow = irow + 1 ' move the selection to the next line
+ GridView2[irow, 0].BackColor = Color.SelectedBackground
+ GridView2[irow, 0].Alignment = Align.Center
+ GridView2[irow, 0].text = ("USER-SELECTED PACKAGES")
+ INC irow
+
+ FOR EACH cb IN MdlPkgSel.Pkgs
+ IF cb.Value = TRUE THEN
+ INC GridView2.Rows.Count
+ GridView2[irow, 0].text = File.BaseName(cb.tag)
+ 'shell "
INC irow
END IF
NEXT
-
END
+
+PUBLIC SUB Form_Resize()
+ME.lbInstallType.Alignment = Align.Normal
+ WITH ME
+ .tlBanner.Move(4, 4, .ClientWidth - (.tlBanner.left * 2))
+ .hrsep.Move(4, .tlBanner.top + .tlBanner.Height, .tlBanner.Width)
+ .lbInstallType.Move(4, .hrsep.top + .hrsep.Height + 8,
MdlObjSizer.get_object_width(.lbInstallType.text))
+ .TextBox1.Move(.lbInstallType.Left + .lbInstallType.Width +
8, .lbInstallType.top, .lbInstallType.Width)
+ .Frame1.Move(4, .TextBox1.top + .TextBox1.Height + 12, .ClientWidth
- (.Frame1.Left * 2), (.ClientHeight - .Frame1.top) / 2.5)
+ .GridView1.Move(4, 16, .Frame1.Width - (.GridView1.Left *
2), .Frame1.Height - (.GridView1.top * 2))
+ .Frame2.Move(4, .Frame1.top + .Frame1.Height + 8, .ClientWidth -
(.Frame2.Left * 2), (.ClientHeight - .Frame2.Top) - .TextBox1.Height)
+ .GridView2.Move(4, 16, .Frame2.Width - (.GridView2.Left *
2), .Frame2.Height - (.GridView2.top * 2))
+
+
+ END WITH
+
+END
Modified: branches/iVL/FrmSummary.form
==============================================================================
--- branches/iVL/FrmSummary.form (original)
+++ branches/iVL/FrmSummary.form Wed Oct 15 10:45:40 2008
@@ -4,15 +4,15 @@
MoveScaled(0,0,73,61)
Text = ("")
{ lbInstallType TextLabel
- MoveScaled(8,4,13,3)
+ MoveScaled(8,6,13,3)
Text = ("Installation Type")
}
{ TextBox1 TextBox
- MoveScaled(22,4,14,3)
+ MoveScaled(22,6,14,3)
Text = ("")
}
{ Frame1 Frame
- MoveScaled(2,8,67,19)
+ MoveScaled(2,10,67,19)
Text = ("Partition Selection Scheme")
{ GridView1 GridView
MoveScaled(1,2,65,16)
@@ -20,10 +20,17 @@
}
}
{ Frame2 Frame
- MoveScaled(2,29,67,29)
+ MoveScaled(2,31,67,29)
Text = ("Software Selection")
{ GridView2 GridView
MoveScaled(1,4,65,25)
}
+ }
+ { tlBanner TextLabel
+ MoveScaled(1,1,21,4)
+ Text = ("")
+ }
+ { hrsep Separator
+ MoveScaled(27,4,8,1)
}
}
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Wed Oct 15 10:45:40 2008
@@ -138,7 +138,7 @@
'SHELL "chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups & Space(1) &
ME.tbUsername.Text WAIT
PRINT "Creating new user account"
SHELL "chroot /mnt/target /usr/sbin/useradd -m -c " & "\'" &
ME.tbRealname.text & "\'" & " -g " & ME.tbUsername.text &
- " -p " & ME.tbPasswd1.text & " -u " & iUID & " -G " & "\'" &
sGroups & "\' " & ME.tbUsername.Text WAIT
+ " -p " & ME.tbPasswd1.text & " -u " & iUID & " -G " & "\'" &
sGroups & "\' -s /bin/bash " & ME.tbUsername.Text WAIT
' sDocmd = "useradd -m -c " & "\'" & sname & "\'" & " -g " &
slogin & " -p " & ME.txtpass1.Text &
'" -G " & "\'" & sgrparse & "\' " & slogin
Modified: branches/iVL/MdlPartSel.module
==============================================================================
--- branches/iVL/MdlPartSel.module (original)
+++ branches/iVL/MdlPartSel.module Wed Oct 15 10:45:40 2008
@@ -19,6 +19,8 @@
PUBLIC oMountPoints AS Object[]
PUBLIC oFsTypes AS Object[]
PUBLIC oSwaps AS Object[]
+PUBLIC oPartLbls AS Object[]
+PUBLIC oTlSwapLbls AS Object[]
PUBLIC SUB DISPLAY_PARTITION_OPTIONS()
@@ -48,6 +50,8 @@
oFsTypes = NEW Object[]
oMountPoints = NEW Object[]
oSwaps = NEW Object[]
+ oPartLbls = NEW Object[]
+ oTlSwapLbls = NEW Object[]
' We will mount the partitions first, and then figure out their size
SHELL " probepart | grep -e \" Linux$\" | cut -f 1 -d \' \' | grep /dev"
TO sDump1
@@ -125,7 +129,7 @@
.Alignment = Align.Normal
.y = y
END WITH
-
+ ME.oPartLbls.Add(tl)
'create the combobox
cb = NEW ComboBox(FrmPartSel.scrollPartitions)
AS "MountPoints"
WITH cb
@@ -225,6 +229,7 @@
.Alignment = Align.Normal
.tag = sSwaps[ii]
END WITH
+ oTlSwapLbls.Add(tl)
cb = NEW ComboBox(FrmPartSel.scrollPartitions)
AS "swapsel"
WITH cb
.y = y
Modified: branches/iVL/MdlWinDrives.module
==============================================================================
--- branches/iVL/MdlWinDrives.module (original)
+++ branches/iVL/MdlWinDrives.module Wed Oct 15 10:45:40 2008
@@ -19,6 +19,8 @@
PUBLIC vObj AS Object[]
PUBLIC oWMntPoints AS Object[]
+PUBLIC tlWnParts AS Object[]
+
PUBLIC SUB LIST_WIN_PARTITIONS()
DIM tl AS TextLabel
DIM cb AS ComboBox
@@ -39,6 +41,7 @@
y = 8
ME.oWMntPoints = NEW Object[]
+ME.tlWnParts = NEW Object[]
' now, do the WIN partitions
' MOVE THESE PARTITIONS TO A DIFFERENT WINDOW.
@@ -108,6 +111,7 @@
.tag = sDisks[i]
.Alignment = Align.Normal
END WITH
+ ME.tlWnParts.Add(tl)
cb = NEW ComboBox(FrmWinDrives.svWinDrives)
WITH cb
.x = cbx
@@ -150,6 +154,7 @@
.tag = wintfs[i]
.Alignment = Align.Normal
END WITH
+ ME.tlWnParts.Add(tl)
cb = NEW ComboBox(FrmWinDrives.svWinDrives)
WITH cb
.x = cbx
|
|
From: <cod...@go...> - 2008-10-14 23:49:12
|
Author: rbistolfi
Date: Tue Oct 14 16:48:37 2008
New Revision: 230
Modified:
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/en_US.po
branches/iVL/.lang/es.mo
branches/iVL/.lang/es.po
Log:
Translation update.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FMain.class
+# /home/rbistolfi/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmPartScheme.class
+# /home/rbistolfi/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmSelISO.class
+# /home/rbistolfi/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/FrmSummary.class
+# /home/rbistolfi/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlCore.module
+# /home/rbistolfi/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlPkgSel.module
+# /home/rbistolfi/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlSetup.module
+# /home/rbistolfi/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Tue Oct 14 16:48:37 2008
@@ -1,4 +1,4 @@
-# /home/moe/projects/installer/MdlSummarize.module
+# /home/rbistolfi/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/en_US.po
==============================================================================
--- branches/iVL/.lang/en_US.po (original)
+++ branches/iVL/.lang/en_US.po Tue Oct 14 16:48:37 2008
@@ -18,19 +18,19 @@
msgid "GUI installer for Vector linux"
msgstr "GUI installer for Vector linux"
-#: FMain.class:231
+#: FMain.class:226
msgid "Please wait while setup attampts to run the partitioning utility"
msgstr "Please wait while setup attempts to run the partitioning utility"
-#: FMain.class:233
+#: FMain.class:228
msgid "Please wait while setup analyses your current partition setup."
msgstr "Please wait while setup analyses your current partition setup."
-#: FMain.class:233
+#: FMain.class:228
msgid "This may take a while ..."
msgstr "This may take a while ..."
-#: FMain.class:247
+#: FMain.class:242
msgid ""
"You must select a \"/\" partition. This is the target where the system
will "
"install to"
@@ -38,27 +38,45 @@
"You must select a \"/\" partition. This is the target where the system
will "
"install to"
-#: FMain.class:303
+#: FMain.class:298
msgid "Skipping lilo setup"
msgstr "Skipping lilo setup per user request"
-#: FMain.class:409
+#: FMain.class:327
+#, fuzzy
+msgid "has been installed on your computer."
+msgstr "Packages have been installed to your system. Please click"
+
+#: FMain.class:327
+msgid "Would you like to reboot your computer now?"
+msgstr ""
+
+#: FMain.class:327
+msgid "Yes"
+msgstr ""
+
+#: FMain.class:327
+#, fuzzy
+msgid "No"
+msgstr "None"
+
+#: FMain.class:421
msgid "Process Overview"
msgstr "Process Overview"
-#: FMain.class:429
+#: FMain.class:441
msgid "Next"
msgstr "Next"
-#: FMain.class:435
+#: FMain.class:447
msgid "Back"
msgstr "Back"
-#: FMain.class:441
+#: FMain.class:453
msgid "Exit Installation"
msgstr "Exit Installation"
-#: FMain.class:457
+#: FMain.class:469
msgid "Button1"
msgstr "-"
@@ -66,7 +84,7 @@
msgid "Disk Partitioning:"
msgstr "Disk Partitioning:"
-#: FrmEmbUsrAdd.class:20 MdlCore.module:513
+#: FrmEmbUsrAdd.class:20 MdlCore.module:461
msgid "User Accounts"
msgstr "User Accounts"
@@ -96,38 +114,38 @@
msgid "Current Status"
msgstr "Current Status"
-#: FrmHostPrep.class:139 FrmLilo.class:202 FrmPartScheme.class:125
-#: FrmPkgSel.class:101 FrmPkgsel2.class:86 FrmSelISO.class:243
-#: FrmSummary.class:87
+#: FrmHostPrep.class:139 FrmLilo.class:213 FrmPartScheme.class:127
+#: FrmPkgSel.class:101 FrmPkgsel2.class:86 FrmSelISO.class:247
+#: FrmSummaryOld.class:87
msgid "TextLabel1"
msgstr "-"
-#: FrmInstallSys.class:75 FrmInstallSysN.class:72
+#: FrmInstallSys.class:57 FrmInstallSysN.class:72
msgid "Current Step"
msgstr "Current Step"
-#: FrmInstallSys.class:223
+#: FrmInstallSys.class:181
msgid "Vectorlinux is currently being installed to your system... Please
wait"
msgstr "Vectorlinux is currently being installed to your system... Please
wait"
-#: FrmInstallSys.class:240
+#: FrmInstallSys.class:194
msgid "Total progress"
msgstr "Total progress"
-#: FrmInstallSys.class:250
-msgid "Current Step "
-msgstr "Current Step "
-
-#: FrmInstallSys.class:255
+#: FrmInstallSys.class:204
msgid "Installing ..."
msgstr "Installing ..."
+#: FrmInstallSys.class:209
+msgid "Current Step "
+msgstr "Current Step "
+
#: FrmInstallSysN.class:82
#, fuzzy
msgid "Total Progress"
msgstr "Total progress"
-#: FrmLangSel.class:88
+#: FrmLangSel.class:100
msgid "Select your language"
msgstr "Select your language"
@@ -163,51 +181,51 @@
"for each one of them by clicking on each tab. To proceed with the
default "
"pre-set values, simply click"
-#: FrmLilo.class:121
+#: FrmLilo.class:132
msgid "Standard"
msgstr "Standard"
-#: FrmLilo.class:185
+#: FrmLilo.class:196
msgid "Configure and install lilo (Linux Boot Loader)"
msgstr "Configure and install lilo (Linux Boot Loader)"
-#: FrmLilo.class:190
+#: FrmLilo.class:201
msgid "Don't Install Lilo"
msgstr "Don't Install Lilo"
-#: FrmLilo.class:196 FrmNetConf.class:139
+#: FrmLilo.class:207 FrmNetConf.class:139
msgid "Tab 0"
msgstr "-"
-#: FrmLilo.class:214
+#: FrmLilo.class:225
msgid "Target"
msgstr "Target"
-#: FrmLilo.class:220
+#: FrmLilo.class:231
msgid "Video Resolution"
msgstr "Video Resolution"
-#: FrmLilo.class:228
+#: FrmLilo.class:239
msgid "Bootsplash Med"
msgstr "Bootsplash Med"
-#: FrmLilo.class:228
+#: FrmLilo.class:239
msgid "Bootsplash High"
msgstr "Bootsplash High"
-#: FrmLilo.class:228
+#: FrmLilo.class:239
msgid "Bootsplash Extra high"
msgstr "Bootsplash Extra High"
-#: FrmLilo.class:233
+#: FrmLilo.class:244
msgid "Prompt Timeout"
msgstr "Prompt Timeout"
-#: FrmLilo.class:244
+#: FrmLilo.class:255
msgid "Seconds"
msgstr "Seconds"
-#: FrmLilo.class:250
+#: FrmLilo.class:261
msgid "Boot Default"
msgstr "Boot Default"
@@ -235,11 +253,11 @@
msgid "Secondary DNS Server"
msgstr "Secondary DNS Server"
-#: FrmNetConf.class:177 MdlCore.module:514
+#: FrmNetConf.class:177 MdlCore.module:462
msgid "Network Configuration"
msgstr "Network Configuration"
-#: FrmPartScheme.class:59
+#: FrmPartScheme.class:61
msgid ""
"Select this option if you already have a linux installation that you wish
to "
"overwrite or if a linux partition scheme exists in your hard disk."
@@ -247,12 +265,12 @@
"Select this option if you already have a linux installation that you wish
to "
"overwrite or if a linux parition scheme exists in your hard disk"
-#: FrmPartScheme.class:59
+#: FrmPartScheme.class:61
msgid "This option will overwrite any existing data in the selected
partitions"
msgstr ""
"This option will overwrite any existing data in the selected partitions"
-#: FrmPartScheme.class:59
+#: FrmPartScheme.class:61
msgid ""
"Use this option if you already prepared your partitions using the "
"VectorLinux installer"
@@ -260,7 +278,7 @@
"Use this option if you already prepared your partitions using the "
"VectorLinux installer"
-#: FrmPartScheme.class:68
+#: FrmPartScheme.class:70
msgid ""
"Select this option is you wish to create, more or resize partitions in
order "
"to make room for your new VectorLinux installation."
@@ -268,7 +286,7 @@
"Select this option if you wish to create, move or resize partitions in
order "
"to make room for your new VectorLinux installation."
-#: FrmPartScheme.class:68
+#: FrmPartScheme.class:70
msgid ""
"This option is the safest choice if you have other existing
installations "
"that you wish to keep."
@@ -276,15 +294,15 @@
"This option is the safest choice if you have other existing
installations "
"that you wish to keep."
-#: FrmPartScheme.class:110
+#: FrmPartScheme.class:112
msgid "Disk Partitioning Options"
msgstr "Disk Partitioning Options"
-#: FrmPartScheme.class:115
+#: FrmPartScheme.class:117
msgid "Use existing disk partitions"
msgstr "Use existing disk partitions"
-#: FrmPartScheme.class:120
+#: FrmPartScheme.class:122
msgid "Modify my disk partitions to make room for new installation"
msgstr "Modify my disk partitions to make room for new installation"
@@ -388,7 +406,7 @@
msgid "Detect and Setup Windows partitions for auto-mounting at boot"
msgstr "Detect and Setup Windows partitions for auto-mounting at boot"
-#: FrmPartSel.class:189 FrmUserAdd.class:348
+#: FrmPartSel.class:189 FrmUserAdd.class:448
msgid "Help"
msgstr "Help"
@@ -445,12 +463,16 @@
msgid "Enter a Password for root."
msgstr "Enter Password"
-#: FrmRootPass.class:43
+#: FrmRootPass.class:48
msgid ""
"Passwords do not match. Please enter the same password twice for
accuracy."
msgstr ""
-#: FrmRootPass.class:102
+#: FrmRootPass.class:107 MdlCore.module:460
+msgid "System Administrator"
+msgstr "System Administrator"
+
+#: FrmRootPass.class:120
msgid ""
"The linux root account is pre-assigned to be used as the system "
"administrator's account. This account is used to perform system-wide
changes "
@@ -470,23 +492,19 @@
"a root password, think of something easy for you to remember, but hard
for "
"others to guess."
-#: FrmRootPass.class:108 MdlCore.module:512
-msgid "System Administrator"
-msgstr "System Administrator"
-
-#: FrmRootPass.class:117
-msgid "Set Password"
-msgstr "Set Password"
-
-#: FrmRootPass.class:134 FrmUserAdd.class:373
+#: FrmRootPass.class:126 FrmUserAdd.class:475
msgid "Enter Password"
msgstr "Enter Password"
-#: FrmRootPass.class:139
+#: FrmRootPass.class:131
msgid "Re-Enter Password"
msgstr "Re-Enter Password"
-#: FrmSelISO.class:29 MdlCore.module:250
+#: FrmRootPass.class:148
+msgid "Set Password"
+msgstr "Set Password"
+
+#: FrmSelISO.class:29 MdlCore.module:198
msgid "No Installable Media Found"
msgstr "No Installable Media Found"
@@ -506,76 +524,132 @@
msgid "Minimum Disk Space Requirements"
msgstr "Minimum Disk Space Requirements"
-#: FrmSelISO.class:232
+#: FrmSelISO.class:236
msgid "No installable images found."
msgstr "No installable images found."
-#: FrmSelISO.class:238
+#: FrmSelISO.class:242
msgid ""
"Select which VectorLinux version you wish to install from the list below"
msgstr ""
"Select which VectorLinux version you wish to install from the list below"
-#: FrmSelISO.class:248
+#: FrmSelISO.class:252
msgid "Search Again"
msgstr "Search Again"
-#: FrmUserAdd.class:32
+#: FrmSummary.class:8 MdlSummarize.module:56
+msgid "Custom"
+msgstr "Custom"
+
+#: FrmSummary.class:12 MdlSummarize.module:69
+msgid "Full"
+msgstr "Full"
+
+#: FrmSummary.class:28
+#, fuzzy
+msgid "Partition"
+msgstr "Preparation"
+
+#: FrmSummary.class:30
+msgid "Size / GiB"
+msgstr ""
+
+#: FrmSummary.class:32
+msgid "Filesystem"
+msgstr ""
+
+#: FrmSummary.class:33
+#, fuzzy
+msgid "Do Not Format"
+msgstr "Do not format"
+
+#: FrmSummary.class:34
+#, fuzzy
+msgid "Mount Point"
+msgstr "Do not mount"
+
+#: FrmSummary.class:40 MdlInstallSys.module:142 MdlPartSel.module:139
+msgid "Not Used"
+msgstr "Not Used"
+
+#: FrmSummary.class:77
+msgid "Package Name"
+msgstr ""
+
+#: FrmSummary.class:79
+msgid "Size / KiB"
+msgstr ""
+
+#: FrmSummary.class:116
+#, fuzzy
+msgid "Installation Type"
+msgstr "Installation"
+
+#: FrmSummary.class:126
+msgid "Partition Selection Scheme"
+msgstr ""
+
+#: FrmSummary.class:136 MdlCore.module:451
+msgid "Software Selection"
+msgstr "Software Selection"
+
+#: FrmUserAdd.class:36
#, fuzzy
msgid "Create User Accounts"
msgstr "User Accounts"
-#: FrmUserAdd.class:55
+#: FrmUserAdd.class:73
msgid "Enter the login name that this user will use to login to this
system."
msgstr ""
-#: FrmUserAdd.class:60
+#: FrmUserAdd.class:78
msgid ""
"Login name field contains illegal characters. Please use only lowercase "
"letters and numbers"
msgstr ""
-#: FrmUserAdd.class:71
+#: FrmUserAdd.class:89
msgid "Username contains illegal characters"
msgstr ""
-#: FrmUserAdd.class:74
+#: FrmUserAdd.class:92
msgid "Username already exists"
msgstr ""
-#: FrmUserAdd.class:78
+#: FrmUserAdd.class:96
#, fuzzy
msgid "Enter a Password."
msgstr "Enter Password"
-#: FrmUserAdd.class:205
+#: FrmUserAdd.class:301
msgid "Select picture for user Login"
msgstr ""
-#: FrmUserAdd.class:237
+#: FrmUserAdd.class:333
msgid ""
"Your password selections do not match. Please enter the same password
twice"
msgstr ""
-#: FrmUserAdd.class:262
+#: FrmUserAdd.class:358
msgid ""
"Groups are a way of administering permissions for your users. You grant
the "
"user"
msgstr ""
-#: FrmUserAdd.class:262
+#: FrmUserAdd.class:358
msgid "permission to do certain things by adding them to certain groups."
msgstr ""
-#: FrmUserAdd.class:262
+#: FrmUserAdd.class:358
msgid "Select which groups you want this user to be a part of here"
msgstr ""
-#: FrmUserAdd.class:263
+#: FrmUserAdd.class:359
msgid "OK"
msgstr ""
-#: FrmUserAdd.class:299
+#: FrmUserAdd.class:395
msgid ""
"Choose a unique name for each user. Enter the password for twice for "
"accuracy. You can make as many users as you want, and when you are
finished "
@@ -585,35 +659,35 @@
"accuracy. You can make as many users as you want, and when you are
finished "
"click next to continue."
-#: FrmUserAdd.class:326
-msgid "Use Picture ID for Login greeting"
+#: FrmUserAdd.class:433
+msgid "Select"
msgstr ""
-#: FrmUserAdd.class:338
-msgid "Select"
+#: FrmUserAdd.class:439
+msgid "Use Picture ID for Login greeting"
msgstr ""
-#: FrmUserAdd.class:344
+#: FrmUserAdd.class:444
msgid "User Rights Management"
msgstr ""
-#: FrmUserAdd.class:355
+#: FrmUserAdd.class:455
msgid "Create User"
msgstr "Create User"
-#: FrmUserAdd.class:361
+#: FrmUserAdd.class:461
msgid "Clear Form"
msgstr ""
-#: FrmUserAdd.class:367
+#: FrmUserAdd.class:468
msgid "Login Name"
msgstr ""
-#: FrmUserAdd.class:379
+#: FrmUserAdd.class:482
msgid "ReEnter Password"
msgstr "ReEnter Password"
-#: FrmUserAdd.class:399
+#: FrmUserAdd.class:503
#, fuzzy
msgid "Real Name"
msgstr "Name"
@@ -626,23 +700,23 @@
msgid "Timezone configuration"
msgstr "Timezone configuration"
-#: FrmZoneSet.class:101
+#: FrmZoneSet.class:156
msgid "Choose the correct timezone for the area in which you live."
msgstr "Choose the correct timezone for the area in which you live."
-#: FrmZoneSet.class:106
+#: FrmZoneSet.class:161
msgid "ComboBox1"
msgstr "-"
-#: FrmZoneSet.class:108
+#: FrmZoneSet.class:163
msgid "LocalTime"
msgstr "LocalTime"
-#: FrmZoneSet.class:108
+#: FrmZoneSet.class:163
msgid "UTC"
msgstr "UTC"
-#: FrmZoneSet.class:113
+#: FrmZoneSet.class:168
msgid ""
"Choose how\n"
"your hardware clock is set up.\n"
@@ -664,11 +738,11 @@
msgid "Boot loader has been setup successfully"
msgstr "Boot loader has been setup successfully"
-#: MdlCore.module:234
+#: MdlCore.module:182
msgid "Scanning system for installable media. Please wait ..."
msgstr "Scanning system for installable media. Please wait ..."
-#: MdlCore.module:252
+#: MdlCore.module:200
msgid ""
"Setup was unable to find any installable media on your system. Please
insert "
"your VectorLinux "
@@ -676,23 +750,23 @@
"Setup was unable to find any installable media on your system. Please
insert "
"your VectorLinux "
-#: MdlCore.module:252
+#: MdlCore.module:200
msgid "installation CD and click "
msgstr "installation CD and click "
-#: MdlCore.module:252
+#: MdlCore.module:200
msgid "to try again"
msgstr "to try again"
-#: MdlCore.module:413
+#: MdlCore.module:361
msgid "Build Date: "
msgstr "Build Date: "
-#: MdlCore.module:413
+#: MdlCore.module:361
msgid "MINIMUM REQUIREMENTS"
msgstr "MINIMUM REQUIREMENTS"
-#: MdlCore.module:418
+#: MdlCore.module:366
msgid ""
"Setup is unable to find SETUP.CONF in your install media. This could be "
"symptoms of a bad burn or a bad ISO"
@@ -700,55 +774,51 @@
"Setup is unable to find SETUP.CONF in your install media. This could be "
"symptoms of a bad burn or a bad ISO"
-#: MdlCore.module:491
+#: MdlCore.module:439
msgid "Cannot find SETUP.CONF"
msgstr "Cannot find SETUP.CONF"
-#: MdlCore.module:499
+#: MdlCore.module:447
msgid "Preparation"
msgstr "Preparation"
-#: MdlCore.module:500
+#: MdlCore.module:448
msgid "Language Selection"
msgstr "Language Selection"
-#: MdlCore.module:501
+#: MdlCore.module:449
msgid "Find installation media"
msgstr "Find installation media"
-#: MdlCore.module:502
+#: MdlCore.module:450
msgid "Disk Partitioning"
msgstr "Disk Partitioning"
-#: MdlCore.module:503
-msgid "Software Selection"
-msgstr "Software Selection"
-
-#: MdlCore.module:505
+#: MdlCore.module:453
msgid "Installation"
msgstr "Installation"
-#: MdlCore.module:506
+#: MdlCore.module:454
msgid "Installation Summary"
msgstr "Installation Summary"
-#: MdlCore.module:508
+#: MdlCore.module:456
msgid "Install Operating System"
msgstr "Install Operating System"
-#: MdlCore.module:509
+#: MdlCore.module:457
msgid "System Configuration"
msgstr "System Configuration"
-#: MdlCore.module:510
+#: MdlCore.module:458
msgid "Boot Menu Options"
msgstr "Boot Menu Options"
-#: MdlCore.module:511
+#: MdlCore.module:459
msgid "Regional Settings"
msgstr "Regional Settings"
-#: MdlCore.module:515
+#: MdlCore.module:463
msgid "Hardware Configuration"
msgstr "Hardware Configuration"
@@ -792,34 +862,34 @@
msgid "Several windows found. I will take the first one!"
msgstr "Several windows found. I will take the first one!"
-#: MdlInstallCustom.module:43
+#: MdlInstallCustom.module:44
msgid "There as been an error while installing required system software. "
msgstr "There as been an error while installing required system software. "
-#: MdlInstallCustom.module:51
+#: MdlInstallCustom.module:52
msgid ""
"There has been an error while installing optional software to your
system. "
msgstr ""
"There has been an error while installing optional software to your
system. "
-#: MdlInstallCustom.module:59
+#: MdlInstallCustom.module:60
msgid ""
"There has been an error while installing optional software to your
system."
msgstr ""
-#: MdlInstallCustom.module:71
+#: MdlInstallCustom.module:72
msgid "Error while installing required system software. "
msgstr "Error while installing required system software. "
-#: MdlInstallCustom.module:80
+#: MdlInstallCustom.module:81
msgid "Error while installing system configuration. "
msgstr "Error while installing system configuration. "
-#: MdlInstallCustom.module:87
+#: MdlInstallCustom.module:88
msgid "Unable to install kernels. "
msgstr "Unable to install kernels. "
-#: MdlInstallCustom.module:98
+#: MdlInstallCustom.module:99
msgid ""
"Vectorlinux is now installed in your system. Please click next to
configure "
"it."
@@ -827,7 +897,7 @@
"Vectorlinux is now installed in your system. Please click next to
configure "
"it."
-#: MdlInstallCustom.module:99
+#: MdlInstallCustom.module:100
msgid ""
"packages have been Installed. Please click next to move on to System "
"Configuration."
@@ -835,20 +905,20 @@
"packages have been Installed. Please click next to move on to System "
"Configuration."
-#: MdlInstallCustom.module:268
+#: MdlInstallCustom.module:269
#, fuzzy
msgid "Installing user-selected package"
msgstr "Installing Required Packages ..."
-#: MdlInstallCustom.module:458
+#: MdlInstallCustom.module:459
msgid "Calculating package count ... Please wait"
msgstr "Calculating package count ... Please wait"
-#: MdlInstallCustom.module:506
+#: MdlInstallCustom.module:507
msgid "Total packages to be installed = "
msgstr "Total packages to be installed = "
-#: MdlInstallCustom.module:538
+#: MdlInstallCustom.module:539
msgid "Error while installing "
msgstr "Error while installing "
@@ -856,10 +926,6 @@
msgid "Writing new /etc/fstab to system"
msgstr "Writing new /etc/fstab to system"
-#: MdlInstallSys.module:142 MdlPartSel.module:139
-msgid "Not Used"
-msgstr "Not Used"
-
#: MdlInstallSys.module:167 MdlPartFrmt.module:33 MdlPartSel.module:137
msgid "Do not format"
msgstr "Do not format"
@@ -880,90 +946,90 @@
msgid "Packages have been installed in your system. Please click"
msgstr "Packages have been installed to your system. Please click"
-#: MdlInstallSys.module:468
+#: MdlInstallSys.module:471
msgid "Installing"
msgstr "Installing"
-#: MdlInstallSys.module:506
+#: MdlInstallSys.module:509
#, fuzzy
msgid "Error occurred while installing"
msgstr "Error while installing "
-#: MdlInstallSys.module:571
+#: MdlInstallSys.module:574
msgid "Vectorlinux is now being installed. Please wait..."
msgstr "Vectorlinux is now being installed. Please wait..."
-#: MdlInstallSys.module:615
+#: MdlInstallSys.module:618
msgid "There has been an error extracting"
msgstr "There has been an error extracting"
-#: MdlInstallSys.module:627
+#: MdlInstallSys.module:630
msgid "Finished intalling Bulks"
msgstr "Finished intalling Bulks"
-#: MdlInstallSys.module:733
+#: MdlInstallSys.module:736
msgid "Installation phase complete. Ready for configuration"
msgstr "Installation phase complete. Ready for configuration"
-#: MdlInstallSys.module:736
+#: MdlInstallSys.module:739
msgid "Installing default system configuration and required software."
msgstr "Installing default system configuration and required software."
-#: MdlInstallSys.module:772
+#: MdlInstallSys.module:775
#, fuzzy
msgid "Installing Required Package ..."
msgstr "Installing Required Packages ..."
-#: MdlInstallSys.module:783
+#: MdlInstallSys.module:786
#, fuzzy
msgid "Failed to install"
msgstr "Unable to install kernels. "
-#: MdlInstallSys.module:823
+#: MdlInstallSys.module:826
msgid "Installing Final configuration files..."
msgstr "Installing final configuration files ..."
-#: MdlLiloOsList.module:67
+#: MdlLiloOsList.module:68
msgid "Windows installation found in "
msgstr "Windows installation found in "
-#: MdlLiloOsList.module:75
+#: MdlLiloOsList.module:76
msgid "Name "
msgstr "Name "
-#: MdlLiloOsList.module:94
+#: MdlLiloOsList.module:95
msgid "Include this Operating System in the boot menu"
msgstr "Include this Operating System in the boot menu"
-#: MdlLiloOsList.module:143
+#: MdlLiloOsList.module:144
msgid "Include this installation in the boot menu"
msgstr "Include this installation in the boot menu"
-#: MdlLiloOsList.module:152
+#: MdlLiloOsList.module:153
msgid "Label"
msgstr "Label"
-#: MdlLiloOsList.module:270
+#: MdlLiloOsList.module:274
msgid "Operating system installed in "
msgstr "Operating system installed in"
-#: MdlLiloOsList.module:282
+#: MdlLiloOsList.module:286
msgid "Include this operating system in the boot menu"
msgstr "Include this operating system in the boot menu"
-#: MdlLiloOsList.module:293
+#: MdlLiloOsList.module:297
msgid "Name"
msgstr "Name"
-#: MdlLiloOsList.module:314
+#: MdlLiloOsList.module:318
msgid "Initial Ram Disk"
msgstr "Initial Ram Disk"
-#: MdlLiloOsList.module:338
+#: MdlLiloOsList.module:343
msgid "Kernel boot options"
msgstr "Kernel boot options"
-#: MdlLiloOsList.module:366
+#: MdlLiloOsList.module:374
msgid "Add option to boot this Operating system into Text mode"
msgstr "Add option to boot this Operating system into Text mode"
@@ -1051,7 +1117,7 @@
msgid "Gateway Address"
msgstr "Gateway Address"
-#: MdlPartFrmt.module:121
+#: MdlPartFrmt.module:103
msgid "There has been an error while trying to format "
msgstr ""
@@ -1075,11 +1141,15 @@
msgid "partition"
msgstr ""
-#: MdlSetup.module:261
+#: MdlSetup.module:227
+msgid "BROUGHT TO YOU BY"
+msgstr ""
+
+#: MdlSetup.module:243
msgid "Activating swap space"
msgstr ""
-#: MdlSetup.module:263
+#: MdlSetup.module:245
msgid "Preparing filesystems"
msgstr ""
@@ -1091,73 +1161,65 @@
msgid "OPTIONAL WINDOWS PARTITIONS TO BE MOUNTED AT BOOT TIME."
msgstr "OPTIONAL WINDOWS PARTITIONS TO BE MOUNTED AT BOOT TIME."
-#: MdlSummarize.module:55
+#: MdlSummarize.module:56
msgid "INSTALL TYPE:"
msgstr "INSTALL TYPE:"
-#: MdlSummarize.module:55
-msgid "Custom"
-msgstr "Custom"
-
-#: MdlSummarize.module:57
+#: MdlSummarize.module:58
msgid "BULK PACKAGES:"
msgstr "BULK PACKAGES:"
-#: MdlSummarize.module:61
+#: MdlSummarize.module:62
msgid "OPTIONAL PACKAGES:"
msgstr "OPTIONAL PACKAGES:"
-#: MdlSummarize.module:67
-msgid "Full"
-msgstr "Full"
-
-#: MdlUsrAdd.module:43
+#: MdlUsrAdd.module:41
msgid "This user can access CD/DVD devices"
msgstr ""
-#: MdlUsrAdd.module:46
+#: MdlUsrAdd.module:44
msgid "This user can access floppy disks"
msgstr ""
-#: MdlUsrAdd.module:49
+#: MdlUsrAdd.module:47
msgid "This user is allowed to print"
msgstr ""
-#: MdlUsrAdd.module:52
+#: MdlUsrAdd.module:50
msgid "This user can access scanner devices"
msgstr ""
-#: MdlUsrAdd.module:55
+#: MdlUsrAdd.module:53
msgid "This user is allowed to change audio settings"
msgstr ""
-#: MdlUsrAdd.module:58
+#: MdlUsrAdd.module:56
msgid "This user is allowed to change video settings"
msgstr ""
-#: MdlUsrAdd.module:61
+#: MdlUsrAdd.module:59
msgid "This user is allowed to play restricted games"
msgstr ""
-#: MdlUsrAdd.module:64
+#: MdlUsrAdd.module:62
#, fuzzy
msgid "Restricted administrator (backup)"
msgstr "System Administrator"
-#: MdlUsrAdd.module:67
+#: MdlUsrAdd.module:65
#, fuzzy
msgid "This user is a system administrator"
msgstr "System Administrator"
-#: MdlUsrAdd.module:70
+#: MdlUsrAdd.module:68
msgid "Elite user"
msgstr ""
-#: MdlUsrAdd.module:73
+#: MdlUsrAdd.module:71
msgid "Allow user to mount / un-mount Pendrive (USB Sticks)"
msgstr ""
-#: MdlUsrAdd.module:76
+#: MdlUsrAdd.module:74
msgid "Allow user to mount / un-mount Removable HD Storage Devices"
msgstr ""
Modified: branches/iVL/.lang/es.mo
==============================================================================
Binary files. No diff available.
Modified: branches/iVL/.lang/es.po
==============================================================================
--- branches/iVL/.lang/es.po (original)
+++ branches/iVL/.lang/es.po Tue Oct 14 16:48:37 2008
@@ -10,1023 +10,1237 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FrmNetConf.class:159
-msgid "192.168.1.254"
-msgstr ""
+#: .project:1
+msgid "VectorLinux Installer"
+msgstr "Instalador de VectorLinux"
-#: FrmPartSel.class:149
-msgid "ABOUT SYSTEM PARTITIONING IN LINUX"
-msgstr "Acerca del particionado en Linux"
+#: .project:2
+msgid "GUI installer for Vector linux"
+msgstr "Instaladaor Gráfico de VectorLinux"
-#: FrmRootPass.class:28
-msgid "About the root account"
-msgstr "Acerca de la cuenta del usuario root"
+#: FMain.class:226
+msgid "Please wait while setup attampts to run the partitioning utility"
+msgstr ""
+"Por favor espere, el instalador intentará ejecutar la herramienta de "
+"particionado"
-#: MdlNetConf.module:250
-msgid "Access Point"
-msgstr "Punto de Accesso (Access Point)"
+#: FMain.class:228
+msgid "Please wait while setup analyses your current partition setup."
+msgstr "Por favor espere mientras el instalador analiza su particonado
actual."
-#: MdlSetup.module:261
-msgid "Activating swap space"
-msgstr "Activando la partición Swap"
+#: FMain.class:228
+msgid "This may take a while ..."
+msgstr "Esto puede tardar unos minutos ..."
-#: MdlLiloOsList.module:366
-msgid "Add option to boot this Operating system into Text mode"
-msgstr "Añadir una opción para arrancar este sistema operativo en modo
texto"
+#: FMain.class:242
+msgid ""
+"You must select a \"/\" partition. This is the target where the system
will "
+"install to"
+msgstr ""
+"Debes seleccionar una partición para \"/\" (raíz). Allí sera instalado
el "
+"sistema operativo"
-#: MdlUsrAdd.module:73
-msgid "Allow user to mount / un-mount Pendrive (USB Sticks)"
-msgstr "Permitir al usuario montar o desmontar Pendrives (USB Sticks)"
+#: FMain.class:298
+msgid "Skipping lilo setup"
+msgstr "Salteando configuración de LILO"
-#: MdlUsrAdd.module:76
-msgid "Allow user to mount / un-mount Removable HD Storage Devices"
-msgstr "Permitir al usuario montar o desmontar Dispositivos de
Almacenamiento Externos (HD Storage)"
+#: FMain.class:327
+msgid "has been installed on your computer."
+msgstr " ha sido instalado en tu computadora."
+
+#: FMain.class:327
+msgid "Would you like to reboot your computer now?"
+msgstr "Deseas reiniciar ahora?"
+
+#: FMain.class:327
+msgid "Yes"
+msgstr "Sí"
-#: MdlNetConf.module:290
-msgid "Automatic settings via DHCP."
-msgstr "Configuración automática utilizando DHCP"
+#: FMain.class:327
+msgid "No"
+msgstr ""
-#: MdlNetConf.module:166
-msgid "Automatically activate this interface at start-up"
-msgstr "Activar esta interfaz automáticamente al arrancar"
+#: FMain.class:421
+msgid "Process Overview"
+msgstr "Resumen del proceso"
-#: MdlSummarize.module:57
-msgid "BULK PACKAGES:"
-msgstr "Paquetes por categoría"
+#: FMain.class:441
+msgid "Next"
+msgstr "Siguiente"
-#: FMain.class:435
+#: FMain.class:447
msgid "Back"
msgstr "Regresar"
-#: FrmLilo.class:250
-msgid "Boot Default"
-msgstr "Arranque por defecto"
-
-#: MdlCore.module:510
-msgid "Boot Menu Options"
-msgstr "Opciones de arranque"
-
-#: MdlConfLilo.module:97
-msgid "Boot loader has been setup successfully"
-msgstr "El cargador de arranque ha sido configurado con éxito"
-
-#: FrmLilo.class:228
-msgid "Bootsplash Extra high"
-msgstr "Resolución del arranque gráfico (bootsplash) súper alta"
-
-#: FrmLilo.class:228
-msgid "Bootsplash High"
-msgstr "Resolución del arranque gráfico (bootsplash) alta"
-
-#: FrmLilo.class:228
-msgid "Bootsplash Med"
-msgstr "Resolución del arranque gráfico (bootsplash) media"
-
-#: MdlCore.module:413
-msgid "Build Date: "
-msgstr "Compilado el: "
+#: FMain.class:453
+msgid "Exit Installation"
+msgstr "Cancelar Instalación"
-#: FMain.class:457
+#: FMain.class:469
msgid "Button1"
msgstr ""
-#: MdlInstallCustom.module:458
-msgid "Calculating package count ... Please wait"
-msgstr "Calculando el número de paquetes ... Por favor espere"
-
-#: MdlCore.module:491
-msgid "Cannot find SETUP.CONF"
-msgstr "No se pudo encontrar SETUP.CONF"
-
-#: FrmPartSel.class:183
-msgid "Check this box if you have a Windows installation on your system or
any other windows partition (FAT, FAT32, NTFS) that you want auto-mounted
as soon as your computer starts"
-msgstr "Selecciona esta casilla si hay una instalación Windows en tu
sistema o otra partición Windows (FAT, FAT32, NTFS) que quieras montar
automáticamente al arrancar el ordenador"
-
-#: FrmUserAdd.class:299
-msgid "Choose a unique name for each user. Enter the password for twice
for accuracy. You can make as many users as you want, and when you are
finished click next to continue."
-msgstr "Elige un nombre único para cada usuario. Es necesario ingresar las
contraseñas dos veces. Puedes crear todas las cuentas de usuarios que
desees"
-
-#: FrmZoneSet.class:113
-msgid "Choose how\nyour hardware clock is set up.\nChoose UTC if you know
that the clock is set up to\nthe Coordinated Universal Time (UTC/GMT).
Otherwise,\nChoose localtime since most PCs are setup this way."
-msgstr "Elige como funciona el reloj de esta máquina. Si tienes dudas
elige UTC/GMT"
-
-#: FrmZoneSet.class:101
-msgid "Choose the correct timezone for the area in which you live."
-msgstr "Selecciona la zona horaria del área donde vives"
-
-#: FrmPkgSel.class:22
-msgid "Choose your installation mode"
-msgstr "Selecciona el modo de instalación"
-
-#: FrmPkgSel.class:60
-msgid "Choose your optional components to install."
-msgstr "Selecciona los componentes opcionales a instalar."
+#: FrmDiskPart.class:115
+msgid "Disk Partitioning:"
+msgstr "Particionado de disco:"
-#: FrmUserAdd.class:361
-msgid "Clear Form"
-msgstr "Limpiar Formulario"
+#: FrmEmbUsrAdd.class:20 MdlCore.module:461
+msgid "User Accounts"
+msgstr "Usuarios"
-#: FrmSelISO.class:73
-msgid "Click"
-msgstr "Haz click en"
+#: FrmEmbUsrAdd.class:23
+msgid "Create initial user accounts"
+msgstr "Crear la cuenta del usuario inicial"
#: FrmEmbUsrAdd.class:23
msgid "Click the button below to create a new user account."
msgstr "Presiona el botón para crear una nueva cuenta de usuario."
-#: FrmZoneSet.class:106
-msgid "ComboBox1"
-msgstr "-"
-
-#: FrmNetConf.class:123
-msgid "Computer Name"
-msgstr "Nombre Local"
-
-#: FrmLilo.class:185
-msgid "Configure and install lilo (Linux Boot Loader)"
-msgstr "Confuguración de LILO"
-
-#: FrmUserAdd.class:355
-msgid "Create User"
-msgstr "Agregar Usuario"
+#: FrmEmbUsrAdd.class:23
+msgid ""
+"New user accounts can also be created after the install process is
completed."
+msgstr ""
+"Podras crear nuevas cuentas de usuario también luego del proceso de "
+"instalación."
-#: FrmUserAdd.class:32
-msgid "Create User Accounts"
-msgstr "Limiar cuentas de usuario"
+#: FrmEmbUsrAdd.class:130
+msgid "New User Account"
+msgstr "Nueva cuenta de usuario"
-#: FrmEmbUsrAdd.class:23
-msgid "Create initial user accounts"
-msgstr "Crear la cuenta del usuario inicial"
+#: FrmHostPrep.class:130
+msgid "Vectorlinux is preparing your system for installation. Please wait."
+msgstr ""
+"Por favor espere mientras VectorLinux prepara su sistema para instalacion"
#: FrmHostPrep.class:135
msgid "Current Status"
msgstr "Estado Actual"
-#: FrmInstallSys.class:75 FrmInstallSysN.class:72
+#: FrmHostPrep.class:139 FrmLilo.class:213 FrmPartScheme.class:127
+#: FrmPkgSel.class:101 FrmPkgsel2.class:86 FrmSelISO.class:247
+#: FrmSummaryOld.class:87
+msgid "TextLabel1"
+msgstr "-"
+
+#: FrmInstallSys.class:57 FrmInstallSysN.class:72
msgid "Current Step"
msgstr "Este paso"
-#: FrmInstallSys.class:250
+#: FrmInstallSys.class:181
+msgid "Vectorlinux is currently being installed to your system... Please
wait"
+msgstr "Por favor espere mientras VectorLinux se instala en su sistema"
+
+#: FrmInstallSys.class:194
+msgid "Total progress"
+msgstr "Progreso Total"
+
+#: FrmInstallSys.class:204
+msgid "Installing ..."
+msgstr "Instalando..."
+
+#: FrmInstallSys.class:209
msgid "Current Step "
msgstr "Este paso"
-#: MdlSummarize.module:55
-msgid "Custom"
-msgstr ""
+#: FrmInstallSysN.class:82
+msgid "Total Progress"
+msgstr "Progreso Total"
-#: FrmPkgSel.class:112
-msgid "Custom Install"
-msgstr "Instalación Personalizada"
+#: FrmLangSel.class:100
+msgid "Select your language"
+msgstr "Selecciona tu idioma"
-#: FrmPartSel.class:184
-msgid "Detect and Setup Windows partitions for auto-mounting at boot"
-msgstr "Detectar volúmenes con sistemas Windows"
+#: FrmLicense.class:99
+msgid "LICENSE AGREEMENT"
+msgstr "Aceptación de licencia"
-#: MdlCore.module:502
-msgid "Disk Partitioning"
-msgstr "Particionado de disco"
+#: FrmLicense.class:104
+msgid "TextArea1"
+msgstr "-"
-#: FrmPartScheme.class:110
-msgid "Disk Partitioning Options"
-msgstr "Opciones de particionado de disco"
+#: FrmLicense.class:110
+msgid "Yes, I Agree to the License Agreement"
+msgstr "De acuerdo"
-#: FrmDiskPart.class:115
-msgid "Disk Partitioning:"
-msgstr "Particionado de disco:"
+#: FrmLicense.class:115
+msgid "No, I Do Not Agree"
+msgstr "No estoy de acuerdo"
-#: MdlInstallSys.module:167 MdlPartFrmt.module:33 MdlPartSel.module:137
-msgid "Do not format"
-msgstr "No Formatear"
+#: FrmLilo.class:35
+msgid ""
+"The following Operating Systems have been detected on this computer.
Choose "
+"your desired option"
+msgstr ""
+"los siguientes Sistemas Operativos han sido detectados en su ordenador. "
+"Selecciona la opción deseada"
-#: MdlInstallSys.module:190 MdlWinDrives.module:119
-msgid "Do not mount"
-msgstr "No montar"
+#: FrmLilo.class:35
+msgid ""
+"for each one of them by clicking on each tab. To proceed with the
default "
+"pre-set values, simply click"
+msgstr ""
+"para cada uno de ellos seleccionando cada pestaña. Para continuar con
los "
+"valores seleccionados por defecto simplemente haz click en "
+
+#: FrmLilo.class:132
+msgid "Standard"
+msgstr "Estandar"
+
+#: FrmLilo.class:196
+msgid "Configure and install lilo (Linux Boot Loader)"
+msgstr "Confuguración de LILO"
-#: FrmLilo.class:190
+#: FrmLilo.class:201
msgid "Don't Install Lilo"
msgstr "No quiero instalar LILO"
-#: MdlNetConf.module:290
-msgid "Dynamic Host Control Protocol"
-msgstr "Dynamic Host Control Protocol (DHCP)"
+#: FrmLilo.class:207 FrmNetConf.class:139
+msgid "Tab 0"
+msgstr "-"
-#: MdlUsrAdd.module:70
-msgid "Elite user"
-msgstr "Usuario Privilegiado"
+#: FrmLilo.class:225
+msgid "Target"
+msgstr "-"
-#: MdlNetConf.module:231
-msgid "Encryption key"
-msgstr "Clave encriptada"
+#: FrmLilo.class:231
+msgid "Video Resolution"
+msgstr "Resolucion de pantalla"
-#: MdlNetConf.module:205
-msgid "Encryption type"
-msgstr "Tipo de encriptación"
+#: FrmLilo.class:239
+msgid "Bootsplash Med"
+msgstr "Resolución del arranque gráfico (bootsplash) media"
-#: FrmRootPass.class:134 FrmUserAdd.class:373
-msgid "Enter Password"
-msgstr "Ingresa contraseña"
+#: FrmLilo.class:239
+msgid "Bootsplash High"
+msgstr "Resolución del arranque gráfico (bootsplash) alta"
-#: FrmRootPass.class:34
-msgid "Enter a Password for root."
-msgstr "Ingresa una contraseña para root."
+#: FrmLilo.class:239
+msgid "Bootsplash Extra high"
+msgstr "Resolución del arranque gráfico (bootsplash) súper alta"
-#: FrmUserAdd.class:78
-msgid "Enter a Password."
-msgstr "Ingresa una contraseña."
+#: FrmLilo.class:244
+msgid "Prompt Timeout"
+msgstr "Esperar"
-#: FrmUserAdd.class:55
-msgid "Enter the login name that this user will use to login to this
system."
-msgstr "Ingresa el nombre de usuario que será utilizado para registrarse
en el sistema."
+#: FrmLilo.class:255
+msgid "Seconds"
+msgstr "Segundos"
-#: MdlInstallSys.module:506
-msgid "Error occurred while installing"
-msgstr "Ha ocurrido un error durante la instalación"
+#: FrmLilo.class:261
+msgid "Boot Default"
+msgstr "Arranque por defecto"
-#: MdlInstallCustom.module:538
-msgid "Error while installing "
-msgstr "Error al instalar "
+#: FrmNetConf.class:56
+msgid "Network Interfaces"
+msgstr "Dispositivos de red"
-#: MdlInstallCustom.module:71
-msgid "Error while installing required system software. "
-msgstr "Error al instalar el software base. "
+#: FrmNetConf.class:123
+msgid "Computer Name"
+msgstr "Nombre Local"
-#: MdlInstallCustom.module:80
-msgid "Error while installing system configuration. "
-msgstr "Error al instalar la configuración del sistema. "
+#: FrmNetConf.class:146
+msgid "Manual DNS Server Specification"
+msgstr "Configuración Manual de servidores de nombres (DNS)"
-#: FMain.class:441
-msgid "Exit Installation"
-msgstr "Cancelar Instalación"
+#: FrmNetConf.class:151
+msgid "Primary DNS Server"
+msgstr "Servidor de nombres primario (DNS)"
-#: MdlPartSel.module:88
-msgid "FILESYSTEM"
-msgstr "Sistema de archivos"
+#: FrmNetConf.class:159
+msgid "192.168.1.254"
+msgstr ""
-#: MdlInstallSys.module:783
-msgid "Failed to install"
-msgstr "La instalación ha fallado"
-
-#: MdlCore.module:501
-msgid "Find installation media"
-msgstr "Buscar medio de instalación"
+#: FrmNetConf.class:164
+msgid "Secondary DNS Server"
+msgstr "Servidor de nombres (DNS) secundario"
-#: MdlInstallSys.module:627
-msgid "Finished intalling Bulks"
-msgstr "Instalación de paquetes finalizada"
+#: FrmNetConf.class:177 MdlCore.module:462
+msgid "Network Configuration"
+msgstr "Configuración de red"
-#: FrmRootPass.class:13
-msgid "For added security, use a password that is easy for you to
remember, but hard for others to guess"
-msgstr "Por motivos de seguridad, deberías utilizar una clave fácil de
recordar, pero difícil de adivinar"
+#: FrmPartScheme.class:61
+msgid ""
+"Select this option if you already have a linux installation that you wish
to "
+"overwrite or if a linux partition scheme exists in your hard disk."
+msgstr ""
+"Selecciona esta opción si ya dispones de una instalación de Linux que "
+"quieras sobreescribir o si las particines Linux ya existen en tu disco
duro."
-#: MdlSummarize.module:67
-msgid "Full"
-msgstr "Completa"
+#: FrmPartScheme.class:61
+msgid "This option will overwrite any existing data in the selected
partitions"
+msgstr "Esta opción sobreescribirá los datos de las particiones
seleccionadas"
-#: FrmPkgSel.class:107
-msgid "Full Install"
-msgstr "Instalacion Completa"
+#: FrmPartScheme.class:61
+msgid ""
+"Use this option if you already prepared your partitions using the "
+"VectorLinux installer"
+msgstr ""
+"Usa esta opción si ya haz preparado tus particiones utilizando el
instalador "
+"de VectorLinux"
-#: .project:2
-msgid "GUI installer for Vector linux"
-msgstr "Instaladaor Gráfico de VectorLinux"
+#: FrmPartScheme.class:70
+msgid ""
+"Select this option is you wish to create, more or resize partitions in
order "
+"to make room for your new VectorLinux installation."
+msgstr ""
+"Selecciona esta opción si deseas crear o redimensionar particiones para "
+"conseguir espacio para tu nueva instalación de VectorLinux."
-#: MdlNetConf.module:407
-msgid "Gateway Address"
-msgstr "Dirección de Puerta de Enlace"
+#: FrmPartScheme.class:70
+msgid ""
+"This option is the safest choice if you have other existing
installations "
+"that you wish to keep."
+msgstr "Esta opción es la más segura si quieres conservar otras
instalaciones."
-#: MdlDiskPart.module:53
-msgid "Gparted was not found on this system. Please install gparted and
try again"
-msgstr "No se encontró Gparted en el sistema. Por favor, instala Gparted
y prueba de nuevo"
+#: FrmPartScheme.class:112
+msgid "Disk Partitioning Options"
+msgstr "Opciones de particionado de disco"
-#: FrmUserAdd.class:262
-msgid "Groups are a way of administering permissions for your users. You
grant the user"
-msgstr "Los Grupos son un método para administrar los permisos de los
usuarios. Le garantizas a cada usuario"
+#: FrmPartScheme.class:117
+msgid "Use existing disk partitions"
+msgstr "Utilizar las particiones existentes en mi disco duro"
-#: MdlNetConf.module:126
-msgid "Hardware Address"
-msgstr "Dirección MAC"
+#: FrmPartScheme.class:122
+msgid "Modify my disk partitions to make room for new installation"
+msgstr "Modificaré mi disco duro para hacer lugar para la nueva
instalación"
-#: MdlCore.module:515
-msgid "Hardware Configuration"
-msgstr "Configuración de hardware"
+#: FrmPartSel.class:149
+msgid "ABOUT SYSTEM PARTITIONING IN LINUX"
+msgstr "Acerca del particionado en Linux"
-#: FrmPartSel.class:189 FrmUserAdd.class:348
-msgid "Help"
-msgstr "Ayuda"
+#: FrmPartSel.class:149
+msgid ""
+"Linux is a modular operating system. This means that is has the ability
to "
+"store system and"
+msgstr ""
+"Linux es un sistema operativo modular. Esto significa que tiene la
capacidad "
+"de alojar el sistema y"
-#: MdlSummarize.module:55
-msgid "INSTALL TYPE:"
-msgstr "Tipo de instalación:"
+#: FrmPartSel.class:149
+msgid ""
+"user data separately for added data security. You may install the system
to "
+"a single partition"
+msgstr ""
+"datos del usuario separadamente para incrementar la seguridad de sus
datos. "
+"Puedes instalar el sistema en una única partición"
-#: MdlNetConf.module:362
-msgid "IP Address"
-msgstr "Dirección IP"
+#: FrmPartSel.class:149
+msgid ""
+"by simply selecting a \"/\" value on this screen. The rest is optional.
The "
+"following is a"
+msgstr ""
+"simplemente seleccionando un valor para \"/\" en esta pantalla. El resto
es "
+"opcional. Lo siguiente es un"
-#: MdlNetConf.module:290
-msgid "If in doubt, choose this option"
-msgstr "Si dudas, elige esta opción"
+#: FrmPartSel.class:149
+msgid "suggested setup for a typical Linux installation"
+msgstr "configuración recomendada para una instalación típica de Linux"
-#: MdlLiloOsList.module:94
-msgid "Include this Operating System in the boot menu"
-msgstr "Incluir este sistema operativo en el menú de arranque"
+#: FrmPartSel.class:149
+msgid ""
+"Used to store system data. This particular install requires a minimum of"
+msgstr ""
+"Utilizada para almacenar los datos del sistema. Esta instalación en "
+"particular requiere un mínimo de"
-#: MdlLiloOsList.module:143
-msgid "Include this installation in the boot menu"
-msgstr "Incluir esta instalación en el menú de arranque"
+#: FrmPartSel.class:149
+msgid "for this"
+msgstr "para esto"
-#: MdlLiloOsList.module:282
-msgid "Include this operating system in the boot menu"
-msgstr "Incluir este sistema operativo en el menú de arranque"
+#: FrmPartSel.class:149
+msgid ""
+"but you should considear a higher value to make sure you have room to "
+"install additional software"
+msgstr ""
+"pero deberías considerar un valor más alto para asegurarte espacio para "
+"software adicional que desees instlar luego"
-#: MdlLiloOsList.module:314
-msgid "Initial Ram Disk"
-msgstr "Disco Ram inicial"
+#: FrmPartSel.class:149
+msgid "in case you wish to."
+msgstr "en caso que lo desees."
-#: MdlCore.module:508
-msgid "Install Operating System"
-msgstr "Instalación del sistema operativo"
+#: FrmPartSel.class:149
+msgid ""
+"Used to store user documents, pictures, videos. Give yourself as much
room "
+"as you want"
+msgstr ""
+"Utilizada para almacenar los ficheros del usuario, documentos, imágenes, "
+"videos, etc. Puedes asignar tanto espacio como desees"
-#: MdlCore.module:505
-msgid "Installation"
-msgstr "Instalación"
+#: FrmPartSel.class:149
+msgid "Typically, you want to use the largest partition for this."
+msgstr "Normalmente querrías utilizar tu partición más grande para esto."
-#: MdlCore.module:506
-msgid "Installation Summary"
-msgstr "Resumen del proceso"
+#: FrmPartSel.class:149
+msgid ""
+"Using a swap partition is suggested if your total RAM is less than 1GB. "
+"Suggested ammount"
+msgstr ""
+"Utilizar una partición Swap es recomendado si tu cantidad de memoria RAM
es "
+"inferior a 1GB. El monto sugerido "
-#: MdlInstallSys.module:733
-msgid "Installation phase complete. Ready for configuration"
-msgstr "Fase de instalación completada. Vamos a por la configuración"
+#: FrmPartSel.class:149
+msgid "for this is"
+msgstr "para esto es"
-#: MdlInstallSys.module:468
-msgid "Installing"
-msgstr "Instalando"
+#: FrmPartSel.class:149
+msgid "but can also be calculated as 2 times your ammount of RAM"
+msgstr ""
+"pero también puede ser calculada duplicando el tamaño de tu memoria RAM"
-#: FrmInstallSys.class:255
-msgid "Installing ..."
-msgstr "Instalando..."
+#: FrmPartSel.class:174
+msgid "Please select the partitions you wish to use and how to use them"
+msgstr ""
+"For favor, seleccione las secciones del disco que desea usar, y también
como "
+"usarlas"
-#: MdlInstallSys.module:823
-msgid "Installing Final configuration files..."
-msgstr "Instalando los últimos ficheros de configuración ..."
+#: FrmPartSel.class:183
+msgid ""
+"Check this box if you have a Windows installation on your system or any "
+"other windows partition (FAT, FAT32, NTFS) that you want auto-mounted as "
+"soon as your computer starts"
+msgstr ""
+"Selecciona esta casilla si hay una instalación Windows en tu sistema o
otra "
+"partición Windows (FAT, FAT32, NTFS) que quieras montar automáticamente
al "
+"arrancar el ordenador"
-#: MdlInstallSys.module:772
-msgid "Installing Required Package ..."
-msgstr "Instalando paquetes requeridos ..."
+#: FrmPartSel.class:184
+msgid "Detect and Setup Windows partitions for auto-mounting at boot"
+msgstr "Detectar volúmenes con sistemas Windows"
-#: MdlInstallSys.module:736
-msgid "Installing default system configuration and required software."
-msgstr "Instalando el software necesario y las configuraciones por
defecto."
+#: FrmPartSel.class:189 FrmUserAdd.class:448
+msgid "Help"
+msgstr "Ayuda"
-#: MdlInstallCustom.module:268
-msgid "Installing user-selected package"
-msgstr "Instalando paquetes selecionados por el usuario"
+#: FrmPkgSel.class:22
+msgid "Choose your installation mode"
+msgstr "Selecciona el modo de instalación"
#: FrmPkgSel.class:51
msgid "Installs everything in your VectorLinux media to your system"
msgstr "Instalar todo lo que incluye el medio de instalación en tu disco
duro"
-#: MdlNetConf.module:147
-msgid "Interface Type"
-msgstr "Tipo de interfaz"
+#: FrmPkgSel.class:60
+msgid "Choose your optional components to install."
+msgstr "Selecciona los componentes opcionales a instalar."
-#: MdlDiskPart.module:46
-msgid "It is still possible to install VectorLinux on your system, but you
need to pre-partition your disks first"
-msgstr "Es posible instalar VectorLinux entu sistema, pero derías
particionar el disco primero"
+#: FrmPkgSel.class:107
+msgid "Full Install"
+msgstr "Instalacion Completa"
-#: MdlLiloOsList.module:338
-msgid "Kernel boot options"
-msgstr "Opciones de arranque de kernel"
+#: FrmPkgSel.class:112
+msgid "Custom Install"
+msgstr "Instalación Personalizada"
-#: FrmLicense.class:99
-msgid "LICENSE AGREEMENT"
-msgstr "Aceptación de licencia"
+#: FrmPkgsel2.class:21
+msgid "Select your indivirual packages to install."
+msgstr "Selecciona paquetes individuales para su instalación."
-#: MdlLiloOsList.module:152
-msgid "Label"
-msgstr "Etiqueta"
+#: FrmPkgsel2.class:21
+msgid "To install them all, just click next"
+msgstr "Para instalarlos todos, simplemente presiona Sigiente"
-#: MdlCore.module:500
-msgid "Language Selection"
-msgstr "Seleccion de idioma"
+#: FrmRootPass.class:6
+msgid "System Administrator Password"
+msgstr "Contraseña del administrador del sistema"
-#: MdlConfLilo.module:95
-msgid "Lilo returned an error. Please see below"
-msgstr "Lilo ha devuelto un error. Por favor, lee más abajo"
+#: FrmRootPass.class:13
+msgid "Most other every-day taks do not require administrative
priviledges."
+msgstr "Las tareas diarias no requieren privilegios de administrador"
-#: FrmPartSel.class:149
-msgid "Linux is a modular operating system. This means that is has the
ability to store system and"
-msgstr "Linux es un sistema operativo modular. Esto significa que tiene la
capacidad de alojar el sistema y"
+#: FrmRootPass.class:13
+msgid ""
+"For added security, use a password that is easy for you to remember, but "
+"hard for others to guess"
+msgstr ""
+"Por motivos de seguridad, deberías utilizar una clave fácil de recordar, "
+"pero difícil de adivinar"
-#: MdlDiskPart.module:57
-msgid "Loading gparted ... Please wait"
-msgstr "Cargando Gparted ... Por favor espere"
+#: FrmRootPass.class:28
+msgid "About the root account"
+msgstr "Acerca de la cuenta del usuario root"
-#: FrmZoneSet.class:108
-msgid "LocalTime"
-msgstr "Hora Local"
+#: FrmRootPass.class:34
+msgid "Enter a Password for root."
+msgstr "Ingresa una contraseña para root."
-#: FrmUserAdd.class:367
-msgid "Login Name"
-msgstr "Nombre de usuario"
+#: FrmRootPass.class:48
+msgid ""
+"Passwords do not match. Please enter the same password twice for
accuracy."
+msgstr ""
+"Las contraseñas no coinciden. Por favor ingrese la misma contraseña dos "
+"veces para estar seguros de que es la que Usted verdaderamente desea."
-#: FrmUserAdd.class:60
-msgid "Login name field contains illegal characters. Please use only
lowercase letters and numbers"
-msgstr "Tu nombre de usuario contiene caracteres ilegales. Por favor
utiliza solo letras minúsculas y números"
+#: FrmRootPass.class:107 MdlCore.module:460
+msgid "System Administrator"
+msgstr "Administrador del sistema"
-#: MdlCore.module:413
-msgid "MINIMUM REQUIREMENTS"
-msgstr "Requerimientos mínimos del sistema"
+#: FrmRootPass.class:120
+msgid ""
+"The linux root account is pre-assigned to be used as the system "
+"administrator's account. This account is used to perform system-wide
changes "
+"such as software upgrades, managing user accounts etc. \n"
+"\n"
+"Most other operations do not require administrative priviledges.\n"
+"The root password must be entered twice for ensured accuracy. When
choosing "
+"a root password, think of something easy for you to remember, but hard
for "
+"others to guess."
+msgstr ""
+"La cuenta root en los sistemas Linux está diseñada como la cuenta del "
+"administrador del sistema. Es utilizada para realizar tareas de "
+"mantenimiento del sistema globales, tales como actualizaciones de
software, "
+"gestionar los permisos o crear nuevos usuarios, etc. \n"
+"\n"
+"La mayoría de las otras operaciones no requieren privilegios de "
+"administrador.\n"
+"La contraseña para el usuario root deberá ser ingresada dos veces para "
+"asegurar que es la contraseña deseada. Al elegir la contraseña de "
+"administrador, piensa en algo fácil de recordar, pero al mismo tiempo "
+"difícil de adivinar para los otros. "
-#: MdlPartSel.module:78
-msgid "MOUNT POINT"
-msgstr "Punto de montaje"
+#: FrmRootPass.class:126 FrmUserAdd.class:475
+msgid "Enter Password"
+msgstr "Ingresa contraseña"
-#: MdlWinDrives.module:81
-msgid "MOUNT TO"
-msgstr "Montar en"
+#: FrmRootPass.class:131
+msgid "Re-Enter Password"
+msgstr "Vuelva a ingresar la contraseña"
-#: FrmNetConf.class:146
-msgid "Manual DNS Server Specification"
-msgstr "Configuración Manual de servidores de nombres (DNS)"
+#: FrmRootPass.class:148
+msgid "Set Password"
+msgstr "Define tu contraseña"
+
+#: FrmSelISO.class:29 MdlCore.module:198
+msgid "No Installable Media Found"
+msgstr "No se encontró ningún medio instalable"
+
+#: FrmSelISO.class:73
+msgid "Click"
+msgstr "Haz click en"
+
+#: FrmSelISO.class:73
+msgid "to begin installating"
+msgstr "para comenzar la instalación"
+
+#: FrmSelISO.class:98
+msgid "Unable to identify distro."
+msgstr "No se pudo detectar la distribución."
#: FrmSelISO.class:133
msgid "Minimum Disk Space Requirements"
msgstr "Requerimientos mínimos de espacio en disco"
-#: FrmPartScheme.class:120
-msgid "Modify my disk partitions to make room for new installation"
-msgstr "Modificaré mi disco duro para hacer lugar para la nueva
instalación"
+#: FrmSelISO.class:236
+msgid "No installable images found."
+msgstr "No se encontró ninguna imagen que se pueda instalar"
-#: FrmRootPass.class:13
-msgid "Most other every-day taks do not require administrative
priviledges."
-msgstr "Las tareas diarias no requieren privilegios de administrador"
+#: FrmSelISO.class:242
+msgid ""
+"Select which VectorLinux version you wish to install from the list below"
+msgstr "Selectiona la imagen que deseas instalar de la lista"
-#: MdlLiloOsList.module:293
-msgid "Name"
-msgstr "Nombre"
+#: FrmSelISO.class:252
+msgid "Search Again"
+msgstr "Buscar nuevamente"
-#: MdlLiloOsList.module:75
-msgid "Name "
-msgstr "Nombre "
+#: FrmSummary.class:8 MdlSummarize.module:56
+msgid "Custom"
+msgstr ""
-#: FrmNetConf.class:177 MdlCore.module:514
-msgid "Network Configuration"
-msgstr "Configuración de red"
+#: FrmSummary.class:12 MdlSummarize.module:69
+msgid "Full"
+msgstr "Completa"
-#: FrmNetConf.class:56
-msgid "Network Interfaces"
-msgstr "Dispositivos de red"
+#: FrmSummary.class:28
+msgid "Partition"
+msgstr "Partición"
-#: FrmEmbUsrAdd.class:130
-msgid "New User Account"
-msgstr "Nueva cuenta de usuario"
+#: FrmSummary.class:30
+msgid "Size / GiB"
+msgstr "Tamaño / GiB"
+
+#: FrmSummary.class:32
+msgid "Filesystem"
+msgstr "Sistema de Archivos"
+
+#: FrmSummary.class:33
+msgid "Do Not Format"
+msgstr "No formatear"
-#: FrmEmbUsrAdd.class:23
-msgid "New user accounts can also be created after the install process is
completed."
-msgstr "Podras crear nuevas cuentas de usuario también luego del proceso
de instalación."
+#: FrmSummary.class:34
+msgid "Mount Point"
+msgstr "Punto de montaje"
-#: FMain.class:429
-msgid "Next"
-msgstr "Siguiente"
+#: FrmSummary.class:40 MdlInstallSys.m...
[truncated message content] |
|
From: <cod...@go...> - 2008-10-14 22:46:26
|
Author: M0...@gm...
Date: Tue Oct 14 14:30:57 2008
New Revision: 229
Added:
branches/iVL/FrmSummary.class
branches/iVL/FrmSummary.form
branches/iVL/FrmSummaryOld.class
branches/iVL/FrmSummaryOld.form
Modified:
branches/iVL/.lang/FrmSummary.pot
branches/iVL/DevLog
branches/iVL/FMain.class
Log:
- Began working on new re-designed installation summary window
(Not yet complete... but will be better)
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Tue Oct 14 14:30:57 2008
@@ -14,7 +14,55 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FrmSummary.class:87
-msgid "TextLabel1"
+#: FrmSummary.class:8
+msgid "Custom"
+msgstr ""
+
+#: FrmSummary.class:12
+msgid "Full"
+msgstr ""
+
+#: FrmSummary.class:28
+msgid "Partition"
+msgstr ""
+
+#: FrmSummary.class:30
+msgid "Size / GiB"
+msgstr ""
+
+#: FrmSummary.class:32
+msgid "Filesystem"
+msgstr ""
+
+#: FrmSummary.class:33
+msgid "Do Not Format"
+msgstr ""
+
+#: FrmSummary.class:34
+msgid "Mount Point"
+msgstr ""
+
+#: FrmSummary.class:40
+msgid "Not Used"
+msgstr ""
+
+#: FrmSummary.class:77
+msgid "Package Name"
+msgstr ""
+
+#: FrmSummary.class:79
+msgid "Size / KiB"
+msgstr ""
+
+#: FrmSummary.class:116
+msgid "Installation Type"
+msgstr ""
+
+#: FrmSummary.class:126
+msgid "Partition Selection Scheme"
+msgstr ""
+
+#: FrmSummary.class:136
+msgid "Software Selection"
msgstr ""
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Tue Oct 14 14:30:57 2008
@@ -1,7 +1,4 @@
-- Cleaned up redundant unnecessary code in MdlCore
-- Cleaned up unnecessary code from the package selection click() event
-- Tuned the package selection description label
-- Added vertically scrolling credits during installation process ;)
- * (Bug @ Lost&LovingLinux) ** Maybe gb.gtk bug?
+- Began working on new re-designed installation summary window
+ (Not yet complete... but will be better)
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Tue Oct 14 14:30:57 2008
@@ -263,12 +263,12 @@
frmNext = FrmPkgsel2
ELSE
' Going for simple install. Now we are ready to summarize
- MdlSummarize.SUMMARIZE_INSTALL
+' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
MdlSummarize.SUMMARIZE_INSTALL
frmNext = FrmSummary
END IF
CASE "FrmPkgsel2"
' summarize the build
- MdlSummarize.SUMMARIZE_INSTALL
+' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
MdlSummarize.SUMMARIZE_INSTALL
frmNext = FrmSummary
'frmNext = install
CASE "FrmWinDrives"
Added: branches/iVL/FrmSummary.class
==============================================================================
--- (empty file)
+++ branches/iVL/FrmSummary.class Tue Oct 14 14:30:57 2008
@@ -0,0 +1,95 @@
+' Gambas class file
+
+
+PUBLIC SUB Form_Open()
+
+
+ IF ClsPkgSel.bCustom = TRUE THEN
+ ME.TextBox1.text = ("Custom")
+ ME.Frame2.Visible = TRUE
+ ME.prepare_packages_summary()
+ ELSE
+ ME.TextBox1.text = ("Full")
+ ME.Frame2.Visible = FALSE
+ 'ME.GridView2.Visible = FALSE
+ END IF
+ME.prepare_partition_summary()
+
+
+
+END
+PUBLIC SUB prepare_partition_summary()
+ DIM iRow AS Integer = 0
+ DIM cb AS ComboBox
+ DIM cb1 AS ComboBox
+ DIM sPart, sMountPnt, sFsType, sSize AS String
+
+ ME.GridView1.Columns.count = 4
+ ME.GridView1.Columns[0].text = ("Partition")
+ ME.GridView1.Columns[0].Width =
MdlObjSizer.get_object_width("/dev/hda1***")
+ ME.GridView1.Columns[1].text = ("Size / GiB")
+ ME.GridView1.Columns[1].Width =
MdlObjSizer.get_object_width(ME.GridView1.Columns[1].text) * 1.5
+ ME.GridView1.Columns[2].text = ("Filesystem")
+ ME.GridView1.Columns[2].Width = MdlObjSizer.get_object_width(("Do
Not Format")) * 1.5
+ ME.GridView1.Columns[3].text = ("Mount Point")
+ 'ME.GridView1.Columns[3].Width =
MdlObjSizer.get_object_width(ME.GridView1.Columns[3].text)
+
+ ' tricky part to list the partitions on the summary
+ FOR EACH cb IN MdlPartSel.oMountPoints
+
+ IF cb.text <> ("Not Used") THEN
+ INC ME.GridView1.Rows.Count
+ sPart = cb.Tag
+ sMountPnt = cb.Text
+ FOR EACH cb1 IN MdlPartSel.oFsTypes
+ IF cb1.tag = cb.tag THEN sFsType = cb1.Text
+ NEXT
+ WITH ME
+ .GridView1[irow, 0].text = sPart
+ .GridView1[irow, 1].text = sSize
+ .GridView1[irow, 2].text = sFsType
+ .GridView1[irow, 3].Text = sMountPnt
+ END WITH
+ INC irow ' increase this value... this determines the row
to use.
+ END IF
+
+ NEXT
+
+ ' ADD SWAP PARTITIONS HERE.
+
+ ' NEED TO ADD WINDOWS PARTITIONS HERE
+ ' MAYBE CREATE A SEPARATED ROW BY SETTING IT'S BG
COLOR TO SOMETHING BRIGHT AND BOLD FORE FONTS
+
+
+
+
+
+END
+
+PUBLIC SUB prepare_packages_summary()
+
+ DIM irow AS Integer = 0
+ DIM sPkg, sSize AS String
+ DIM cb AS CheckBox
+
+ WITH ME.GridView2
+ .Columns.count = 2
+ .Columns[0].Title = ("Package Name")
+ .Columns[0].Width = MdlObjSizer.get_object_width(.Columns[0].text) *
2.5
+ .Columns[1].Title = ("Size / KiB")
+ .Columns[1].Width = MdlObjSizer.get_object_width(.Columns[1].Text) *
1.5
+ END WITH
+
+ ' add bulk packages
+ FOR EACH cb IN MdlPkgSel.Bulks
+ IF cb.Value = TRUE THEN
+ INC ME.GridView2.Rows.Count
+ GridView2[irow, 0].text = cb.Tag
+
+ INC irow
+ END IF
+
+ NEXT
+
+END
+
Added: branches/iVL/FrmSummary.form
==============================================================================
--- (empty file)
+++ branches/iVL/FrmSummary.form Tue Oct 14 14:30:57 2008
@@ -0,0 +1,29 @@
+# Gambas Form File 2.0
+
+{ Form Form
+ MoveScaled(0,0,73,61)
+ Text = ("")
+ { lbInstallType TextLabel
+ MoveScaled(8,4,13,3)
+ Text = ("Installation Type")
+ }
+ { TextBox1 TextBox
+ MoveScaled(22,4,14,3)
+ Text = ("")
+ }
+ { Frame1 Frame
+ MoveScaled(2,8,67,19)
+ Text = ("Partition Selection Scheme")
+ { GridView1 GridView
+ MoveScaled(1,2,65,16)
+ Header = GridView.Horizontal
+ }
+ }
+ { Frame2 Frame
+ MoveScaled(2,29,67,29)
+ Text = ("Software Selection")
+ { GridView2 GridView
+ MoveScaled(1,4,65,25)
+ }
+ }
+}
Added: branches/iVL/FrmSummaryOld.class
==============================================================================
--- (empty file)
+++ branches/iVL/FrmSummaryOld.class Tue Oct 14 14:30:57 2008
@@ -0,0 +1,69 @@
+' Gambas class file
+' This file is part of vinstall-ng
+
+' vinstall-ng is free software: you can redistribute it and/or modify
+' it under the terms of the GNU General Public License as published by
+' the Free Software Foundation, either version 2 of the License, or
+' (at your option) any later version.
+
+' vinstall-ng is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+' GNU General Public License for more details.
+
+' You should have received a copy of the GNU General Public License
+' along with vinstall-ng. If not, see <http://www.gnu.org/licenses/>.
+
+
+PUBLIC SUB Form_Open()
+
+ WITH ME
+ .tlBanner.Text = "Setup is about to begin installing " &
ClsGlobal.DISTRO & Space(1)&
+ ClsGlobal.VERSION & " to your system. Please verify that the
information below is " &
+ "correct and click \"" & FMain.btnext.Text & "\" to continue. If you
need to make" &
+ " changes to your settings, click the \"" & FMain.btback.Text & "\"
button."
+ .tlBanner.Adjust
+ .tlSummary.Adjust
+ END WITH
+
+ FMain.FrmCurr = ME
+ FMain.tvPlan["Inst0"].Selected = TRUE
+ FMain.tvPlan["Prep3"].Picture = MdlCore.sDonePic
+ FMain.tvPlan["Inst0"].Picture = MdlCore.sNowPic
+ FMain.btback.Enabled = TRUE
+' FMain.btback.ForeColor = Color.Black
+
+END
+
+PUBLIC SUB Form_Resize()
+
+ WITH ME
+ .tlBanner.Move(4, 4, .ClientWidth - 8)
+ '.scrSumm.Move(4, .tlBanner.top + (.tlBanner.Height +
8), .tlBanner.Width - (.tlBanner.Width / 2), .ClientH - .tlBanner.Height *
1.5)
+ '.tlBanner.Width = .ClientWidth - 8
+ '.scrSumm.Move(.tlBanner.Left, .tlBanner.top + .tlBanner.Height +
8, .tlBanner.Width - 300, .ClientHeight - .tlBanner.Height * 1.5)
+ .scrSumm.Move(.tlBanner.left, .tlBanner.top + .tlBanner.Height +
4, .tlBanner.Width - 4, .ClientHeight - .tlBanner.Height * 2)
+ '.scrSumm.Move(4, .tlBanner.top + .tlBanner.Height + 4)
+ '.scrSumm.Resize(.ClientWidth - 16, .tlBanner.top + .tlBanner.Height +
4)
+ .tlSummary.Move(2, 4)
+ '.tlSummary.Move(.tlBanner.Left, .tlBanner.top + .tlBanner.Height +
4, .tlBanner.Width, .ClientH - 16)
+
+
+
+
+ END WITH
+
+END
+
+PUBLIC SUB Form_Show()
+
+ Form_Open()
+
+
+END
+
+PUBLIC SUB Form_Hide()
+
+' FMain.tvPlan["Inst0"].Picture = MdlCore.sDonePic
+
+END
Added: branches/iVL/FrmSummaryOld.form
==============================================================================
--- (empty file)
+++ branches/iVL/FrmSummaryOld.form Tue Oct 14 14:30:57 2008
@@ -0,0 +1,19 @@
+# Gambas Form File 2.0
+
+{ Form Form
+ MoveScaled(0,0,64,64)
+ Text = ("")
+ { tlBanner TextLabel
+ MoveScaled(1,1,27,10)
+ Text = ("TextLabel1")
+ Alignment = Align.TopLeft
+ }
+ { scrSumm ScrollView
+ MoveScaled(0,12,61,43)
+ { tlSummary TextLabel
+ MoveScaled(2,1,55,85)
+ Expand = True
+ Text = ("TextLabel1")
+ }
+ }
+}
|
|
From: <cod...@go...> - 2008-10-14 19:48:07
|
Author: M0...@gm...
Date: Tue Oct 14 12:46:32 2008
New Revision: 228
Added:
branches/iVL/FrmCredits.class
branches/iVL/FrmCredits.form
Removed:
branches/iVL/FrmEmbUsrAdd.class
branches/iVL/FrmEmbUsrAdd.form
branches/iVL/FrmLicense.class
branches/iVL/FrmLicense.form
Modified:
branches/iVL/.lang/#project.pot
branches/iVL/.lang/ClsGlobal.pot
branches/iVL/.lang/ClsPartSel.pot
branches/iVL/.lang/ClsWinDrives.pot
branches/iVL/.lang/FMain.pot
branches/iVL/.lang/FrmDiskPart.pot
branches/iVL/.lang/FrmPartScheme.pot
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmPkgSel.pot
branches/iVL/.lang/FrmSelISO.pot
branches/iVL/.lang/FrmSummary.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/.lang/MdlCore.pot
branches/iVL/.lang/MdlDiskPart.pot
branches/iVL/.lang/MdlObjSizer.pot
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/.lang/MdlPkgSel.pot
branches/iVL/.lang/MdlSetup.pot
branches/iVL/.lang/MdlSummarize.pot
branches/iVL/.lang/MdlWinDrives.pot
branches/iVL/DevLog
branches/iVL/FMain.class
branches/iVL/FrmInstallSys.class
branches/iVL/FrmInstallSys.form
branches/iVL/FrmPkgsel2.form
branches/iVL/FrmZoneSet.form
branches/iVL/MdlCore.module
branches/iVL/MdlPkgSel.module
branches/iVL/MdlSetup.module
branches/iVL/MdlSummarize.module
Log:
- Cleaned up redundant unnecessary code in MdlCore
- Cleaned up unnecessary code from the package selection click() event
- Tuned the package selection description label
- Added vertically scrolling credits during installation process ;)
* (Bug @ Lost&LovingLinux) ** Maybe gb.gtk bug?
Modified: branches/iVL/.lang/#project.pot
==============================================================================
--- branches/iVL/.lang/#project.pot (original)
+++ branches/iVL/.lang/#project.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/.project
+# /home/moe/projects/installer/.project
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsGlobal.pot
==============================================================================
--- branches/iVL/.lang/ClsGlobal.pot (original)
+++ branches/iVL/.lang/ClsGlobal.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/ClsGlobal.class
+# /home/moe/projects/installer/ClsGlobal.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsPartSel.pot
==============================================================================
--- branches/iVL/.lang/ClsPartSel.pot (original)
+++ branches/iVL/.lang/ClsPartSel.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/ClsPartSel.class
+# /home/moe/projects/installer/ClsPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/ClsWinDrives.pot
==============================================================================
--- branches/iVL/.lang/ClsWinDrives.pot (original)
+++ branches/iVL/.lang/ClsWinDrives.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/ClsWinDrives.class
+# /home/moe/projects/installer/ClsWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FMain.class
+# /home/moe/projects/installer/FMain.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmDiskPart.pot
==============================================================================
--- branches/iVL/.lang/FrmDiskPart.pot (original)
+++ branches/iVL/.lang/FrmDiskPart.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmDiskPart.class
+# /home/moe/projects/installer/FrmDiskPart.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartScheme.pot
==============================================================================
--- branches/iVL/.lang/FrmPartScheme.pot (original)
+++ branches/iVL/.lang/FrmPartScheme.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmPartScheme.class
+# /home/moe/projects/installer/FrmPartScheme.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmPartSel.class
+# /home/moe/projects/installer/FrmPartSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmPkgSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPkgSel.pot (original)
+++ branches/iVL/.lang/FrmPkgSel.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmPkgSel.class
+# /home/moe/projects/installer/FrmPkgSel.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSelISO.pot
==============================================================================
--- branches/iVL/.lang/FrmSelISO.pot (original)
+++ branches/iVL/.lang/FrmSelISO.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmSelISO.class
+# /home/moe/projects/installer/FrmSelISO.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmSummary.pot
==============================================================================
--- branches/iVL/.lang/FrmSummary.pot (original)
+++ branches/iVL/.lang/FrmSummary.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmSummary.class
+# /home/moe/projects/installer/FrmSummary.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/FrmWinDrives.class
+# /home/moe/projects/installer/FrmWinDrives.class
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlCore.module
+# /home/moe/projects/installer/MdlCore.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -14,99 +14,99 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: MdlCore.module:235
+#: MdlCore.module:182
msgid "Scanning system for installable media. Please wait ..."
msgstr ""
-#: MdlCore.module:251
+#: MdlCore.module:198
msgid "No Installable Media Found"
msgstr ""
-#: MdlCore.module:253
+#: MdlCore.module:200
msgid "Setup was unable to find any installable media on your system.
Please insert your VectorLinux "
msgstr ""
-#: MdlCore.module:253
+#: MdlCore.module:200
msgid "installation CD and click "
msgstr ""
-#: MdlCore.module:253
+#: MdlCore.module:200
msgid "to try again"
msgstr ""
-#: MdlCore.module:414
+#: MdlCore.module:361
msgid "Build Date: "
msgstr ""
-#: MdlCore.module:414
+#: MdlCore.module:361
msgid "MINIMUM REQUIREMENTS"
msgstr ""
-#: MdlCore.module:419
+#: MdlCore.module:366
msgid "Setup is unable to find SETUP.CONF in your install media. This
could be symptoms of a bad burn or a bad ISO"
msgstr ""
-#: MdlCore.module:492
+#: MdlCore.module:439
msgid "Cannot find SETUP.CONF"
msgstr ""
-#: MdlCore.module:500
+#: MdlCore.module:447
msgid "Preparation"
msgstr ""
-#: MdlCore.module:501
+#: MdlCore.module:448
msgid "Language Selection"
msgstr ""
-#: MdlCore.module:502
+#: MdlCore.module:449
msgid "Find installation media"
msgstr ""
-#: MdlCore.module:503
+#: MdlCore.module:450
msgid "Disk Partitioning"
msgstr ""
-#: MdlCore.module:504
+#: MdlCore.module:451
msgid "Software Selection"
msgstr ""
-#: MdlCore.module:506
+#: MdlCore.module:453
msgid "Installation"
msgstr ""
-#: MdlCore.module:507
+#: MdlCore.module:454
msgid "Installation Summary"
msgstr ""
-#: MdlCore.module:509
+#: MdlCore.module:456
msgid "Install Operating System"
msgstr ""
-#: MdlCore.module:510
+#: MdlCore.module:457
msgid "System Configuration"
msgstr ""
-#: MdlCore.module:511
+#: MdlCore.module:458
msgid "Boot Menu Options"
msgstr ""
-#: MdlCore.module:512
+#: MdlCore.module:459
msgid "Regional Settings"
msgstr ""
-#: MdlCore.module:513
+#: MdlCore.module:460
msgid "System Administrator"
msgstr ""
-#: MdlCore.module:514
+#: MdlCore.module:461
msgid "User Accounts"
msgstr ""
-#: MdlCore.module:515
+#: MdlCore.module:462
msgid "Network Configuration"
msgstr ""
-#: MdlCore.module:516
+#: MdlCore.module:463
msgid "Hardware Configuration"
msgstr ""
Modified: branches/iVL/.lang/MdlDiskPart.pot
==============================================================================
--- branches/iVL/.lang/MdlDiskPart.pot (original)
+++ branches/iVL/.lang/MdlDiskPart.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlDiskPart.module
+# /home/moe/projects/installer/MdlDiskPart.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlObjSizer.pot
==============================================================================
--- branches/iVL/.lang/MdlObjSizer.pot (original)
+++ branches/iVL/.lang/MdlObjSizer.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlObjSizer.module
+# /home/moe/projects/installer/MdlObjSizer.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlPartSel.module
+# /home/moe/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlPkgSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPkgSel.pot (original)
+++ branches/iVL/.lang/MdlPkgSel.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlPkgSel.module
+# /home/moe/projects/installer/MdlPkgSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/.lang/MdlSetup.pot
==============================================================================
--- branches/iVL/.lang/MdlSetup.pot (original)
+++ branches/iVL/.lang/MdlSetup.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlSetup.module
+# /home/moe/projects/installer/MdlSetup.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -14,11 +14,15 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: MdlSetup.module:247
+#: MdlSetup.module:227
+msgid "BROUGHT TO YOU BY"
+msgstr ""
+
+#: MdlSetup.module:243
msgid "Activating swap space"
msgstr ""
-#: MdlSetup.module:249
+#: MdlSetup.module:245
msgid "Preparing filesystems"
msgstr ""
Modified: branches/iVL/.lang/MdlSummarize.pot
==============================================================================
--- branches/iVL/.lang/MdlSummarize.pot (original)
+++ branches/iVL/.lang/MdlSummarize.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlSummarize.module
+# /home/moe/projects/installer/MdlSummarize.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -22,23 +22,23 @@
msgid "OPTIONAL WINDOWS PARTITIONS TO BE MOUNTED AT BOOT TIME."
msgstr ""
-#: MdlSummarize.module:55
+#: MdlSummarize.module:56
msgid "INSTALL TYPE:"
msgstr ""
-#: MdlSummarize.module:55
+#: MdlSummarize.module:56
msgid "Custom"
msgstr ""
-#: MdlSummarize.module:57
+#: MdlSummarize.module:58
msgid "BULK PACKAGES:"
msgstr ""
-#: MdlSummarize.module:61
+#: MdlSummarize.module:62
msgid "OPTIONAL PACKAGES:"
msgstr ""
-#: MdlSummarize.module:67
+#: MdlSummarize.module:69
msgid "Full"
msgstr ""
Modified: branches/iVL/.lang/MdlWinDrives.pot
==============================================================================
--- branches/iVL/.lang/MdlWinDrives.pot (original)
+++ branches/iVL/.lang/MdlWinDrives.pot Tue Oct 14 12:46:32 2008
@@ -1,4 +1,4 @@
-# /home/remote/area-51/projects/installer/MdlWinDrives.module
+# /home/moe/projects/installer/MdlWinDrives.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Tue Oct 14 12:46:32 2008
@@ -0,0 +1,7 @@
+- Cleaned up redundant unnecessary code in MdlCore
+- Cleaned up unnecessary code from the package selection click() event
+- Tuned the package selection description label
+- Added vertically scrolling credits during installation process ;)
+ * (Bug @ Lost&LovingLinux) ** Maybe gb.gtk bug?
+
+
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Tue Oct 14 12:46:32 2008
@@ -36,7 +36,7 @@
-ME.Maximized = TRUE
+'ME.Maximized = TRUE
frmInit = MdlCore.frmInit
'MdlCore.LOCK_GUI
'frmInit = FrmLangSel
@@ -70,8 +70,8 @@
.tvPlan.BackColor = Color.transparent
.tlBanner.Height = .PictureBox1.Height
'.tvPlan.Width = MdlCore.iLeftWidth
- ' .Width = 800
- ' .Height = 600
+ .Width = 800
+ .Height = 600
END WITH
Added: branches/iVL/FrmCredits.class
==============================================================================
--- (empty file)
+++ branches/iVL/FrmCredits.class Tue Oct 14 12:46:32 2008
@@ -0,0 +1,46 @@
+' Gambas class file
+
+
+' This file is part of vinstall-ng
+
+' vinstall-ng is free software: you can redistribute it and/or modify
+' it under the terms of the GNU General Public License as published by
+' the Free Software Foundation, either version 2 of the License, or
+' (at your option) any later version.
+
+' vinstall-ng is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+' GNU General Public License for more details.
+
+' You should have received a copy of the GNU General Public License
+' along with vinstall-ng. If not, see <http://www.gnu.org/licenses/>.
+
+
+PUBLIC SUB Timer1_Timer()
+
+ INC ScrollView1.ScrollY
+ 'PRINT ScrollView1.scrolly & " |" & ScrollView1.ScrollH & " | " &
ScrollView1.Height
+ IF ScrollView1.ScrollY = ScrollView1.scrollh - ScrollView1.Height THEN
ScrollView1.Scroll(0, 0)
+
+
+END
+
+PUBLIC SUB Form_Open()
+ ME.TextLabel1.Adjust
+ ME.TextLabel1.Height = ME.ScrollView1.Height * 15
+ ME.Timer1.Enabled = TRUE
+
+END
+
+
+
+
+PUBLIC SUB Form_Resize()
+
+ WITH ME
+ .PictureBox1.Move(.ClientWidth / 2 - (.PictureBox1.Width / 2), 4)
+ .ScrollView1.Move(.ClientWidth / 2 - (.ScrollView1.Width /
2), .PictureBox1.top + .PictureBox1.Height + 8)
+ .ScrollView1.Height = .ClientH - .ScrollView1.top - 12
+ END WITH
+END
Added: branches/iVL/FrmCredits.form
==============================================================================
--- (empty file)
+++ branches/iVL/FrmCredits.form Tue Oct 14 12:46:32 2008
@@ -0,0 +1,26 @@
+# Gambas Form File 2.0
+
+{ Form Form
+ MoveScaled(0,0,56,36)
+ Text = ("")
+ { ScrollView1 ScrollView
+ MoveScaled(3,8,50,26)
+ Border = False
+ ScrollBar = Scroll.None
+ { TextLabel1 TextLabel
+ MoveScaled(2,7,43,113)
+ Text = ("")
+ Alignment = Align.Center
+ }
+ }
+ { Timer1 #Timer
+ #X = 376
+ #Y = 8
+ Delay = 50
+ }
+ { PictureBox1 PictureBox
+ MoveScaled(5,2,41,6)
+ Picture = Picture["images/installer.png"]
+ Stretch = True
+ }
+}
Modified: branches/iVL/FrmInstallSys.class
==============================================================================
--- branches/iVL/FrmInstallSys.class (original)
+++ branches/iVL/FrmInstallSys.class Tue Oct 14 12:46:32 2008
@@ -20,12 +20,18 @@
PUBLIC SUB BEGIN_PROCESS()
DIM sRes AS Integer ' we will need to
+ DIM sCredits AS String = DConv(File.Load(ClsGlobal.sSourceMnt
&/ "CREDIT"))
MdlCore.lock_gui()
FMain.FrmCurr = ME
FMain.tvPlan["Inst0"].Picture = MdlCore.sDonePic
FMain.tvPlan["Inst1"].Picture = MdlCore.sNowPic
FMain.tvPlan["Inst1"].Selected = TRUE
+ Message(sCredits)
+ ' LOAD CREDITS INTO THE TEXTLABEL
+ FrmCredits.TextLabel1.text = "<b>" & "BROUGHT TO YOU BY"
& "</b><br><br><br>" &
+ sCredits
+ RETURN
MdlInstallSys.ACTIVATE_SWAP_SPACE() ' activate swap for the current install
@@ -60,7 +66,11 @@
PRINT "Begin installation process"
' ' ' MdlSetup.BEGIN_INSTALLATION()
+' run external credits here
+ FrmCredits.Reparent(ME.embCredits)
+ FrmCredits.Show
+
END
@@ -135,6 +145,8 @@
.tlCurrPkg2.Move(4, .pbInstallProg.top + .pbInstallProg.Height + 24,
MdlObjSizer.get_object_width(.tlCurrPkg2.text))
'.pbInstallProg2.Move(8, .tlCurrPkg2.top + .tlCurrPkg2.Height +
2, .FrmProg.Width - (.pbInstallProg2.x * 2))
.pbInstallProg2.Move(4, tlCurrPkg2.top + .tlCurrPkg2.Height +
2, .hrsep.Width)
+ .embCredits.Move(.ClientWidth / 2 - (.embCredits.Width /
2), .pbInstallProg2.top + .pbInstallProg2.Height + 8)
+ .embCredits.Height = .ClientH - .embCredits.top - 16
END WITH
END
Modified: branches/iVL/FrmInstallSys.form
==============================================================================
--- branches/iVL/FrmInstallSys.form (original)
+++ branches/iVL/FrmInstallSys.form Tue Oct 14 12:46:32 2008
@@ -29,4 +29,7 @@
MoveScaled(3,26,11,3)
Text = ("Current Step ")
}
+ { embCredits Panel
+ MoveScaled(12,40,52,32)
+ }
}
Modified: branches/iVL/FrmPkgsel2.form
==============================================================================
--- branches/iVL/FrmPkgsel2.form (original)
+++ branches/iVL/FrmPkgsel2.form Tue Oct 14 12:46:32 2008
@@ -19,7 +19,7 @@
MoveScaled(1,2,56,13)
Background = Color.LightBackground
Text = ("")
- Alignment = Align.Left
+ Alignment = Align.Normal
Transparent = True
}
}
Modified: branches/iVL/FrmZoneSet.form
==============================================================================
--- branches/iVL/FrmZoneSet.form (original)
+++ branches/iVL/FrmZoneSet.form Tue Oct 14 12:46:32 2008
@@ -11,7 +11,7 @@
Text = ("Choose the correct timezone for the area in which you live.")
}
{ cbHwClock ComboBox
- MoveScaled(1,15,34,3.3333)
+ MoveScaled(1,15,34,3.25)
Text = ("ComboBox1")
ReadOnly = True
List = [("LocalTime"), ("UTC")]
@@ -21,7 +21,7 @@
Text = ("Choose how\nyour hardware clock is set up.\nChoose UTC if you
know that the clock is set up to\nthe Coordinated Universal Time (UTC/GMT).
Otherwise,\nChoose localtime since most PCs are setup this way.")
}
{ tlbanner TextLabel
- MoveScaled(2,1,27,3.3333)
+ MoveScaled(2,1,27,3.25)
Text = ("")
}
{ hrsep Separator
Modified: branches/iVL/MdlCore.module
==============================================================================
--- branches/iVL/MdlCore.module (original)
+++ branches/iVL/MdlCore.module Tue Oct 14 12:46:32 2008
@@ -17,9 +17,6 @@
-
-
-'PUBLIC sCatPic AS picture = Picture["icon:/16/linux"]
PUBLIC sCatPic AS Picture = Picture["images/category.png"]
PUBLIC sToDopic AS Picture = Picture["images/circle.png"]
PUBLIC sNowPic AS picture = Picture["images/arrow.png"]
@@ -39,53 +36,30 @@
SHELL "ls " & ClsGlobal.sSourceMnt & " | grep -i vl* | grep -i iso" TO
sResults
sResults = Trim(sResults)
'Message(sResults)
- IF sResults <> "" THEN
- IF InStr(sResults, gb.NewLine) THEN 'more than one iso was
found... do a loop for each one
+ 'IF sResults <> "" THEN
+ ' IF InStr(sResults, gb.NewLine) THEN 'more than one iso was
found... do a loop for each one
' this loop will mount each iso and store it's SETUP.CONF to
a temp file
sISOList = Split(sResults, gb.NewLine)
FOR i = 0 TO sISOList.count - 1
sIso = Trim(sISOList[i])
- SHELL "umount /mnt/loop" WAIT
+
IF Exist("/mnt/loop") = FALSE THEN
MKDIR "/mnt/loop"
END IF
+ SHELL "umount /mnt/loop" WAIT
SHELL "mount -o loop " & ClsGlobal.sSourceMnt &/ sISO
& Space(1) & "/mnt/loop" WAIT
IF Exist("/mnt/loop/veclinux/SETUP.CONF") = TRUE
THEN
IF FrmSelISO.lstInstallableImg.Find(sISO & "
on " & sDrive) = -1 THEN
-
- File.Save(Temp(siso),
File.Load("/mnt/loop/veclinux/SETUP.CONF"))
-
- FrmSelISO.lstInstallableImg.Add(sISO & " on " &
sDrive)
-
- END IF
+ File.Save(Temp(siso),
File.Load("/mnt/loop/veclinux/SETUP.CONF"))
+ FrmSelISO.lstInstallableImg.Add(sISO & "
on " & sDrive)
+ END IF
END IF
SHELL "umount /mnt/loop" WAIT
NEXT
SHELL "umount " & ClsGlobal.sSourceMnt WAIT
-
-
-
- ELSE ' only one iso found
- IF IsDir("/mnt/loop") = FALSE THEN
- TRY MKDIR "/mnt/loop"
- END IF
- SHELL "umount /mnt/loop" WAIT 'clear the mount point
- SHELL "mount -o loop " & ClsGlobal.sSourceMnt &/ sResults &
Space(1) & " /mnt/loop" WAIT
- File.Save(Temp(sResults),
File.Load("/mnt/loop/veclinux/SETUP.CONF"))
- 'Message(File.Load(Temp(sResults)))
- SHELL "umount /mnt/loop && umount " & ClsGlobal.sSourceMnt
WAIT
- IF FrmSelISO.lstInstallableImg.Find(sResults & " on " &
sDrive) = -1 THEN
- FrmSelISO.lstInstallableImg.Add(sResults & " on " &
sDrive)
- END IF
- END IF
-
- ELSE 'no ISO's found
- SHELL "umount " & ClsGlobal.sSourceMnt
-
- END IF
-
+
END
@@ -99,8 +73,7 @@
DIM i AS Integer
DIM sPartition AS String
-'SHELL "sudo /sbin/probepart | grep -e \"*Linux$\" | cut -f 1 -d \' \'" TO
sResults
- 'SHELL "/sbin/probepart |grep -i extended | grep -i swap | cut -f 1 -d
\' \' | grep /dev" TO sResults
+
SHELL "probepart | grep -v -i \'swap\' | grep -v -i \'ext\' |grep
\'/dev\'| grep -v \'Disk\'| cut -f 1 -d \' \'" TO sResults
'Message(sResults)
sResults = Trim(sResults)
@@ -137,7 +110,8 @@
SHELL sCmd TO sList
sList = Trim(sList)
'PRINT sList
- IF InStr(sList, Space(1)) > 0 THEN 'there is more than one drive
+ IF Len(sList) < 1 THEN RETURN
+ 'IF InStr(sList, Space(1)) > 0 THEN 'there is more than one drive
sDrives = Split(sList, Space(1))
FOR i = 0 TO sDrives.count - 1
@@ -162,35 +136,8 @@
END IF
SHELL "umount " & sMountPoint WAIT
- 'SHELL "umount /dev/" & sDrive WAIT
- 'SHELL "umount " & sDrive WAIT
+
NEXT
-
- ELSE ' only one drive found
- sDrive = Trim(sList)
- SHELL "mount /dev/" & sDrive & Space(1) & sMountPoint WAIT
- IF Exist(sMountPoint &/ "veclinux" &/ "SETUP.CONF") = TRUE THEN
- sDump = ME.ID_DISTRO(sMountPoint &/ "veclinux"
&/ "SETUP.CONF")
- 'save a copy of SETUP.CONF in a temp disposable file
- ' this temp file will be named as the last characters of
the drive that contains the distro (ie, hda, sg0, sda)
- ' this information will be used FOR reading the file
later
-
- File.Save(Temp$(sDrive), DConv(File.Load(sMountPoint
&/ "veclinux" &/ "SETUP.CONF")))
- 'Message.Info(File.Load(Temp$(sDrive)))
-
- IF FrmSelISO.lstInstallableImg.Find(sDump & " on "
& "/dev/" & sDrive) = -1 THEN 'only add the entry if not found
- FrmSelISO.lstInstallableImg.Add(sDump & " on " & "/dev/" &
sDrive)
- END IF
-
-
- END IF
- 'SHELL "umount /dev/" & clsglobal.sSourceMnt WAIT
- SHELL "umount " & ClsGlobal.sSourceMnt WAIT
-
-
- END IF
-
-
MdlCore.unlock_gui()
fmain.btback.Enabled = FALSE
Modified: branches/iVL/MdlPkgSel.module
==============================================================================
--- branches/iVL/MdlPkgSel.module (original)
+++ branches/iVL/MdlPkgSel.module Tue Oct 14 12:46:32 2008
@@ -111,21 +111,21 @@
END
-PUBLIC SUB Packages_click()
-
-
-
- IF ClsPkgSel.arrPkgs THEN
- ClsPkgSel.arrPkgs.Clear
- END IF
- ME.GET_USER_PKG_SELECTION()
-
- ' Now display a description here
-
-
- 'PRINT sDump
-
-END
+' ' ' PUBLIC SUB Packages_click()
+' ' '
+' ' '
+' ' '
+' ' ' IF ClsPkgSel.arrPkgs THEN
+' ' ' ClsPkgSel.arrPkgs.Clear
+' ' ' END IF
+' ' ' ME.GET_USER_PKG_SELECTION()
+' ' '
+' ' ' ' Now display a description here
+' ' '
+' ' '
+' ' ' 'PRINT sDump
+' ' '
+' ' ' END
PUBLIC SUB Packages_enter()
@@ -135,8 +135,6 @@
DIM i AS Integer
DIM sDesc AS String
-
-
sSearch = Right(LAST.tag, Len(LAST.tag) - InStr(LAST.tag, "/"))
'Message(sSearch)
@@ -152,8 +150,12 @@
NEXT
sDesc = Trim(sDesc)
-
- FrmPkgsel2.tlPkgDesc.Text = sDesc
+ WITH FrmPkgsel2.tlPkgDesc
+ .Move(4, 4, .Parent.Width - (.left * 2), .Parent.Height - (.top * 2))
+ .text = Trim(sDesc)
+ .Alignment = Align.Normal
+ 'FrmPkgsel2.tlPkgDesc.Text = sDesc
+ END WITH
END
@@ -162,18 +164,18 @@
-PUBLIC SUB OptBulks_click()
-
- IF ClsPkgSel.arrBulks THEN
- ClsPkgSel.arrBulks.Clear
- END IF
- ME.GET_USER_BULK_SELECTION
-
- PRINT LAST.tag
-
-END
-
-
+' PUBLIC SUB OptBulks_click()
+'
+' IF ClsPkgSel.arrBulks THEN
+' ClsPkgSel.arrBulks.Clear
+' END IF
+' ME.GET_USER_BULK_SELECTION
+'
+' PRINT LAST.tag
+'
+' END
+' '
+' '
PUBLIC SUB GET_USER_BULK_SELECTION()
DIM cb AS CheckBox
Modified: branches/iVL/MdlSetup.module
==============================================================================
--- branches/iVL/MdlSetup.module (original)
+++ branches/iVL/MdlSetup.module Tue Oct 14 12:46:32 2008
@@ -170,28 +170,7 @@
' let's get a package count
IF bCustom = FALSE THEN ' DOING A FULL INSTALL
- ' SHELL "cat " & ClsGlobal.sSourceMnt &/ "veclinux" &/ "SETUP.CONF |
grep ^BULK" TO sDump
- ' sDump = Trim(sDump)
- ' sTotalList = sTotalList & sDump
- ' sTotalList = Trim(sTotalList)
- ' sDump = ""
- ' SHELL "cat " & ClsGlobal.sSourceMnt &/ "veclinux" &/ "SETUP.CONF |
grep ^CONF" TO sDump
- ' sTotalList = sTotalList & gb.NewLine & Trim(sDump)
- ' sDump = ""
- ' SHELL "cat " & ClsGlobal.sSourceMnt &/ "packages" &/ "PACKAGES.TXT
| grep ^\"PACKAGE NAME\"" TO sDump
- ' sTotalList = sTotalList & gb.NewLine & Trim(sDump)
- ' sDump = ""
- ' SHELL "ls /mnt/cdrom/packages/required/*.t?z" TO sDump
- ' sTotalList = sTotalList & gb.NewLine & Trim(sDump)
- ' sDump = ""
- ' ' split the array
- ' sList = Split(sTotalList, "\n")
- ' FOR i = 0 TO sList.Count - 1
- ' IF sList[i] = "" THEN
- ' sList.Delete(i)
- ' END IF
- ' NEXT
- ' iQTY = sList.Count
+
SHELL "find " & ClsGlobal.sSourceMnt & " -name \"*.tlz\"|wc -l" TO
iQTY
ELSE ' GOING FOR CUSTOM INSTALL
@@ -241,14 +220,31 @@
END
PUBLIC SUB BEGIN_INSTALLATION()
+ DIM sCreditList AS String = File.Load(ClsGlobal.sSourceMnt &/ "CREDIT")
+ DIM sCredit AS String[] = Split(sCreditList, "\n")
+ DIM i AS Integer
+ FrmCredits.TextLabel1.text = "<b>" & ("BROUGHT TO YOU BY")
& "</b><br><br><br><br><br>" '& sCreditList
+ FOR i = 0 TO sCredit.count - 1
+ IF InStr(sCredit[i], "M0E-lnx") THEN
+ sCredit[i] = "<b>" & "M0E-lnx" & "</b><br>" & "[ GUI
Installer, vpackager, VASMCC ]"
+ ELSE IF InStr(sCredit[i], "Uelsk8s") THEN
+ sCredit[i] = "<b>" & "Uelsk8s" & "</b><br>" & "[ GUI
Installer, ISO Master, vlthemeswitch ]"
+ ELSE IF Left(sCredit[i], Len("Lost")) = "Lost" THEN
+ sCredit[i] = "Lost-n-LovinLinux" ' " Lost " & " & " & "
LovinLinux ""
+ END IF
+ FrmCredits.TextLabel1.text = FrmCredits.TextLabel1.text &
sCredit[i] & "<br><br><br>"
+ NEXT
+
+
+
MdlCore.LOCK_GUI()
FrmInstallSys.tlCurrPkg.text = ("Activating swap space")
MdlInstallSys.ACTIVATE_SWAP_SPACE()
FrmInstallSys.tlCurrPkg.text = ("Preparing filesystems")
MdlPartFrmt.PREPARE_ALL_PARTITIONS() ' This will start the install
process
-
+
END
Modified: branches/iVL/MdlSummarize.module
==============================================================================
--- branches/iVL/MdlSummarize.module (original)
+++ branches/iVL/MdlSummarize.module Tue Oct 14 12:46:32 2008
@@ -52,6 +52,7 @@
END IF
IF ClsPkgSel.bCustom = TRUE THEN
+ FrmSummary.tlSummary.Height = FrmSummary.scrSumm.Height * 1.5
sText = sText & "<b>" & ("INSTALL TYPE:") & "</b>" & Space(1) &
("Custom") & "<br>"
sText = sText & "<br><b>" & ("BULK PACKAGES:") & "</b> "
@@ -64,7 +65,9 @@
NEXT
ELSE
+ FrmSummary.tlSummary.Height = FrmSummary.scrSumm.Height * 0.75
sText = sText & "<b>" & ("INSTALL TYPE:") & "</b>" & Space(1) &
("Full") & "<br>"
+
END IF
|
|
From: <cod...@go...> - 2008-10-13 21:26:48
|
Author: m0e.lnx
Date: Mon Oct 13 14:26:07 2008
New Revision: 227
Modified:
branches/iVL/FrmRootPass.form
Log:
corrected problem with the tab key in root password setting
Modified: branches/iVL/FrmRootPass.form
==============================================================================
--- branches/iVL/FrmRootPass.form (original)
+++ branches/iVL/FrmRootPass.form Mon Oct 13 14:26:07 2008
@@ -3,6 +3,13 @@
{ Form Form
MoveScaled(0,0,87,56)
Text = ("")
+ { tlBanner TextLabel
+ MoveScaled(2,2,62,3)
+ Text = ("System Administrator")
+ }
+ { hrSep Separator
+ MoveScaled(2,5,15,1)
+ }
{ Frame1 Frame
MoveScaled(1,8,72,22)
Text = ("")
@@ -11,33 +18,26 @@
Text = ("The linux root account is pre-assigned to be used as the
system administrator's account. This account is used to perform system-wide
changes such as software upgrades, managing user accounts etc. \n\nMost
other operations do not require administrative priviledges.\nThe root
password must be entered twice for ensured accuracy. When choosing a root
password, think of something easy for you to remember, but hard for others
to guess.")
}
}
- { tlBanner TextLabel
- MoveScaled(2,2,62,3.125)
- Text = ("System Administrator")
- }
- { hrSep Separator
- MoveScaled(2,5,15,1)
+ { tlPass1 TextLabel
+ MoveScaled(2,32,22,4)
+ Text = ("Enter Password")
}
- { Button1 Button
- MoveScaled(53,51,11,2)
- Text = ("Set Password")
+ { tlPass2 TextLabel
+ MoveScaled(3,36,22,4)
+ Text = ("Re-Enter Password")
}
- { tbPasswd2 TextBox
- MoveScaled(32,36,21,3.125)
+ { tbPasswd1 TextBox
+ MoveScaled(32,31,21,3)
Text = ("")
Password = True
}
- { tbPasswd1 TextBox
- MoveScaled(32,31,21,3.125)
+ { tbPasswd2 TextBox
+ MoveScaled(32,36,21,3)
Text = ("")
Password = True
}
- { tlPass1 TextLabel
- MoveScaled(2,32,22,4)
- Text = ("Enter Password")
- }
- { tlPass2 TextLabel
- MoveScaled(3,36,22,4)
- Text = ("Re-Enter Password")
+ { Button1 Button
+ MoveScaled(53,51,11,2)
+ Text = ("Set Password")
}
}
|
|
From: <cod...@go...> - 2008-10-13 17:15:52
|
Author: m0e.lnx
Date: Mon Oct 13 10:15:20 2008
New Revision: 226
Modified:
branches/iVL/.lang/FMain.pot
branches/iVL/DevLog
branches/iVL/FMain.class
branches/iVL/FrmNetConf.class
branches/iVL/FrmUserAdd.class
Log:
Moved offer to reboot the system until after the nsetwork configuration
wizard
Modified: branches/iVL/.lang/FMain.pot
==============================================================================
--- branches/iVL/.lang/FMain.pot (original)
+++ branches/iVL/.lang/FMain.pot Mon Oct 13 10:15:20 2008
@@ -14,43 +14,59 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FMain.class:231
+#: FMain.class:226
msgid "Please wait while setup attampts to run the partitioning utility"
msgstr ""
-#: FMain.class:233
+#: FMain.class:228
msgid "Please wait while setup analyses your current partition setup."
msgstr ""
-#: FMain.class:233
+#: FMain.class:228
msgid "This may take a while ..."
msgstr ""
-#: FMain.class:247
+#: FMain.class:242
msgid "You must select a \"/\" partition. This is the target where the
system will install to"
msgstr ""
-#: FMain.class:303
+#: FMain.class:298
msgid "Skipping lilo setup"
msgstr ""
-#: FMain.class:416
+#: FMain.class:327
+msgid "has been installed on your computer."
+msgstr ""
+
+#: FMain.class:327
+msgid "Would you like to reboot your computer now?"
+msgstr ""
+
+#: FMain.class:327
+msgid "Yes"
+msgstr ""
+
+#: FMain.class:327
+msgid "No"
+msgstr ""
+
+#: FMain.class:421
msgid "Process Overview"
msgstr ""
-#: FMain.class:436
+#: FMain.class:441
msgid "Next"
msgstr ""
-#: FMain.class:442
+#: FMain.class:447
msgid "Back"
msgstr ""
-#: FMain.class:448
+#: FMain.class:453
msgid "Exit Installation"
msgstr ""
-#: FMain.class:464
+#: FMain.class:469
msgid "Button1"
msgstr ""
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Mon Oct 13 10:15:20 2008
@@ -1,3 +0,0 @@
-- Fixed milisecond multiplier for LILO conf writer module ( units * 10)
-- Corrected problem with user accounts created without UID value
-- Updated binary
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Mon Oct 13 10:15:20 2008
@@ -32,11 +32,6 @@
-
-
-
-
-
IF NOT FrmCurr OR FrmCurr = "" THEN FrmCurr = FrmSelISO
@@ -323,9 +318,19 @@
CASE "FrmNetConf"
- MdlNetConf.SET_HOSTNAME
- MdlNetConf.SET_DNS_ADDRESSES
- MdlNetConf.WRITE_INET
+ MdlNetConf.SET_HOSTNAME(FrmNetConf.txtHostName.text)
+ MdlNetConf.SET_DNS_ADDRESSES()
+ MdlNetConf.WRITE_INET()
+
+ 'offer to reboot here
+ SELECT CASE Message.Question(ClsGlobal.DISTRO & Space(1) &
("has been installed on your computer.") & "<br>" &
+ ("Would you like to reboot your computer now?"), ("Yes"), ("No"))
+ CASE 1
+ SHELL "shutdown -r now"
+ CASE ELSE
+ RETURN
+ 'STOP EVENT
+ END SELECT
' frmNext = FrmLilo ' this is already done
END SELECT
Modified: branches/iVL/FrmNetConf.class
==============================================================================
--- branches/iVL/FrmNetConf.class (original)
+++ branches/iVL/FrmNetConf.class Mon Oct 13 10:15:20 2008
@@ -42,7 +42,7 @@
END WITH
ME.txtHostName.text = ME.GET_CURRENT_HOST_NAME()
- MdlNetConf.LIST_NETWORK_INTERFACES
+ MdlNetConf.LIST_NETWORK_INTERFACES()
cbUseManDNS.Value = FALSE
tlBanner.text = "<h3>" & tlBanner.text & "</h3>"
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Mon Oct 13 10:15:20 2008
@@ -160,14 +160,14 @@
SHELL "umount /mnt/target/tmp" WAIT
SHELL "umount /mnt/target/sys" WAIT
- SELECT CASE Message.Question(ClsGlobal.DISTRO & Space(1) & ("has been
installed on your computer.") & "<br>" &
- ("Would you like to reboot your computer now?"), ("Yes"), ("No"))
- CASE 1
- SHELL "shutdown -r now"
- CASE ELSE
- RETURN
- 'STOP EVENT
- END SELECT
+ ' ' ' SELECT CASE Message.Question(ClsGlobal.DISTRO & Space(1) & ("has
been installed on your computer.") & "<br>" &
+ ' ' ' ("Would you like to reboot your computer now?"), ("Yes"), ("No"))
+ ' ' ' CASE 1
+ ' ' ' SHELL "shutdown -r now"
+ ' ' ' CASE ELSE
+ ' ' ' RETURN
+ ' ' ' 'STOP EVENT
+ ' ' ' END SELECT
|
|
From: <cod...@go...> - 2008-10-12 04:46:23
|
Author: m0e.lnx
Date: Sat Oct 11 21:46:00 2008
New Revision: 225
Modified:
branches/iVL/.project
branches/iVL/DevLog
branches/iVL/FMain.class
branches/iVL/FrmUserAdd.class
branches/iVL/MdlConfLilo.module
branches/iVL/installer.gambas
Log:
- Fixed milisecond multiplier for LILO conf writer module ( units * 10)
- Corrected problem with user accounts created without UID value
- Updated binary
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Sat Oct 11 21:46:00 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.108
+Version=0.0.110
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Sat Oct 11 21:46:00 2008
@@ -1,2 +1,3 @@
-- Fixed stall issue @ user account creation window
+- Fixed milisecond multiplier for LILO conf writer module ( units * 10)
+- Corrected problem with user accounts created without UID value
- Updated binary
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Sat Oct 11 21:46:00 2008
@@ -41,7 +41,7 @@
-'ME.Maximized = TRUE
+ME.Maximized = TRUE
frmInit = MdlCore.frmInit
'MdlCore.LOCK_GUI
'frmInit = FrmLangSel
@@ -75,8 +75,8 @@
.tvPlan.BackColor = Color.transparent
.tlBanner.Height = .PictureBox1.Height
'.tvPlan.Width = MdlCore.iLeftWidth
- .Width = 800
- .Height = 600
+ ' .Width = 800
+ ' .Height = 600
END WITH
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Sat Oct 11 21:46:00 2008
@@ -127,17 +127,18 @@
SHELL "mount -o bind /proc /mnt/target/proc" WAIT
SHELL "mount -o bind /dev /mnt/target/dev" WAIT
PRINT "Deleting old user group"
+
SHELL "chroot /mnt/target /usr/sbin/groupdel " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
'SHELL "chroot /mnt/target /usr/sbin/groupadd -g " & iUID &
Space(1) & ME.tbUsername.Text WAIT
PRINT "Creating new user group"
- SHELL "chroot /mnt/target /usr/sbin/groupadd " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
+ SHELL "chroot /mnt/target /usr/sbin/groupadd " & "-g" & Space(1)
& iUID & Space(1) & ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
'Message("chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups &
ME.tbUsername.Text)
'SHELL "chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups & Space(1) &
ME.tbUsername.Text WAIT
PRINT "Creating new user account"
SHELL "chroot /mnt/target /usr/sbin/useradd -m -c " & "\'" &
ME.tbRealname.text & "\'" & " -g " & ME.tbUsername.text &
- " -p " & ME.tbPasswd1.text & " -G " & "\'" & sGroups & "\' " &
ME.tbUsername.Text WAIT
+ " -p " & ME.tbPasswd1.text & " -u " & iUID & " -G " & "\'" &
sGroups & "\' " & ME.tbUsername.Text WAIT
' sDocmd = "useradd -m -c " & "\'" & sname & "\'" & " -g " &
slogin & " -p " & ME.txtpass1.Text &
'" -G " & "\'" & sgrparse & "\' " & slogin
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Sat Oct 11 21:46:00 2008
@@ -39,7 +39,7 @@
END IF
- iTimeout = FrmLilo.sbTimer.Value * 100
+ iTimeout = FrmLilo.sbTimer.Value * 10
sOut = "# LILO Configuration File \n" &
"# Generated by the VectorLinux installer \n" &
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|
|
From: <cod...@go...> - 2008-10-12 03:23:17
|
Author: m0e.lnx
Date: Sat Oct 11 20:22:36 2008
New Revision: 224
Modified:
branches/iVL/.project
branches/iVL/DevLog
branches/iVL/FrmUserAdd.class
branches/iVL/installer.gambas
Log:
- Fixed stall issue @ user account creation window
- Updated binary
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Sat Oct 11 20:22:36 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.106
+Version=0.0.108
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Sat Oct 11 20:22:36 2008
@@ -1,2 +1,2 @@
-- Updated category image for left pane (oMasta)
-- Updated binary
\ No newline at end of file
+- Fixed stall issue @ user account creation window
+- Updated binary
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Sat Oct 11 20:22:36 2008
@@ -67,9 +67,8 @@
DIM sGroups AS
String '= '"plugdev,disk,cdrom,floppy,lp,scanner,audio,video,games"
DIM cb AS CheckBox
+'Message("Ateempting to create user now")
-
-
IF ME.tbUsername.Text = "" THEN
Message(("Enter the login name that this user will use to login to
this system."))
ELSE
@@ -77,14 +76,14 @@
IF ME.tbUsername.text LIKE "*[A-Z]*" THEN
'IF ME.tbUsername.textNOT LIKE "*[a-z0-9_-]*" THEN
Message.Error(("Login name field contains illegal characters. Please
use only lowercase letters and numbers"))
- STOP EVENT
+ RETURN
'ELSE IF ME.tbUsernameNOT LIKE "*[a-z0-9_-]*" THEN
END IF
SHELL "echo " & ME.tbUsername.Text & "| grep -e \'[^a-z0-9_-]\'" TO
sCHAR
- SHELL "grep -e ^" & ME.tbUsername.Text & ClsGlobal.sTargetMnt
&/ "etc/passwd" TO sLogE
+ SHELL "grep -e ^" & ME.tbUsername.Text & Space(1) &
ClsGlobal.sTargetMnt &/ "etc/passwd" TO sLogE
IF sCHAR <> "" THEN
Message(("Username contains illegal characters"))
@@ -122,16 +121,21 @@
' need to do some binding for this to work
- SHELL "mount -o bind /sys " & ClsGlobal.sTargetMnt &/ "sys"
WAIT
- SHELL "mount -o bind /tmp " & ClsGlobal.sTargetMnt &/ "tmp"
WAIT
- SHELL "mount -o bind /proc " & ClsGlobal.sTargetMnt &/ "proc"
WAIT
- SHELL "mount -o bind /dev " & ClsGlobal.sTargetMnt &/ "dev"
WAIT
-
- SHELL "chroot /mnt/target /usr/sbin/groupdel " &
ME.tbUsername.Text & " &> /dev/null" WAIT
+ PRINT "Mounting system locations with bind options"
+ SHELL "mount -o bind /sys /mnt/target/sys" WAIT
+ SHELL "mount -o bind /tmp /mnt/target/tmp" WAIT
+ SHELL "mount -o bind /proc /mnt/target/proc" WAIT
+ SHELL "mount -o bind /dev /mnt/target/dev" WAIT
+ PRINT "Deleting old user group"
+ SHELL "chroot /mnt/target /usr/sbin/groupdel " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
'SHELL "chroot /mnt/target /usr/sbin/groupadd -g " & iUID &
Space(1) & ME.tbUsername.Text WAIT
- SHELL "chroot /mnt/target /usr/sbin/groupadd " &
ME.tbUsername.Text & " &> /dev/null" WAIT
+ PRINT "Creating new user group"
+ SHELL "chroot /mnt/target /usr/sbin/groupadd " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
+
'Message("chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups &
ME.tbUsername.Text)
+
'SHELL "chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups & Space(1) &
ME.tbUsername.Text WAIT
+ PRINT "Creating new user account"
SHELL "chroot /mnt/target /usr/sbin/useradd -m -c " & "\'" &
ME.tbRealname.text & "\'" & " -g " & ME.tbUsername.text &
" -p " & ME.tbPasswd1.text & " -G " & "\'" & sGroups & "\' " &
ME.tbUsername.Text WAIT
' sDocmd = "useradd -m -c " & "\'" & sname & "\'" & " -g " &
slogin & " -p " & ME.txtpass1.Text &
@@ -150,10 +154,10 @@
ENDIF
ENDIF
ENDIF
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "dev" WAIT
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "proc" WAIT
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "tmp" WAIT
- SHELL "umount " & ClsGlobal.sTargetMnt &/ "sys" WAIT
+ SHELL "umount /mnt/target/dev" WAIT
+ SHELL "umount /mnt/target/proc" WAIT
+ SHELL "umount /mnt/target/tmp" WAIT
+ SHELL "umount /mnt/target/sys" WAIT
SELECT CASE Message.Question(ClsGlobal.DISTRO & Space(1) & ("has been
installed on your computer.") & "<br>" &
("Would you like to reboot your computer now?"), ("Yes"), ("No"))
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|
|
From: <cod...@go...> - 2008-10-10 20:58:22
|
Author: m0e.lnx
Date: Fri Oct 10 13:57:45 2008
New Revision: 223
Added:
branches/iVL/images/installer_new.png (contents, props changed)
Removed:
branches/iVL/images/installer-steel.png
Modified:
branches/iVL/.lang/MdlCore.pot
branches/iVL/.project
branches/iVL/DevLog
branches/iVL/MdlCore.module
branches/iVL/installer.gambas
Log:
- Updated category image for left pane (oMasta)
- Updated binary
Modified: branches/iVL/.lang/MdlCore.pot
==============================================================================
--- branches/iVL/.lang/MdlCore.pot (original)
+++ branches/iVL/.lang/MdlCore.pot Fri Oct 10 13:57:45 2008
@@ -14,99 +14,99 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: MdlCore.module:234
+#: MdlCore.module:235
msgid "Scanning system for installable media. Please wait ..."
msgstr ""
-#: MdlCore.module:250
+#: MdlCore.module:251
msgid "No Installable Media Found"
msgstr ""
-#: MdlCore.module:252
+#: MdlCore.module:253
msgid "Setup was unable to find any installable media on your system.
Please insert your VectorLinux "
msgstr ""
-#: MdlCore.module:252
+#: MdlCore.module:253
msgid "installation CD and click "
msgstr ""
-#: MdlCore.module:252
+#: MdlCore.module:253
msgid "to try again"
msgstr ""
-#: MdlCore.module:413
+#: MdlCore.module:414
msgid "Build Date: "
msgstr ""
-#: MdlCore.module:413
+#: MdlCore.module:414
msgid "MINIMUM REQUIREMENTS"
msgstr ""
-#: MdlCore.module:418
+#: MdlCore.module:419
msgid "Setup is unable to find SETUP.CONF in your install media. This
could be symptoms of a bad burn or a bad ISO"
msgstr ""
-#: MdlCore.module:491
+#: MdlCore.module:492
msgid "Cannot find SETUP.CONF"
msgstr ""
-#: MdlCore.module:499
+#: MdlCore.module:500
msgid "Preparation"
msgstr ""
-#: MdlCore.module:500
+#: MdlCore.module:501
msgid "Language Selection"
msgstr ""
-#: MdlCore.module:501
+#: MdlCore.module:502
msgid "Find installation media"
msgstr ""
-#: MdlCore.module:502
+#: MdlCore.module:503
msgid "Disk Partitioning"
msgstr ""
-#: MdlCore.module:503
+#: MdlCore.module:504
msgid "Software Selection"
msgstr ""
-#: MdlCore.module:505
+#: MdlCore.module:506
msgid "Installation"
msgstr ""
-#: MdlCore.module:506
+#: MdlCore.module:507
msgid "Installation Summary"
msgstr ""
-#: MdlCore.module:508
+#: MdlCore.module:509
msgid "Install Operating System"
msgstr ""
-#: MdlCore.module:509
+#: MdlCore.module:510
msgid "System Configuration"
msgstr ""
-#: MdlCore.module:510
+#: MdlCore.module:511
msgid "Boot Menu Options"
msgstr ""
-#: MdlCore.module:511
+#: MdlCore.module:512
msgid "Regional Settings"
msgstr ""
-#: MdlCore.module:512
+#: MdlCore.module:513
msgid "System Administrator"
msgstr ""
-#: MdlCore.module:513
+#: MdlCore.module:514
msgid "User Accounts"
msgstr ""
-#: MdlCore.module:514
+#: MdlCore.module:515
msgid "Network Configuration"
msgstr ""
-#: MdlCore.module:515
+#: MdlCore.module:516
msgid "Hardware Configuration"
msgstr ""
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Fri Oct 10 13:57:45 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.105
+Version=0.0.106
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Fri Oct 10 13:57:45 2008
@@ -1,3 +1,2 @@
-- Added binded mount of /sys, /dev, /proc, /tmp to target dir to allow
password changing / setting of root
- and user passwords
+- Updated category image for left pane (oMasta)
- Updated binary
Modified: branches/iVL/MdlCore.module
==============================================================================
--- branches/iVL/MdlCore.module (original)
+++ branches/iVL/MdlCore.module Fri Oct 10 13:57:45 2008
@@ -19,7 +19,8 @@
-PUBLIC sCatPic AS picture = Picture["icon:/16/linux"]
+'PUBLIC sCatPic AS picture = Picture["icon:/16/linux"]
+PUBLIC sCatPic AS Picture = Picture["images/category.png"]
PUBLIC sToDopic AS Picture = Picture["images/circle.png"]
PUBLIC sNowPic AS picture = Picture["images/arrow.png"]
PUBLIC sDonePic AS Picture = Picture["images/check.png"]
Added: branches/iVL/images/installer_new.png
==============================================================================
Binary file. No diff available.
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|