Explain the "crash now" button to translators

This commit is contained in:
Daniel Molkentin 2015-02-17 14:02:42 +01:00
parent 9351c7485f
commit 9690ca0198

View file

@ -432,7 +432,7 @@ void ownCloudGui::setupActions()
connect(_actionLogout, SIGNAL(triggered()), _app, SLOT(slotLogout())); connect(_actionLogout, SIGNAL(triggered()), _app, SLOT(slotLogout()));
if(_app->debugMode()) { if(_app->debugMode()) {
_actionCrash = new QAction(tr("Crash now"), this); _actionCrash = new QAction(tr("Crash now", "Only shows in debug mode to allow testing the crash handler"), this);
connect(_actionCrash, SIGNAL(triggered()), _app, SLOT(slotCrash())); connect(_actionCrash, SIGNAL(triggered()), _app, SLOT(slotCrash()));
} else { } else {
_actionCrash = 0; _actionCrash = 0;