Skip to content

Commit aa2d0b8

Browse files
committed
Use 'New Connection...' instead of 'New...' for browser data items
1 parent efe5966 commit aa2d0b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/providers/mssql/qgsmssqldataitems.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ QList<QAction*> QgsMssqlRootItem::actions()
526526
{
527527
QList<QAction*> lst;
528528

529-
QAction* actionNew = new QAction( tr( "New..." ), this );
529+
QAction* actionNew = new QAction( tr( "New Connection..." ), this );
530530
connect( actionNew, SIGNAL( triggered() ), this, SLOT( newConnection() ) );
531531
lst.append( actionNew );
532532

src/providers/wfs/qgswfsdataitems.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ QList<QAction*> QgsWFSRootItem::actions()
139139
{
140140
QList<QAction*> lst;
141141

142-
QAction* actionNew = new QAction( tr( "New..." ), this );
142+
QAction* actionNew = new QAction( tr( "New Connection..." ), this );
143143
connect( actionNew, SIGNAL( triggered() ), this, SLOT( newConnection() ) );
144144
lst.append( actionNew );
145145

src/providers/wms/qgswmsdataitems.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ QList<QAction*> QgsWMSRootItem::actions()
216216
{
217217
QList<QAction*> lst;
218218

219-
QAction* actionNew = new QAction( tr( "New..." ), this );
219+
QAction* actionNew = new QAction( tr( "New Connection..." ), this );
220220
connect( actionNew, SIGNAL( triggered() ), this, SLOT( newConnection() ) );
221221
lst.append( actionNew );
222222

0 commit comments

Comments
 (0)