diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-27 16:07:42 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-04-27 16:07:42 +0000 |
commit | f3b5ee60a8e1ada21848105d839198956af6df79 (patch) | |
tree | 031c01e3c9039837fe7a7a5a1a9d853c78341630 /plugins/Popup/src/font.h | |
parent | 238c5baeb88885cebb530d3d988de7eeb8b2c638 (diff) |
Fixed broken font settings (fixes #658)
String "%s (colors only)" must be translated manually for each
git-svn-id: http://svn.miranda-ng.org/main/trunk@9091 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/src/font.h')
-rw-r--r-- | plugins/Popup/src/font.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/Popup/src/font.h b/plugins/Popup/src/font.h index c22a08811f..b015cfc90b 100644 --- a/plugins/Popup/src/font.h +++ b/plugins/Popup/src/font.h @@ -25,13 +25,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define __font_h__
//basic constants for all popup plugins
-#define PU_FNT_AND_COLOR "Popups" //common main group for customice\font&color
+#define PU_FNT_AND_COLOR LPGEN("Popups") //common main group for customice\font&color
#define PU_FNT_AND_COLOR_DB MODULNAME //use eg strcpy(fid.dbSettingsGroup, PU_FNT_GROUP_DB);
#define PU_FNT_PREFIX "fnt%s" //use eg mir_snprintf(fid.prefix, sizeof(fid.prefix), PU_FNT_PREFIX, PU_FNT_NAME_....);
-#define PU_FNT_NAME_TITLE LPGENT("Title") //use eg lstrcpy(fid.name, _T(FNT_NAME_....)) for FontIDT
-#define PU_FNT_NAME_CLOCK LPGENT("Clock")
-#define PU_FNT_NAME_TEXT LPGENT("Text")
+#define PU_FNT_NAME_TITLE LPGEN("Title") //use eg lstrcpy(fid.name, _T(FNT_NAME_....)) for FontIDT
+#define PU_FNT_NAME_CLOCK LPGEN("Clock")
+#define PU_FNT_NAME_TEXT LPGEN("Text")
+#define PU_FNT_NAME_ACTION LPGEN("Action")
+#define PU_FNT_NAME_HOVERED_ACTION LPGEN("Hovered Action")
#define PU_COL_BACK_NAME LPGENT("Background")
#define PU_COL_BACK_SETTING "ColourBg"
|