8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 import re |
11 import re |
12 |
12 |
13 from PyQt4.QtCore import QObject, QTranslator |
13 from PyQt5.QtCore import QObject, QTranslator |
14 from PyQt4.QtGui import QMenu |
14 from PyQt5.QtWidgets import QMenu |
15 |
15 |
16 from E5Gui.E5Application import e5App |
16 from E5Gui.E5Application import e5App |
17 |
17 |
18 # Start-Of-Header |
18 # Start-Of-Header |
19 name = "Camel Case Handling Plug-in" |
19 name = "Camel Case Handling Plug-in" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
21 autoactivate = True |
21 autoactivate = True |
22 deactivateable = True |
22 deactivateable = True |
23 version = "1.0.0" |
23 version = "2.0.0" |
24 className = "SplitMergeCamelCasePlugin" |
24 className = "SplitMergeCamelCasePlugin" |
25 packageName = "SplitMergeCamelCase" |
25 packageName = "SplitMergeCamelCase" |
26 shortDescription = "Split, merge or convert camel case text" |
26 shortDescription = "Split, merge or convert camel case text" |
27 longDescription = \ |
27 longDescription = \ |
28 """This plug-in implements a tool to split, merge or convert""" \ |
28 """This plug-in implements a tool to split, merge or convert""" \ |