From: Jordi Mallach Date: Mon, 16 May 2005 14:31:01 +0000 (+0000) Subject: Require gtk+-2.0 >= 2.6.0. Rename "translator_credits" to X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=6f7686cab0014a925188f274249e5136abfb3db2;p=gtetrinet Require gtk+-2.0 >= 2.6.0. Rename "translator_credits" to 2005-05-16 Jordi Mallach * configure.in: Require gtk+-2.0 >= 2.6.0. * src/commands.c (about_command): Rename "translator_credits" to "translator-credits". --- diff --git a/ChangeLog b/ChangeLog index 9d137b8..d81b5f5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-05-16 Jordi Mallach + + * configure.in: Require gtk+-2.0 >= 2.6.0. + * src/commands.c (about_command): Rename "translator_credits" to + "translator-credits". + 2005-04-29 Jordi Mallach * configure.in: Release gtetrinet 0.7.9. diff --git a/configure.in b/configure.in index 8b4f2f9..cebf34f 100644 --- a/configure.in +++ b/configure.in @@ -28,6 +28,7 @@ dnl ***************************************** dnl pkg-config check time dnl ***************************************** +LIBGTK_REQUIRED=2.6.0 LIBGNOME_REQUIRED=2.0.0 LIBGNOMEUI_REQUIRED=2.0.0 @@ -35,7 +36,7 @@ dnl ***************************************** dnl libgnome, libgnomeui needed for all utils dnl ***************************************** -PKG_CHECK_MODULES(GTET, libgnome-2.0 >= $LIBGNOME_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED) +PKG_CHECK_MODULES(GTET, gtk+-2.0 >= $LIBGTK_REQUIRED libgnome-2.0 >= $LIBGNOME_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED) AC_SUBST(GTET_CFLAGS) AC_SUBST(GTET_LIBS) diff --git a/src/commands.c b/src/commands.c index 212ca1f..46acc9f 100644 --- a/src/commands.c +++ b/src/commands.c @@ -306,7 +306,7 @@ void about_command (void) const char *documenters[] = {"Jordi Mallach ", NULL}; /* Translators: translate as your names & emails */ - const char *translators = _("translator_credits"); + const char *translators = _("translator-credits"); logo = gdk_pixbuf_new_from_file (PIXMAPSDIR "/gtetrinet.png", NULL); @@ -323,7 +323,7 @@ void about_command (void) "comments", _("A Tetrinet client for GNOME.\n"), "authors", authors, "documenters", documenters, - "translator-credits", strcmp (translators, "translator_credits") != 0 ? translators : NULL, + "translator-credits", strcmp (translators, "translator-credits") != 0 ? translators : NULL, "logo", logo, "website", "http://gtetrinet.sf.net", "website-label", "GTetrinet Home Page",