diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-06 15:26:10 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-06 15:26:10 +0000 |
commit | 73342f4e4641499009abaf3e32fe3ebe82cc2320 (patch) | |
tree | 3fe3bbef48bb1b1395f9225a154c7d97fa9faa8f | |
parent | ee397c31061eb572e6be7d413ba97d3ab23fc933 (diff) | |
download | bootloader-theme-73342f4e4641499009abaf3e32fe3ebe82cc2320.tar bootloader-theme-73342f4e4641499009abaf3e32fe3ebe82cc2320.tar.gz bootloader-theme-73342f4e4641499009abaf3e32fe3ebe82cc2320.tar.bz2 bootloader-theme-73342f4e4641499009abaf3e32fe3ebe82cc2320.tar.xz bootloader-theme-73342f4e4641499009abaf3e32fe3ebe82cc2320.zip |
Human-readable string for "restore" boot entry
-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 |