From 4e30f260106ac5f7007e213db1d1e54298393290 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Tue, 24 Jun 2014 13:18:03 +0800 Subject: 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 --- ui/ncurses/nc-textscreen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/ncurses/nc-textscreen.c') diff --git a/ui/ncurses/nc-textscreen.c b/ui/ncurses/nc-textscreen.c index 4ae0db4..826244c 100644 --- a/ui/ncurses/nc-textscreen.c +++ b/ui/ncurses/nc-textscreen.c @@ -174,7 +174,7 @@ struct nc_scr *text_screen_scr(struct text_screen *screen) } void text_screen_set_help(struct text_screen *screen, const char *title, - const char *text) + const struct help_text *text) { screen->help_title = title; screen->help_text = text; -- cgit v1.2.1