diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/stdmsg/src/chat_options.cpp | 2 | ||||
-rw-r--r-- | src/core/stdmsg/src/msgs.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/stdmsg/src/chat_options.cpp b/src/core/stdmsg/src/chat_options.cpp index 836498c2fb..e3a6316d0d 100644 --- a/src/core/stdmsg/src/chat_options.cpp +++ b/src/core/stdmsg/src/chat_options.cpp @@ -31,7 +31,7 @@ static IconItem iconList1[] = { LPGEN("Bold"), "bold", IDI_BBOLD }, { LPGEN("Italics"), "italics", IDI_BITALICS }, { LPGEN("Underlined"), "underline", IDI_BUNDERLINE }, - { LPGEN("Strike through"), "strikeout", IDI_STRIKEOUT }, + { LPGEN("Strikethrough"), "strikeout", IDI_STRIKEOUT }, { LPGEN("Smiley button"), "smiley", IDI_BSMILEY }, { LPGEN("Room history"), "history", IDI_HISTORY }, { LPGEN("Room settings"), "settings", IDI_TOPICBUT }, diff --git a/src/core/stdmsg/src/msgs.cpp b/src/core/stdmsg/src/msgs.cpp index 5d4cc188c8..4aeaaf4f15 100644 --- a/src/core/stdmsg/src/msgs.cpp +++ b/src/core/stdmsg/src/msgs.cpp @@ -380,8 +380,8 @@ int RegisterToolbarIcons(WPARAM, LPARAM) bbd.dwButtonID = IDC_SRMM_STRIKEOUT;
bbd.dwDefPos = 25;
bbd.hIcon = g_plugin.getIconHandle(IDI_STRIKEOUT);
- bbd.pwszText = LPGENW("&Strike-through");
- bbd.pwszTooltip = LPGENW("Make the text strike-through");
+ bbd.pwszText = LPGENW("&Strikethrough");
+ bbd.pwszTooltip = LPGENW("Make the text strikethrough");
g_plugin.addButton(&bbd);
bbd.dwButtonID = IDC_SRMM_COLOR;
|