diff options
author | Matt Wilson <msw@redhat.com> | 2001-03-23 20:09:05 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-03-23 20:09:05 +0000 |
commit | ba00558af846d045ca6f2d32e20eb260d888d9a4 (patch) | |
tree | 0951031d60da14e467286f2547f89badf9855d56 /anaconda | |
parent | 039a528affbfd3e4ae498cf91a6a77da8fe710d5 (diff) | |
download | anaconda-ba00558af846d045ca6f2d32e20eb260d888d9a4.tar.gz anaconda-ba00558af846d045ca6f2d32e20eb260d888d9a4.tar.xz anaconda-ba00558af846d045ca6f2d32e20eb260d888d9a4.zip |
check in those messages we talked about
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -247,6 +247,7 @@ iutil.setMemoryOverhead(overhead) # if (not test): if (iutil.memInstalled() < isys.MIN_GUI_RAM): + print _("You do not have enough RAM to use the graphical installer. Starting text mode.") forced_display_mode = 't' if iutil.memInstalled() < isys.MIN_RAM: @@ -425,9 +426,11 @@ if not reconfigOnly: from image import NfsInstallMethod method = NfsInstallMethod(method[5:]) elif (method[0:6] == "ftp://" or method[0:7] == "http://"): + print _("Graphical installation not available for %s installs. Starting text mode.") % (string.split(method, ':')[0],) from urlinstall import UrlInstallMethod method = UrlInstallMethod(method) elif (method[0:5] == "hd://"): + print _("Graphical installation not available for hard drive installs. Starting text mode.") % (string.split(method, ':')[0],) method = method[5:] i = string.index(method, ":") |