Skip to content

Commit

Permalink
add missing tr() call to get the menu item translated
Browse files Browse the repository at this point in the history
  • Loading branch information
lueck-b committed Mar 18, 2014
1 parent 7b2b23a commit d33400c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libkstapp/mainwindow.cpp
Expand Up @@ -1315,7 +1315,7 @@ void MainWindow::createMenus() {
_fileMenu->addAction(_closeAct);
_fileMenu->addSeparator();
_recentKstFilesMenu = _fileMenu->addMenu(tr("&Recent Sessions"));
_recentDataFilesMenu = _fileMenu->addMenu("Recent Data &Files");
_recentDataFilesMenu = _fileMenu->addMenu(tr("Recent Data &Files"));
_fileMenu->addSeparator();
// Reload, isolate it a bit from the other entries to avoid inadvertent triggering
_fileMenu->addAction(_reloadAct);
Expand Down

0 comments on commit d33400c

Please sign in to comment.