Skip to content

Commit

Permalink
Fix incorrect display names
Browse files Browse the repository at this point in the history
  • Loading branch information
regisb committed Jun 17, 2016
1 parent 8527b3b commit 787fccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c2r/c2r.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ class Click2RevealXBlock(StudioEditableXBlockMixin, XBlock):
display_name = String(display_name="Display name", default='Click to reveal')
showActionLabel = String(display_name="'Show' Action label", default="Reveal ", scope=Scope.settings,
help="The name of the action to show the text to the student.")
hideActionLabel = String(default="Hide ", scope=Scope.settings,
hideActionLabel = String(display_name="'Hide' Action label", default="Hide ", scope=Scope.settings,
help="The name of the action to hide the text from the student.")

textLabel = String(display_name="'Hide' Action label", default="Comment", scope=Scope.settings,
textLabel = String(display_name="Text label", default="Comment", scope=Scope.settings,
help="The name of the text that is revealed, for example 'comment' or 'answer'. This will appear as a heading.")
headingLevel = Integer(display_name="Heading level", values=('2', '3', '4', '5'),
default="3", scope=Scope.settings,
Expand Down

0 comments on commit 787fccc

Please sign in to comment.