Skip to content

Commit 7e4cc50

Browse files
author
stopa85
committed
update labels in roadgraphplugin settings dialog
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15282 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent be632a9 commit 7e4cc50

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/plugins/roadgraph/linevectorlayerwidget.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ RgLineVectorLayerSettingsWidget::RgLineVectorLayerSettingsWidget( RgLineVectorLa
6161
v->addLayout( h );
6262

6363
h = new QHBoxLayout();
64-
h->addWidget( new QLabel( tr( "Direct direction" ), frame ) );
64+
h->addWidget( new QLabel( tr( "Value for forward direction" ), frame ) );
6565
mleFirstPointToLastPointDirection = new QLineEdit( s->mFirstPointToLastPointDirectionVal, frame );
6666
h->addWidget( mleFirstPointToLastPointDirection );
6767
v->addLayout( h );
6868

6969
h = new QHBoxLayout();
70-
h->addWidget( new QLabel( tr( "Reverse direction" ), frame ) );
70+
h->addWidget( new QLabel( tr( "Value for reverse direction" ), frame ) );
7171
mleLastPointToFirstPointDirection = new QLineEdit( s->mLastPointToFirstPointDirectionVal, frame );
7272
h->addWidget( mleLastPointToFirstPointDirection );
7373
v->addLayout( h );
7474

7575
h = new QHBoxLayout();
76-
h->addWidget( new QLabel( tr( "Both direction" ), frame ) );
76+
h->addWidget( new QLabel( tr( "Value two-way direction" ), frame ) );
7777
mleBothDirection = new QLineEdit( s->mBothDirectionVal, frame );
7878
h->addWidget( mleBothDirection );
7979
v->addLayout( h );
@@ -97,8 +97,8 @@ RgLineVectorLayerSettingsWidget::RgLineVectorLayerSettingsWidget( RgLineVectorLa
9797
h = new QHBoxLayout();
9898
l = new QLabel( tr( "Direction" ), frame );
9999
mcbDirectionDefault = new QComboBox( frame );
100-
mcbDirectionDefault->insertItem( 0, tr( "Both direction" ) );
101-
mcbDirectionDefault->insertItem( 1, tr( "Direct direction" ) );
100+
mcbDirectionDefault->insertItem( 0, tr( "Two-way direction" ) );
101+
mcbDirectionDefault->insertItem( 1, tr( "Forward direction" ) );
102102
mcbDirectionDefault->insertItem( 2, tr( "Reverse direction" ) );
103103
connect( mcbLayers, SIGNAL( currentIndexChanged( int ) ), this, SLOT( on_mcbLayers_selectItem() ) );
104104

0 commit comments

Comments
 (0)