Editor: fix action text for switching utf8 bom

Change-Id: I0be1f9527aa4b0681a2c1423031800eb170a3d9e
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2024-04-10 11:56:35 +02:00
parent 5b595f2cd1
commit 1636252677

View File

@@ -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)