Localize current version label in auto-update dialog

Replaced hardcoded current version label with a localized string using the translation function in the AutoUpdateSettingsDialog.
This commit is contained in:
oop7
2026-01-24 19:50:41 +02:00
parent 07765a7a19
commit d985980e88
@@ -573,7 +573,7 @@ class AutoUpdateSettingsDialog(QDialog):
# Update status labels # Update status labels
current_version = get_ytdlp_version() 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"] last_check = settings["last_check"]
if last_check > 0: if last_check > 0: