From b22d6148493424dde9caba9a22497b8890ebcbdb Mon Sep 17 00:00:00 2001 From: Adam Waldenberg <adam.waldenberg@ejwa.se> Date: Sat, 29 Nov 2014 07:01:24 +0100 Subject: [PATCH] Recognize comments in .po and .pot files. --- gitinspector/comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitinspector/comment.py b/gitinspector/comment.py index ed5361d..ad54bb4 100644 --- a/gitinspector/comment.py +++ b/gitinspector/comment.py @@ -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}