From 88bd1217babe512acf3648f1011e15140ae5ecc8 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 15 May 2020 13:38:19 +0200 Subject: [PATCH] gui/gui_text.h.in: define tooltip text for dictionary widgets. --- gui/gui_text.h.in | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gui/gui_text.h.in b/gui/gui_text.h.in index 4c81c9d..a8a1cff 100644 --- a/gui/gui_text.h.in +++ b/gui/gui_text.h.in @@ -24,6 +24,8 @@ #ifndef EOSIOKEYGEN_GUI_TEXT_H #define EOSIOKEYGEN_GUI_TEXT_H +#include + #define EOSIOKEYGEN_GUI_TEXT_ABOUT_TITLE "@PROJECT_NAME@ - About" #define EOSIOKEYGEN_GUI_TEXT_ABOUT_BODY \ @@ -34,4 +36,19 @@ "

Author

" \ "

@GUI_ABOUT_AUTHOR@

" +#define EOSIOKEYGEN_GUI_TEXT_DICT_LANG_TOOLTIP \ + "

Highlight words from given language dictionary in the found keys (note that the words " \ + "are not used for search. only for highlight output).

" \ + "

There can be more then one language. In that case contents " \ + "of all languges are merged into one dictionary.

" \ + "

The langauges are stored in files at " CONFIG_SHARE_FULL_PATH "/dict

" + + +#define EOSIOKEYGEN_GUI_TEXT_DICT_FILE_TOOLTIP \ + "

Use words found in file (separated by newline) to highlight " \ + "words in the keys found (note that the words in this " \ + "file are not used for search. only for highlight output).

" \ + "

There can be more then one file. In that case contents " \ + "of all files are merged into one dictionary.

" + #endif /* EOSIOKEYGEN_GUI_TEXT_H */