diff options
-rw-r--r-- | po/bootloader.pot | 9 | ||||
-rw-r--r-- | src/common.inc | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/po/bootloader.pot b/po/bootloader.pot index 145e502..4da0db6 100644 --- a/po/bootloader.pot +++ b/po/bootloader.pot @@ -412,3 +412,12 @@ msgstr "" msgid "Enter Driver Update URL\n" msgstr "" +#. title of warning box when running a 64bit CD on a 32bit machine +#. txt_wrong_arch +msgid "Wrong architecture" +msgstr "" + +#. warning when running a 64bit CD on a 32bit machine +#. txt_64bit_popup +msgid "This is a 32-bit computer. You cannot use 64-bit software on it." +msgstr "" diff --git a/src/common.inc b/src/common.inc index e2bada0..028ddb0 100644 --- a/src/common.inc +++ b/src/common.inc @@ -1260,8 +1260,8 @@ /64bit_popup { window.dialog - dup .title "Wrong architecture" put - dup .text "This is a 32-bit computer. You cannot use 64-bit software on it." put + dup .title txt_wrong_arch put + dup .text txt_64bit_popup put dup .buttons [ button.reboot button.default actReboot actNoClose or button.setaction ] put |