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

[Minor] Add Translation

This commit is contained in:
David Sangrey 2024-05-28 09:02:58 -04:00
parent f53388e211
commit 8a27ca266d
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
2 changed files with 4 additions and 1 deletions

View File

@ -489,6 +489,9 @@
/* prefs.py: Lable on list of user-disabled plugins; In files: prefs.py:977; */
"Disabled Plugins" = "Disabled Plugins";
/* prefs.py: Catch & Record Profiler Errors; */
"Error in System Profiler" = "Error in System Profiler";
/* stats.py: Cmdr stats; In files: stats.py:58; */
"Balance" = "Balance";

View File

@ -67,7 +67,7 @@ def help_open_system_profiler(parent) -> None:
else:
subprocess.run(['python', "EDMCSystemProfiler.py"], shell=True, check=True)
except Exception as err:
parent.status["text"] = "Unable to Launch System Profiler"
parent.status["text"] = tr.tl("Error in System Profiler") # LANG: Catch & Record Profiler Errors
logger.exception(err)