1
0
Fork 0
mirror of https://github.com/ejwa/gitinspector.git synced 2025-03-19 14:58:12 +01:00

Recognize comments in .po and .pot files.

This commit is contained in:
Adam Waldenberg 2014-11-29 07:01:24 +01:00
parent 4d6e51a760
commit b22d614849

View file

@ -29,7 +29,7 @@ __comment_end__ = {"java": "*/", "c": "*/", "cc": "*/", "cpp": "*/", "h": "*/",
__comment__ = {"java": "//", "c": "//", "cc": "//", "cpp": "//", "h": "//", "hh": "//", "hpp": "//", "pl": "#", "php": "//",
"py": "#", "glsl": "//", "rb": "#", "js": "//", "scala": "//", "sql": "--", "tex": "%", "ada": "--", "ads": "--",
"adb": "--" }
"adb": "--", "pot": "#", "po": "#" }
__comment_markers_must_be_at_begining__ = {"tex": True}