This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we're showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
# Warning: do not transform tabs to spaces in this file. |
| 2 |
|
| 3 |
all : translations |
| 4 |
|
| 5 |
core_mo = $(patsubst %.po,%.mo,$(wildcard locale/*/LC_MESSAGES/statusnet.po)) |
| 6 |
plugin_mo = $(patsubst %.po,%.mo,$(wildcard plugins/*/locale/*/LC_MESSAGES/*.po)) |
| 7 |
|
| 8 |
translations : $(core_mo) $(plugin_mo) |
| 9 |
|
| 10 |
clean : |
| 11 |
rm -f $(core_mo) $(plugin_mo) |
| 12 |
|
| 13 |
updatepo : |
| 14 |
php scripts/update_po_templates.php --all |
| 15 |
|
| 16 |
%.mo : %.po |
| 17 |
msgfmt -o $@ $< |