From: <cod...@go...> - 2008-08-28 13:42:28
|
Author: M0E.lnx Date: Thu Aug 28 06:41:36 2008 New Revision: 151 Modified: branches/iVL/.lang/ClsGlobal.pot branches/iVL/.lang/FMain.pot branches/iVL/.lang/FrmPartSel.pot branches/iVL/.lang/FrmWinDrives.pot branches/iVL/.lang/MdlCore.pot branches/iVL/.lang/MdlPartSel.pot branches/iVL/.lang/MdlPkgSel.pot branches/iVL/.lang/MdlSetup.pot branches/iVL/.lang/MdlWinDrives.pot branches/iVL/MdlWinDrives.module Log: Fixed typo in MdlWinDrives Modified: branches/iVL/.lang/ClsGlobal.pot ============================================================================== --- branches/iVL/.lang/ClsGlobal.pot (original) +++ branches/iVL/.lang/ClsGlobal.pot Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/ClsGlobal.class +# /home/moe/area-51/projects/installer/ClsGlobal.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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/FMain.class +# /home/moe/area-51/projects/installer/FMain.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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/FrmPartSel.class +# /home/moe/area-51/projects/installer/FrmPartSel.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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/FrmWinDrives.class +# /home/moe/area-51/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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/MdlCore.module +# /home/moe/area-51/projects/installer/MdlCore.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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/MdlPartSel.module +# /home/moe/area-51/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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/MdlPkgSel.module +# /home/moe/area-51/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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/MdlSetup.module +# /home/moe/area-51/projects/installer/MdlSetup.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 Thu Aug 28 06:41:36 2008 @@ -1,4 +1,4 @@ -# /home/vluser/Area-51/projects/installer/MdlWinDrives.module +# /home/moe/area-51/projects/installer/MdlWinDrives.module # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/MdlWinDrives.module ============================================================================== --- branches/iVL/MdlWinDrives.module (original) +++ branches/iVL/MdlWinDrives.module Thu Aug 28 06:41:36 2008 @@ -126,7 +126,7 @@ sDump1 = "" 'sDisks.Clear SHELL "probepart | grep -i ntfs | cut -f 1 -d \' \'" TO sDump1 - sDump = Trim(sDump1) + sDump1 = Trim(sDump1) wintfs = Split(sDump1, "\n") FOR i = 0 TO wintfs.Count - 1 sPartNo = Right(wintfs[i], Len(wintfs[i]) - Len("/dev/hda")) |