Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
JensForstmann committed Dec 22, 2024
1 parent 9fda266 commit 12af595
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"This match is not being supervised.": "Ce match n'est pas supervisé.",
"Start Supervising": "Commencer Supervision",
"This match was not stopped properly.": "Ce match n'a pas été arrêté correctement.",
"The next time TMT starts, it will try to supervise it again." : "La prochaine fois que TMT démarrera, il réessaiera de le superviser.",
"The next time TMT starts, it will try to supervise it again.": "La prochaine fois que TMT démarrera, il réessaiera de le superviser.",
"Stop it to prevent supervising retries.": "Arrêtez le pour empêcher d'essayer la supervision.",
"Stop Supervising": "Arrêter Supervision",
"Players": "Joueurs",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/utils/locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export { currentLocale };

export const cycleLocale = () => {
const cl = currentLocale();
let next: Locale = locales[(locales.indexOf(cl) + 1)%locales.length];
let next: Locale = locales[(locales.indexOf(cl) + 1) % locales.length];
setCurrentLocale(next);
localStorage.setItem('locale', next);
};
Expand Down

0 comments on commit 12af595

Please sign in to comment.