diff --git a/L10n/en.template b/L10n/en.template index b0b0c46a..b4d81c0a 100644 --- a/L10n/en.template +++ b/L10n/en.template @@ -20,7 +20,7 @@ "Automatically make a log entry on entering a system" = "Automatically make a log entry on entering a system"; /* [prefs.py] */ -"Automatically open uncharted systems' EDSM page" = "Automatically open uncharted systems' EDSM page"; +"Automatically open uncharted systems' EDSM pages" = "Automatically open uncharted systems' EDSM pages"; /* Cmdr stats. [stats.py] */ "Balance" = "Balance"; diff --git a/prefs.py b/prefs.py index 82c4d019..77e0419c 100644 --- a/prefs.py +++ b/prefs.py @@ -157,7 +157,7 @@ class PreferencesDialog(tk.Toplevel): self.out_log_edsm = tk.IntVar(value = (output & config.OUT_LOG_EDSM) and 1) nb.Checkbutton(edsmframe, text=_('Send flight log to Elite Dangerous Star Map'), variable=self.out_log_edsm, command=self.outvarchanged).grid(columnspan=2, padx=BUTTONX, sticky=tk.W) self.edsm_autoopen = tk.IntVar(value = (output & config.EDSM_AUTOOPEN) and 1) - self.edsm_autoopen_button = nb.Checkbutton(edsmframe, text=_("Automatically open uncharted systems' EDSM page"), variable=self.edsm_autoopen) + self.edsm_autoopen_button = nb.Checkbutton(edsmframe, text=_("Automatically open uncharted systems' EDSM pages"), variable=self.edsm_autoopen) self.edsm_autoopen_button.grid(columnspan=2, padx=BUTTONX, sticky=tk.W) if monitor.logdir: self.edsm_log_auto_button = nb.Checkbutton(edsmframe, text=_('Automatically make a log entry on entering a system'), variable=self.out_log_auto, command=self.outvarchanged) # Output setting