@@ -1065,19 +1065,19 @@ void QgsIdentifyResultsDialog::contextMenuEvent( QContextMenuEvent *event )
10651065 {
10661066 mActionPopup ->addAction (
10671067 QgsApplication::getThemeIcon ( QStringLiteral ( " /mActionPropertyItem.svg" ) ),
1068- vlayer->isEditable () ? tr ( " Edit feature form " ) : tr ( " View feature form " ),
1068+ vlayer->isEditable () ? tr ( " Edit Feature Form… " ) : tr ( " View Feature Form… " ),
10691069 this , SLOT ( featureForm () ) );
10701070 }
10711071
10721072 if ( featItem->feature ().isValid () )
10731073 {
1074- mActionPopup ->addAction ( tr ( " Zoom to feature " ), this , SLOT ( zoomToFeature () ) );
1075- mActionPopup ->addAction ( tr ( " Copy feature " ), this , SLOT ( copyFeature () ) );
1076- mActionPopup ->addAction ( tr ( " Toggle feature selection " ), this , SLOT ( toggleFeatureSelection () ) );
1074+ mActionPopup ->addAction ( tr ( " Zoom to Feature " ), this , SLOT ( zoomToFeature () ) );
1075+ mActionPopup ->addAction ( tr ( " Copy Feature " ), this , SLOT ( copyFeature () ) );
1076+ mActionPopup ->addAction ( tr ( " Toggle Feature Selection " ), this , SLOT ( toggleFeatureSelection () ) );
10771077 }
10781078
1079- mActionPopup ->addAction ( tr ( " Copy attribute value " ), this , SLOT ( copyAttributeValue () ) );
1080- mActionPopup ->addAction ( tr ( " Copy feature attributes " ), this , SLOT ( copyFeatureAttributes () ) );
1079+ mActionPopup ->addAction ( tr ( " Copy Attribute Value " ), this , SLOT ( copyAttributeValue () ) );
1080+ mActionPopup ->addAction ( tr ( " Copy Feature Attributes " ), this , SLOT ( copyFeatureAttributes () ) );
10811081
10821082 if ( item->parent () == featItem && item->childCount () == 0 )
10831083 {
@@ -1098,18 +1098,18 @@ void QgsIdentifyResultsDialog::contextMenuEvent( QContextMenuEvent *event )
10981098 mActionPopup ->addSeparator ();
10991099 }
11001100
1101- mActionPopup ->addAction ( tr ( " Clear results " ), this , SLOT ( clear () ) );
1102- mActionPopup ->addAction ( tr ( " Clear highlights " ), this , SLOT ( clearHighlights () ) );
1103- mActionPopup ->addAction ( tr ( " Highlight all " ), this , SLOT ( highlightAll () ) );
1104- mActionPopup ->addAction ( tr ( " Highlight layer " ), this , SLOT ( highlightLayer () ) );
1101+ mActionPopup ->addAction ( tr ( " Clear Results " ), this , SLOT ( clear () ) );
1102+ mActionPopup ->addAction ( tr ( " Clear Highlights " ), this , SLOT ( clearHighlights () ) );
1103+ mActionPopup ->addAction ( tr ( " Highlight All " ), this , SLOT ( highlightAll () ) );
1104+ mActionPopup ->addAction ( tr ( " Highlight Layer " ), this , SLOT ( highlightLayer () ) );
11051105 if ( layer && QgsProject::instance ()->layerIsEmbedded ( layer->id () ).isEmpty () )
11061106 {
1107- mActionPopup ->addAction ( tr ( " Activate layer " ), this , SLOT ( activateLayer () ) );
1108- mActionPopup ->addAction ( tr ( " Layer properties …" ), this , SLOT ( layerProperties () ) );
1107+ mActionPopup ->addAction ( tr ( " Activate Layer " ), this , SLOT ( activateLayer () ) );
1108+ mActionPopup ->addAction ( tr ( " Layer Properties …" ), this , SLOT ( layerProperties () ) );
11091109 }
11101110 mActionPopup ->addSeparator ();
1111- mActionPopup ->addAction ( tr ( " Expand all " ), this , SLOT ( expandAll () ) );
1112- mActionPopup ->addAction ( tr ( " Collapse all " ), this , SLOT ( collapseAll () ) );
1111+ mActionPopup ->addAction ( tr ( " Expand All " ), this , SLOT ( expandAll () ) );
1112+ mActionPopup ->addAction ( tr ( " Collapse All " ), this , SLOT ( collapseAll () ) );
11131113 mActionPopup ->addSeparator ();
11141114
11151115 if ( featItem && vlayer )
0 commit comments