┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/iconsviewsettingspage.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-06-30 19:40:15 +0000
committerPeter Penz <[email protected]>2007-06-30 19:40:15 +0000
commit08fc0833aa6329600236d6f0a5a02e71a754d1d6 (patch)
tree974aaa14760cf244d33cc30ce563d4009b42525a /src/iconsviewsettingspage.cpp
parent553c85e336b9ebad47295306b37d4625d7db218b (diff)
KUIT adapations for labels
svn path=/trunk/KDE/kdebase/apps/; revision=681915
Diffstat (limited to 'src/iconsviewsettingspage.cpp')
-rw-r--r--src/iconsviewsettingspage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/iconsviewsettingspage.cpp b/src/iconsviewsettingspage.cpp
index f2f55222c..d7b7e0a01 100644
--- a/src/iconsviewsettingspage.cpp
+++ b/src/iconsviewsettingspage.cpp
@@ -68,13 +68,13 @@ IconsViewSettingsPage::IconsViewSettingsPage(DolphinMainWindow* mainWindow,
QGroupBox* textGroup = new QGroupBox(i18nc("@title:group", "Text"), this);
textGroup->setSizePolicy(sizePolicy);
- QLabel* fontLabel = new QLabel(i18n("Font:"), textGroup);
+ QLabel* fontLabel = new QLabel(i18nc("@label:listbox", "Font:"), textGroup);
m_fontRequester = new KFontRequester(textGroup);
- QLabel* textlinesCountLabel = new QLabel(i18n("Number of lines:"), textGroup);
+ QLabel* textlinesCountLabel = new QLabel(i18nc("@label:textbox", "Number of lines:"), textGroup);
m_textlinesCountBox = new QSpinBox(1, 5, 1, textGroup);
- QLabel* textWidthLabel = new QLabel(i18n("Text width:"), textGroup);
+ QLabel* textWidthLabel = new QLabel(i18nc("@label:listbox", "Text width:"), textGroup);
m_textWidthBox = new QComboBox(textGroup);
m_textWidthBox->addItem(i18nc("Text width", "Small"));
m_textWidthBox->addItem(i18nc("Text width", "Medium"));
@@ -92,12 +92,12 @@ IconsViewSettingsPage::IconsViewSettingsPage(DolphinMainWindow* mainWindow,
QGroupBox* gridGroup = new QGroupBox(i18nc("@title:group", "Grid"), this);
gridGroup->setSizePolicy(sizePolicy);
- QLabel* arrangementLabel = new QLabel(i18n("Arrangement:"), gridGroup);
+ QLabel* arrangementLabel = new QLabel(i18nc("@label:listbox", "Arrangement:"), gridGroup);
m_arrangementBox = new QComboBox(gridGroup);
m_arrangementBox->addItem(i18n("Left to Right"));
m_arrangementBox->addItem(i18n("Top to Bottom"));
- QLabel* gridSpacingLabel = new QLabel(i18n("Grid spacing:"), gridGroup);
+ QLabel* gridSpacingLabel = new QLabel(i18nc("@label:listbox", "Grid spacing:"), gridGroup);
m_gridSpacingBox = new QComboBox(gridGroup);
m_gridSpacingBox->addItem(i18nc("Grid spacing", "Small"));
m_gridSpacingBox->addItem(i18nc("Grid spacing", "Medium"));