File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222from msgcheck .msgcheck import msgcheck_version
2323
2424DESCRIPTION = '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+ """
2536
2637setup (
2738 name = 'msgcheck' ,
2839 version = msgcheck_version (),
2940 description = DESCRIPTION ,
30- long_description = DESCRIPTION ,
41+ long_description = LONG_DESCRIPTION ,
3142 author = 'Sébastien Helleu' ,
3243 author_email = 'flashcode@flashtux.org' ,
3344 url = 'https://github.com/flashcode/msgcheck' ,
You can’t perform that action at this time.
0 commit comments