+2002-11-18 Jordi Mallach <jordi@sindominio.net>
+
+ * 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 <jordi@sindominio.net>
* Makefile.am: remove ACLOCAL_AMFLAGS definition.
#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),
* 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),
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
};
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 ();
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);
{"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}
};