diff options
author | saturneric <[email protected]> | 2024-01-16 13:35:59 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-16 13:35:59 +0000 |
commit | 620ae9e7c1a8b2db2515c080416cb592066e5fec (patch) | |
tree | 900f3e55118aa2a5049d99dd743d3e595016fc7b /src/ui/widgets/FilePage.cpp | |
parent | fix: make task and threading system safer (diff) | |
download | GpgFrontend-620ae9e7c1a8b2db2515c080416cb592066e5fec.tar.gz GpgFrontend-620ae9e7c1a8b2db2515c080416cb592066e5fec.zip |
refactor: remove libgettext from project
Diffstat (limited to '')
-rw-r--r-- | src/ui/widgets/FilePage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widgets/FilePage.cpp b/src/ui/widgets/FilePage.cpp index 08534dcb..b32cb175 100644 --- a/src/ui/widgets/FilePage.cpp +++ b/src/ui/widgets/FilePage.cpp @@ -65,13 +65,13 @@ FilePage::FilePage(QWidget* parent, const QString& target_path) ui_->pathEdit->setCompleter(path_edit_completer_); option_popup_menu_ = new QMenu(this); - auto* show_hidden_act = new QAction(_("Show Hidden File"), this); + auto* show_hidden_act = new QAction(tr("Show Hidden File"), this); show_hidden_act->setCheckable(true); connect(show_hidden_act, &QAction::triggered, file_tree_view_, &FileTreeView::SlotShowHiddenFile); option_popup_menu_->addAction(show_hidden_act); - auto* show_system_act = new QAction(_("Show System File"), this); + auto* show_system_act = new QAction(tr("Show System File"), this); show_system_act->setCheckable(true); connect(show_system_act, &QAction::triggered, file_tree_view_, &FileTreeView::SlotShowSystemFile); |