Skip to content

Commit

Permalink
fix(gui): wrapped general menu label in QT tr()
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Soyka authored and craftablescience committed Jan 6, 2025
1 parent da3e8b1 commit fa67b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Window::Window(QWidget* parent)
// Options menu
auto* optionsMenu = this->menuBar()->addMenu(tr("Options"));

auto* generalMenu = optionsMenu->addMenu(QIcon(":/logo.png"), "General...");
auto* generalMenu = optionsMenu->addMenu(QIcon(":/logo.png"), tr("General..."));
auto* optionAdvancedMode = generalMenu->addAction(tr("Advanced File Properties"), [] {
Options::invert(OPT_ADVANCED_FILE_PROPS);
});
Expand Down

0 comments on commit fa67b54

Please sign in to comment.