Skip to content

Commit

Permalink
Fix for translation
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravkghildiyal committed Feb 3, 2019
1 parent 3686463 commit 7b471ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dialogs/LoadNewTypesDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LoadNewTypesDialog::~LoadNewTypesDialog() {}

void LoadNewTypesDialog::on_selectFileButton_clicked()
{
QString filename = QFileDialog::getOpenFileName(this, "Select file", Config()->getRecentFolder(), "*.h");
QString filename = QFileDialog::getOpenFileName(this, tr("Select file"), Config()->getRecentFolder(), "*.h");
ui->filenameLineEdit->setText(filename);
QFile file(filename);
if (!file.open(QIODevice::ReadOnly)) {
Expand Down

0 comments on commit 7b471ea

Please sign in to comment.