From 2bb6201ca8f46f9575ce04b8fd58d6e7e4aabb36 Mon Sep 17 00:00:00 2001 From: Yichuan Shen Date: Sun, 22 Mar 2020 12:20:39 +0100 Subject: [PATCH] Adjust strings --- src/components/drawers/PreferencesDrawer.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/drawers/PreferencesDrawer.js b/src/components/drawers/PreferencesDrawer.js index f1b7cef4a..49c11ef09 100644 --- a/src/components/drawers/PreferencesDrawer.js +++ b/src/components/drawers/PreferencesDrawer.js @@ -144,7 +144,7 @@ class GeneralTab extends Component { h( 'label', {}, - t('Replay mode of analysis variations:'), + t('Variation Replay Mode:'), ' ', h( @@ -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') ) ) )