aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/texteditorplugin.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2024-04-10 11:56:35 +0200
committerDavid Schulz <david.schulz@qt.io>2024-04-11 13:35:18 +0000
commit16362526773ddc6bc0fb6b49da837c4cbc0a64ec (patch)
treedc21f165181429a89315a1a8993aa99790fa9841 /src/plugins/texteditor/texteditorplugin.cpp
parent5b595f2cd12bade23b1b42c0986428615f51be58 (diff)
Editor: fix action text for switching utf8 bom
Change-Id: I0be1f9527aa4b0681a2c1423031800eb170a3d9e Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/texteditor/texteditorplugin.cpp')
-rw-r--r--src/plugins/texteditor/texteditorplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/texteditor/texteditorplugin.cpp b/src/plugins/texteditor/texteditorplugin.cpp
index e0f43e9a6f..89384364eb 100644
--- a/src/plugins/texteditor/texteditorplugin.cpp
+++ b/src/plugins/texteditor/texteditorplugin.cpp
@@ -392,7 +392,7 @@ void TextEditorPlugin::createEditorCommands()
ActionBuilder(this, INSERT_LINE_BELOW)
.setText(Tr::tr("Insert Line Below Current Line"))
.setDefaultKeySequence(QKeySequence(Tr::tr("Ctrl+Return")));
- ActionBuilder(this, SWITCH_UTF8BOM).setText(Tr::tr("Delete Word up to Cursor"));
+ ActionBuilder(this, SWITCH_UTF8BOM).setText(Tr::tr("Toggle UTF-8 BOM"));
ActionBuilder(this, INDENT).setText(Tr::tr("Indent"));
ActionBuilder(this, UNINDENT).setText(Tr::tr("Unindent"));
ActionBuilder(this, FOLLOW_SYMBOL_UNDER_CURSOR)