mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 02:34:06 -04:00
Fix for #593910: column description for authors-like fields says they are comma separated.
This commit is contained in:
parent
01361987e8
commit
9718fa6c99
@ -125,7 +125,11 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
|
|||||||
else:
|
else:
|
||||||
dt = fm['datatype']
|
dt = fm['datatype']
|
||||||
if fm['is_multiple']:
|
if fm['is_multiple']:
|
||||||
dt = '*' + dt
|
if col == 'authors' or fm.get('display', {}).get('is_names', False):
|
||||||
|
coltype = _('Ampersand separated text, shown in the tag browser')
|
||||||
|
else:
|
||||||
|
coltype = self.column_desc['*' + dt]
|
||||||
|
else:
|
||||||
coltype = self.column_desc[dt]
|
coltype = self.column_desc[dt]
|
||||||
coltype_info = (coltype if oldkey is None else
|
coltype_info = (coltype if oldkey is None else
|
||||||
' ' + _('(lookup name was {0}) {1}'.format(oldkey, coltype)))
|
' ' + _('(lookup name was {0}) {1}'.format(oldkey, coltype)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user