From 1e4e0127a46fb6abe3052fcfa45feb8334cd768d Mon Sep 17 00:00:00 2001 From: Boris Yumankulov Date: Sat, 23 Aug 2025 20:33:19 +0500 Subject: [PATCH] fix(i18n): add translation for File Explorer window title Signed-off-by: Boris Yumankulov --- portprotonqt/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portprotonqt/dialogs.py b/portprotonqt/dialogs.py index 1a652ec..173100f 100644 --- a/portprotonqt/dialogs.py +++ b/portprotonqt/dialogs.py @@ -150,7 +150,7 @@ class FileExplorer(QDialog): def setup_ui(self): """Настройка интерфейса""" - self.setWindowTitle("File Explorer") + self.setWindowTitle(_("File Explorer")) self.setGeometry(100, 100, 600, 600) self.main_layout = QVBoxLayout()