@@ -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