summaryrefslogtreecommitdiff
path: root/po/Makefile.in
blob: 6201f5965f1a95d0dc958c9352db363d58c9e4c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# Copyright (C) 2004 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@

LANGS=de

#TARGETS=$(LANGS:%=lvm2_%.mo) $(LANGS:%=dm_%.mo)

DM_POSOURCES = $(top_builddir)/libdm/dm-tools/dmsetup.pot $(top_builddir)/libdm/*.pot \
	       $(top_builddir)/libdm/*/*.pot

LVM_POSOURCES = $(top_builddir)/tools/*.pot $(top_builddir)/lib/*/*.pot

include $(top_builddir)/make.tmpl

lvm2.po: Makefile $(LVM_POSOURCES)
	@echo Compiling string table
	@xgettext -C -F --keyword=print_log --keyword=log_debug \
		--keyword=log_info --keyword=_ --keyword=N_ \
		--keyword=log_notice --keyword=log_warn --keyword=log_err \
		--keyword=log_fatal --keyword=log_debug --keyword=log_error \
		--keyword=log_print --keyword=log_verbose \
		--keyword=log_very_verbose -d - \
		$(LVM_POSOURCES) > $@

device-mapper.po: Makefile $(DM_POSOURCES)
	@echo Compiling string table
	@xgettext -C -F --keyword=dm_log --keyword=log_debug \
		--keyword=log_info --keyword=_ --keyword=N_ \
		--keyword=log_notice --keyword=log_warn --keyword=log_err \
		--keyword=log_fatal --keyword=log_debug --keyword=log_error \
		--keyword=log_print --keyword=log_verbose \
		--keyword=log_very_verbose -d - \
		$(DM_POSOURCES) > $@

pofile: lvm2.po device-mapper.po

# FIXME
install: $(TARGETS)
	@echo Installing translation files in $(localedir)
	@( \
		for lang in $(LANGS); do \
			$(INSTALL_DATA) -D $$lang.mo \
			    $(localedir)/$$lang/LC_MESSAGES/lvm2.mo;\
	  done; \
	)
	@( \
		for lang in $(LANGS); do \
			$(INSTALL_DATA) -D $$lang.mo \
			    $(localedir)/$$lang/LC_MESSAGES/device-mapper.mo;\
	  done; \
	)