From 4f1f07957c0d2ff9721cd821028e0ecd1f9c1363 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sun, 13 Jun 2021 13:02:13 +0100 Subject: [PATCH] journal_lock: LANG comments --- journal_lock.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/journal_lock.py b/journal_lock.py index 318eff6b..d038709d 100644 --- a/journal_lock.py +++ b/journal_lock.py @@ -202,6 +202,7 @@ class JournalLock: self.parent = parent self.callback = callback + # LANG: Title text on popup when Journal directory already locked self.title(_('Journal directory already locked')) # remove decoration @@ -218,13 +219,16 @@ class JournalLock: frame.grid(sticky=tk.NSEW) 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}" "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) + # LANG: Generic 'Retry' button label self.retry_button = ttk.Button(frame, text=_('Retry'), command=self.retry) 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.grid(row=2, column=1, sticky=tk.EW) self.protocol("WM_DELETE_WINDOW", self._destroy)