Skip to content
Permalink
Browse files
fix translation string
  • Loading branch information
jef-n committed Aug 29, 2017
1 parent fd0f6f2 commit 9464ab7
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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:

0 comments on commit 9464ab7

Please sign in to comment.