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
{
_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 )

@ -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);

Loading…
Cancel
Save