@@ -387,16 +387,16 @@ void QgsBrowserDockWidget::showContextMenu( QPoint pt )
387
387
if ( item->parent () && !inFavDirs )
388
388
{
389
389
// only non-root directories can be added as favourites
390
- menu->addAction ( tr ( " Add as a favourite " ), this , SLOT ( addFavourite () ) );
390
+ menu->addAction ( tr ( " Add as a Favourite " ), this , SLOT ( addFavourite () ) );
391
391
}
392
392
else if ( inFavDirs )
393
393
{
394
394
// only favourites can be removed
395
- menu->addAction ( tr ( " Remove favourite " ), this , SLOT ( removeFavourite () ) );
395
+ menu->addAction ( tr ( " Remove Favourite " ), this , SLOT ( removeFavourite () ) );
396
396
}
397
- menu->addAction ( tr ( " Properties" ), this , SLOT ( showProperties () ) );
398
- menu->addAction ( tr ( " Hide from browser " ), this , SLOT ( hideItem () ) );
399
- QAction *action = menu->addAction ( tr ( " Fast scan this dir. " ), this , SLOT ( toggleFastScan () ) );
397
+ menu->addAction ( tr ( " Properties... " ), this , SLOT ( showProperties () ) );
398
+ menu->addAction ( tr ( " Hide from Browser " ), this , SLOT ( hideItem () ) );
399
+ QAction *action = menu->addAction ( tr ( " Fast Scan this Directory " ), this , SLOT ( toggleFastScan () ) );
400
400
action->setCheckable ( true );
401
401
action->setChecked ( settings.value ( " /qgis/scanItemsFastScanUris" ,
402
402
QStringList () ).toStringList ().contains ( item->path () ) );
@@ -405,11 +405,11 @@ void QgsBrowserDockWidget::showContextMenu( QPoint pt )
405
405
{
406
406
menu->addAction ( tr ( " Add Layer" ), this , SLOT ( addCurrentLayer () ) );
407
407
menu->addAction ( tr ( " Add Selected Layers" ), this , SLOT ( addSelectedLayers () ) );
408
- menu->addAction ( tr ( " Properties" ), this , SLOT ( showProperties () ) );
408
+ menu->addAction ( tr ( " Properties... " ), this , SLOT ( showProperties () ) );
409
409
}
410
410
else if ( item->type () == QgsDataItem::Favourites )
411
411
{
412
- menu->addAction ( tr ( " Add a directory " ), this , SLOT ( addFavouriteDirectory () ) );
412
+ menu->addAction ( tr ( " Add a Directory... " ), this , SLOT ( addFavouriteDirectory () ) );
413
413
414
414
}
415
415
0 commit comments