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 /plugins/Scriver | |
parent | a9010187965aad066bd04133876e260fec6d7e2b (diff) |
"Strike through", "Strike-through" → Strikethrough
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/src/globals.cpp | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/msgs.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index aa9966bcbe..33d1f88998 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -52,7 +52,7 @@ static IconItem iconList2[] = { LPGEN("Bold"), "bold", IDI_BBOLD }, // 4
{ LPGEN("Italics"), "italics", IDI_BITALICS }, // 5
{ LPGEN("Underlined"), "underline", IDI_BUNDERLINE }, // 6
- { LPGEN("Strike through"), "strikeout", IDI_STRIKEOUT }, // 7
+ { LPGEN("Strikethrough"), "strikeout", IDI_STRIKEOUT }, // 7
{ LPGEN("Smiley button"), "smiley", IDI_SMILEY }, // 8
{ LPGEN("Room history"), "history", IDI_HISTORY }, // 9
{ LPGEN("Room settings"), "settings", IDI_TOPICBUT }, // 10
diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index 25731b5928..262493dc6a 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -420,8 +420,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;
|