aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon
diff options
context:
space:
mode:
authorGravatar Kai Wasserbäch2010-01-10 20:35:56 +0000
committerGravatar Kai Wasserbäch2010-01-10 20:35:56 +0000
commit6338d8edf09e7ca2689572201b94f39c6c1a4d30 (patch)
treefcf820f531b29bbc16bd0e260c9c917aeb0f32f0 /src/modules/addon
parentmore stylish: themed combo box, used by kviconsole (diff)
downloadKVIrc-6338d8edf09e7ca2689572201b94f39c6c1a4d30.tar.gz
KVIrc-6338d8edf09e7ca2689572201b94f39c6c1a4d30.tar.bz2
KVIrc-6338d8edf09e7ca2689572201b94f39c6c1a4d30.zip
[KVIrc] (trunk) Fixed some spelling mistakes found by Lintian.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3829 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon')
-rw-r--r--src/modules/addon/packaddondialog.cpp10
-rw-r--r--src/modules/addon/packaddondialog.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/addon/packaddondialog.cpp b/src/modules/addon/packaddondialog.cpp
index 2df14a5b7..813a0abb1 100644
--- a/src/modules/addon/packaddondialog.cpp
+++ b/src/modules/addon/packaddondialog.cpp
@@ -91,14 +91,14 @@ KviPackAddonDialog::KviPackAddonDialog(QWidget * pParent)
pLabel = new QLabel(pPage);
QString szText;
- szText += __tr2qs_ctx("You will be asked to provide some informations like the package name, the version, a description and so on.","addon");
+ szText += __tr2qs_ctx("You will be asked to provide some information like the package name, the version, a description and so on.","addon");
szText += "<br><br>";
szText += __tr2qs_ctx("Hit the \"Next\" button to begin.","addon");
pLabel->setText(szText);
pLayout->addWidget(pLabel);
addPage(pPage);
- // Packager informations
+ // Packager information
m_pPackAddonInfoPackageWidget = new KviPackAddonInfoPackageWidget(this);
addPage(m_pPackAddonInfoPackageWidget);
@@ -464,7 +464,7 @@ KviPackAddonInfoPackageWidget::KviPackAddonInfoPackageWidget(KviPackAddonDialog
{
setObjectName("addon_package_info_page");
setTitle(__tr2qs_ctx("Package Informations","addon"));
- setSubTitle(__tr2qs_ctx("Here you need to provide informations about you (the packager) and a short description of the package you're creating.","addon"));
+ setSubTitle(__tr2qs_ctx("Here you need to provide information about you (the packager) and a short description of the package you're creating.","addon"));
QGridLayout * pLayout = new QGridLayout(this);
@@ -596,7 +596,7 @@ KviPackAddonSummaryInfoWidget::KviPackAddonSummaryInfoWidget(KviPackAddonDialog
{
setObjectName("addon_package_summary_info_page");
setTitle(__tr2qs_ctx("Final Informations","addon"));
- setSubTitle(__tr2qs_ctx("Here there are the informations you provided. If these informations are correct, hit the \"Finish\" button to complete the packaging operations.","addon"));
+ setSubTitle(__tr2qs_ctx("Here there are the information you provided. If these information are correct, hit the \"Finish\" button to complete the packaging operations.","addon"));
QVBoxLayout * pLayout = new QVBoxLayout(this);
m_pLabelInfo = new QLabel(this);
@@ -668,7 +668,7 @@ KviPackAddonSummaryFilesWidget::KviPackAddonSummaryFilesWidget(KviPackAddonDialo
QVBoxLayout * pLayout = new QVBoxLayout(this);
QLabel * pLabel = new QLabel(this);
- pLabel->setText(__tr2qs_ctx("Here there are the files I found in the directories you provided.\nIf these and the informations showed in the previous page are correct, hit the \"Finish\" button to complete\nthe packaging operations.","addon"));
+ pLabel->setText(__tr2qs_ctx("Here there are the files I found in the directories you provided.\nIf these and the information showed in the previous page are correct, hit the \"Finish\" button to complete\nthe packaging operations.","addon"));
pLayout->addWidget(pLabel);
m_pFiles = new QTextEdit(this);
diff --git a/src/modules/addon/packaddondialog.h b/src/modules/addon/packaddondialog.h
index a0cce34c8..5c574a686 100644
--- a/src/modules/addon/packaddondialog.h
+++ b/src/modules/addon/packaddondialog.h
@@ -113,7 +113,7 @@ protected:
/**
* \class KviPackAddonInfoPackageWidget
-* \brief Wizard page for addon informations
+* \brief Wizard page for addon information
*/
class KviPackAddonInfoPackageWidget : public QWizardPage
{
@@ -196,7 +196,7 @@ protected:
/**
* \class KviPackAddonSummaryInfoWidget
-* \brief Wizard page for showing informations inserted
+* \brief Wizard page for showing information inserted
*/
class KviPackAddonSummaryInfoWidget : public QWizardPage
{