From 4c2e2a9c8d18cc70b1d2ab277da9d0df7642cdf7 Mon Sep 17 00:00:00 2001
From: Boris Yumankulov <boria138@altlinux.org>
Date: Sat, 14 Jun 2025 10:35:46 +0500
Subject: [PATCH] feat: drop title translate from FramelessWindow

Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
---
 portprotonqt/system_overlay.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/portprotonqt/system_overlay.py b/portprotonqt/system_overlay.py
index 7e5c845..b6b2b45 100644
--- a/portprotonqt/system_overlay.py
+++ b/portprotonqt/system_overlay.py
@@ -14,7 +14,7 @@ class SystemOverlay(QDialog):
     def __init__(self, parent, theme):
         super().__init__(parent)
         self.theme = theme
-        self.setWindowTitle(_("System Overlay"))
+        self.setWindowTitle("System Overlay")
         self.setModal(True)
         self.setFixedSize(400, 300)
         self.theme_manager = ThemeManager()