From f001b49bf6dca7882f02c96adb3efd2afe311352 Mon Sep 17 00:00:00 2001 From: Jordi Albornoz Date: Mon, 18 Nov 2002 15:43:03 +0000 Subject: [PATCH] unify a few strings, to ease translator work (thanks, Gerfried Fuchs). --- ChangeLog | 5 +++++ src/commands.c | 10 +++++----- src/dialogs.c | 4 ++-- src/gtetrinet.c | 2 +- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4214cc1..4c5ff9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-11-18 Jordi Mallach + + * src/commands.c, src/dialogs.c, src/gtetrinet.c: unify a few strings, + to ease translator work (thanks, Gerfried Fuchs). + 2002-11-08 Jordi Mallach * Makefile.am: remove ACLOCAL_AMFLAGS definition. diff --git a/src/commands.c b/src/commands.c index 16aed95..e5924c0 100644 --- a/src/commands.c +++ b/src/commands.c @@ -35,10 +35,10 @@ #include "dialogs.h" GnomeUIInfo gamemenu[] = { - GNOMEUIINFO_ITEM(N_("_Connect to Server..."), NULL, connect_command, NULL), - GNOMEUIINFO_ITEM(N_("_Disconnect from Server"), NULL, disconnect_command, NULL), + GNOMEUIINFO_ITEM(N_("_Connect to server..."), NULL, connect_command, NULL), + GNOMEUIINFO_ITEM(N_("_Disconnect from server"), NULL, disconnect_command, NULL), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM(N_("Change _Team..."), NULL, team_command, NULL), + GNOMEUIINFO_ITEM(N_("Change _team..."), NULL, team_command, NULL), GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_ITEM(N_("_Start game"), NULL, start_command, NULL), GNOMEUIINFO_ITEM(N_("_Pause game"), NULL, pause_command, NULL), @@ -47,7 +47,7 @@ GnomeUIInfo gamemenu[] = { * compile time for now. */ #ifdef ENABLE_DETACH GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM(N_("Detac_h Page..."), NULL, detach_command, NULL), + GNOMEUIINFO_ITEM(N_("Detac_h page..."), NULL, detach_command, NULL), #endif /* ENABLE_DETACH */ GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_MENU_EXIT_ITEM(destroymain, NULL), @@ -82,7 +82,7 @@ GnomeUIInfo toolbar[] = { GNOMEUIINFO_ITEM(N_("Change team"), NULL, team_command, NULL), #ifdef ENABLE_DETACH GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM(N_("Detach Page"), NULL, detach_command, NULL), + GNOMEUIINFO_ITEM(N_("Detach page"), NULL, detach_command, NULL), #endif GNOMEUIINFO_END }; diff --git a/src/dialogs.c b/src/dialogs.c index 5e424f7..8ad20ab 100644 --- a/src/dialogs.c +++ b/src/dialogs.c @@ -75,7 +75,7 @@ gint connectingdialog_timeout (gpointer data) void connectingdialog_new (void) { if (connectingdialog) return; - connectingdialog = gnome_dialog_new (_("Connect to Server"), + connectingdialog = gnome_dialog_new (_("Connect to server"), GNOME_STOCK_BUTTON_CANCEL, NULL); progressbar = gtk_progress_bar_new (); @@ -226,7 +226,7 @@ void connectdialog_new (void) oldgamemode = gamemode; /* make dialog that asks for address/nickname */ - connectdialog = gnome_dialog_new (_("Connect to Server"), + connectdialog = gnome_dialog_new (_("Connect to server"), GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_CANCEL, NULL); diff --git a/src/gtetrinet.c b/src/gtetrinet.c index 88de982..915dc0e 100644 --- a/src/gtetrinet.c +++ b/src/gtetrinet.c @@ -65,7 +65,7 @@ static const struct poptOption options[] = { {"connect", 'c', POPT_ARG_STRING, &option_connect, 0, N_("Connect to server"), N_("SERVER")}, {"nickname", 'n', POPT_ARG_STRING, &option_nick, 0, N_("Set nickname to use"), N_("NICKNAME")}, {"team", 't', POPT_ARG_STRING, &option_team, 0, N_("Set team name"), N_("TEAM")}, - {"spectate", 's', POPT_ARG_NONE, &option_spec, 0, N_("Connect as spectator"), NULL}, + {"spectate", 's', POPT_ARG_NONE, &option_spec, 0, N_("Connect as a spectator"), NULL}, {"password", 'p', POPT_ARG_STRING, &option_pass, 0, N_("Spectator password"), N_("PASSWORD")}, {NULL, 0, 0, NULL, 0, NULL, NULL} }; -- 2.50.1