one thing that i should mention about doing translations... the Makefile.am
in the nls/xx_XX/ directory shouldn't try to generate the blackbox-nls.hh
header (the C locale does, but there is not point in having it generated
over and over)
basically this involves changing the blackbox.cat rule from:
blackbox.cat: $(MFILES)
@if test x$(NLSTEST) = "x-DNLS"; then \
echo "Generating catalog file using
$(GENCAT_TYPE) gencat"; \
if test "x$(GENCAT_TYPE)" = "xGNU"; then \
sed -f ../cnv $(MFILES) | \
gencat --new blackbox.cat - -H \
../blackbox-nls.hh; \
else \
gencat -lang C++ -new blackbox.cat $(MFILES) -h \
../blackbox-nls.hh; \
fi \
fi
to:
blackbox.cat: $(MFILES)
@if test x$(NLSTEST) = "x-DNLS"; then \
echo "Generating catalog file using
$(GENCAT_TYPE) gencat"; \
if test "x$(GENCAT_TYPE)" = "xGNU"; then \
sed -f ../cnv $(MFILES) | \
gencat --new blackbox.cat -; \
else \
gencat -lang C++ -new blackbox.cat $(MFILES); \
fi \
fi
i don't think i mentioned this anywhere, and noticed that the tr_TR patch
regenerates the header... no big deal, just not "optimum" behaviour... so i
decided i'd let people know (i'll include a README in the nls directory)...
:)
--- signature Wed Dec 29 17:52:53 1999
+++ .signature Wed Dec 29 17:53:19 1999
@@ -0,0 +1,3 @@
+Bradley T Hughes <[EMAIL PROTECTED]>
+-----------------------------------
+ http://blackbox.alug.org/