mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-14 08:17:13 +03:00
UI Scaling: Add new strings to translation template
This commit is contained in:
parent
94607bf55f
commit
6484540263
@ -526,3 +526,8 @@
|
||||
/* Shortcut settings prompt on OSX. [prefs.py] */
|
||||
"{APP} needs permission to use shortcuts" = "{APP} needs permission to use shortcuts";
|
||||
|
||||
/* Label for 'UI Scaling' option [prefs.py] */
|
||||
"UI Scaling" = "UI Scaling";
|
||||
|
||||
/* Text describing that value '0.0' means 'default' [prefs.py] */
|
||||
"0.0 means Default" = "0.0 means Default";
|
||||
|
2
prefs.py
2
prefs.py
@ -340,7 +340,7 @@ class PreferencesDialog(tk.Toplevel):
|
||||
|
||||
# UI Scaling
|
||||
ttk.Separator(themeframe, orient=tk.HORIZONTAL).grid(columnspan=4, padx=PADX, pady=PADY*4, sticky=tk.EW)
|
||||
nb.Label(themeframe, text=_('UI Scaling')).grid(row = 23, padx=PADX, pady=2*PADY, sticky=tk.W) # Select UI scaling
|
||||
nb.Label(themeframe, text=_('UI Scaling')).grid(row = 23, padx=PADX, pady=2*PADY, sticky=tk.W)
|
||||
self.ui_scaling = tk.DoubleVar()
|
||||
self.ui_scaling.set(float(config.get('ui_scaling')))
|
||||
self.uiscale_bar = tk.Scale(
|
||||
|
Loading…
x
Reference in New Issue
Block a user