diff --git a/plugins/edsm.py b/plugins/edsm.py index 48dc80e8..290b168b 100644 --- a/plugins/edsm.py +++ b/plugins/edsm.py @@ -363,7 +363,7 @@ def plugin_prefs(parent: ttk.Notebook, cmdr: str | None, is_beta: bool) -> tk.Fr show_password_checkbox = nb.Checkbutton( frame, - text="Show API Key", + text=_('Show API Key'), # LANG: Text EDSM Show API Key variable=show_password_var, command=toggle_password_visibility ) diff --git a/plugins/inara.py b/plugins/inara.py index 9bb50a87..83093972 100644 --- a/plugins/inara.py +++ b/plugins/inara.py @@ -302,7 +302,7 @@ def plugin_prefs(parent: ttk.Notebook, cmdr: str, is_beta: bool) -> tk.Frame: show_password_var.set(False) # Password is initially masked show_password_checkbox = nb.Checkbutton( frame, - text="Show API Key", + text=_('Show API Key'), # LANG: Text Inara Show API key variable=show_password_var, command=toggle_password_visibility, )