]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Use a ':' as end of the label instead of a '.', even if the label is top-aligned.
authorPeter Penz <peter.penz19@gmail.com>
Wed, 3 Nov 2010 15:06:40 +0000 (15:06 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Wed, 3 Nov 2010 15:06:40 +0000 (15:06 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=1192621

src/panels/information/informationpanelcontent.cpp
src/settings/additionalinfodialog.cpp
src/settings/filemetadataconfigurationdialog.cpp
src/settings/general/behaviorsettingspage.cpp
src/settings/services/servicessettingspage.cpp

index b6a41ca3d211c12d13b4f36b1e9854e2c347d946..da576d05fe89980dbe23be12c020aa03a1e1149a 100644 (file)
@@ -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();
index 9a56c2bca06c87acc1558516be2c26bf9a5a3dc9..ef08795e5808698a04f34b6060ff2b780eebbe23 100644 (file)
@@ -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);
 
index dbc580836f5ee617e6b0f7ceadacfe043a11adad..04ff9a91b074dbc9c15eaeb870688d77fa5b8c6a 100644 (file)
@@ -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);
index f1f05b8bd524202fc663d98a1fa26185802319b7..0dae09d525959c24bc2533761db8ed4a100a26e5 100644 (file)
@@ -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();
index d2ad90e38e0305f620f9178868b0cc547eec4738..818dfc3693403a5222e9b8ce3b1f9d97c35f0ed2 100644 (file)
@@ -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);