diff options
author | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2014-08-22 11:24:43 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-08-25 09:30:31 +0800 |
commit | 76435cb23ccab4489fe59c2b5cdcd06ac9752c12 (patch) | |
tree | d117a24abf25e122d5baefb07807712dcc7877da | |
parent | aa92961a1c515aacc65bc2885b41760bca66f171 (diff) | |
download | talos-petitboot-76435cb23ccab4489fe59c2b5cdcd06ac9752c12.tar.gz talos-petitboot-76435cb23ccab4489fe59c2b5cdcd06ac9752c12.zip |
ui/ncurses: Update 'add-url' help message
We should make it clear that we're looking for a PXE-style config file.
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rw-r--r-- | po/en.po | 18 | ||||
-rw-r--r-- | ui/ncurses/nc-add-url-help.c | 8 |
2 files changed, 13 insertions, 13 deletions
@@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: petitboot 20140623-g89bd2ed2-dirty\n" "Report-Msgid-Bugs-To: Geoff Levand <geoff@infradead.org>\n" -"POT-Creation-Date: 2014-08-21 12:16+0800\n" +"POT-Creation-Date: 2014-08-22 11:12+1000\n" "PO-Revision-Date: 2014-06-24 13:56+0800\n" "Last-Translator: Jeremy Kerr <jk@ozlabs.org>\n" "Language-Team: English\n" @@ -393,17 +393,17 @@ msgstr "" "To close the Petitboot interface, type X (exit).\n" msgid "" -"Supply a valid URL here to retrieve a remote boot config file, (eg: " -"petitboot.conf) and parse it.\n" +"Supply a valid URL here to retrieve a remote pxe-boot config file and parse " +"it.\n" "\n" -"URLs are of the form 'scheme://host/path/to/petitboot.conf', such as tftp://" -"host/petitboot.conf or http://host/petitboot.conf" +"URLs are of the form 'scheme://host/path/to/pxeconffile', such as tftp://" +"host/pxeconffile or http://host/pxeconffile" msgstr "" -"Supply a valid URL here to retrieve a remote boot config file, (eg: " -"petitboot.conf) and parse it.\n" +"Supply a valid URL here to retrieve a remote pxe-boot config file and parse " +"it.\n" "\n" -"URLs are of the form 'scheme://host/path/to/petitboot.conf', such as tftp://" -"host/petitboot.conf or http://host/petitboot.conf" +"URLs are of the form 'scheme://host/path/to/pxeconffile', such as tftp://" +"host/pxeconffile or http://host/pxeconffile" msgid "" "This screen allows you to edit or create boot options.\n" diff --git a/ui/ncurses/nc-add-url-help.c b/ui/ncurses/nc-add-url-help.c index cc78fd0..05d3c89 100644 --- a/ui/ncurses/nc-add-url-help.c +++ b/ui/ncurses/nc-add-url-help.c @@ -1,8 +1,8 @@ #include "nc-helpscreen.h" struct help_text add_url_help_text = define_help_text("\ -Supply a valid URL here to retrieve a remote boot config file, \ -(eg: petitboot.conf) and parse it.\n\ +Supply a valid URL here to retrieve a remote pxe-boot config file and parse it.\ \n\ -URLs are of the form 'scheme://host/path/to/petitboot.conf', \ -such as tftp://host/petitboot.conf or http://host/petitboot.conf"); +\n\ +URLs are of the form 'scheme://host/path/to/pxeconffile', \ +such as tftp://host/pxeconffile or http://host/pxeconffile"); |