summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2020-05-03 19:17:05 +0300
committerdartraiden <wowemuh@gmail.com>2020-05-03 19:17:05 +0300
commit1bbe9799292f4d399fa50737f9d15a6f978aa651 (patch)
tree50e4f464d62a17d89825865093aa105f9d9989f7
parentff17a6e189cbd80d6955fe6a92098ddec2a9ba87 (diff)
NewStory: let it be translatable
-rw-r--r--plugins/NewStory/src/fonts.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp
index 78a59ed3c2..be5c88c9c2 100644
--- a/plugins/NewStory/src/fonts.cpp
+++ b/plugins/NewStory/src/fonts.cpp
@@ -2,36 +2,36 @@
MyColourID g_colorTable[COLOR_COUNT] =
{
- { "Incoming messages", "ColorMsgIn", RGB(0xd6, 0xf5, 0xc0) },
- { "Outgoing messages", "ColorMsgOut", RGB(0xf5, 0xe7, 0xd8) },
+ { LPGEN("Incoming messages"), "ColorMsgIn", RGB(0xd6, 0xf5, 0xc0) },
+ { LPGEN("Outgoing messages"), "ColorMsgOut", RGB(0xf5, 0xe7, 0xd8) },
- { "Incoming files", "ColorFileIn", RGB(0xe3, 0xee, 0x9b) },
- { "Outgoing files", "ColorFileOut", RGB(0xe3, 0xee, 0x9b) },
+ { LPGEN("Incoming files"), "ColorFileIn", RGB(0xe3, 0xee, 0x9b) },
+ { LPGEN("Outgoing files"), "ColorFileOut", RGB(0xe3, 0xee, 0x9b) },
- { "Status changes", "ColorStatus", RGB(0xf0, 0xf0, 0xf0) },
+ { LPGEN("Status changes"), "ColorStatus", RGB(0xf0, 0xf0, 0xf0) },
- { "Other incoming events", "ColorIn", RGB(0xff, 0xff, 0xff) },
- { "Other outgoing events", "ColorOut", RGB(0xff, 0xff, 0xff) },
+ { LPGEN("Other incoming events"), "ColorIn", RGB(0xff, 0xff, 0xff) },
+ { LPGEN("Other outgoing events"), "ColorOut", RGB(0xff, 0xff, 0xff) },
- { "Selected items", "ColorSel", RGB(0x60, 0x60, 0x60) },
- { "Selected items (text)", "ColorSelTxt", RGB(0xff, 0xff, 0xff) }
+ { LPGEN("Selected items"), "ColorSel", RGB(0x60, 0x60, 0x60) },
+ { LPGEN("Selected items (text)"), "ColorSelTxt", RGB(0xff, 0xff, 0xff) }
};
MyFontID g_fontTable[FONT_COUNT] =
{
- { "Incoming nick", "FontNickIn", RGB(0xc8, 0x3f, 0x6b) },
- { "Outgoing nick", "FontNickOut", RGB(0x08, 0x60, 0xbd) },
+ { LPGEN("Incoming nick"), "FontNickIn", RGB(0xc8, 0x3f, 0x6b) },
+ { LPGEN("Outgoing nick"), "FontNickOut", RGB(0x08, 0x60, 0xbd) },
- { "Incoming messages", "FontMsgIn" },
- { "Outgoing messages", "FontMsgOut" },
+ { LPGEN("Incoming messages"), "FontMsgIn" },
+ { LPGEN("Outgoing messages"), "FontMsgOut" },
- { "Incoming files", "FontFileIn" },
- { "Outgoing files", "FontFileOut" },
+ { LPGEN("Incoming files"), "FontFileIn" },
+ { LPGEN("Outgoing files"), "FontFileOut" },
- { "Status changes", "FontStatus" },
+ { LPGEN("Status changes"), "FontStatus" },
- { "Other incoming events", "FontIn" },
- { "Other outgoing events", "FontOut" }
+ { LPGEN("Other incoming events"), "FontIn" },
+ { LPGEN("Other outgoing events"), "FontOut" }
};
int evtFontsChanged(WPARAM, LPARAM)