Skip to content

Commit e2455a0

Browse files
author
jef
committedMay 17, 2010
fix query translation
git-svn-id: http://svn.osgeo.org/qgis/trunk@13516 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent dc4e766 commit e2455a0

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
 

‎i18n/qgis_de.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5445,7 +5445,7 @@ Bitte nehmen Sie Kontakt zu den Entwicklern auf.</translation>
54455445
</message>
54465446
<message>
54475447
<location filename="../src/app/qgisapp.cpp" line="1058"/>
5448-
<source>Subset...</source>
5448+
<source>Query...</source>
54495449
<translation>Abfrage...</translation>
54505450
</message>
54515451
<message>
@@ -15296,8 +15296,8 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.</
1529615296
</message>
1529715297
<message>
1529815298
<location filename="../src/app/legend/qgslegendlayer.cpp" line="433"/>
15299-
<source>&amp;Subset</source>
15300-
<translation>&amp;Untermenge</translation>
15299+
<source>&amp;Query...</source>
15300+
<translation>&amp;Abfrage...</translation>
1530115301
</message>
1530215302
<message>
1530315303
<location filename="../src/app/legend/qgslegendlayer.cpp" line="440"/>

‎src/app/legend/qgslegendlayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ void QgsLegendLayer::addToPopupMenu( QMenu& theMenu )
430430
saveSelectionAsAction->setEnabled( false );
431431
}
432432

433-
theMenu.addAction( tr( "&Subset" ), QgisApp::instance(), SLOT( layerSubsetString() ) );
433+
theMenu.addAction( tr( "&Query..." ), QgisApp::instance(), SLOT( layerSubsetString() ) );
434434

435435
theMenu.addSeparator();
436436
}

‎src/app/qgisapp.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ void QgisApp::createActions()
10551055
connect( mActionLayerProperties, SIGNAL( triggered() ), this, SLOT( layerProperties() ) );
10561056
mActionLayerProperties->setEnabled( false );
10571057

1058-
mActionLayerSubsetString = new QAction( tr( "Subset..." ), this );
1058+
mActionLayerSubsetString = new QAction( tr( "Query..." ), this );
10591059
shortcuts->registerAction( mActionLayerSubsetString );
10601060
mActionLayerProperties->setStatusTip( tr( "Set subset query of the current layer" ) );
10611061
connect( mActionLayerSubsetString, SIGNAL( triggered() ), this, SLOT( layerSubsetString() ) );
@@ -5821,6 +5821,7 @@ void QgisApp::activateDeactivateLayerRelatedActions( QgsMapLayer* layer )
58215821
mActionLayerSaveAs->setEnabled( true );
58225822
mActionLayerSelectionSaveAs->setEnabled( true );
58235823
mActionCopyFeatures->setEnabled( layerHasSelection );
5824+
mActionLayerSubsetString->setEnabled( true );
58245825

58255826
if ( !vlayer->isEditable() && mMapCanvas->mapTool() && mMapCanvas->mapTool()->isEditTool() )
58265827
{

0 commit comments

Comments
 (0)
Please sign in to comment.