mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-17 17:42:20 +03:00
journal_lock: LANG comments
This commit is contained in:
parent
7552e93f07
commit
4f1f07957c
@ -202,6 +202,7 @@ class JournalLock:
|
|||||||
|
|
||||||
self.parent = parent
|
self.parent = parent
|
||||||
self.callback = callback
|
self.callback = callback
|
||||||
|
# LANG: Title text on popup when Journal directory already locked
|
||||||
self.title(_('Journal directory already locked'))
|
self.title(_('Journal directory already locked'))
|
||||||
|
|
||||||
# remove decoration
|
# remove decoration
|
||||||
@ -218,13 +219,16 @@ class JournalLock:
|
|||||||
frame.grid(sticky=tk.NSEW)
|
frame.grid(sticky=tk.NSEW)
|
||||||
|
|
||||||
self.blurb = tk.Label(frame)
|
self.blurb = tk.Label(frame)
|
||||||
|
# LANG: Text for when newly selected Journal directory is already locked
|
||||||
self.blurb['text'] = _("The new Journal Directory location is already locked.{CR}"
|
self.blurb['text'] = _("The new Journal Directory location is already locked.{CR}"
|
||||||
"You can either attempt to resolve this and then Retry, or choose to Ignore this.")
|
"You can either attempt to resolve this and then Retry, or choose to Ignore this.")
|
||||||
self.blurb.grid(row=1, column=0, columnspan=2, sticky=tk.NSEW)
|
self.blurb.grid(row=1, column=0, columnspan=2, sticky=tk.NSEW)
|
||||||
|
|
||||||
|
# LANG: Generic 'Retry' button label
|
||||||
self.retry_button = ttk.Button(frame, text=_('Retry'), command=self.retry)
|
self.retry_button = ttk.Button(frame, text=_('Retry'), command=self.retry)
|
||||||
self.retry_button.grid(row=2, column=0, sticky=tk.EW)
|
self.retry_button.grid(row=2, column=0, sticky=tk.EW)
|
||||||
|
|
||||||
|
# LANG: Generic 'Ignore' button label
|
||||||
self.ignore_button = ttk.Button(frame, text=_('Ignore'), command=self.ignore)
|
self.ignore_button = ttk.Button(frame, text=_('Ignore'), command=self.ignore)
|
||||||
self.ignore_button.grid(row=2, column=1, sticky=tk.EW)
|
self.ignore_button.grid(row=2, column=1, sticky=tk.EW)
|
||||||
self.protocol("WM_DELETE_WINDOW", self._destroy)
|
self.protocol("WM_DELETE_WINDOW", self._destroy)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user