diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-30 12:25:49 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-30 12:25:49 -0800 |
commit | 769b3a37dda5bad2f7a87c9e1b31f767207177ea (patch) | |
tree | 9b811aced879da41fbf4439a6f81b833b85e5a9d /locale/Makefile | |
parent | bb70f77a5c8801a9bf76a85584377eb55efdb392 (diff) |
Drop binary .mo localization files from git repo to aid in development.
Added a Makefile in locale subdirectory to rebuild them -- needs to be made part of deployment and packaging.
Diffstat (limited to 'locale/Makefile')
-rw-r--r-- | locale/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/locale/Makefile b/locale/Makefile new file mode 100644 index 000000000..4f17f683f --- /dev/null +++ b/locale/Makefile @@ -0,0 +1,11 @@ +# Warning: do not transform tabs to spaces in this file. + +all : translations + +translations : */LC_MESSAGES/statusnet.mo + +clean : + rm -f */LC_MESSAGES/statusnet.mo + +%.mo : %.po + msgfmt -o $@ $< |