[atlantik-cvs] CVS: kdegames/atlantik/client selectconfiguration_widget.cpp, 1.37, 1.38 selectserver_widget.cpp, 1.35, 1.36
[email protected] (Stephan Binner <
[email protected]>)
Sun, 26 Oct 2003 10:57:03 +0100 (CET)
| Newsgroups |
gmane.comp.kde.devel.atlantik |
| Message-ID |
<[email protected]> |
Update of /home/kde/kdegames/atlantik/client
In directory office:/tmp/cvs-serv12128/atlantik/client
Modified Files:
selectconfiguration_widget.cpp selectserver_widget.cpp
Log Message:
CVS_SILENT i18n style guide fixes
Index: selectconfiguration_widget.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/selectconfiguration_widget.cpp,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- selectconfiguration_widget.cpp 12 Jul 2003 17:45:21 -0000 1.37
+++ selectconfiguration_widget.cpp 26 Oct 2003 09:57:00 -0000 1.38
@@ -49,7 +49,7 @@
playerButtons->addItem(new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum));
- m_tokenButton = new KPushButton(SmallIcon("personal"), i18n("Select Token"), this);
+ m_tokenButton = new KPushButton(SmallIcon("personal"), i18n("Select Token..."), this);
playerButtons->addWidget(m_tokenButton);
connect(m_tokenButton, SIGNAL(clicked()), this, SLOT(slotTokenButtonClicked()));
Index: selectserver_widget.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/client/selectserver_widget.cpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- selectserver_widget.cpp 27 Jul 2003 18:02:32 -0000 1.35
+++ selectserver_widget.cpp 26 Oct 2003 09:57:00 -0000 1.36
@@ -35,15 +35,15 @@
Q_CHECK_PTR(m_mainLayout);
// Custom server group
- QHGroupBox *customGroup = new QHGroupBox(i18n("Enter custom monopd Server"), this, "customGroup");
+ QHGroupBox *customGroup = new QHGroupBox(i18n("Enter Custom monopd Server"), this, "customGroup");
m_mainLayout->addWidget(customGroup);
- QLabel *hostLabel = new QLabel(i18n("Hostname"), customGroup);
+ QLabel *hostLabel = new QLabel(i18n("Hostname:"), customGroup);
m_hostEdit = new KLineEdit(customGroup);
m_hostEdit->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Minimum));
- QLabel *portLabel = new QLabel(i18n("Port"), customGroup);
+ QLabel *portLabel = new QLabel(i18n("Port:"), customGroup);
m_portEdit = new KLineEdit(QString::number(1234), customGroup);
m_portEdit->setSizePolicy(QSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum));