🐛(i18n) dot in key was not added

The parser was not adding the dot in the key to the
json file sent to crowdin. Some translations were
not being translated correctly.
This commit is contained in:
Anthony LC
2024-02-19 15:50:55 +01:00
committed by Anthony LC
parent fc8dc24ba2
commit 4bd8095975
4 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
{
"fr": {
"translation": {
"Create a team": "Créer un groupe",
"Create a team.": "Créer un groupe",
"Marianne Logo": "Logo Marianne",
"Freedom Equality Fraternity Logo": "Logo Liberté Égalité Fraternité",
"Desk Logo": "Logo Desk",
@@ -26,15 +26,13 @@
"Teams icon": "Icône de groupe",
"Empty teams icon": "Icône de groupe vide",
"Something bad happens, please refresh the page": "Une erreur inattendue s'est produite, rechargez la page.",
"0 group to display": "0 groupe à afficher.",
"Create your first team by clicking on the \"Create a new team\" button": "Créez votre premier groupe en cliquant sur le bouton \"Créer un nouveau groupe\".",
"0 group to display.": "0 groupe à afficher.",
"Create new team card": "Carte créer une nouvelle équipe",
"Something bad happens, please retry.": "Une erreur inattendue s'est produite, rechargez la page.",
"0 group to display.": "0 groupe à afficher.",
"Create your first team by clicking on the \"Create a new team\" button.": "Créez votre premier groupe en cliquant sur le bouton \"Créer un nouveau groupe\".",
"Something bad happens, please refresh the page.": "Une erreur inattendue s'est produite, rechargez la page.",
"Members of “{{teamName}}“": "Membres de “{{teamName}}“",
"Add people to the “{{teamName}}“ group": "Ajouter des personnes au groupe «{{teamName}}».",
"Add people to the “{{teamName}}“ group.": "Ajouter des personnes au groupe {{teamName}}.",
"{{count}} member_one": "{{count}} membre",
"{{count}} member_many": "{{count}} membres",
"{{count}} member_other": "{{count}} membres",

View File

@@ -29,7 +29,7 @@ describe('checks all the frontend translation are made', () => {
if (missingKeys.length > 0) {
console.log(
`Missing keys in Desk translations that should be translated in Crowdin, got to https://crowdin.com/:`,
`Missing keys in Desk translations that should be translated in Crowdin, got to https://crowdin.com/ :`,
missingKeys,
);
}

View File

@@ -4,6 +4,7 @@ const config = {
description: '${description}',
},
keepRemoved: false,
keySeparator: false,
};
export default config;

View File

@@ -4,6 +4,7 @@ const config = {
description: '${description}',
},
keepRemoved: true,
keySeparator: false,
};
export default config;