Skip to content

Commit

Permalink
fix translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Aug 29, 2017
1 parent fd0f6f2 commit 9464ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsfilewidget.cpp
Expand Up @@ -264,7 +264,7 @@ void QgsFileWidget::openFileDialog()
fileName = QFileDialog::getOpenFileName( this, title, QFileInfo( oldPath ).absoluteFilePath(), mFilter );
break;
case GetMultipleFiles:
title = !mDialogTitle.isEmpty() ? mDialogTitle : tr( "Select one ore more files" );
title = !mDialogTitle.isEmpty() ? mDialogTitle : tr( "Select one or more files" );
fileNames = QFileDialog::getOpenFileNames( this, title, QFileInfo( oldPath ).absoluteFilePath(), mFilter );
break;
case GetDirectory:
Expand Down

0 comments on commit 9464ab7

Please sign in to comment.