summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-05 02:14:39 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-05 02:14:39 +0000
commitb6258b765959cd213a5a9f0c60afa2674c8bf16c (patch)
tree314e5e5bb50d77c2b96bd67c054a263c9587cd45 /installclass.py
parent84e4072e7a90fd967e8241222aac33f0f33187f1 (diff)
downloadanaconda-b6258b765959cd213a5a9f0c60afa2674c8bf16c.tar.gz
anaconda-b6258b765959cd213a5a9f0c60afa2674c8bf16c.tar.xz
anaconda-b6258b765959cd213a5a9f0c60afa2674c8bf16c.zip
we don't generally translate log messages as they're for us for debugging as much as anything and I can't read japanese ;). also, if we're going to translate it, it needs to be one string, not 5
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/installclass.py b/installclass.py
index 28291fba2..38d764bac 100644
--- a/installclass.py
+++ b/installclass.py
@@ -423,11 +423,11 @@ class BaseInstallClass:
if resolution not in availableRes:
fbres = availableRes[-1]
- log(_("Resolution requested %s is not supported."),resolution)
- log(_("Falling back to %s."), fbres)
- log(_("To avoid this you may need to specify the videocard and "))
- log(_("monitor specs on the xconfig ks directive if they were "))
- log(_("not probed correctly."))
+ log("Resolution requested %s is not supported.",resolution)
+ log("Falling back to %s.", fbres)
+ log("To avoid this you may need to specify the videocard and ")
+ log("monitor specs on the xconfig ks directive if they were ")
+ log("not probed correctly.")
resolution = fbres
xcfg.set_resolution(resolution)