diff --git a/frontend/src/locales/fr.json b/frontend/src/locales/fr.json index b37c340..00784e4 100644 --- a/frontend/src/locales/fr.json +++ b/frontend/src/locales/fr.json @@ -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", diff --git a/frontend/src/utils/locale.ts b/frontend/src/utils/locale.ts index 51f6b67..6f6cf5d 100644 --- a/frontend/src/utils/locale.ts +++ b/frontend/src/utils/locale.ts @@ -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); };