Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

further fixes for plip 1734-attribute-renames #411

Merged
merged 1 commit into from
Jun 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions plone/app/contenttypes/behaviors/thumb_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class IThumbIconHandling(model.Schema):
)

thumb_scale_list = schema.TextLine(
title=_(u'Override thumb size for list view'),
title=_(u'Override thumb scale for list view'),
description=_(
u"Enter a valid scale name"
u" (see 'Image Handling' control panel) to override"
Expand All @@ -36,7 +36,7 @@ class IThumbIconHandling(model.Schema):
default=u'')

thumb_scale_table = schema.TextLine(
title=_(u'Override thumb size for table view'),
title=_(u'Override thumb scale for table view'),
description=_(
u"Enter a valid scale name"
u" (see 'Image Handling' control panel) to override"
Expand All @@ -47,7 +47,7 @@ class IThumbIconHandling(model.Schema):
default=u'')

thumb_scale_summary = schema.TextLine(
title=_(u'Override thumb size for summary view'),
title=_(u'Override thumb scale for summary view'),
description=_(
u"Enter a valid scale name"
u" (see 'Image Handling' control panel) to override"
Expand Down