Add some 18nc context

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1148479
wilder-portage
Kurt Hindenburg 16 years ago
parent 6b2440e2c2
commit fa3790fc7f
  1. 7
      src/ColorSchemeEditor.cpp
  2. 2
      src/SessionController.cpp

@ -100,9 +100,10 @@ ColorSchemeEditor::ColorSchemeEditor(QWidget* parent)
} }
else else
{ {
_ui->transparencyWarningWidget->setText(i18n("The background transparency setting will not" _ui->transparencyWarningWidget->setText(i18nc("@info:status",
" be used because your desktop does not appear to support" "The background transparency setting will not"
" transparent windows.")); " be used because your desktop does not appear to support"
" transparent windows."));
} }
} }
void ColorSchemeEditor::setRandomizedBackgroundColor( bool randomize ) void ColorSchemeEditor::setRandomizedBackgroundColor( bool randomize )

@ -433,7 +433,7 @@ void SessionController::setupActions()
// Copy Input To -> None // Copy Input To -> None
_copyToNoneAction = collection->addAction("copy-input-to-none", this, SLOT(copyInputToNone())); _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->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Slash));
_copyToNoneAction->setCheckable(true); _copyToNoneAction->setCheckable(true);
_copyToNoneAction->setChecked(true); _copyToNoneAction->setChecked(true);

Loading…
Cancel
Save