TD: Substitute string 'Dxf' for 'DXF' [skip ci]

This fix was suggested by translators on crowdin.
This commit is contained in:
luz paz
2022-02-19 18:25:20 -05:00
committed by WandererFan
parent 5007c8358c
commit e81eea9bb4
2 changed files with 4 additions and 4 deletions

View File

@@ -1441,9 +1441,9 @@ void CmdTechDrawExportPageDXF::activated(int iMsg)
//WF? allow more than one TD Page per Dxf file?? 1 TD page = 1 DXF file = 1 drawing?
QString defaultDir;
QString fileName = Gui::FileDialog::getSaveFileName(Gui::getMainWindow(),
QString::fromUtf8(QT_TR_NOOP("Save Dxf File")),
QString::fromUtf8(QT_TR_NOOP("Save DXF file")),
defaultDir,
QString::fromUtf8(QT_TR_NOOP("Dxf (*.dxf)")));
QString::fromUtf8(QT_TR_NOOP("DXF (*.dxf)")));
if (fileName.isEmpty()) {
return;

View File

@@ -897,9 +897,9 @@ void MDIViewPage::saveDXF()
{
QString defaultDir;
QString fileName = Gui::FileDialog::getSaveFileName(Gui::getMainWindow(),
QString::fromUtf8(QT_TR_NOOP("Save Dxf File")),
QString::fromUtf8(QT_TR_NOOP("Save DXF file")),
defaultDir,
QString::fromUtf8(QT_TR_NOOP("Dxf (*.dxf)")));
QString::fromUtf8(QT_TR_NOOP("DXF (*.dxf)")));
if (fileName.isEmpty()) {
return;
}