From 881c94a619be3089d187bf8569ca7739199448f4 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Thu, 4 Jan 2024 14:07:18 -0500 Subject: [PATCH] [Lang] Update Lang Comment --- EDMC.py | 2 +- L10n/en.template | 2 +- update.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EDMC.py b/EDMC.py index 651536e9..81c4ddc8 100755 --- a/EDMC.py +++ b/EDMC.py @@ -163,7 +163,7 @@ def main(): # noqa: C901, CCR001 updater = Updater() newversion: EDMCVersion | None = updater.check_appcast() if newversion: - # LANG: Updater Available Text + # LANG: Update Available Text newverstr = _("{NEWVER} is available").format(NEWVER=newversion.title) print(f'{appversion()} ({newverstr})') else: diff --git a/L10n/en.template b/L10n/en.template index c41681dd..de607eb4 100644 --- a/L10n/en.template +++ b/L10n/en.template @@ -789,5 +789,5 @@ /* stats.py: Status dialog title; In files: stats.py:418; */ "Ships" = "Ships"; -/* update.py: Updater Available Text; In files: update.py:229; */ +/* update.py: Update Available Text; In files: update.py:229; */ "{NEWVER} is available" = "{NEWVER} is available"; \ No newline at end of file diff --git a/update.py b/update.py index f2aa1420..5e780a37 100644 --- a/update.py +++ b/update.py @@ -226,7 +226,7 @@ class Updater: if newversion and self.root: status = self.root.nametowidget(f'.{appname.lower()}.status') - # LANG: Updater Available Text + # LANG: Update Available Text status['text'] = _("{NEWVER} is available").format(NEWVER=newversion.title) self.root.update_idletasks()