@@ -365,7 +365,7 @@ void QgisApp::createActions()
365
365
//
366
366
// File Menu Related Items
367
367
//
368
- mActionFileNew = new QAction (QIcon (myIconPath+" /mActionFileNew.png" ), tr (" &New Project... " ), this );
368
+ mActionFileNew = new QAction (QIcon (myIconPath+" /mActionFileNew.png" ), tr (" &New Project" ), this );
369
369
mActionFileNew ->setShortcut (tr (" Ctrl+N" ));
370
370
mActionFileNew ->setStatusTip (tr (" New Project" ));
371
371
connect (mActionFileNew , SIGNAL (triggered ()), this , SLOT (fileNew ()));
@@ -385,17 +385,17 @@ void QgisApp::createActions()
385
385
mActionFileSaveAs ->setStatusTip (tr (" Save Project under a new name" ));
386
386
connect (mActionFileSaveAs , SIGNAL (triggered ()), this , SLOT (fileSaveAs ()));
387
387
//
388
- mActionFilePrint = new QAction (QIcon (myIconPath+" /mActionFilePrint.png" ), tr (" &Print" ), this );
388
+ mActionFilePrint = new QAction (QIcon (myIconPath+" /mActionFilePrint.png" ), tr (" &Print... " ), this );
389
389
mActionFilePrint ->setShortcut (tr (" Ctrl+P" ));
390
390
mActionFilePrint ->setStatusTip (tr (" Print" ));
391
391
connect (mActionFilePrint , SIGNAL (triggered ()), this , SLOT (filePrint ()));
392
392
//
393
- mActionSaveMapAsImage = new QAction (QIcon (myIconPath+" /mActionSaveMapAsImage.png" ), tr (" Save as Image" ), this );
393
+ mActionSaveMapAsImage = new QAction (QIcon (myIconPath+" /mActionSaveMapAsImage.png" ), tr (" Save as Image... " ), this );
394
394
mActionSaveMapAsImage ->setShortcut (tr (" I" ));
395
395
mActionSaveMapAsImage ->setStatusTip (tr (" Save map as image" ));
396
396
connect (mActionSaveMapAsImage , SIGNAL (triggered ()), this , SLOT (saveMapAsImage ()));
397
397
//
398
- mActionExportMapServer = new QAction (QIcon (myIconPath+" /mActionExportMapServer.png" ), tr (" Export to MapServer Map" ), this );
398
+ mActionExportMapServer = new QAction (QIcon (myIconPath+" /mActionExportMapServer.png" ), tr (" Export to MapServer Map... " ), this );
399
399
mActionExportMapServer ->setShortcut (tr (" M" ));
400
400
mActionExportMapServer ->setStatusTip (tr (" Export as MapServer .map file" ));
401
401
connect (mActionExportMapServer , SIGNAL (triggered ()), this , SLOT (exportMapServer ()));
@@ -407,17 +407,17 @@ void QgisApp::createActions()
407
407
//
408
408
// Layer Menu Related Items
409
409
//
410
- mActionAddNonDbLayer = new QAction (QIcon (myIconPath+" /mActionAddNonDbLayer.png" ), tr (" Add a Vector Layer" ), this );
410
+ mActionAddNonDbLayer = new QAction (QIcon (myIconPath+" /mActionAddNonDbLayer.png" ), tr (" Add a Vector Layer... " ), this );
411
411
mActionAddNonDbLayer ->setShortcut (tr (" V" ));
412
412
mActionAddNonDbLayer ->setStatusTip (tr (" Add a Vector Layer" ));
413
413
connect (mActionAddNonDbLayer , SIGNAL (triggered ()), this , SLOT (addLayer ()));
414
414
//
415
- mActionAddRasterLayer = new QAction (QIcon (myIconPath+" /mActionAddRasterLayer.png" ), tr (" Add a Raster Layer" ), this );
415
+ mActionAddRasterLayer = new QAction (QIcon (myIconPath+" /mActionAddRasterLayer.png" ), tr (" Add a Raster Layer... " ), this );
416
416
mActionAddRasterLayer ->setShortcut (tr (" R" ));
417
417
mActionAddRasterLayer ->setStatusTip (tr (" Add a Raster Layer" ));
418
418
assert (connect (mActionAddRasterLayer , SIGNAL (triggered ()), this , SLOT (addRasterLayer ())));
419
419
//
420
- mActionAddLayer = new QAction (QIcon (myIconPath+" /mActionAddLayer.png" ), tr (" Add a PostGIS Layer" ), this );
420
+ mActionAddLayer = new QAction (QIcon (myIconPath+" /mActionAddLayer.png" ), tr (" Add a PostGIS Layer... " ), this );
421
421
mActionAddLayer ->setShortcut (tr (" D" ));
422
422
mActionAddLayer ->setStatusTip (tr (" Add a PostGIS Layer" ));
423
423
// #ifdef HAVE_POSTGRESQL
@@ -429,7 +429,7 @@ void QgisApp::createActions()
429
429
// #endif
430
430
assert (connect (mActionAddLayer , SIGNAL (triggered ()), this , SLOT (addDatabaseLayer ())));
431
431
//
432
- mActionNewVectorLayer = new QAction (QIcon (myIconPath+" /mActionNewVectorLayer.png" ), tr (" New Vector Layer" ), this );
432
+ mActionNewVectorLayer = new QAction (QIcon (myIconPath+" /mActionNewVectorLayer.png" ), tr (" New Vector Layer... " ), this );
433
433
mActionNewVectorLayer ->setShortcut (tr (" N" ));
434
434
mActionNewVectorLayer ->setStatusTip (tr (" Create a New Vector Layer" ));
435
435
connect (mActionNewVectorLayer , SIGNAL (triggered ()), this , SLOT (newVectorLayer ()));
@@ -461,17 +461,17 @@ void QgisApp::createActions()
461
461
//
462
462
// Settings Menu Related Items
463
463
//
464
- mActionProjectProperties = new QAction (QIcon (myIconPath+" /mActionProjectProperties.png" ), tr (" Project Properties" ), this );
464
+ mActionProjectProperties = new QAction (QIcon (myIconPath+" /mActionProjectProperties.png" ), tr (" Project Properties... " ), this );
465
465
mActionProjectProperties ->setShortcut (tr (" Alt+P" ));
466
466
mActionProjectProperties ->setStatusTip (tr (" Set project properties" ));
467
467
connect (mActionProjectProperties , SIGNAL (triggered ()), this , SLOT (projectProperties ()));
468
468
//
469
- mActionOptions = new QAction (QIcon (myIconPath+" /mActionOptions.png" ), tr (" QGIS Options" ), this );
469
+ mActionOptions = new QAction (QIcon (myIconPath+" /mActionOptions.png" ), tr (" Options... " ), this );
470
470
mActionOptions ->setShortcut (tr (" Alt+O" ));
471
471
mActionOptions ->setStatusTip (tr (" Change various QGIS options" ));
472
472
connect (mActionOptions , SIGNAL (triggered ()), this , SLOT (options ()));
473
473
//
474
- mActionCustomProjection = new QAction (QIcon (myIconPath+" /mActionCustomProjection.png" ), tr (" Custom Projection" ), this );
474
+ mActionCustomProjection = new QAction (QIcon (myIconPath+" /mActionCustomProjection.png" ), tr (" Custom Projection... " ), this );
475
475
mActionCustomProjection ->setShortcut (tr (" Alt+I" ));
476
476
mActionCustomProjection ->setStatusTip (tr (" Manage custom projections" ));
477
477
connect (mActionCustomProjection , SIGNAL (triggered ()), this , SLOT (customProjection ()));
@@ -566,17 +566,17 @@ void QgisApp::createActions()
566
566
mActionMeasureArea ->setStatusTip (tr (" Measure an Area" ));
567
567
connect (mActionMeasureArea , SIGNAL (triggered ()), this , SLOT (measureArea ()));
568
568
//
569
- mActionShowBookmarks = new QAction (QIcon (myIconPath+" /mActionShowBookmarks.png" ), tr (" Show Bookmark " ), this );
569
+ mActionShowBookmarks = new QAction (QIcon (myIconPath+" /mActionShowBookmarks.png" ), tr (" Show Bookmarks " ), this );
570
570
mActionShowBookmarks ->setShortcut (tr (" Ctrl+B" ));
571
571
mActionShowBookmarks ->setStatusTip (tr (" Show Bookmarks" ));
572
572
connect (mActionShowBookmarks , SIGNAL (triggered ()), this , SLOT (showBookmarks ()));
573
573
//
574
- mActionNewBookmark = new QAction (QIcon (myIconPath+" /mActionNewBookmark.png" ), tr (" New Bookmark" ), this );
574
+ mActionNewBookmark = new QAction (QIcon (myIconPath+" /mActionNewBookmark.png" ), tr (" New Bookmark... " ), this );
575
575
mActionNewBookmark ->setShortcut (tr (" Alt+B" ));
576
576
mActionNewBookmark ->setStatusTip (tr (" New Bookmark" ));
577
577
connect (mActionNewBookmark , SIGNAL (triggered ()), this , SLOT (newBookmark ()));
578
578
//
579
- mActionAddWmsLayer = new QAction (QIcon (myIconPath+" /mActionAddWmsLayer.png" ), tr (" Add Wms Layer" ), this );
579
+ mActionAddWmsLayer = new QAction (QIcon (myIconPath+" /mActionAddWmsLayer.png" ), tr (" Add WMS Layer... " ), this );
580
580
mActionAddWmsLayer ->setShortcut (tr (" Ctrl+M" ));
581
581
mActionAddWmsLayer ->setStatusTip (tr (" Add Web Mapping Server Layer" ));
582
582
connect (mActionAddWmsLayer , SIGNAL (triggered ()), this , SLOT (addWmsLayer ()));
@@ -588,7 +588,7 @@ void QgisApp::createActions()
588
588
//
589
589
// Plugin Menu Related Items
590
590
//
591
- mActionShowPluginManager = new QAction (QIcon (myIconPath+" /mActionShowPluginManager.png" ), tr (" Plugin Manager" ), this );
591
+ mActionShowPluginManager = new QAction (QIcon (myIconPath+" /mActionShowPluginManager.png" ), tr (" Plugin Manager... " ), this );
592
592
mActionShowPluginManager ->setShortcut (tr (" Ctrl+P" ));
593
593
mActionShowPluginManager ->setStatusTip (tr (" Open the plugin manager" ));
594
594
connect (mActionShowPluginManager , SIGNAL (triggered ()), this , SLOT (showPluginManager ()));
0 commit comments