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
1 changed files with 1 additions and 1 deletions

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}