[PC-BSD Commits] r7232 - in pcbsd: current/SysInstaller stable/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Mon Jul 19 07:24:02 PDT 2010
Author: kris
Date: 2010-07-19 07:24:01 -0700 (Mon, 19 Jul 2010)
New Revision: 7232
Modified:
pcbsd/current/SysInstaller/sys-diskwidget.cpp
pcbsd/stable/SysInstaller/sys-diskwidget.cpp
Log:
Fixed typo when showing errors about "/usr" being too small, don't say "/var" when we mean "/usr"
Modified: pcbsd/current/SysInstaller/sys-diskwidget.cpp
===================================================================
--- pcbsd/current/SysInstaller/sys-diskwidget.cpp 2010-07-19 09:01:26 UTC (rev 7231)
+++ pcbsd/current/SysInstaller/sys-diskwidget.cpp 2010-07-19 14:24:01 UTC (rev 7232)
@@ -271,7 +271,7 @@
}
if ( sysFinalDiskLayout.at(i).at(2) == "/usr" && mysize < minUsr ) {
QMessageBox::critical(this, tr("PC-BSD Installer Error"),
- "'/var' " + tr("file-system is below the required minimum:") + " " + tmp.setNum(minUsr),
+ "'/usr' " + tr("file-system is below the required minimum:") + " " + tmp.setNum(minUsr),
QMessageBox::Ok);
return false;
}
Modified: pcbsd/stable/SysInstaller/sys-diskwidget.cpp
===================================================================
--- pcbsd/stable/SysInstaller/sys-diskwidget.cpp 2010-07-19 09:01:26 UTC (rev 7231)
+++ pcbsd/stable/SysInstaller/sys-diskwidget.cpp 2010-07-19 14:24:01 UTC (rev 7232)
@@ -271,7 +271,7 @@
}
if ( sysFinalDiskLayout.at(i).at(2) == "/usr" && mysize < minUsr ) {
QMessageBox::critical(this, tr("PC-BSD Installer Error"),
- "'/var' " + tr("file-system is below the required minimum:") + " " + tmp.setNum(minUsr),
+ "'/usr' " + tr("file-system is below the required minimum:") + " " + tmp.setNum(minUsr),
QMessageBox::Ok);
return false;
}
More information about the Commits
mailing list