(
diff --git a/messages/fr.json b/messages/fr.json
index b0f9914..96799bc 100644
--- a/messages/fr.json
+++ b/messages/fr.json
@@ -151,7 +151,7 @@
"resultsTitle": "Résultats",
"opponentEloPlaceholder": "Classement de l'adversaire",
"gameResultPlaceholder": "Résultat...",
- "gameResult": "{result, select, win {Victoire} draw {Match nul} loss {Défaite} other {{result}}}",
+ "gameResult": "{result, select, win {Victoire} draw {Nul} loss {Défaite} other {{result}}}",
"addGameButton": "Ajouter un autre résultat de partie",
"resultsUrlLabel": "Collez un lien vers la page de résultats de la FFE",
diff --git a/types.ts b/types.ts
index 2ac22ff..69d65f6 100644
--- a/types.ts
+++ b/types.ts
@@ -67,3 +67,11 @@ export type ResponseMessage = {
};
export type ScrollableElement = Window | HTMLElement;
+
+// Prettify takes a type as its argument and returns a new type that has the same properties as the original type,
+// but the properties are not intersected. This means that the new type is easier to read and understand.
+// https://gist.github.com/palashmon/db68706d4f26d2dbf187e76409905399
+
+export type Prettify = {
+ [K in keyof T]: T[K];
+} & {};