diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-22 07:07:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-22 07:07:16 +0000 |
commit | 0b037ea945cc56e9b6d1beaea9cd8264111e19bf (patch) | |
tree | f2237741ea7f5356e9314bfe48a5c2dd4575586e | |
parent | 7ca1908d7648c700333792075b05007963d2f1ad (diff) | |
download | coreutils-0b037ea945cc56e9b6d1beaea9cd8264111e19bf.tar.xz |
Switch encoding from Latin-1 to UTF-8.
(WRITTEN_BY): Change "Franc,ois" (actually using
c-with-cedilla in Latin-1) to "F.", so that it's ASCII, as
xgettext requires.
-rw-r--r-- | src/ptx.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,6 +1,6 @@ /* Permuted index for GNU, with keywords in their context. Copyright (C) 1990, 1991, 1993, 1998-2003 Free Software Foundation, Inc. - François Pinard <pinard@iro.umontreal.ca>, 1988. + François Pinard <pinard@iro.umontreal.ca>, 1988. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - François Pinard <pinard@iro.umontreal.ca> */ + François Pinard <pinard@iro.umontreal.ca> */ #include <config.h> @@ -32,7 +32,10 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "ptx" -#define WRITTEN_BY _("Written by François Pinard.") +/* Note to translator: Please translate "F. Pinard" to "François + Pinard" if "ç" (c-with-cedilla) is available in the + translation's character set and encoding. */ +#define WRITTEN_BY _("Written by F. Pinard.") /* Number of possible characters in a byte. */ #define CHAR_SET_SIZE 256 |