M rosebush/src/client/App.tsx => rosebush/src/client/App.tsx +1 -1
@@ 20,7 20,7 @@ export interface UserInfo {
}
function NotFoundPage(): JSX.Element {
- return <div>Ne Trovita</div>;
+ return <div><Text id="notFound" /></div>;
}
interface Props {
M rosebush/src/client/lang/en.json => rosebush/src/client/lang/en.json +2 -0
@@ 16,6 16,7 @@
"myBrackets": "My Brackets",
"name": "Name",
"newBracketPage": "Create Bracket",
+ "notFound": "Not Found",
"pages_bracket_lostConnection": "Lost connection to server.",
"pages_bracket_failedToConnect": "Failed to connect to server.",
"pages_home_features_bracketTypes": "Single Elimination, Double Elimination, Round Robin, or Custom brackets",
@@ 38,6 39,7 @@
"register": "Register",
"save": "Save",
"saving": "Saving…",
+ "score": "Score",
"shufflePlayers": "Shuffle Players",
"type": "Type",
"unknown": "Unknown",
M rosebush/src/client/lang/eo.json => rosebush/src/client/lang/eo.json +2 -0
@@ 12,6 12,7 @@
"myBrackets": "Miaj Turniroj",
"name": "Nomo",
"newBracketPage": "Krei Turniron",
+ "notFound": "Ne Trovita",
"pages_bracket_lostConnection": "Malkonektis de servilo.",
"pages_bracket_failedToConnect": "Malsukcesis konekti al servilo.",
"pages_home_features_bracketTypes": "Multaj specoj de turniroj",
@@ 34,6 35,7 @@
"register": "Krei Konton",
"save": "Konservi",
"saving": "Konservas…",
+ "score": "Poentoj",
"shufflePlayers": "Miksi Ludantojn",
"type": "Speco",
"unknown": "Nekonata",
M rosebush/src/client/pages/bracket.tsx => rosebush/src/client/pages/bracket.tsx +1 -1
@@ 358,7 358,7 @@ export class MatchEditDialog extends Component<MatchEditProps, MatchEditState> {
<table>
<tr>
<th><Text id="player" /></th>
- {props.bracket.use_scores && <th>Score</th>}
+ {props.bracket.use_scores && <th><Text id="score" /></th>}
<th><Text id="whetherWinner" /></th>
</tr>