Skip to content

Commit 40df3bc

Browse files
authored
Merge pull request #23 from mrosati84/issue_4
fix one untranslatable string #4 #hacktoberfest
2 parents 17aa822 + 76226dc commit 40df3bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/public/i18n/pl.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@
4646
"There are no matches to bet": "Brak meczy do typowania",
4747
"Close": "Zamknij",
4848
"Bets will be settled on the result at the end of the regular game time which includes injury time but excludes official extra time and penalty shoot outs": "Typy będą rozstrzygane jako wynik na koniec regulaminowego czasu gry wliczając czas doliczony przez sędziego, ale bez uwzględniania dogrywek i dodatkowych rzutów karnych",
49-
"Knock-out stage": "Faza pucharowa"
49+
"Knock-out stage": "Faza pucharowa",
50+
"You're not playing any game. Create a new one or ask your friends to join an existing game.": "Nie uczestniczysz w żadnej grze, utwórz nową lub poproś przyjaciół o zaproszenie do istniejącej rozgrywki"
5051
}

frontend/src/component/GameList/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ export class GameList extends React.PureComponent<GameListProps, State> {
8585
return (
8686
<TableRow>
8787
<TableCell colSpan={2}>
88-
Nie uczestniczysz w żadnej grze, utwórz nową lub poproś przyjaciół o zaproszenie do istniejącej
89-
rozgrywki
88+
<Trans>You're not playing any game. Create a new one or ask your friends to join an existing game.</Trans>
9089
</TableCell>
9190
</TableRow>
9291
);

0 commit comments

Comments
 (0)