From d985980e88781581e956ace13e1b9bd802d65c51 Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Sat, 24 Jan 2026 19:50:41 +0200 Subject: [PATCH] Localize current version label in auto-update dialog Replaced hardcoded current version label with a localized string using the translation function in the AutoUpdateSettingsDialog. --- src/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py index d8ea96d..0d04f29 100644 --- a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py +++ b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py @@ -573,7 +573,7 @@ class AutoUpdateSettingsDialog(QDialog): # Update status labels current_version = get_ytdlp_version() - self.current_version_label.setText(f"Current yt-dlp version: {current_version}") + self.current_version_label.setText(_("auto_update.current_version", version=current_version)) last_check = settings["last_check"] if last_check > 0: