Typo fixes

svn path=/trunk/KDE/kdebase/workspace/; revision=798922
This commit is contained in:
Malcolm Hunter 2008-04-19 22:36:47 +00:00
parent a4d3693625
commit be582d3a1a
6 changed files with 13 additions and 13 deletions

View file

@ -19,10 +19,10 @@
<item>
<widget class="QCheckBox" name="blendTitlebarColors" >
<property name="whatsThis" >
<string>When enabled, this option makes the window titlebar use same colors as window contents, instead of using system titlebar colors.</string>
<string>When enabled, this option makes the window title bar use the same colors as the window contents, instead of using the system title bar colors.</string>
</property>
<property name="text" >
<string>Blend titlebar colors with window contents</string>
<string>Blend title bar colors with window contents</string>
</property>
</widget>
</item>

View file

@ -104,7 +104,7 @@ QString CompositingPrefs::compositingNotPossibleReason()
return QString();
#else
return i18n("Compositing was disabled at compile time.\n"
"Probably Xorg development headers were not installed.");
"It is likely Xorg development headers were not installed.");
#endif
}

View file

@ -58,7 +58,7 @@ PresentWindowsEffect::PresentWindowsEffect()
a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F9));
connect(a, SIGNAL(triggered(bool)), this, SLOT(toggleActive()));
KAction* b = (KAction*)actionCollection->addAction( "ExposeAll" );
b->setText( i18n("Toggle Expose Effect (incl other desktops)" ));
b->setText( i18n("Toggle Expose Effect (incl. other desktops)" ));
b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10));
connect(b, SIGNAL(triggered(bool)), this, SLOT(toggleActiveAllDesktops()));

View file

@ -48,7 +48,7 @@ PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QV
QGridLayout* layout = new QGridLayout(this);
mDrawWindowText = new QCheckBox(i18n("Draw window caption on top of window."), this);
mDrawWindowText = new QCheckBox(i18n("Draw window caption on top of window"), this);
connect(mDrawWindowText, SIGNAL(stateChanged(int)), this, SLOT(changed()));
layout->addWidget(mDrawWindowText, 0, 0);
@ -77,7 +77,7 @@ PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QV
a->setText( i18n("Toggle Expose Effect" ));
a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F9));
KAction* b = (KAction*)actionCollection->addAction( "ExposeAll" );
b->setText( i18n("Toggle Expose Effect (incl other desktops)" ));
b->setText( i18n("Toggle Expose Effect (incl. other desktops)" ));
b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10));
mShortcutEditor = new KShortcutsEditor(actionCollection, this,
KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed);

View file

@ -68,7 +68,7 @@ ShadowEffectConfig::ShadowEffectConfig(QWidget* parent, const QVariantList& args
connect(mShadowOpacity, SIGNAL(valueChanged(int)), this, SLOT(changed()));
layout->addWidget(mShadowOpacity, 2, 1);
layout->addWidget(new QLabel(i18n("Shadow fuzzyness:"), this), 3, 0);
layout->addWidget(new QLabel(i18n("Shadow fuzziness:"), this), 3, 0);
mShadowFuzzyness = new QSpinBox(this);
mShadowFuzzyness->setRange(0, 20);
connect(mShadowFuzzyness, SIGNAL(valueChanged(int)), this, SLOT(changed()));

View file

@ -38,12 +38,12 @@ int main( int argc, char* argv[] )
ki18n( "KWin helper utility" ));
KCmdLineOptions options;
options.add("pid <pid>", ki18n("PID of the application to terminate."));
options.add("hostname <hostname>", ki18n("Hostname on which the application is running."));
options.add("windowname <caption>", ki18n("Caption of the window to be terminated."));
options.add("applicationname <name>", ki18n("Name of the application to be terminated."));
options.add("wid <id>", ki18n("ID of resource belonging to the application."));
options.add("timestamp <time>", ki18n("Time of user action causing killing."));
options.add("pid <pid>", ki18n("PID of the application to terminate"));
options.add("hostname <hostname>", ki18n("Hostname on which the application is running"));
options.add("windowname <caption>", ki18n("Caption of the window to be terminated"));
options.add("applicationname <name>", ki18n("Name of the application to be terminated"));
options.add("wid <id>", ki18n("ID of resource belonging to the application"));
options.add("timestamp <time>", ki18n("Time of user action causing termination"));
KCmdLineArgs::addCmdLineOptions( options );
KApplication app;
KCmdLineArgs* args = KCmdLineArgs::parsedArgs();