Fix project tree context menu labels (#1199)
This commit is contained in:
@@ -1211,13 +1211,13 @@ class GuiProjectTree(QTreeWidget):
|
|||||||
|
|
||||||
if hasChild and isFolder:
|
if hasChild and isFolder:
|
||||||
mTrans.addAction(
|
mTrans.addAction(
|
||||||
self.tr("Combine Documents in Folder"),
|
self.tr("Merge Documents in Folder"),
|
||||||
lambda: self._mergeDocuments(tHandle, True)
|
lambda: self._mergeDocuments(tHandle, True)
|
||||||
)
|
)
|
||||||
|
|
||||||
if isFile:
|
if isFile:
|
||||||
mTrans.addAction(
|
mTrans.addAction(
|
||||||
self.tr("Split Document by Header"),
|
self.tr("Split Document by Headers"),
|
||||||
lambda: self._splitDocument(tHandle)
|
lambda: self._splitDocument(tHandle)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user