diff options
| author | Peter Penz <[email protected]> | 2010-11-03 15:06:40 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-11-03 15:06:40 +0000 |
| commit | 7b8b1acf14dca72b871f7000958cdb2c00c4c787 (patch) | |
| tree | a26a47cf9628cc9c5d7adc28f3d50258c59b6c60 /src | |
| parent | 0ad893ae2b2bcc88c56587b57d227d65e593d2db (diff) | |
Use a ':' as end of the label instead of a '.', even if the label is top-aligned.
svn path=/trunk/KDE/kdebase/apps/; revision=1192621
Diffstat (limited to 'src')
| -rw-r--r-- | src/panels/information/informationpanelcontent.cpp | 2 | ||||
| -rw-r--r-- | src/settings/additionalinfodialog.cpp | 2 | ||||
| -rw-r--r-- | src/settings/filemetadataconfigurationdialog.cpp | 2 | ||||
| -rw-r--r-- | src/settings/general/behaviorsettingspage.cpp | 2 | ||||
| -rw-r--r-- | src/settings/services/servicessettingspage.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index b6a41ca3d..da576d05f 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -291,7 +291,7 @@ void InformationPanelContent::configureSettings() } else if (action == configureAction) { FileMetaDataConfigurationDialog* dialog = new FileMetaDataConfigurationDialog(); dialog->setDescription(i18nc("@label::textbox", - "Select which data should be shown in the information panel.")); + "Select which data should be shown in the information panel:")); dialog->setItems(m_metaDataWidget->items()); dialog->setAttribute(Qt::WA_DeleteOnClose); dialog->show(); diff --git a/src/settings/additionalinfodialog.cpp b/src/settings/additionalinfodialog.cpp index 9a56c2bca..ef08795e5 100644 --- a/src/settings/additionalinfodialog.cpp +++ b/src/settings/additionalinfodialog.cpp @@ -43,7 +43,7 @@ AdditionalInfoDialog::AdditionalInfoDialog(QWidget* parent, // Add header QLabel* header = new QLabel(mainWidget); - header->setText(i18nc("@label", "Select which additional information should be shown.")); + header->setText(i18nc("@label", "Select which additional information should be shown:")); header->setWordWrap(true); layout->addWidget(header); diff --git a/src/settings/filemetadataconfigurationdialog.cpp b/src/settings/filemetadataconfigurationdialog.cpp index dbc580836..04ff9a91b 100644 --- a/src/settings/filemetadataconfigurationdialog.cpp +++ b/src/settings/filemetadataconfigurationdialog.cpp @@ -37,7 +37,7 @@ FileMetaDataConfigurationDialog::FileMetaDataConfigurationDialog(QWidget* parent m_descriptionLabel = new QLabel(i18nc("@label::textbox", "Select which data should " - "be shown"), this); + "be shown:"), this); m_descriptionLabel->setWordWrap(true); m_configWidget = new KFileMetaDataConfigurationWidget(this); diff --git a/src/settings/general/behaviorsettingspage.cpp b/src/settings/general/behaviorsettingspage.cpp index f1f05b8bd..0dae09d52 100644 --- a/src/settings/general/behaviorsettingspage.cpp +++ b/src/settings/general/behaviorsettingspage.cpp @@ -191,7 +191,7 @@ void BehaviorSettingsPage::configureToolTips() { FileMetaDataConfigurationDialog* dialog = new FileMetaDataConfigurationDialog(); dialog->setDescription(i18nc("@label::textbox", - "Select which data should be shown in the tooltip.")); + "Select which data should be shown in the tooltip:")); dialog->setAttribute(Qt::WA_DeleteOnClose); dialog->show(); dialog->raise(); diff --git a/src/settings/services/servicessettingspage.cpp b/src/settings/services/servicessettingspage.cpp index d2ad90e38..818dfc369 100644 --- a/src/settings/services/servicessettingspage.cpp +++ b/src/settings/services/servicessettingspage.cpp @@ -53,7 +53,7 @@ ServicesSettingsPage::ServicesSettingsPage(QWidget* parent) : QLabel* label = new QLabel(i18nc("@label:textbox", "Select which services should " - "be shown in the context menu."), this); + "be shown in the context menu:"), this); label->setWordWrap(true); m_servicesList = new QListWidget(this); |
