diff options
author | saturneric <[email protected]> | 2024-11-26 16:35:03 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-26 16:35:03 +0000 |
commit | 7db37d5f0bdcc2b94c2ce0c59b0bdf3986e0ddd2 (patch) | |
tree | c5a03813ef3a332868aa7d5740682ba195a210ab /src/ui/widgets/InfoBoardWidget.cpp | |
parent | refactor: optimum code and reduce duplicate (diff) | |
download | GpgFrontend-7db37d5f0bdcc2b94c2ce0c59b0bdf3986e0ddd2.tar.gz GpgFrontend-7db37d5f0bdcc2b94c2ce0c59b0bdf3986e0ddd2.zip |
fix: change "Information Board" to "Status Panel"
Diffstat (limited to 'src/ui/widgets/InfoBoardWidget.cpp')
-rw-r--r-- | src/ui/widgets/InfoBoardWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widgets/InfoBoardWidget.cpp b/src/ui/widgets/InfoBoardWidget.cpp index 57d3d87b..bb5b00bc 100644 --- a/src/ui/widgets/InfoBoardWidget.cpp +++ b/src/ui/widgets/InfoBoardWidget.cpp @@ -155,7 +155,7 @@ void InfoBoardWidget::slot_copy() { void InfoBoardWidget::slot_save() { auto file_path = QFileDialog::getSaveFileName( - this, tr("Save Information Board's Content"), {}, tr("Text (*.txt)")); + this, tr("Save Status Panel's Content"), {}, tr("Text (*.txt)")); if (file_path.isEmpty()) return; QFile file(file_path); |