Skip to content

Commit

Permalink
Translate Data Source Manager
Browse files Browse the repository at this point in the history
Fix #46929
  • Loading branch information
elpaso authored and github-actions[bot] committed Jan 21, 2022
1 parent cb522d3 commit d5d6b9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsdatasourcemanagerdialog.cpp
Expand Up @@ -32,7 +32,7 @@
#include "qgsbrowserwidget.h"

QgsDataSourceManagerDialog::QgsDataSourceManagerDialog( QgsBrowserGuiModel *browserModel, QWidget *parent, QgsMapCanvas *canvas, Qt::WindowFlags fl )
: QgsOptionsDialogBase( QStringLiteral( "Data Source Manager" ), parent, fl )
: QgsOptionsDialogBase( tr( "Data Source Manager" ), parent, fl )
, ui( new Ui::QgsDataSourceManagerDialog )
, mPreviousRow( -1 )
, mMapCanvas( canvas )
Expand Down Expand Up @@ -78,7 +78,7 @@ QgsDataSourceManagerDialog::QgsDataSourceManagerDialog( QgsBrowserGuiModel *brow
addProviderDialog( dlg, provider->providerKey(), provider->text(), provider->icon( ), provider->toolTip( ) );
}

restoreOptionsBaseUi( QStringLiteral( "Data Source Manager" ) );
restoreOptionsBaseUi( tr( "Data Source Manager" ) );
}

QgsDataSourceManagerDialog::~QgsDataSourceManagerDialog()
Expand Down

0 comments on commit d5d6b9c

Please sign in to comment.