diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-06-13 15:40:03 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-06-13 15:40:03 +0000 |
commit | accfe046bea252f12ecd441bee348d3cd7e1bf84 (patch) | |
tree | 94a825763c0c2cdf1d58f09d4e7be4d767a9b99c /Makefile | |
parent | b723a94efc19f1af7ecd14bb3d94ceb9e646a169 (diff) | |
download | poezio-accfe046bea252f12ecd441bee348d3cd7e1bf84.tar.gz poezio-accfe046bea252f12ecd441bee348d3cd7e1bf84.tar.bz2 poezio-accfe046bea252f12ecd441bee348d3cd7e1bf84.tar.xz poezio-accfe046bea252f12ecd441bee348d3cd7e1bf84.zip |
/quit can have a message. fixed #1488
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -42,5 +42,12 @@ uninstall: rm -f $$gettextfile; \ done +mo: + for localename in `find locale/ -maxdepth 1 -type d | grep -v '.svn' | sed 's:locale/::g'` ; do \ + if [ -d locale/$$localename ]; then \ + msgfmt locale/$$localename/LC_MESSAGES/poezio.po -o locale/$$localename/LC_MESSAGES/poezio.mo -v; \ + fi \ + done + pot: xgettext src/*.py --from-code=utf-8 --keyword=_ -o locale/poezio.pot |