Compare commits
No commits in common. "6e53b6686de9782e3c0ef2bb26f3f9b70b5b675b" and "0b18d62ab111589d42e250872b089839597c3732" have entirely different histories.
6e53b6686d
...
0b18d62ab1
4
.gitignore
vendored
4
.gitignore
vendored
@ -2,8 +2,7 @@
|
|||||||
*.o
|
*.o
|
||||||
ar-lib
|
ar-lib
|
||||||
po/POTFILES
|
po/POTFILES
|
||||||
*.gmo
|
po/*.gmo
|
||||||
*.mo
|
|
||||||
stamp-it
|
stamp-it
|
||||||
compile
|
compile
|
||||||
config.guess
|
config.guess
|
||||||
@ -21,7 +20,6 @@ libtool
|
|||||||
ltmain.sh
|
ltmain.sh
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
!po/Makefile.in
|
|
||||||
m4
|
m4
|
||||||
missing
|
missing
|
||||||
stamp-h1
|
stamp-h1
|
||||||
|
50
autogen.sh
50
autogen.sh
@ -1,54 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Run this to generate all the initial makefiles, etc.
|
# Run this to generate all the initial makefiles, etc.
|
||||||
|
|
||||||
# special params:
|
|
||||||
# - po update .pot & po files
|
|
||||||
# - linguas update LINGUAS and POTFILES.in
|
|
||||||
# - release create release tarball
|
|
||||||
|
|
||||||
#===========================================================================
|
|
||||||
|
|
||||||
if test "$1" = "po" ; then
|
|
||||||
# Before creating a release you might want to update the po files
|
|
||||||
test -d "po/" || exit
|
|
||||||
#git clean -dfx
|
|
||||||
test -f ./configure || ./autogen.sh
|
|
||||||
test -f ./po/Makefile || ./configure
|
|
||||||
find po -name '*.pot' -delete # updates don't happen if pot files already exist...
|
|
||||||
make -C po update-po
|
|
||||||
# cleanup
|
|
||||||
rm -f po/*.po~
|
|
||||||
#sed -i '/#~ /d' po/*.po
|
|
||||||
#git clean -dfx
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test "$1" = "linguas" ; then
|
|
||||||
./po/Makefile.in.gen
|
|
||||||
exit $?
|
|
||||||
fi
|
|
||||||
|
|
||||||
#===========================================================================
|
|
||||||
|
|
||||||
if test "$1" == "release" || test "$1" == "--release" ; then
|
|
||||||
pkg="$(grep -m 1 AC_INIT configure.ac | cut -f 2 -d '[' | cut -f 1 -d ']')"
|
|
||||||
ver="$(grep -m 1 AC_INIT configure.ac | cut -f 3 -d '[' | cut -f 1 -d ']')"
|
|
||||||
ver=$(echo $ver)
|
|
||||||
dir=${pkg}-${ver}
|
|
||||||
rm -rf ../$dir
|
|
||||||
mkdir -p ../$dir
|
|
||||||
cp -rf $PWD/* ../$dir
|
|
||||||
( cd ../$dir ; ./autogen.sh )
|
|
||||||
cd ..
|
|
||||||
tar -Jcf ${dir}.tar.xz $dir
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
#===========================================================================
|
|
||||||
# autogen.sh [--verbose]
|
|
||||||
#===========================================================================
|
|
||||||
|
|
||||||
srcdir=`dirname $0`
|
srcdir=`dirname $0`
|
||||||
test -z "$srcdir" && srcdir=.
|
test -z "$srcdir" && srcdir=.
|
||||||
cd $srcdir
|
cd $srcdir
|
||||||
@ -79,9 +31,7 @@ if test -n "$m4dir" ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Get all required m4 macros required for configure
|
# Get all required m4 macros required for configure
|
||||||
if grep -q LT_INIT configure.ac ; then
|
|
||||||
$LIBTOOLIZE ${verbose} --copy --force || exit 1
|
$LIBTOOLIZE ${verbose} --copy --force || exit 1
|
||||||
fi
|
|
||||||
$ACLOCAL ${verbose} || exit 1
|
$ACLOCAL ${verbose} || exit 1
|
||||||
|
|
||||||
# Generate config.h.in
|
# Generate config.h.in
|
||||||
|
4
configure.ac
vendored
4
configure.ac
vendored
@ -11,7 +11,7 @@ AC_CONFIG_HEADER(config.h)
|
|||||||
AM_GNU_GETTEXT([external])
|
AM_GNU_GETTEXT([external])
|
||||||
m4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
|
m4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
|
||||||
|
|
||||||
#L#T_INIT
|
LT_INIT
|
||||||
|
|
||||||
# Checks for programs.
|
# Checks for programs.
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
@ -74,7 +74,7 @@ AC_CONFIG_FILES([
|
|||||||
src/Makefile
|
src/Makefile
|
||||||
doc/Makefile
|
doc/Makefile
|
||||||
doc/gtkballs.6x
|
doc/gtkballs.6x
|
||||||
po/Makefile
|
po/Makefile.in
|
||||||
gtkballs.spec
|
gtkballs.spec
|
||||||
gtkballs-data/Makefile
|
gtkballs-data/Makefile
|
||||||
])
|
])
|
||||||
|
2
po/LINGUAS
Normal file
2
po/LINGUAS
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Set of available languages.
|
||||||
|
ru fr de pl nl
|
@ -1,88 +0,0 @@
|
|||||||
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
prefix = @prefix@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
datarootdir = @datarootdir@
|
|
||||||
datadir = @datadir@
|
|
||||||
localedir = @localedir@
|
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
GMSGFMT = @GMSGFMT@
|
|
||||||
MSGFMT = @MSGFMT@
|
|
||||||
#MSGFMT_OPTS = -c
|
|
||||||
XGETTEXT = @XGETTEXT@
|
|
||||||
MSGMERGE = msgmerge
|
|
||||||
|
|
||||||
MOFILES = de.mo fr.mo nl.mo pl.mo ru.mo
|
|
||||||
LINGUAS = de fr nl pl ru
|
|
||||||
POTFILES = ../src/about.c ../src/gtkballs.c ../src/gtkballs.h ../src/halloffame.c ../src/inputname.c ../src/mainmenu.c ../src/mainwin.c ../src/preferences.c ../src/prefs.c ../src/rules.c ../src/rulesdialog.c ../src/savedialog.c ../src/scoreboard.c
|
|
||||||
|
|
||||||
#.SUFFIXES: .po .gmo .mo
|
|
||||||
#.po.mo:
|
|
||||||
# $(GMSGFMT) $(MSGFMT_OPTS) -o `echo $* | sed "s,.*/,,"`.mo $<
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
|
||||||
all-yes: $(MOFILES)
|
|
||||||
all-no:
|
|
||||||
|
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
|
||||||
$(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) \
|
|
||||||
--add-comments --keyword=_ --keyword=N_ --from-code=UTF-8 \
|
|
||||||
-o $(GETTEXT_PACKAGE).pot $(POTFILES)
|
|
||||||
|
|
||||||
install: install-data-@USE_NLS@
|
|
||||||
install-data-no: all
|
|
||||||
install-data-yes: all
|
|
||||||
catalogs="$(LINGUAS)"; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
dir=$(DESTDIR)$(localedir)/$$cat/LC_MESSAGES; \
|
|
||||||
mkdir -p $$dir; \
|
|
||||||
$(INSTALL_DATA) $$cat.mo $$dir/$(GETTEXT_PACKAGE).mo; \
|
|
||||||
echo "installing $$cat.mo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs="$(LINGUAS)"; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
echo "rm -f $(DESTDIR)$(localedir)/$$cat/LC_MESSAGES/$(GETTEXT_PACKAGE).mo"; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$cat/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
|
||||||
done
|
|
||||||
|
|
||||||
mostlyclean:
|
|
||||||
rm -f *.pox *.old.po *.new.po *.mo *.gmo *.msg *.cat *.cat.m
|
|
||||||
|
|
||||||
clean: mostlyclean
|
|
||||||
|
|
||||||
distclean: clean
|
|
||||||
rm -f Makefile POTFILES
|
|
||||||
|
|
||||||
update-po: Makefile
|
|
||||||
rm -f $(GETTEXT_PACKAGE).pot
|
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
|
||||||
catalogs="$(LINGUAS)"; \
|
|
||||||
for lang in $$catalogs; do \
|
|
||||||
printf " %s " "$$lang"; \
|
|
||||||
if $(MSGMERGE) $$lang.po $(GETTEXT_PACKAGE).pot -o $$lang.new.po; then \
|
|
||||||
mv -f $$lang.new.po $$lang.po || exit 1; \
|
|
||||||
else \
|
|
||||||
echo "msgmerge for $$lang failed!"; \
|
|
||||||
rm -f $$lang.new.po; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
|
|
||||||
de.mo:
|
|
||||||
$(GMSGFMT) $(MSGFMT_OPTS) -o de.mo de.po
|
|
||||||
fr.mo:
|
|
||||||
$(GMSGFMT) $(MSGFMT_OPTS) -o fr.mo fr.po
|
|
||||||
nl.mo:
|
|
||||||
$(GMSGFMT) $(MSGFMT_OPTS) -o nl.mo nl.po
|
|
||||||
pl.mo:
|
|
||||||
$(GMSGFMT) $(MSGFMT_OPTS) -o pl.mo pl.po
|
|
||||||
ru.mo:
|
|
||||||
$(GMSGFMT) $(MSGFMT_OPTS) -o ru.mo ru.po
|
|
@ -1,97 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# https://unlicense.org
|
|
||||||
|
|
||||||
cd $(dirname "$0")
|
|
||||||
|
|
||||||
POFILES="$(ls *.po)"
|
|
||||||
MOFILES="$(echo "$POFILES" | sed 's/\.po$/.mo/')"
|
|
||||||
LINGUAS="$(echo "$POFILES" | sed 's/\.po$//')"
|
|
||||||
filez=$(find .. -type f -name '*.h' -or -name '*.c' -or -name '*.cc' -or -name '*.cpp' -or -name '*.hh')
|
|
||||||
POTFILES="$(grep '_(' $filez | sed -e 's%^\./%%' -e 's%:.*%%' | sort -u)"
|
|
||||||
|
|
||||||
echo '
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
prefix = @prefix@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
datarootdir = @datarootdir@
|
|
||||||
datadir = @datadir@
|
|
||||||
localedir = @localedir@
|
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
|
|
||||||
GMSGFMT = @GMSGFMT@
|
|
||||||
MSGFMT = @MSGFMT@
|
|
||||||
#MSGFMT_OPTS = -c
|
|
||||||
XGETTEXT = @XGETTEXT@
|
|
||||||
MSGMERGE = msgmerge
|
|
||||||
|
|
||||||
MOFILES = '${MOFILES}'
|
|
||||||
LINGUAS = '${LINGUAS}'
|
|
||||||
POTFILES = '${POTFILES}'
|
|
||||||
|
|
||||||
#.SUFFIXES: .po .gmo .mo
|
|
||||||
#.po.mo:
|
|
||||||
# $(GMSGFMT) $(MSGFMT_OPTS) -o `echo $* | sed "s,.*/,,"`.mo $<
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
|
||||||
all-yes: $(MOFILES)
|
|
||||||
all-no:
|
|
||||||
|
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
|
||||||
$(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) \
|
|
||||||
--add-comments --keyword=_ --keyword=N_ --from-code=UTF-8 \
|
|
||||||
-o $(GETTEXT_PACKAGE).pot $(POTFILES)
|
|
||||||
|
|
||||||
install: install-data-@USE_NLS@
|
|
||||||
install-data-no: all
|
|
||||||
install-data-yes: all
|
|
||||||
catalogs="$(LINGUAS)"; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
dir=$(DESTDIR)$(localedir)/$$cat/LC_MESSAGES; \
|
|
||||||
mkdir -p $$dir; \
|
|
||||||
$(INSTALL_DATA) $$cat.mo $$dir/$(GETTEXT_PACKAGE).mo; \
|
|
||||||
echo "installing $$cat.mo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs="$(LINGUAS)"; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
echo "rm -f $(DESTDIR)$(localedir)/$$cat/LC_MESSAGES/$(GETTEXT_PACKAGE).mo"; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$cat/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
|
||||||
done
|
|
||||||
|
|
||||||
mostlyclean:
|
|
||||||
rm -f *.pox *.old.po *.new.po *.mo *.gmo *.msg *.cat *.cat.m
|
|
||||||
|
|
||||||
clean: mostlyclean
|
|
||||||
|
|
||||||
distclean: clean
|
|
||||||
rm -f Makefile POTFILES
|
|
||||||
|
|
||||||
update-po: Makefile
|
|
||||||
rm -f $(GETTEXT_PACKAGE).pot
|
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
|
||||||
catalogs="$(LINGUAS)"; \
|
|
||||||
for lang in $$catalogs; do \
|
|
||||||
printf " %s " "$$lang"; \
|
|
||||||
if $(MSGMERGE) $$lang.po $(GETTEXT_PACKAGE).pot -o $$lang.new.po; then \
|
|
||||||
mv -f $$lang.new.po $$lang.po || exit 1; \
|
|
||||||
else \
|
|
||||||
echo "msgmerge for $$lang failed!"; \
|
|
||||||
rm -f $$lang.new.po; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
' > Makefile.in
|
|
||||||
|
|
||||||
(
|
|
||||||
for i in ${LINGUAS}
|
|
||||||
do
|
|
||||||
echo "${i}.mo:"
|
|
||||||
echo " \$(GMSGFMT) \$(MSGFMT_OPTS) -o ${i}.mo ${i}.po"
|
|
||||||
done
|
|
||||||
) >> Makefile.in
|
|
198
po/Makefile.in.in
Normal file
198
po/Makefile.in.in
Normal file
@ -0,0 +1,198 @@
|
|||||||
|
# Makefile for program source directory in GNU NLS utilities package.
|
||||||
|
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||||
|
#
|
||||||
|
# This file file be copied and used freely without restrictions. It can
|
||||||
|
# be used in projects which are not available under the GNU Public License
|
||||||
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
|
# Please note that the actual code is *not* freely available.
|
||||||
|
#
|
||||||
|
# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
|
||||||
|
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
|
||||||
|
#
|
||||||
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
|
||||||
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
|
||||||
|
SHELL = @SHELL@
|
||||||
|
@SET_MAKE@
|
||||||
|
|
||||||
|
srcdir = @srcdir@
|
||||||
|
top_srcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
|
||||||
|
prefix = @prefix@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
datadir = @datadir@
|
||||||
|
localedir = @localedir@
|
||||||
|
subdir = po
|
||||||
|
|
||||||
|
INSTALL = @INSTALL@
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
|
CC = @CC@
|
||||||
|
GENCAT = gencat
|
||||||
|
GMSGFMT = @GMSGFMT@
|
||||||
|
MSGFMT = @MSGFMT@
|
||||||
|
#MSGFMT_OPTS = -c
|
||||||
|
XGETTEXT = @XGETTEXT@
|
||||||
|
MSGMERGE = msgmerge
|
||||||
|
|
||||||
|
POFILES = @POFILES@
|
||||||
|
GMOFILES = @GMOFILES@
|
||||||
|
DISTFILES = LINGUAS Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot $(POFILES) $(GMOFILES)
|
||||||
|
|
||||||
|
POTFILES = \
|
||||||
|
|
||||||
|
CATALOGS = @CATALOGS@
|
||||||
|
|
||||||
|
.SUFFIXES:
|
||||||
|
.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
|
.po.pox:
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
$(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox
|
||||||
|
|
||||||
|
.po.mo:
|
||||||
|
$(MSGFMT) -o $@ $<
|
||||||
|
|
||||||
|
.po.gmo:
|
||||||
|
$(AM_V_GEN) file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
|
||||||
|
&& rm -f $$file && $(GMSGFMT) $(MSGFMT_OPTS) -o $$file $<
|
||||||
|
|
||||||
|
.po.cat:
|
||||||
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
|
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
|
all: all-@USE_NLS@
|
||||||
|
|
||||||
|
all-yes: $(CATALOGS)
|
||||||
|
all-no:
|
||||||
|
|
||||||
|
$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
|
$(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) \
|
||||||
|
--add-comments --keyword=_ --keyword=N_ \
|
||||||
|
--keyword=C_:1c,2 \
|
||||||
|
--keyword=NC_:1c,2 \
|
||||||
|
--keyword=g_dcgettext:2 \
|
||||||
|
--keyword=g_dngettext:2,3 \
|
||||||
|
--keyword=g_dpgettext2:2c,3 \
|
||||||
|
--flag=N_:1:pass-c-format \
|
||||||
|
--flag=C_:2:pass-c-format \
|
||||||
|
--flag=NC_:2:pass-c-format \
|
||||||
|
--flag=g_dngettext:2:pass-c-format \
|
||||||
|
--flag=g_strdup_printf:1:c-format \
|
||||||
|
--flag=g_string_printf:2:c-format \
|
||||||
|
--flag=g_string_append_printf:2:c-format \
|
||||||
|
--flag=g_error_new:3:c-format \
|
||||||
|
--flag=g_set_error:4:c-format \
|
||||||
|
--flag=g_markup_printf_escaped:1:c-format \
|
||||||
|
--flag=g_log:3:c-format \
|
||||||
|
--flag=g_print:1:c-format \
|
||||||
|
--flag=g_printerr:1:c-format \
|
||||||
|
--flag=g_printf:1:c-format \
|
||||||
|
--flag=g_fprintf:2:c-format \
|
||||||
|
--flag=g_sprintf:2:c-format \
|
||||||
|
--flag=g_snprintf:3:c-format \
|
||||||
|
--flag=g_scanner_error:2:c-format \
|
||||||
|
--flag=g_scanner_warn:2:c-format \
|
||||||
|
$(POTFILES) \
|
||||||
|
&& test ! -f $(GETTEXT_PACKAGE).po \
|
||||||
|
|| ( rm -f $(srcdir)/$(GETTEXT_PACKAGE).pot \
|
||||||
|
&& mv $(GETTEXT_PACKAGE).po $(srcdir)/$(GETTEXT_PACKAGE).pot )
|
||||||
|
|
||||||
|
install: install-exec install-data
|
||||||
|
install-exec:
|
||||||
|
install-data: install-data-@USE_NLS@
|
||||||
|
install-data-no: all
|
||||||
|
install-data-yes: all
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
destdir=$(localedir); \
|
||||||
|
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
|
||||||
|
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
||||||
|
mkdir -p $$dir; \
|
||||||
|
if test -r $$cat; then \
|
||||||
|
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
|
else \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
|
fi; \
|
||||||
|
if test -r $$cat.m; then \
|
||||||
|
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
|
else \
|
||||||
|
if test -r $(srcdir)/$$cat.m ; then \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
||||||
|
$$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
|
else \
|
||||||
|
true; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
done
|
||||||
|
|
||||||
|
check: all
|
||||||
|
|
||||||
|
dvi info ctags tags CTAGS TAGS ID:
|
||||||
|
|
||||||
|
mostlyclean:
|
||||||
|
rm -f core core.* *.pox *.old.po cat-id-tbl.tmp
|
||||||
|
|
||||||
|
clean: mostlyclean
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m $(GMOFILES)
|
||||||
|
|
||||||
|
update-po: Makefile
|
||||||
|
rm -f $(GETTEXT_PACKAGE).pot
|
||||||
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
|
tmpdir=`pwd`; \
|
||||||
|
cd $(srcdir); \
|
||||||
|
catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
|
||||||
|
printf " %s " "$$lang"; \
|
||||||
|
if $(MSGMERGE) $$lang.po $(GETTEXT_PACKAGE).pot -o $$tmpdir/$$lang.new.po; then \
|
||||||
|
if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
else \
|
||||||
|
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
|
||||||
|
:; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi; \
|
||||||
|
else \
|
||||||
|
echo "msgmerge for $$cat failed!"; \
|
||||||
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
# POTFILES.in: ./autogen.sh linguas
|
||||||
|
POTFILES:
|
||||||
|
cp POTFILES.in POTFILES
|
||||||
|
|
||||||
|
Makefile: Makefile.in.in ../config.status POTFILES
|
||||||
|
cd .. \
|
||||||
|
&& $(SHELL) ./config.status $(subdir)/$@.in
|
24
po/POTFILES.in
Normal file
24
po/POTFILES.in
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# List of files which containing translatable strings.
|
||||||
|
|
||||||
|
# Package source files
|
||||||
|
src/about.c
|
||||||
|
src/child.c
|
||||||
|
src/gfx.c
|
||||||
|
src/gtkballs.c
|
||||||
|
src/gtkutils.c
|
||||||
|
src/license.c
|
||||||
|
src/mainmenu.c
|
||||||
|
src/mainwin.c
|
||||||
|
src/path.c
|
||||||
|
src/preferences.c
|
||||||
|
src/prefs.c
|
||||||
|
src/rules.c
|
||||||
|
src/scoreboard.c
|
||||||
|
src/themerc.c
|
||||||
|
src/theme.c
|
||||||
|
src/savegame.c
|
||||||
|
src/savedialog.c
|
||||||
|
src/halloffame.c
|
||||||
|
src/inputname.c
|
||||||
|
src/rulesdialog.c
|
||||||
|
src/game.c
|
@ -1,6 +0,0 @@
|
|||||||
|
|
||||||
There's no LINGUAS file..
|
|
||||||
|
|
||||||
Just run ./Makefile.in.gen whenever a .po file is added or removed..
|
|
||||||
and when you want to update the $(POTFILES) (source files that contain translatable strings)
|
|
||||||
|
|
@ -332,6 +332,9 @@ void remake_board(gint numoldchilds, gboolean isnextvalid) {
|
|||||||
cxs = gtkbTheme->emptycell.xsize;
|
cxs = gtkbTheme->emptycell.xsize;
|
||||||
cys = gtkbTheme->emptycell.ysize;
|
cys = gtkbTheme->emptycell.ysize;
|
||||||
gtk_widget_set_size_request(mw_get_da(), rules_get_width() * cxs, rules_get_height() * cys);
|
gtk_widget_set_size_request(mw_get_da(), rules_get_width() * cxs, rules_get_height() * cys);
|
||||||
|
if (pixsurf) {
|
||||||
|
g_object_unref(pixsurf);
|
||||||
|
}
|
||||||
|
|
||||||
if (pixsurf) {
|
if (pixsurf) {
|
||||||
cairo_surface_destroy (pixsurf);
|
cairo_surface_destroy (pixsurf);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user