diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-02-13 13:14:43 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-02-13 13:14:43 +0000 |
commit | 4274c6e0952fad298b3f31222a4db7d4bc50c773 (patch) | |
tree | f3dc714f9041a28805438554e553ee536f1550d9 | |
parent | 0e4a4778f8d4bde2c7abd17db45f30ec14781c33 (diff) | |
download | xine-lib-4274c6e0952fad298b3f31222a4db7d4bc50c773.tar.gz xine-lib-4274c6e0952fad298b3f31222a4db7d4bc50c773.tar.bz2 |
**BUGFIX**
Used utf-8 for comments visible in po-files.
(user visible texts should be only in ASCII).
CVS patchset: 7406
CVS date: 2005/02/13 13:14:43
-rw-r--r-- | po/Makefile.in.in | 2 | ||||
-rw-r--r-- | src/post/planar/unsharp.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index d19ca23a7..3443fd9cc 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -87,7 +87,7 @@ all-no: $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ --add-comments --keyword=_ --keyword=N_ \ - --files-from=$(srcdir)/POTFILES.in \ + --from-code=utf-8 --files-from=$(srcdir)/POTFILES.in \ --msgid-bugs-address='http://sourceforge.net/tracker/?atid=109655&group_id=9655' \ && test ! -f $(PACKAGE).po \ || ( rm -f $(srcdir)/$(PACKAGE).pot \ diff --git a/src/post/planar/unsharp.c b/src/post/planar/unsharp.c index bfc168ad8..0e9fc8b08 100644 --- a/src/post/planar/unsharp.c +++ b/src/post/planar/unsharp.c @@ -17,10 +17,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: unsharp.c,v 1.16 2005/02/06 19:53:00 valtri Exp $ + * $Id: unsharp.c,v 1.17 2005/02/13 13:14:43 valtri Exp $ * * mplayer's unsharp - * Copyright (C) 2002 Rémi Guyomarch <rguyom@pobox.com> + * Copyright (C) 2002 Rémi Guyomarch <rguyom@pobox.com> */ #include "xine_internal.h" @@ -216,6 +216,7 @@ static xine_post_api_descr_t * get_param_descr (void) { } static char * get_help (void) { + /* use real name "Rémi Guyomarch" in translations */ return _("Unsharp mask / gaussian blur\n" "It is possible to set the width and height of the matrix, " "odd sized in both directions (min = 3x3, max = 13x11 or 11x13, " |