diff options
-rw-r--r-- | po/bootloader.pot | 5 | ||||
-rw-r--r-- | src/common.inc | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/po/bootloader.pot b/po/bootloader.pot index e36ad98..94879c6 100644 --- a/po/bootloader.pot +++ b/po/bootloader.pot @@ -443,3 +443,8 @@ msgstr "" msgid "Put the Mandriva Linux CD-ROM back into the drive." msgstr "" +#. bootloader entry to restore draksnapshot backups +#. txt_restore +msgid "Restore draksnapshot backup" +msgstr "" + diff --git a/src/common.inc b/src/common.inc index ef336e7..cd4caa9 100644 --- a/src/common.inc +++ b/src/common.inc @@ -883,8 +883,9 @@ dup "mediacheck" eq { pop txt_mediacheck return } if } { dup "linux" eq { pop txt_linux return } if - dup "failsafe" eq { pop txt_safe_linux return } if + dup "failsafe" eq { pop txt_safe_linux return } if dup "windows" eq { pop txt_windows return } if + dup "restore" eq { pop txt_restore return } if dup "2.6" strstr 1 eq { txt_linux_kernel_version kernel_str sprintf kernel_str return } if } ifelse |