diff options
author | Mark Sapiro <mark@msapiro.net> | 2015-02-10 15:34:07 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2015-02-10 15:34:07 -0800 |
commit | d29b465be2c1aa6e1083f13b579a59697a93fb30 (patch) | |
tree | dca67e488f69dbd61e0c0a933e724e98d05703d9 /templates/ru/Makefile | |
parent | feb0c79d073433101d19cab305d8427d855cd6b6 (diff) | |
download | mailman2-d29b465be2c1aa6e1083f13b579a59697a93fb30.tar.gz mailman2-d29b465be2c1aa6e1083f13b579a59697a93fb30.tar.xz mailman2-d29b465be2c1aa6e1083f13b579a59697a93fb30.zip |
Updates to Russian i18n by Danil Smirnov.
Removed some 'prior translator' files from Russian templates directory.
Diffstat (limited to 'templates/ru/Makefile')
-rw-r--r-- | templates/ru/Makefile | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/templates/ru/Makefile b/templates/ru/Makefile deleted file mode 100644 index 148099df..00000000 --- a/templates/ru/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# FILES=admindbpreamble.html adminsubscribeack.txt adminunsubscribeack.txt admlogin.html approve.txt article.html bounce.txt checkdbs.txt convert.txt cronpass.txt headfoot.html help.txt listinfo.html masthead.txt newlist.txt nopass.txt options.html postack.txt postauth.txt postheld.txt private.html reenable.txt refuse.txt roster.html subauth.txt subscribeack.txt subscribe.html unsub.txt userpass.txt verify.txt -FILES=$(shell cat status | sed -e 's/ .*$$//') -TARGET=/var/home/mailman/templates/ru/ -WEB=/var/www/mailman-ru -WFILES_DIR=/var/www/mailman-ru/files - -TFILES=$(addprefix $(TARGET),$(FILES)) -WFILES=$(addprefix $(WEB),$(FILES)) - -diff_args=-ub - -all: - @echo there is nothing to do - -diff-%: % - @-(cd ../en/ ; cvs -z6 diff $(diff_args) -r$(shell fgrep $< status | awk '{ print $$2; }') $<) - -check: - @(cd ../en/ ; cvs -z6 -q status ) | ./s2s.py - -todo: - @cat status | while read name version status rest; do [ "$$status" == "done" ] || echo $$name; done | sort - -done: - @cat status | while read name version status rest; do [ "$$status" == "done" ] && echo $$name; done | sort - -started: - @cat status | while read name version status rest; do [ "$$status" == "started" ] && echo $$name; done | sort - -status-%: % - @ cat status | grep "^$< " - -$(WEB)/%: % - cp $< $@ - -#update: $(WFILES) -update: update-files update-status - -update-files: - install -d $(WFILES_DIR) - @for file in $(FILES); do if [ ! -e $(WFILES_DIR)/$$file -o $$file -nt $(WFILES_DIR)/$$file ]; then cp -vf $$file $(WFILES_DIR)/$$file; fi; done - -update-status: $(WEB)/status.html - -$(WEB)/status.html: status s2h.py - ./s2h.py > $@ - -install: - sudo -u mailman install -d $(TARGET) - sudo -u mailman install $(FILES) $(TARGET) |