From fa3790fc7fac40ec7061dcec18767c901d2f20e0 Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Sat, 10 Jul 2010 19:54:50 +0000 Subject: [PATCH] Add some 18nc context svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1148479 --- src/ColorSchemeEditor.cpp | 7 ++++--- src/SessionController.cpp | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ColorSchemeEditor.cpp b/src/ColorSchemeEditor.cpp index e39598d8c..32912543c 100644 --- a/src/ColorSchemeEditor.cpp +++ b/src/ColorSchemeEditor.cpp @@ -100,9 +100,10 @@ ColorSchemeEditor::ColorSchemeEditor(QWidget* parent) } else { - _ui->transparencyWarningWidget->setText(i18n("The background transparency setting will not" - " be used because your desktop does not appear to support" - " transparent windows.")); + _ui->transparencyWarningWidget->setText(i18nc("@info:status", + "The background transparency setting will not" + " be used because your desktop does not appear to support" + " transparent windows.")); } } void ColorSchemeEditor::setRandomizedBackgroundColor( bool randomize ) diff --git a/src/SessionController.cpp b/src/SessionController.cpp index 9c5f12a32..0ad949ef2 100644 --- a/src/SessionController.cpp +++ b/src/SessionController.cpp @@ -433,7 +433,7 @@ void SessionController::setupActions() // Copy Input To -> None _copyToNoneAction = collection->addAction("copy-input-to-none", this, SLOT(copyInputToNone())); - _copyToNoneAction->setText(i18n("&None")); + _copyToNoneAction->setText(i18nc("@action:inmenu Do not select any tabs", "&None")); _copyToNoneAction->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Slash)); _copyToNoneAction->setCheckable(true); _copyToNoneAction->setChecked(true);