mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-19 02:17:38 +03:00
Merge pull request #2086 from GLWine/develop
Fixed translation hook in EDSM.py and Inara.py
This commit is contained in:
commit
e2285729df
@ -363,7 +363,7 @@ def plugin_prefs(parent: ttk.Notebook, cmdr: str | None, is_beta: bool) -> tk.Fr
|
|||||||
|
|
||||||
show_password_checkbox = nb.Checkbutton(
|
show_password_checkbox = nb.Checkbutton(
|
||||||
frame,
|
frame,
|
||||||
text="Show API Key",
|
text=_('Show API Key'), # LANG: Text EDSM Show API Key
|
||||||
variable=show_password_var,
|
variable=show_password_var,
|
||||||
command=toggle_password_visibility
|
command=toggle_password_visibility
|
||||||
)
|
)
|
||||||
|
@ -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_var.set(False) # Password is initially masked
|
||||||
show_password_checkbox = nb.Checkbutton(
|
show_password_checkbox = nb.Checkbutton(
|
||||||
frame,
|
frame,
|
||||||
text="Show API Key",
|
text=_('Show API Key'), # LANG: Text Inara Show API key
|
||||||
variable=show_password_var,
|
variable=show_password_var,
|
||||||
command=toggle_password_visibility,
|
command=toggle_password_visibility,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user