2009-12-08 20:17:11 +00:00
|
|
|
# Warning: do not transform tabs to spaces in this file.
|
|
|
|
|
|
|
|
all : translations
|
|
|
|
|
|
|
|
core_mo = $(patsubst %.po,%.mo,$(wildcard locale/*/LC_MESSAGES/statusnet.po))
|
|
|
|
plugin_mo = $(patsubst %.po,%.mo,$(wildcard plugins/*/locale/*/LC_MESSAGES/*.po))
|
|
|
|
|
|
|
|
translations : $(core_mo) $(plugin_mo)
|
|
|
|
|
2019-07-15 01:40:09 +01:00
|
|
|
upgrade :
|
|
|
|
php scripts/upgrade.php
|
|
|
|
|
2009-12-08 20:17:11 +00:00
|
|
|
clean :
|
|
|
|
rm -f $(core_mo) $(plugin_mo)
|
|
|
|
|
|
|
|
updatepo :
|
|
|
|
php scripts/update_po_templates.php --all
|
|
|
|
|
|
|
|
%.mo : %.po
|
|
|
|
msgfmt -o $@ $<
|
|
|
|
|