- QLabel* textlinesCountLabel = new QLabel(i18n("Number of lines:"), textGroup);
- m_textlinesCountBox = new QSpinBox(1, 5, 1, textGroup);
+ QLabel* textlinesCountLabel = new QLabel(i18nc("@label:textbox", "Number of lines:"), textGroup);
+ m_textlinesCountBox = new QSpinBox(textGroup);
+ m_textlinesCountBox->setMinimum(1);
+ m_textlinesCountBox->setMaximum(5);