Skip to content

Commit

Permalink
tweak evaluation bars wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jan 24, 2024
1 parent e4b3664 commit 11c190b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/views/study/jsI18n.scala
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ object jsI18n:
allSyncMembersRemainOnTheSamePosition,
shareChanges,
playing,
showEval,
showEvalBar,
first,
previous,
next,
Expand Down
2 changes: 1 addition & 1 deletion modules/i18n/src/main/I18nKeys.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ object I18nKeys:
val `allSyncMembersRemainOnTheSamePosition` = I18nKey("study:allSyncMembersRemainOnTheSamePosition")
val `shareChanges` = I18nKey("study:shareChanges")
val `playing` = I18nKey("study:playing")
val `showEval` = I18nKey("study:showEval")
val `showEvalBar` = I18nKey("study:showEvalBar")
val `first` = I18nKey("study:first")
val `previous` = I18nKey("study:previous")
val `next` = I18nKey("study:next")
Expand Down
2 changes: 1 addition & 1 deletion translation/source/study.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<string name="allSyncMembersRemainOnTheSamePosition">All SYNC members remain on the same position</string>
<string name="shareChanges">Share changes with spectators and save them on the server</string>
<string name="playing">Playing</string>
<string name="showEval">Show Evaluation</string>
<string name="showEvalBar">Evaluation bars</string>
<string name="first">First</string>
<string name="previous">Previous</string>
<string name="next">Next</string>
Expand Down
2 changes: 1 addition & 1 deletion ui/analyse/src/study/multiBoard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function renderEvalToggle(ctrl: MultiBoardCtrl): VNode {
attrs: { type: 'checkbox', checked: ctrl.showEval() },
hook: bind('change', e => ctrl.showEval((e.target as HTMLInputElement).checked)),
}),
ctrl.trans.noarg('showEval'),
ctrl.trans.noarg('showEvalBar'),
]);
}

Expand Down

0 comments on commit 11c190b

Please sign in to comment.