769b3a37dd
Added a Makefile in locale subdirectory to rebuild them -- needs to be made part of deployment and packaging.
12 lines
193 B
Makefile
12 lines
193 B
Makefile
# 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 $@ $<
|