From 16362526773ddc6bc0fb6b49da837c4cbc0a64ec Mon Sep 17 00:00:00 2001 From: David Schulz Date: Wed, 10 Apr 2024 11:56:35 +0200 Subject: [PATCH] Editor: fix action text for switching utf8 bom Change-Id: I0be1f9527aa4b0681a2c1423031800eb170a3d9e Reviewed-by: Christian Stenger --- src/plugins/texteditor/texteditorplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/texteditorplugin.cpp b/src/plugins/texteditor/texteditorplugin.cpp index e0f43e9a6fa..89384364eb3 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)