From: Melvin Hadasht Date: Sat, 6 Jul 2002 15:03:22 +0000 (+0000) Subject: po/Makefile.in.in X-Git-Tag: rel_0_8_0~66 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=1697d4e99c13144c4c8b341627d239efa21831c3;hp=489aaa057da96a97998b5776438bbcc4c1e7419f po/Makefile.in.in Removed --no-location in xgettext command line to help translators that use Emacs' po-mode src/quote_fmt.c Removed unnecessary comments that messed up sylpheed.pot --- diff --git a/ChangeLog.claws b/ChangeLog.claws index cfc6f7d41..df742dd75 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,11 @@ +2002-07-06 [melvin] 0.7.8claws51 + + * po/Makefile.in.in + Removed --no-location in xgettext command line to help + translators that use Emacs' po-mode + * src/quote_fmt.c + Removed unnecessary comments that messed up sylpheed.pot + 2002-07-06 [paul] 0.7.8claws50 * sync with 0.7.8cvs19 diff --git a/configure.in b/configure.in index 79113659a..67be59d72 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=7 MICRO_VERSION=8 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws50 +EXTRA_VERSION=claws51 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 3077d1f43..32b737655 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -83,7 +83,7 @@ all-no: $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ - --add-comments --no-location --keyword=_ --keyword=N_ \ + --add-comments --keyword=_ --keyword=N_ \ --files-from=$(srcdir)/POTFILES.in \ && test ! -f $(PACKAGE).po \ || ( rm -f $(srcdir)/$(PACKAGE).pot \ diff --git a/src/quote_fmt.c b/src/quote_fmt.c index ac2da0576..01478dd67 100644 --- a/src/quote_fmt.c +++ b/src/quote_fmt.c @@ -56,14 +56,14 @@ static gchar *symbol_table[][2] = {"", NULL}, {"?x{expr}", N_("Insert expr if x is set\nx is one of the characters above after %")}, {"", NULL}, - {"\\%", N_("Literal %")}, /* % */ - {"\\\\", N_("Literal backslash")}, /* \ */ - {"\\?", N_("Literal question mark")}, /* ? */ - {"\\|", N_("Literal pipe")}, /* | */ + {"\\%", N_("Literal %")}, + {"\\\\", N_("Literal backslash")}, + {"\\?", N_("Literal question mark")}, + {"\\|", N_("Literal pipe")}, {"\\{", N_("Literal opening curly brace")}, {"\\}", N_("Literal closing curly brace")}, {"", NULL}, - {"|f{file}", N_("Insert File")}, /* insert file */ + {"|f{file}", N_("Insert File")}, {"|p{command}", N_("Insert program output")}, /* insert program output */ {NULL,NULL}, };