initial commit

This commit is contained in:
2020-11-19 09:40:03 +01:00
commit d4c40a927a
20 changed files with 412 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
all: localecompile
LNGS:=`find pretix_digital_items/locale/ -mindepth 1 -maxdepth 1 -type d -printf "-l %f "`
localecompile:
django-admin compilemessages
localegen:
django-admin makemessages --keep-pot -i build -i dist -i "*egg*" $(LNGS)
.PHONY: all localecompile localegen