diff options
author | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2014-07-24 15:05:39 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-07-28 16:12:13 +0800 |
commit | 254c2c4233377ba71d0f1c96a77d885c91f9ad4a (patch) | |
tree | f6e79dbeba93f7709be8a9a261dd101be73bbd03 /po | |
parent | 0f5d4481891467000c50bf14548c236cfb3e70ad (diff) | |
download | petitboot-254c2c4233377ba71d0f1c96a77d885c91f9ad4a.zip petitboot-254c2c4233377ba71d0f1c96a77d885c91f9ad4a.tar.gz |
ui/ncurses: Add support for 'add-url' action
Creates a menu option to specify a remote conf file url to send to
the server for parsing.
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'po')
-rw-r--r-- | po/POTFILES.in | 2 | ||||
-rw-r--r-- | po/en.po | 66 |
2 files changed, 55 insertions, 13 deletions
diff --git a/po/POTFILES.in b/po/POTFILES.in index ab96d5a..07ed135 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -2,6 +2,7 @@ discover/boot.c discover/device-handler.c +ui/ncurses/nc-add-url.c ui/ncurses/nc-boot-editor.c ui/ncurses/nc-config.c ui/ncurses/nc-cui.c @@ -11,6 +12,7 @@ ui/ncurses/nc-menu.c ui/ncurses/nc-sysinfo.c ui/ncurses/nc-textscreen.c ui/ncurses/nc-cui-help.c +ui/ncurses/nc-add-url-help.c ui/ncurses/nc-boot-editor-help.c ui/ncurses/nc-config-help.c ui/ncurses/nc-sysinfo-help.c @@ -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-07-28 13:48+0800\n" +"POT-Creation-Date: 2014-07-28 16:06+0800\n" "PO-Revision-Date: 2014-06-24 13:56+0800\n" "Last-Translator: Jeremy Kerr <jk@ozlabs.org>\n" "Language-Team: English\n" @@ -59,6 +59,42 @@ msgstr "Booting in %d sec: %s" msgid "Default boot cancelled" msgstr "Default boot cancelled" +#, c-format +msgid "Received config URL %s" +msgstr "Received config URL %s" + +msgid "Invalid config URL!" +msgstr "Invalid config URL!" + +#, c-format +msgid "Unable to route to host %s" +msgstr "Unable to route to host %s" + +#, c-format +msgid "Config file %s parsed" +msgstr "Config file %s parsed" + +msgid "Retrieve Config" +msgstr "Retrieve Config" + +msgid "Configuration URL:" +msgstr "Configuration URL:" + +msgid "OK" +msgstr "OK" + +msgid "Help" +msgstr "Help" + +msgid "Cancel" +msgstr "Cancel" + +msgid "Petitboot Config Retrieval" +msgstr "Petitboot Config Retrieval" + +msgid "tab=next, shift+tab=previous, x=exit, h=help" +msgstr "tab=next, shift+tab=previous, x=exit, h=help" + msgid "Boot Option Editor" msgstr "Boot Option Editor" @@ -80,21 +116,9 @@ msgstr "Device tree:" msgid "Boot arguments:" msgstr "Boot arguments:" -msgid "OK" -msgstr "OK" - -msgid "Help" -msgstr "Help" - -msgid "Cancel" -msgstr "Cancel" - msgid "Petitboot Option Editor" msgstr "Petitboot Option Editor" -msgid "tab=next, shift+tab=previous, x=exit, h=help" -msgstr "tab=next, shift+tab=previous, x=exit, h=help" - msgid "System Configuration" msgstr "System Configuration" @@ -221,6 +245,9 @@ msgstr "System information" msgid "System configuration" msgstr "System configuration" +msgid "Retrieve config from URL" +msgstr "Retrieve config from URL" + msgid "Exit to shell" msgstr "Exit to shell" @@ -338,6 +365,19 @@ 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" +"\n" +"URLs are of the form 'scheme://host/path/to/petitboot.conf', such as tftp://" +"host/petitboot.conf or http://host/petitboot.conf" +msgstr "" +"Supply a valid URL here to retrieve a remote boot config file, (eg: " +"petitboot.conf) 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" + +msgid "" "This screen allows you to edit or create boot options.\n" "\n" "Device: This is a list of block devices available on the system. Select the " |