chore(localization): update
All checks were successful
Check Translations / check-translations (push) Successful in 46s
Code check / Check code (push) Successful in 1m21s

Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
This commit is contained in:
2025-08-31 12:29:11 +05:00
parent 83730499e2
commit 358afbdbdb
10 changed files with 41 additions and 25 deletions

View File

@@ -96,7 +96,7 @@ class GameLaunchDialog(QDialog):
super().__init__(parent)
self.theme = theme if theme else default_styles
self.theme_manager = ThemeManager()
self.game_name = game_name if game_name else _("Game")
self.game_name = game_name
self.target_exe = target_exe # Store the target executable name
self.setWindowTitle(_("Launching {0}").format(self.game_name))
self.setModal(True)
@@ -111,7 +111,7 @@ class GameLaunchDialog(QDialog):
layout.setSpacing(10)
# Game name label
label = QLabel(_("Launching {0}...").format(self.game_name))
label = QLabel(_("Launching {0}").format(self.game_name))
label.setStyleSheet(self.theme.PARAMS_TITLE_STYLE)
label.setAlignment(Qt.AlignmentFlag.AlignCenter)
layout.addWidget(label)