diff src/plugins/plugin_misc_text_syntaxes.py @ 2145:33c8c4973743

core (plugins): added missing contants + use of new constants in PLUGIN_INFO
author Goffi <goffi@goffi.org>
date Sun, 12 Feb 2017 18:59:10 +0100
parents 5874da3811b7
children fe922e6fabd4
line wrap: on
line diff
--- a/src/plugins/plugin_misc_text_syntaxes.py	Sun Feb 12 17:55:43 2017 +0100
+++ b/src/plugins/plugin_misc_text_syntaxes.py	Sun Feb 12 18:59:10 2017 +0100
@@ -18,6 +18,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 from sat.core.i18n import _, D_
+from sat.core.constants import Const as C
 from sat.core.log import getLogger
 log = getLogger(__name__)
 
@@ -52,14 +53,14 @@
 STYLES_ACCEPTED_VALUE = re.compile(STYLES_VALUES_REGEX)
 
 PLUGIN_INFO = {
-    "name": "Text syntaxes",
-    "import_name": "TEXT-SYNTAXES",
-    "type": "MISC",
-    "protocols": [],
-    "dependencies": [],
-    "main": "TextSyntaxes",
-    "handler": "no",
-    "description": _("""Management of various text syntaxes (XHTML-IM, Markdown, etc)""")
+    C.PI_NAME: "Text syntaxes",
+    C.PI_IMPORT_NAME: "TEXT-SYNTAXES",
+    C.PI_TYPE: "MISC",
+    C.PI_PROTOCOLS: [],
+    C.PI_DEPENDENCIES: [],
+    C.PI_MAIN: "TextSyntaxes",
+    C.PI_HANDLER: "no",
+    C.PI_DESCRIPTION: _("""Management of various text syntaxes (XHTML-IM, Markdown, etc)""")
 }
 
 class UnknownSyntax(Exception):