Skip to content

Commit acb0a9e

Browse files
committed
use lowercase letters for menu (fix #5436)
1 parent 7f67185 commit acb0a9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/plugins/sextante/SextantePlugin.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ def initGui(self):
6767
self.menu.setTitle(QCoreApplication.translate("SEXTANTE", "Analysis"))
6868

6969
self.toolboxAction = QAction(QIcon(":/sextante/images/toolbox.png"),
70-
QCoreApplication.translate("SEXTANTE", "&SEXTANTE Toolbox"),
70+
QCoreApplication.translate("SEXTANTE", "&SEXTANTE toolbox"),
7171
self.iface.mainWindow())
7272
QObject.connect(self.toolboxAction, SIGNAL("triggered()"), self.openToolbox)
7373
self.menu.addAction(self.toolboxAction)
7474

7575
self.modelerAction = QAction(QIcon(":/sextante/images/model.png"),
76-
QCoreApplication.translate("SEXTANTE", "&SEXTANTE Modeler"),
76+
QCoreApplication.translate("SEXTANTE", "&SEXTANTE modeler"),
7777
self.iface.mainWindow())
7878
QObject.connect(self.modelerAction, SIGNAL("triggered()"), self.openModeler)
7979
self.menu.addAction(self.modelerAction)
8080

8181
self.historyAction = QAction(QIcon(":/sextante/images/history.gif"),
82-
QCoreApplication.translate("SEXTANTE", "&SEXTANTE History and log"),
82+
QCoreApplication.translate("SEXTANTE", "&SEXTANTE history and log"),
8383
self.iface.mainWindow())
8484
QObject.connect(self.historyAction, SIGNAL("triggered()"), self.openHistory)
8585
self.menu.addAction(self.historyAction)

0 commit comments

Comments
 (0)