Fix capitalization

REVIEW: 121071
This commit is contained in:
Kai Uwe Broulik 2014-12-09 23:24:01 +01:00
parent 5e17e3fd1c
commit d5148f87c0

View File

@ -245,11 +245,11 @@ void AppletPrivate::askDestroy()
deleteNotification->setText(i18n("The widget \"%1\" has been removed.", q->title()));
} else if (asContainment && (asContainment->containmentType() == Types::PanelContainment || asContainment->containmentType() == Types::CustomPanelContainment)) {
deleteNotification->setTitle(i18n("Panel Removed"));
deleteNotification->setText(i18n("A Panel has been removed."));
deleteNotification->setText(i18n("A panel has been removed."));
//This will never happen with our current shell, but could with a custom one
} else {
deleteNotification->setTitle(i18n("Desktop Removed"));
deleteNotification->setText(i18n("A Desktop has been removed."));
deleteNotification->setText(i18n("A desktop has been removed."));
}
actions.append(i18n("Undo"));