From: Samuel Mendoza-Jonas Date: Fri, 22 Aug 2014 01:24:43 +0000 (+1000) Subject: ui/ncurses: Update 'add-url' help message X-Git-Tag: v1.0.0~118 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=76435cb23ccab4489fe59c2b5cdcd06ac9752c12 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 Signed-off-by: Jeremy Kerr --- diff --git a/po/en.po b/po/en.po index 69c69de..edcbe7a 100644 --- a/po/en.po +++ b/po/en.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: petitboot 20140623-g89bd2ed2-dirty\n" "Report-Msgid-Bugs-To: Geoff Levand \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 \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");