You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Updates translations with new unstraslated strings from template
.PHONY: update_po
update_po: $(LOCALE_FILES)
$(LOCALE_FILES): $(TEMPLATE_FILE)
for LAN in $(LANGS); do $(PYBABEL) update --domain "$$LAN" --locale "$$LAN" --input-file $(TEMPLATE_FILE) --output-file $(LOCALE_FOLDER)/"$$LAN.po"; done
#Updates js files from new translations in po files
.PHONY: update_js
update_js: $(LOCALE_FILES)
for LAN in $(LANGS); do $(I18NEXT) -l "$$LAN" -s "$(LOCALE_FOLDER)/$$LAN.po" -t "$(JS_FILESPATH)/locale/$$LAN.json"; done