File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 22
22
from msgcheck .msgcheck import msgcheck_version
23
23
24
24
DESCRIPTION = 'Perform various checks on gettext files.'
25
+ LONG_DESCRIPTION = """
26
+ MsgCheck performs various checks on gettext files:
27
+
28
+ * compilation (with command `msgfmt -c`)
29
+ * for each translation:
30
+ - number of lines in translated strings
31
+ - whitespace at beginning/end of strings
32
+ - trailing whitespace at end of lines inside strings
33
+ - punctuation at end of strings
34
+ - spelling (messages and translations).
35
+ """
25
36
26
37
setup (
27
38
name = 'msgcheck' ,
28
39
version = msgcheck_version (),
29
40
description = DESCRIPTION ,
30
- long_description = DESCRIPTION ,
41
+ long_description = LONG_DESCRIPTION ,
31
42
author = 'Sébastien Helleu' ,
32
43
33
44
url = 'https://github.com/flashcode/msgcheck' ,
You can’t perform that action at this time.
0 commit comments