From 9937767a9e2f8eee9a968a406d407059cba2cba6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 30 Nov 2009 12:10:05 -0800 Subject: 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. --- locale/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 locale/Makefile (limited to 'locale/Makefile') 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 $@ $< -- cgit v1.2.3-54-g00ecf