Spreadsheet: fix Split Cell name in context menu

This commit is contained in:
Roy-043
2025-09-11 17:34:50 +02:00
committed by Chris Hennes
parent a4ca9a0526
commit 1bbc1c805d

View File

@@ -207,7 +207,7 @@ SheetTableView::SheetTableView(QWidget* parent)
tr("Merge Cells"),
&SheetTableView::mergeCells);
actionSplit = createAction(":/icons/SpreadsheetSplitCell.svg",
tr("Split Cells"),
tr("Split Cell"),
&SheetTableView::splitCell);
contextMenu.addSeparator();
actionCut = createAction(":/icons/edit-cut.svg", tr("Cut"), &SheetTableView::cutSelection);
@@ -665,7 +665,7 @@ bool SheetTableView::event(QEvent* event)
actionRecompute->setText(tr("Recompute"));
actionConf->setText(tr("Configuration Table…"));
actionMerge->setText(tr("Merge Cells"));
actionSplit->setText(tr("Split Cells"));
actionSplit->setText(tr("Split Cell"));
actionCopy->setText(tr("Copy"));
actionPaste->setText(tr("Paste"));
actionCut->setText(tr("Cut"));