Add some context for what "Store" means

This commit is contained in:
Kovid Goyal 2022-07-13 22:19:49 +05:30
parent 24db1bccf4
commit 4f9251ac34
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -4,6 +4,7 @@ __docformat__ = 'restructuredtext en'
import re, string import re, string
from operator import attrgetter from operator import attrgetter
from gettext import pgettext
from qt.core import (Qt, QAbstractItemModel, QPixmap, QModelIndex, QSize, from qt.core import (Qt, QAbstractItemModel, QPixmap, QModelIndex, QSize,
pyqtSignal, QIcon, QApplication) pyqtSignal, QIcon, QApplication)
@ -34,7 +35,7 @@ class Matches(QAbstractItemModel):
total_changed = pyqtSignal(int) total_changed = pyqtSignal(int)
HEADERS = [_('Cover'), _('Title'), _('Price'), _('DRM'), _('Store'), _('Download'), _('Affiliate')] HEADERS = [_('Cover'), _('Title'), _('Price'), _('DRM'), pgettext('book store in the Get books calibre feature', 'Store'), _('Download'), _('Affiliate')]
HTML_COLS = (1, 4) HTML_COLS = (1, 4)
IMG_COLS = (0, 3, 5, 6) IMG_COLS = (0, 3, 5, 6)