diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-03 12:35:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-03 12:51:43 +0300 |
commit | a7c723b681ddefdcaa84cb9b16681c65818d7110 (patch) | |
tree | 3c7100a90db00c3eacc41977cdb5bbae99e6ca40 /src/gui/editserverdialog.cpp | |
parent | 04fbf07c41bf78dea11aa9b7098c80f0da3801e3 (diff) | |
download | plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.tar.gz plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.tar.bz2 plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.tar.xz plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.zip |
add comments for translators
Diffstat (limited to 'src/gui/editserverdialog.cpp')
-rw-r--r-- | src/gui/editserverdialog.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/editserverdialog.cpp b/src/gui/editserverdialog.cpp index 89ad5e967..34d15c76c 100644 --- a/src/gui/editserverdialog.cpp +++ b/src/gui/editserverdialog.cpp @@ -63,6 +63,7 @@ std::string TypeListModel::getElementAt(int elementIndex) EditServerDialog::EditServerDialog(ServerDialog *const parent, ServerInfo server, const int index) : + // TRANSLATORS: edit server dialog name Window(_("Edit Server"), true, parent), gcn::ActionListener(), gcn::KeyListener(), @@ -71,8 +72,11 @@ EditServerDialog::EditServerDialog(ServerDialog *const parent, mNameField(new TextField(this, std::string())), mDescriptionField(new TextField(this, std::string())), mOnlineListUrlField(new TextField(this, std::string())), + // TRANSLATORS: edit server dialog button mConnectButton(new Button(this, _("Connect"), "connect", this)), + // TRANSLATORS: edit server dialog button mOkButton(new Button(this, _("OK"), "addServer", this)), + // TRANSLATORS: edit server dialog button mCancelButton(new Button(this, _("Cancel"), "cancel", this)), mTypeListModel(new TypeListModel), mTypeField(new DropDown(this, mTypeListModel, false, true)), @@ -82,11 +86,17 @@ EditServerDialog::EditServerDialog(ServerDialog *const parent, { setWindowName("EditServerDialog"); + // TRANSLATORS: edit server dialog label Label *const nameLabel = new Label(this, _("Name:")); + // TRANSLATORS: edit server dialog label Label *const serverAdressLabel = new Label(this, _("Address:")); + // TRANSLATORS: edit server dialog label Label *const portLabel = new Label(this, _("Port:")); + // TRANSLATORS: edit server dialog label Label *const typeLabel = new Label(this, _("Server type:")); + // TRANSLATORS: edit server dialog label Label *const descriptionLabel = new Label(this, _("Description:")); + // TRANSLATORS: edit server dialog label Label *const onlineListUrlLabel = new Label(this, _("Online list url:")); mPortField->setNumeric(true); mPortField->setRange(1, 65535); @@ -206,7 +216,9 @@ void EditServerDialog::action(const gcn::ActionEvent &event) if (mServerAddressField->getText().empty() || mPortField->getText().empty()) { + // TRANSLATORS: edit server dialog error header OkDialog *const dlg = new OkDialog(_("Error"), + // TRANSLATORS: edit server dialog error message _("Please at least type both the address and the port " "of the server."), DIALOG_ERROR); dlg->addActionListener(this); |