summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2003-01-08 23:05:20 +0000
committerMatt Wilson <msw@redhat.com>2003-01-08 23:05:20 +0000
commitd7f3ece36c40eb20b4a03dbbf8595b15ba6e9af7 (patch)
tree5001ed3cb0b7d7441025980386103fc6db051212 /constants.py
parentf902df7c58e36ab00d37b0e6e497f31bd9b9cd25 (diff)
downloadanaconda-d7f3ece36c40eb20b4a03dbbf8595b15ba6e9af7.tar.gz
anaconda-d7f3ece36c40eb20b4a03dbbf8595b15ba6e9af7.tar.xz
anaconda-d7f3ece36c40eb20b4a03dbbf8595b15ba6e9af7.zip
save to floppy only if you have a floppy drive. Needed as part of s390 merge, but applies to many platforms and notebooks these days
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/constants.py b/constants.py
index f6b06376f..8e5642610 100644
--- a/constants.py
+++ b/constants.py
@@ -13,6 +13,8 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
+from rhpl.translate import N_
+
BETANAG = 1
DEBUG = 0
@@ -59,4 +61,15 @@ FIRSTBOOT_RECONFIG = 2
import product
productName = product.productName
+exceptionText = N_("An unhandled exception has occurred. This "
+ "is most likely a bug. Please copy the "
+ "full text of this exception or save the crash "
+ "dump to a floppy then file a detailed bug "
+ "report against anaconda at "
+ "http://bugzilla.redhat.com/bugzilla/")
+exceptionTextNoFloppy = N_("An unhandled exception has occurred. This "
+ "is most likely a bug. Please copy the "
+ "full text of this exception and file a detailed "
+ "bug report against anaconda at "
+ "http://bugzilla.redhat.com/bugzilla/")