Skip to content

Commit 522c550

Browse files
committed
games: i18n on generic join button
1 parent e783c92 commit 522c550

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ps/games/render.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function renderSignups<State extends BaseState>(this: BaseGame<State>, st
5757
{this.$T('GAME.LABELS.RANDOM')}
5858
</Button>
5959
) : null}
60-
{!this.sides ? <Button value={`${this.renderCtx.msg} join`}>Join</Button> : null}
60+
{!this.sides ? <Button value={`${this.renderCtx.msg} join`}>{this.$T('GAME.LABELS.JOIN')}</Button> : null}
6161
{staff && startable ? (
6262
<Button value={`${this.renderCtx.msg} start`} style={{ marginLeft: 8 }}>
6363
{this.$T('GAME.LABELS.START')}

0 commit comments

Comments
 (0)