Sha256: 50229bc9131a5bcb5b21c4f7452787d95c92a2a063cf2ae0368ded2c665fd49a

Contents?: true

Size: 1.65 KB

Versions: 118

Compression:

Stored size: 1.65 KB

Contents

#
# Makefile for PO merging and MO generation. More info in the README.
#
# make all-mo (default) - generate MO files
# make check - check translations using translate-tool
# make tx-update - download and merge translations from Transifex
# make clean - clean everything
#
DOMAIN = foreman_tasks
VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load(Dir.glob("../*.gemspec")[0]);puts spec.version')
POTFILE = $(DOMAIN).pot
MOFILE = $(DOMAIN).mo
POFILES = $(shell find . -name '$(DOMAIN).po')
MOFILES = $(patsubst %.po,%.mo,$(POFILES))
POXFILES = $(patsubst %.po,%.pox,$(POFILES))
EDITFILES = $(patsubst %.po,%.edit.po,$(POFILES))

%.mo: %.po
	mkdir -p $(shell dirname $@)/LC_MESSAGES
	msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<

# Generate MO files from PO files
all-mo: $(MOFILES)

# Check for malformed strings
%.pox: %.po
	msgfmt -c $<
	pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
		-t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
	cat $@
	! grep -q msgid $@

%.edit.po:
	touch $@

check: $(POXFILES)

# Unify duplicate translations
uniq-po:
	for f in $(shell find ./ -name "*.po") ; do \
		msguniq $$f -o $$f ; \
	done

tx-pull: $(EDITFILES)
	tx pull -f
	for f in $(EDITFILES) ; do \
		sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
	done

tx-update: tx-pull
	@echo
	@echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation, then make -C locale mo-files to finish
	@echo

mo-files: $(MOFILES)
	git add $(POFILES) $(POTFILE) ../locale/*/LC_MESSAGES
	git commit -m "i18n - pulling from tx"
	@echo
	@echo Changes commited!
	@echo

Version data entries

118 entries across 118 versions & 1 rubygems

Version Path
foreman-tasks-0.14.6 locale/Makefile
foreman-tasks-0.15.7 locale/Makefile
foreman-tasks-0.16.0 locale/Makefile
foreman-tasks-0.15.6 locale/Makefile
foreman-tasks-0.15.5 locale/Makefile
foreman-tasks-0.15.4 locale/Makefile
foreman-tasks-0.15.3 locale/Makefile
foreman-tasks-0.15.2 locale/Makefile
foreman-tasks-0.15.1 locale/Makefile
foreman-tasks-0.15.0 locale/Makefile
foreman-tasks-0.14.5 locale/Makefile
foreman-tasks-0.14.4 locale/Makefile
foreman-tasks-0.14.3 locale/Makefile
foreman-tasks-0.14.2 locale/Makefile
foreman-tasks-0.14.1 locale/Makefile
foreman-tasks-0.11.3 locale/Makefile
foreman-tasks-0.14.0 locale/Makefile
foreman-tasks-0.13.4 locale/Makefile
foreman-tasks-0.13.3 locale/Makefile
foreman-tasks-0.13.2 locale/Makefile