diff options
author | dartraiden <wowemuh@gmail.com> | 2024-11-05 09:34:54 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-11-05 09:34:54 +0300 |
commit | 8b9c5a4f77a35712d5bf54aa5cf44c261f8ecadc (patch) | |
tree | 087e90cbf3278fd6b8eea571209ffc8056a7a5a0 /src | |
parent | a9010187965aad066bd04133876e260fec6d7e2b (diff) |
"Strike through", "Strike-through" → Strikethrough
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;
|