summaryrefslogtreecommitdiffstats
path: root/ui/ncurses/nc-sysinfo.c
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2014-06-24 13:18:03 +0800
committerJeremy Kerr <jk@ozlabs.org>2014-07-28 13:20:34 +0800
commit4e30f260106ac5f7007e213db1d1e54298393290 (patch)
tree1d215a8c2e5895844f486d8b371c731d3b34f83b /ui/ncurses/nc-sysinfo.c
parent494988c501287e03da3becba5c03cbce7c3d9d20 (diff)
downloadtalos-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-sysinfo.c')
-rw-r--r--ui/ncurses/nc-sysinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/ncurses/nc-sysinfo.c b/ui/ncurses/nc-sysinfo.c
index 0d362e4..f793010 100644
--- a/ui/ncurses/nc-sysinfo.c
+++ b/ui/ncurses/nc-sysinfo.c
@@ -35,7 +35,7 @@ struct sysinfo_screen {
struct text_screen text_scr;
};
-extern const char *sysinfo_help_text;
+extern const struct help_text sysinfo_help_text;
struct nc_scr *sysinfo_screen_scr(struct sysinfo_screen *screen)
{
@@ -115,7 +115,7 @@ struct sysinfo_screen *sysinfo_screen_init(struct cui *cui,
text_screen_init(&screen->text_scr, cui,
_("Petitboot System Information"), on_exit);
text_screen_set_help(&screen->text_scr,
- _("System Information"), sysinfo_help_text);
+ _("System Information"), &sysinfo_help_text);
sysinfo_screen_update(screen, sysinfo);
OpenPOWER on IntegriCloud