From f5de37dbcfa549913c360c26491b8264457fa59a Mon Sep 17 00:00:00 2001 From: Henrik Brautaset Aronsen Date: Thu, 11 Oct 2012 12:06:56 +0200 Subject: [PATCH] Basic gettext support when building Added basic support for building gettext locales in the Makefile. The po file name should match the target locale. [Dirk Hohndel: Used git mv to rename the German .po file] Signed-off-by: Henrik Brautaset Aronsen Signed-off-by: Dirk Hohndel --- Makefile | 10 +++++++++- po/{deutsch.po => de_DE.po} | 0 2 files changed, 9 insertions(+), 1 deletion(-) rename po/{deutsch.po => de_DE.po} (100%) diff --git a/Makefile b/Makefile index a954f54a6..6ecef7904 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ OBJS = main.o dive.o time.o profile.o info.o equipment.o divelist.o \ parse-xml.o save-xml.o libdivecomputer.o print.o uemis.o uemis-downloader.o \ gtk-gui.o statistics.o file.o cochran.o $(OSSUPPORT).o $(RESFILE) -$(NAME): $(OBJS) +$(NAME): $(OBJS) gettext $(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS) install: $(NAME) @@ -211,8 +211,16 @@ uemis-downloader.o: uemis-downloader.c dive.h uemis.h $(OSSUPPORT).o: $(OSSUPPORT).c display-gtk.h $(CC) $(CFLAGS) $(OSSUPPORT_CFLAGS) -c $(OSSUPPORT).c +gettext: po/*.po + @for MSG in $(wildcard po/*.po); do \ + LOC=`basename $$MSG .po`; \ + mkdir -p locale/$$LOC.UTF-8/LC_MESSAGES; \ + msgfmt -c -o locale/$$LOC.UTF-8/LC_MESSAGES/subsurface.mo $$MSG; \ + done + doc: $(MAKE) -C Documentation doc clean: rm -f $(OBJS) *~ $(NAME) $(NAME).exe + rm -rf locale diff --git a/po/deutsch.po b/po/de_DE.po similarity index 100% rename from po/deutsch.po rename to po/de_DE.po