Skip to content

Commit

Permalink
fix: add french translation of ged tabs (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
LrxGaelle authored Dec 11, 2024
1 parent a9568f3 commit 62e9b6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/specific/files/files-manager/FilesManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -669,17 +669,17 @@ export default {
const filesTabs = [
{
id: "folders",
text: "Dossiers",
text: t("FilesManager.foldersTab"),
count: computed(() => props.fileStructure.children.length),
},
{
id: "files",
text: "Tous les fichiers",
text: t("FilesManager.filesTab"),
count: computed(() => allFiles.value.length),
},
{
id: "visas",
text: "Mes visas",
text: t("FilesManager.visasTab"),
count: computed(() => visasCounter.value),
},
];
Expand Down
5 changes: 4 additions & 1 deletion src/i18n/lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@
"createModelNotification": "Modèle créé avec succès",
"structureImport": "Importer une structure GED",
"gedDownload": "Télécharger la GED",
"folderImport": "Importer un dossier"
"folderImport": "Importer un dossier",
"foldersTab": "Dossiers",
"filesTab": "Tous les fichiers",
"visasTab": "Mes visas"
},
"FilesManagerOnboarding": {
"text": "Téléverser votre premier fichier",
Expand Down

0 comments on commit 62e9b6b

Please sign in to comment.