Skip to content

Commit

Permalink
Adjust strings
Browse files Browse the repository at this point in the history
  • Loading branch information
yishn committed Mar 22, 2020
1 parent d81a3d8 commit 2bb6201
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/drawers/PreferencesDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class GeneralTab extends Component {
h(
'label',
{},
t('Replay mode of analysis variations:'),
t('Variation Replay Mode:'),
' ',

h(
Expand All @@ -154,28 +154,28 @@ class GeneralTab extends Component {
h(
'option',
{
value: 'dont_play',
selected: this.state.variationReplayMode === 'dont_play'
value: 'disabled',
selected: this.state.variationReplayMode === 'disabled'
},
t("Don't Play")
t('Disabled')
),

h(
'option',
{
value: 'instantly',
selected: this.state.variationReplayMode === 'instantly'
value: 'move_by_move',
selected: this.state.variationReplayMode === 'move_by_move'
},
t('Instantly')
t('Move by Move')
),

h(
'option',
{
value: 'move_by_move',
selected: this.state.variationReplayMode === 'move_by_move'
value: 'instantly',
selected: this.state.variationReplayMode === 'instantly'
},
t('Move by Move')
t('Instantly')
)
)
)
Expand Down

0 comments on commit 2bb6201

Please sign in to comment.