From 644eb8f9fc9d3dc92922abd3d5d4a503e1ab52e5 Mon Sep 17 00:00:00 2001 From: Mathieu Dupuy Date: Wed, 4 Dec 2019 22:08:12 +0100 Subject: [PATCH] make powrap/pospell -> make wrap/make spell (#1019) --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 6d3dbf3a..40c417d9 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ # - make # Automatically build an html local version # - make todo # To list remaining tasks # - make verifs # To check for correctness: wrapping, spelling -# - make powrap # To check for wrapping -# - make pospell # To check for spelling +# - make wrap # To check for wrapping +# - make spell # To check for spelling # - make merge # To merge pot from upstream # - make fuzzy # To find fuzzy strings # - make progress # To compute current progression @@ -80,14 +80,14 @@ todo: $(VENV)/bin/potodo $(VENV)/bin/potodo .PHONY: verifs -verifs: powrap pospell +verifs: wrap spell -.PHONY: powrap -powrap: $(VENV)/bin/powrap +.PHONY: wrap +wrap: $(VENV)/bin/powrap $(VENV)/bin/powrap --check --quiet *.po **/*.po -.PHONY: pospell -pospell: $(VENV)/bin/pospell +.PHONY: spell +spell: $(VENV)/bin/pospell $(VENV)/bin/pospell -p dict -l fr_FR *.po **/*.po .PHONY: merge