From 76ce0afe4c16e86a1a3eda8f1a1c4195b2ccf939 Mon Sep 17 00:00:00 2001 From: doitux Date: Mon, 27 Sep 2010 11:20:34 +0000 Subject: [PATCH] fix typo --- src/gui/qt/changecontentdialog/changecontentdialogimpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/qt/changecontentdialog/changecontentdialogimpl.cpp b/src/gui/qt/changecontentdialog/changecontentdialogimpl.cpp index e72358c8..83ee65f7 100644 --- a/src/gui/qt/changecontentdialog/changecontentdialogimpl.cpp +++ b/src/gui/qt/changecontentdialog/changecontentdialogimpl.cpp @@ -57,14 +57,14 @@ changeContentDialogImpl::changeContentDialogImpl(QWidget *parent, ConfigFile *co } break; case CHANGE_INET_GAME_NAME_IN_USE: { - label_Message->setText(tr("There is already a game with your choosen game name.\nPlease choose another one!")); + label_Message->setText(tr("There is already a game with your chosen game name.\nPlease choose another one!")); label_lineLabel->setText(tr("Game name:")); lineEdit->setText(QString::fromUtf8(myConfig->readConfigString("InternetGameName").c_str())); lineEdit->setMaxLength(48); } break; case CHANGE_INET_BAD_GAME_NAME: { - label_Message->setText(tr("There is a forbidden word in your choosen game name.\nPlease choose another one!")); + label_Message->setText(tr("There is a forbidden word in your chosen game name.\nPlease choose another one!")); label_lineLabel->setText(tr("Game name:")); lineEdit->setText(QString::fromUtf8(myConfig->readConfigString("InternetGameName").c_str())); lineEdit->setMaxLength(48);