This commit is contained in:
Roy-043
2025-11-14 12:56:24 +01:00
committed by GitHub
parent 94a1171562
commit 71dd30182b
3 changed files with 5 additions and 5 deletions

View File

@@ -658,7 +658,7 @@ StdCmdExportDependencyGraph::StdCmdExportDependencyGraph()
: Command("Std_ExportDependencyGraph")
{
sGroup = "Tools";
sMenuText = QT_TR_NOOP("Export Dependency &Graph");
sMenuText = QT_TR_NOOP("Export Dependency &Graph");
sToolTipText = QT_TR_NOOP("Exports the dependency graph as a Graphviz (.gv) file");
sStatusTip = sToolTipText;
sWhatsThis = "Std_ExportDependencyGraph";
@@ -673,7 +673,7 @@ void StdCmdExportDependencyGraph::activated(int iMsg)
QString format = QStringLiteral("%1 (*.gv)").arg(Gui::GraphvizView::tr("Graphviz format"));
QString fn = Gui::FileDialog::getSaveFileName(
Gui::getMainWindow(),
Gui::GraphvizView::tr("Export graph"),
Gui::GraphvizView::tr("Export Graph"),
QString(),
format
);