Skip to content

Commit 9464ab7

Browse files
committedAug 29, 2017
fix translation string
1 parent fd0f6f2 commit 9464ab7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgsfilewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ void QgsFileWidget::openFileDialog()
264264
fileName = QFileDialog::getOpenFileName( this, title, QFileInfo( oldPath ).absoluteFilePath(), mFilter );
265265
break;
266266
case GetMultipleFiles:
267-
title = !mDialogTitle.isEmpty() ? mDialogTitle : tr( "Select one ore more files" );
267+
title = !mDialogTitle.isEmpty() ? mDialogTitle : tr( "Select one or more files" );
268268
fileNames = QFileDialog::getOpenFileNames( this, title, QFileInfo( oldPath ).absoluteFilePath(), mFilter );
269269
break;
270270
case GetDirectory:

0 commit comments

Comments
 (0)
Please sign in to comment.