Skip to content

Commit

Permalink
Cleanup of PLIP #1734
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Jun 12, 2017
1 parent df956e5 commit c97e74c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Products/CMFPlone/interfaces/controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,32 +1205,32 @@ class ISiteSchema(Interface):
default=False,
required=False)

thumb_size_portlet = schema.Choice(
title=_(u'Thumb size for portlets'),
description=_(u'this default can be overriden individually'),
thumb_scale_portlet = schema.Choice(
title=_(u'Thumb scale for portlets'),
description=_(u'This default can be overriden individually.'),
default=u'icon',
vocabulary='plone.app.vocabularies.ImagesScales',
required=True)

thumb_size_listing = schema.Choice(
title=_(u'Thumb size for listings '),
description=_(u'e.g. standard view;'
u' this default can be overriden individually'),
thumb_scale_listing = schema.Choice(
title=_(u'Thumb scale for listings'),
description=_(u'E.g. standard view;'
u' This default can be overriden individually.'),
default=u'thumb',
vocabulary='plone.app.vocabularies.ImagesScales',
required=True)

thumb_size_table = schema.Choice(
title=_(u'Thumb size for tables '),
description=_(u'e.g., tabular view, folder content listing;'
u' this default can be overriden individually'),
thumb_scale_table = schema.Choice(
title=_(u'Thumb scale for tables'),
description=_(u'E.g., tabular view, folder content listing;'
u' This default can be overriden individually.'),
default=u'tile',
vocabulary='plone.app.vocabularies.ImagesScales',
required=True)

thumb_size_summary = schema.Choice(
title=_(u'Thumb size for summary view '),
description=_(u'this default can be overriden individually'),
thumb_scale_summary = schema.Choice(
title=_(u'Thumb scale for summary view'),
description=_(u'This default can be overriden individually.'),
default=u'mini',
vocabulary='plone.app.vocabularies.ImagesScales',
required=True)
Expand Down

0 comments on commit c97e74c

Please sign in to comment.