[atlantik-cvs] CVS: kdegames/atlantik/client eventlogwidget.cpp, 1.5, 1.6 main.cpp,1.38,1.39

[email protected] (Stephan Binner <[email protected]>) Sun, 04 Jul 2004 14:03:42 +0200
Newsgroups gmane.comp.kde.devel.atlantik
Message-ID <[email protected]>
Update of /home/kde/kdegames/atlantik/client
In directory office:/tmp/cvs-serv9828/atlantik/client

Modified Files:
	eventlogwidget.cpp main.cpp 
Log Message:
CVS_SILENT i18n style guide fixes


Index: eventlogwidget.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/eventlogwidget.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- eventlogwidget.cpp	10 Feb 2004 19:46:34 -0000	1.5
+++ eventlogwidget.cpp	4 Jul 2004 12:03:40 -0000	1.6
@@ -46,7 +46,7 @@
 {
 	return m_events;
 }
- 
+
 EventLogWidget::EventLogWidget(EventLog *eventLog, QWidget *parent, const char *name)
 	: QWidget(parent, name,
 	  WType_Dialog | WStyle_Customize | WStyle_DialogBorder | WStyle_Title |
@@ -72,7 +72,7 @@
 
 	actionBox->addItem(new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum));
 
-	m_saveButton = new KPushButton(BarIcon("save", KIcon::SizeSmall), i18n("Save"), this);
+	m_saveButton = new KPushButton(BarIcon("filesave", KIcon::SizeSmall), i18n("&Save As..."), this);
 	actionBox->addWidget(m_saveButton);
 
 	connect(m_saveButton, SIGNAL(clicked()), this, SLOT(save()));

Index: main.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/main.cpp,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- main.cpp	10 Feb 2004 19:46:34 -0000	1.38
+++ main.cpp	4 Jul 2004 12:03:40 -0000	1.39
@@ -26,11 +26,11 @@
 static KCmdLineOptions options[] =
 {
 	{ "h", 0, 0 },
-	{ "host <argument>", I18N_NOOP("connect to this host"), 0 },
+	{ "host <argument>", I18N_NOOP("Connect to this host"), 0 },
 	{ "p", 0, 0 },
-	{ "port <argument>", I18N_NOOP("connect at this port"), "1234" },
+	{ "port <argument>", I18N_NOOP("Connect at this port"), "1234" },
 	{ "g", 0, 0 },
-	{ "game <argument>", I18N_NOOP("join this game"), 0 },
+	{ "game <argument>", I18N_NOOP("Join this game"), 0 },
 	KCmdLineLastOption
 };