From 8d2d9981685f8cc2c96f03e4a1f76fdf686cef4b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 22 Feb 2013 11:13:59 +0900 Subject: [PATCH] use question/answer for browser labels by using a different label to the default front/back fields, it will hopefully make it clearer that a reversed card has the back side for the question --- aqt/browser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aqt/browser.py b/aqt/browser.py index ff9622ac9..0e4601022 100644 --- a/aqt/browser.py +++ b/aqt/browser.py @@ -452,8 +452,8 @@ class Browser(QMainWindow): def setupColumns(self): self.columns = [ - ('question', _("Front")), - ('answer', _("Back")), + ('question', _("Question")), + ('answer', _("Answer")), ('template', _("Card")), ('deck', _("Deck")), ('noteFld', _("Sort Field")),