CVS_SILENT Capitalisation fixes.
svn path=/trunk/kdebase/kcontrol/; revision=151429
This commit is contained in:
parent
b0c9baaadc
commit
2896179100
3 changed files with 11 additions and 11 deletions
|
@ -35,7 +35,7 @@ ModernSysConfig::ModernSysConfig(KConfig* conf, QWidget* parent) : QObject(paren
|
|||
handleBox = new QGroupBox( 1, Qt::Vertical, i18n("Window Resize Handle"), mainw);
|
||||
handleBox->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)1, (QSizePolicy::SizeType)4));
|
||||
|
||||
cbShowHandle = new QCheckBox(i18n("&Show Handle"), handleBox);
|
||||
cbShowHandle = new QCheckBox(i18n("&Show handle"), handleBox);
|
||||
QWhatsThis::add(cbShowHandle,
|
||||
i18n("When selected, all windows are drawn with a resize "
|
||||
"handle at the lower right corner. This makes window resizing "
|
||||
|
|
|
@ -129,8 +129,8 @@ KActionsConfig::KActionsConfig (KConfig *_config, QWidget * parent, const char *
|
|||
combo = new QComboBox(grid);
|
||||
combo->insertItem(i18n("Raise"));
|
||||
combo->insertItem(i18n("Lower"));
|
||||
combo->insertItem(i18n("Operations menu"));
|
||||
combo->insertItem(i18n("Toggle raise and lower"));
|
||||
combo->insertItem(i18n("Operations Menu"));
|
||||
combo->insertItem(i18n("Toggle Raise and Lower"));
|
||||
connect(combo, SIGNAL(activated(int)), this, SLOT(slotChanged()));
|
||||
coTiAct1 = combo;
|
||||
|
||||
|
|
|
@ -123,10 +123,10 @@ KFocusConfig::KFocusConfig (KConfig *_config, QWidget * parent, const char *name
|
|||
|
||||
|
||||
focusCombo = new QComboBox(false, fcsBox);
|
||||
focusCombo->insertItem(i18n("Click to focus"), CLICK_TO_FOCUS);
|
||||
focusCombo->insertItem(i18n("Focus follows mouse"), FOCUS_FOLLOWS_MOUSE);
|
||||
focusCombo->insertItem(i18n("Focus under mouse"), FOCUS_UNDER_MOUSE);
|
||||
focusCombo->insertItem(i18n("Focus strictly under mouse"), FOCUS_STRICTLY_UNDER_MOUSE);
|
||||
focusCombo->insertItem(i18n("Click to Focus"), CLICK_TO_FOCUS);
|
||||
focusCombo->insertItem(i18n("Focus Follows Mouse"), FOCUS_FOLLOWS_MOUSE);
|
||||
focusCombo->insertItem(i18n("Focus Under Mouse"), FOCUS_UNDER_MOUSE);
|
||||
focusCombo->insertItem(i18n("Focus Strictly Under Mouse"), FOCUS_STRICTLY_UNDER_MOUSE);
|
||||
fLay->addMultiCellWidget(focusCombo,1,1,0,1);
|
||||
|
||||
// FIXME, when more policies have been added to KWin
|
||||
|
@ -506,14 +506,14 @@ KAdvancedConfig::KAdvancedConfig (KConfig *_config, QWidget *parent, const char
|
|||
#ifdef HAVE_XINERAMA
|
||||
xineramaBox = new QVButtonGroup(i18n("Xinerama"), this);
|
||||
|
||||
xineramaEnable = new QCheckBox(i18n("Enable Xinerama Support"), xineramaBox);
|
||||
xineramaEnable = new QCheckBox(i18n("Enable Xinerama support"), xineramaBox);
|
||||
QWhatsThis::add(xineramaEnable, i18n("Enable support for Xinerama."));
|
||||
connect(xineramaEnable, SIGNAL(toggled(bool)), this, SLOT(setXinerama(bool)));
|
||||
xineramaMovementEnable = new QCheckBox(i18n("Enable Window Resistance Support"), xineramaBox);
|
||||
xineramaMovementEnable = new QCheckBox(i18n("Enable window resistance support"), xineramaBox);
|
||||
QWhatsThis::add(xineramaMovementEnable, i18n("Turn on resistance when moving a window from one physical screen to the other."));
|
||||
xineramaPlacementEnable = new QCheckBox(i18n("Enable Window Placement Support"), xineramaBox);
|
||||
xineramaPlacementEnable = new QCheckBox(i18n("Enable window placement support"), xineramaBox);
|
||||
QWhatsThis::add(xineramaPlacementEnable, i18n("This option opens new windows on the physical screen on which the cursor is present."));
|
||||
xineramaMaximizeEnable = new QCheckBox(i18n("Enable Window Maximize Support"), xineramaBox);
|
||||
xineramaMaximizeEnable = new QCheckBox(i18n("Enable window maximize support"), xineramaBox);
|
||||
QWhatsThis::add(xineramaMaximizeEnable, i18n("When this option is turned on, windows will only maximize up to the physical screen size."));
|
||||
|
||||
lay->addWidget(xineramaBox);
|
||||
|
|
Loading…
Reference in a new issue