@@ -167,7 +167,7 @@ def __init__(self, parent=None):
167
167
##------------------Toolbar Editor-------------------------------------
168
168
169
169
## Action for Open File
170
- openFileBt = QCoreApplication .translate ("PythonConsole" , "Open file " )
170
+ openFileBt = QCoreApplication .translate ("PythonConsole" , "Open Script... " )
171
171
self .openFileButton = QAction (self )
172
172
self .openFileButton .setCheckable (False )
173
173
self .openFileButton .setEnabled (True )
@@ -177,7 +177,7 @@ def __init__(self, parent=None):
177
177
self .openFileButton .setToolTip (openFileBt )
178
178
self .openFileButton .setText (openFileBt )
179
179
180
- openExtEditorBt = QCoreApplication .translate ("PythonConsole" , "Open in external editor " )
180
+ openExtEditorBt = QCoreApplication .translate ("PythonConsole" , "Open in External Editor " )
181
181
self .openInEditorButton = QAction (self )
182
182
self .openInEditorButton .setCheckable (False )
183
183
self .openInEditorButton .setEnabled (True )
@@ -267,7 +267,7 @@ def __init__(self, parent=None):
267
267
self .uncommentEditorButton .setToolTip (uncommentEditorBt )
268
268
self .uncommentEditorButton .setText (uncommentEditorBt )
269
269
## Action for Object browser
270
- objList = QCoreApplication .translate ("PythonConsole" , "Object Inspector" )
270
+ objList = QCoreApplication .translate ("PythonConsole" , "Object Inspector... " )
271
271
self .objectListButton = QAction (self )
272
272
self .objectListButton .setCheckable (True )
273
273
self .objectListButton .setEnabled (self .settings .value ("pythonConsole/enableObjectInsp" ,
@@ -291,7 +291,7 @@ def __init__(self, parent=None):
291
291
##----------------Toolbar Console-------------------------------------
292
292
293
293
## Action Show Editor
294
- showEditor = QCoreApplication .translate ("PythonConsole" , "Show editor " )
294
+ showEditor = QCoreApplication .translate ("PythonConsole" , "Show Editor " )
295
295
self .showEditorButton = QAction (self )
296
296
self .showEditorButton .setEnabled (True )
297
297
self .showEditorButton .setCheckable (True )
@@ -301,7 +301,7 @@ def __init__(self, parent=None):
301
301
self .showEditorButton .setToolTip (showEditor )
302
302
self .showEditorButton .setText (showEditor )
303
303
## Action for Clear button
304
- clearBt = QCoreApplication .translate ("PythonConsole" , "Clear console " )
304
+ clearBt = QCoreApplication .translate ("PythonConsole" , "Clear Console " )
305
305
self .clearButton = QAction (self )
306
306
self .clearButton .setCheckable (False )
307
307
self .clearButton .setEnabled (True )
@@ -311,7 +311,7 @@ def __init__(self, parent=None):
311
311
self .clearButton .setToolTip (clearBt )
312
312
self .clearButton .setText (clearBt )
313
313
## Action for settings
314
- optionsBt = QCoreApplication .translate ("PythonConsole" , "Settings " )
314
+ optionsBt = QCoreApplication .translate ("PythonConsole" , "Options... " )
315
315
self .optionsButton = QAction (self )
316
316
self .optionsButton .setCheckable (False )
317
317
self .optionsButton .setEnabled (True )
@@ -331,7 +331,7 @@ def __init__(self, parent=None):
331
331
self .actionClass .setToolTip (actionClassBt )
332
332
self .actionClass .setText (actionClassBt )
333
333
## Import Processing class
334
- loadProcessingBt = QCoreApplication .translate ("PythonConsole" , "Import Processing class " )
334
+ loadProcessingBt = QCoreApplication .translate ("PythonConsole" , "Import Processing Class " )
335
335
self .loadProcessingButton = QAction (self )
336
336
self .loadProcessingButton .setCheckable (False )
337
337
self .loadProcessingButton .setEnabled (True )
@@ -341,7 +341,7 @@ def __init__(self, parent=None):
341
341
self .loadProcessingButton .setToolTip (loadProcessingBt )
342
342
self .loadProcessingButton .setText (loadProcessingBt )
343
343
## Import QtCore class
344
- loadQtCoreBt = QCoreApplication .translate ("PythonConsole" , "Import PyQt.QtCore class " )
344
+ loadQtCoreBt = QCoreApplication .translate ("PythonConsole" , "Import PyQt.QtCore Class " )
345
345
self .loadQtCoreButton = QAction (self )
346
346
self .loadQtCoreButton .setCheckable (False )
347
347
self .loadQtCoreButton .setEnabled (True )
@@ -351,7 +351,7 @@ def __init__(self, parent=None):
351
351
self .loadQtCoreButton .setToolTip (loadQtCoreBt )
352
352
self .loadQtCoreButton .setText (loadQtCoreBt )
353
353
## Import QtGui class
354
- loadQtGuiBt = QCoreApplication .translate ("PythonConsole" , "Import PyQt.QtGui class " )
354
+ loadQtGuiBt = QCoreApplication .translate ("PythonConsole" , "Import PyQt.QtGui Class " )
355
355
self .loadQtGuiButton = QAction (self )
356
356
self .loadQtGuiButton .setCheckable (False )
357
357
self .loadQtGuiButton .setEnabled (True )
@@ -361,7 +361,7 @@ def __init__(self, parent=None):
361
361
self .loadQtGuiButton .setToolTip (loadQtGuiBt )
362
362
self .loadQtGuiButton .setText (loadQtGuiBt )
363
363
## Action for Run script
364
- runBt = QCoreApplication .translate ("PythonConsole" , "Run command " )
364
+ runBt = QCoreApplication .translate ("PythonConsole" , "Run Command " )
365
365
self .runButton = QAction (self )
366
366
self .runButton .setCheckable (False )
367
367
self .runButton .setEnabled (True )
@@ -371,7 +371,7 @@ def __init__(self, parent=None):
371
371
self .runButton .setToolTip (runBt )
372
372
self .runButton .setText (runBt )
373
373
## Help action
374
- helpBt = QCoreApplication .translate ("PythonConsole" , "Help" )
374
+ helpBt = QCoreApplication .translate ("PythonConsole" , "Help... " )
375
375
self .helpButton = QAction (self )
376
376
self .helpButton .setCheckable (False )
377
377
self .helpButton .setEnabled (True )
0 commit comments