Skip to content

Commit

Permalink
FF: Labels on the property dialogs are not translated
Browse files Browse the repository at this point in the history
  • Loading branch information
hsogo committed Jul 1, 2024
1 parent 546aabf commit 9461eea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion psychopy/experiment/components/grating/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, exp, parentName, name='grating', image='sin',
self.params['draggable'] = Param(
draggable, valType="code", inputType="bool", categ="Layout",
updates="constant",
label="Draggable?",
label=_translate("Draggable?"),
hint=_translate(
"Should this stimulus be moveble by clicking and dragging?"
)
Expand Down
2 changes: 1 addition & 1 deletion psychopy/experiment/components/image/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(self, exp, parentName, name='image', image='', mask='',
self.params['draggable'] = Param(
draggable, valType="code", inputType="bool", categ="Layout",
updates="constant",
label="Draggable?",
label=_translate("Draggable?"),
hint=_translate(
"Should this stimulus be moveble by clicking and dragging?"
)
Expand Down
2 changes: 1 addition & 1 deletion psychopy/experiment/components/polygon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, exp, parentName, name='polygon', interpolate='linear',
self.params['draggable'] = Param(
draggable, valType="code", inputType="bool", categ="Layout",
updates="constant",
label="Draggable?",
label=_translate("Draggable?"),
hint=_translate(
"Should this stimulus be moveble by clicking and dragging?"
)
Expand Down
2 changes: 1 addition & 1 deletion psychopy/experiment/components/text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, exp, parentName, name='text',
self.params['draggable'] = Param(
draggable, valType="code", inputType="bool", categ="Layout",
updates="constant",
label="Draggable?",
label=_translate("Draggable?"),
hint=_translate(
"Should this stimulus be moveble by clicking and dragging?"
)
Expand Down
2 changes: 1 addition & 1 deletion psychopy/experiment/components/textbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(self, exp, parentName, name='textbox',
self.params['draggable'] = Param(
draggable, valType="code", inputType="bool", categ="Layout",
updates="constant",
label="Draggable?",
label=_translate("Draggable?"),
hint=_translate(
"Should this stimulus be moveble by clicking and dragging?"
)
Expand Down

0 comments on commit 9461eea

Please sign in to comment.