Skip to content

Commit 90237fa

Browse files
committed
Cleanup some strings
1 parent 35eea22 commit 90237fa

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/providers/arcgisrest/qgsafsdataitems.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void QgsAfsRootItem::connectionsChanged()
7272
void QgsAfsRootItem::newConnection()
7373
{
7474
QgsNewHttpConnection nc( 0, QgsNewHttpConnection::ConnectionOther, QStringLiteral( "qgis/connections-arcgisfeatureserver/" ) );
75-
nc.setWindowTitle( tr( "Create a New ArcGisFeatureServer Connection" ) );
75+
nc.setWindowTitle( tr( "Create a New ArcGIS Feature Server Connection" ) );
7676

7777
if ( nc.exec() )
7878
{
@@ -138,7 +138,7 @@ QList<QAction *> QgsAfsConnectionItem::actions()
138138
void QgsAfsConnectionItem::editConnection()
139139
{
140140
QgsNewHttpConnection nc( 0, QgsNewHttpConnection::ConnectionOther, QStringLiteral( "qgis/connections-arcgisfeatureserver/" ), mName );
141-
nc.setWindowTitle( tr( "Modify ArcGisFeatureServer Connection" ) );
141+
nc.setWindowTitle( tr( "Modify ArcGIS Feature Server Connection" ) );
142142

143143
if ( nc.exec() )
144144
{

src/providers/arcgisrest/qgsamsdataitems.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void QgsAmsRootItem::connectionsChanged()
7171
void QgsAmsRootItem::newConnection()
7272
{
7373
QgsNewHttpConnection nc( 0, QgsNewHttpConnection::ConnectionOther, QStringLiteral( "qgis/connections-arcgismapserver/" ) );
74-
nc.setWindowTitle( tr( "Create a New ArcGisMapServer Connection" ) );
74+
nc.setWindowTitle( tr( "Create a New ArcGIS Map Server Connection" ) );
7575

7676
if ( nc.exec() )
7777
{
@@ -154,7 +154,7 @@ QList<QAction *> QgsAmsConnectionItem::actions()
154154
void QgsAmsConnectionItem::editConnection()
155155
{
156156
QgsNewHttpConnection nc( 0, QgsNewHttpConnection::ConnectionOther, QStringLiteral( "qgis/connections-arcgismapserver/" ), mName );
157-
nc.setWindowTitle( tr( "Modify ArcGisMapServer Connection" ) );
157+
nc.setWindowTitle( tr( "Modify ArcGIS Map Server Connection" ) );
158158

159159
if ( nc.exec() )
160160
{

src/providers/arcgisrest/qgsarcgisservicesourceselect.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ void QgsArcGisServiceSourceSelect::refresh()
208208

209209
void QgsArcGisServiceSourceSelect::addEntryToServerList()
210210
{
211-
212211
QgsNewHttpConnection nc( 0, QgsNewHttpConnection::ConnectionOther, QStringLiteral( "qgis/connections-%1/" ).arg( mServiceName.toLower() ) );
213212
nc.setWindowTitle( tr( "Create a New %1 Connection" ).arg( mServiceName ) );
214213

0 commit comments

Comments
 (0)