diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-02 15:12:40 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-02 15:12:40 +0000 |
commit | 00f581ab599e51745f764dd480dfb57498ce794d (patch) | |
tree | 7c3a455bb131e0e01303048aec65158b76f31466 | |
parent | 612158620d4ef09ad6dc78e40d092e0cc6adf1a9 (diff) | |
download | bootloader-theme-00f581ab599e51745f764dd480dfb57498ce794d.tar bootloader-theme-00f581ab599e51745f764dd480dfb57498ce794d.tar.gz bootloader-theme-00f581ab599e51745f764dd480dfb57498ce794d.tar.bz2 bootloader-theme-00f581ab599e51745f764dd480dfb57498ce794d.tar.xz bootloader-theme-00f581ab599e51745f764dd480dfb57498ce794d.zip |
Mark more strings for translation
-rw-r--r-- | po/bootloader.pot | 22 | ||||
-rw-r--r-- | src/common.inc | 6 |
2 files changed, 25 insertions, 3 deletions
diff --git a/po/bootloader.pot b/po/bootloader.pot index 4da0db6..aab44dd 100644 --- a/po/bootloader.pot +++ b/po/bootloader.pot @@ -421,3 +421,25 @@ msgstr "" #. txt_64bit_popup msgid "This is a 32-bit computer. You cannot use 64-bit software on it." msgstr "" + +#. title of warning box when running a 32bit CD on a 64bit machine +#. txt_warning +msgid "Warning" +msgstr "" + +#. warning when running a 32bit CD on a 64bit machine +#. txt_32bit_popup +msgid "You are about to install 32-bit software on a 64-bit computer." +msgstr "" + +#. insert CDROM with drivers +#. txt_insert_driver_cd +#, c-format +msgid "Insert driver update CD-ROM for\n\"%s\"." +msgstr "" + +#. insert Mandriva CD back +#. txt_insert_mdv_cd +msgid "Put the Mandriva Linux CD-ROM back into the drive." +msgstr "" + diff --git a/src/common.inc b/src/common.inc index 028ddb0..3c2b045 100644 --- a/src/common.inc +++ b/src/common.inc @@ -610,7 +610,7 @@ } if syslinux info.type 5 eq and { - dup .title "Driver Update" put + dup .title txt_driver_update2 put info.msg "Insert driver update CD-ROM for\n\"%s\"." info.tmpmsg sprintf /info.msg info.tmpmsg def } if @@ -1241,8 +1241,8 @@ /32bit_popup { window.dialog - dup .title "Warning" put - dup .text "You are about to install 32-bit software on a 64-bit computer." put + dup .title txt_warning put + dup .text txt_32bit_popup put dup .buttons [ button.continue button.default actNothing button.setaction ] put |