diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2014-06-24 13:18:03 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-07-28 13:20:34 +0800 |
commit | 4e30f260106ac5f7007e213db1d1e54298393290 (patch) | |
tree | 1d215a8c2e5895844f486d8b371c731d3b34f83b /ui/ncurses/nc-config-help.c | |
parent | 494988c501287e03da3becba5c03cbce7c3d9d20 (diff) | |
download | talos-petitboot-4e30f260106ac5f7007e213db1d1e54298393290.tar.gz talos-petitboot-4e30f260106ac5f7007e213db1d1e54298393290.zip |
ui/ncurses: Use a separate type for help text
Because it's initialised statically, help text won't be directly
gettext()-ed. Instead, we need to perform the gettext translation at
runtime, and pass untranslated strings into the help_screen code.
Instead of trusting callers to pass the untranslated strings though, we
encapsulate the help text data into struct help_text, so we know we have
an unstranslated string.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'ui/ncurses/nc-config-help.c')
-rw-r--r-- | ui/ncurses/nc-config-help.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/ncurses/nc-config-help.c b/ui/ncurses/nc-config-help.c index 828fce7..18c51d4 100644 --- a/ui/ncurses/nc-config-help.c +++ b/ui/ncurses/nc-config-help.c @@ -1,4 +1,6 @@ -const char *config_help_text = "\ +#include "nc-helpscreen.h" + +struct help_text config_help_text = define_help_text("\ Autoboot: There are three possible options for automatic-boot hehaviour:\n" "\n" "Don't autoboot: boot options will be listed in the petitboot menu, but none \ @@ -35,5 +37,4 @@ only want to configure a single interface during boot.\n" "Static IP configuration: Allows you to specify an IPv4 address and network \ mask, gateway, and a DNS server or servers for a network interface. Select \ this option if you do not have a DHCP server, or want explicit control of \ -network settings." -; +network settings."); |