summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-09-06 13:39:56 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-09-06 13:39:56 +0200
commit954800fe5907b085870f07b7d771ffd83b42c67d (patch)
tree6c8219a15100fb815e2b7a3d358d44239b565933 /Makefile
parent539cdd0e0db49ec7b032349164d1c82e13c676dd (diff)
Rename messages.po(t) to tiktok.po(t)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d195472..d0bfcaf 100644
--- a/Makefile
+++ b/Makefile
@@ -11,8 +11,8 @@ tiktok: main.c
$(CC) $(CFLAGS) -DPODIR='"$(PODIR)"' -o $@ $<
extract:
- xgettext --from-code=UTF-8 -k_ -o po/messages.pot main.c
- find po -name '*.po' -exec msgmerge {} po/messages.pot -o {} \;
+ xgettext --from-code=UTF-8 -k_ -o po/tiktok.pot main.c
+ find po -name '*.po' -exec msgmerge {} po/tiktok.pot -o {} \;
translations:
find po -name '*.po' | while read -r file; do msgfmt "$$file" -o "$${file%po}mo"; done