From: Jordi Mallach Date: Fri, 17 Jan 2003 22:33:31 +0000 (+0000) Subject: remove gettext marks from author names, as there's no non-ASCII character to translate. X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=ffd997bf041e0961fa8015b53d4261d4531d2e72;p=gtetrinet remove gettext marks from author names, as there's no non-ASCII character to translate. --- diff --git a/ChangeLog b/ChangeLog index 805a704..c4eb9aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-01-17 Jordi Mallach + + * src/commands.c (about_command): remove gettext marks from author + names, as there's no non-ASCII character to translate. + 2003-01-11 Jordi Mallach * NEWS, configure.in: released gtetrinet 0.5.2. diff --git a/src/commands.c b/src/commands.c index 6d4f69f..15eee05 100644 --- a/src/commands.c +++ b/src/commands.c @@ -225,12 +225,12 @@ void about_command (void) if (!GTK_IS_WINDOW (about)) { - const char *authors[] = {N_("Ka-shu Wong "), - N_("James Antill "), - N_("Jordi Mallach "), - N_("Dani Carbonell "), + const char *authors[] = {"Ka-shu Wong ", + "James Antill ", + "Jordi Mallach ", + "Dani Carbonell ", NULL}; - const char *documenters[] = {N_("Jordi Mallach "), + const char *documenters[] = {"Jordi Mallach ", NULL}; /* Translators: translate as your names & emails */ const char *translators = _("translator_credits");