1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

[Lang] Update Lang Comment

This commit is contained in:
David Sangrey 2024-01-04 14:07:18 -05:00
parent 41b879716f
commit 881c94a619
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
3 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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";

View File

@ -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()