diff --git a/src/components/project/Project.vue b/src/components/project/Project.vue
index 901805f..3dfaef3 100644
--- a/src/components/project/Project.vue
+++ b/src/components/project/Project.vue
@@ -15,8 +15,8 @@
- {{ t('dates.updatedOn') }}
-
+ Dernière mise à jour le
+
@@ -42,17 +42,17 @@
diff --git a/src/components/project/brief/Images.vue b/src/components/project/brief/Images.vue
index c62cc8b..2616eea 100644
--- a/src/components/project/brief/Images.vue
+++ b/src/components/project/brief/Images.vue
@@ -10,7 +10,7 @@
class="flex flex-col | bg-white | border border-grey-200 | text-grey-800 | font-medium | rounded-2xl"
@click="isAddImagesModalOpen = true"
>
- {{ t('forms.addImages') }}
+ Ajouter une ou plusieurs images
@@ -109,10 +109,8 @@ import StringUtils from "../../../../utils/string";
import { storeToRefs } from "pinia";
import { useAddImagesModalStore } from "../../../../stores/addImagesModal";
import { computed } from "vue";
-import { useI18n } from "vue-i18n";
const { page } = storeToRefs(usePageStore());
-const { t } = useI18n();
const { activeTab } = storeToRefs(useAddImagesModalStore());
diff --git a/src/components/project/cards/DateTime.vue b/src/components/project/cards/DateTime.vue
index ccbb529..c27a04e 100644
--- a/src/components/project/cards/DateTime.vue
+++ b/src/components/project/cards/DateTime.vue
@@ -3,7 +3,7 @@
{{ dayjs(date).format("DD MMMM YYYY") }}
@@ -11,9 +11,6 @@
diff --git a/src/components/project/virtual-sample/DynamicView.vue b/src/components/project/virtual-sample/DynamicView.vue
index a725334..ad3c65e 100644
--- a/src/components/project/virtual-sample/DynamicView.vue
+++ b/src/components/project/virtual-sample/DynamicView.vue
@@ -87,7 +87,7 @@ const tracks = computed(() => {
for (const key in raw) {
list.push({
- title: key === 'Autres pistes' ? t('virtualSample.otherTracks') : key,
+ title: key,
slug: slugify(key),
variations: raw[key] || [],
});
diff --git a/src/locales/en.json b/src/locales/en.json
index 78442ce..0ddf7d5 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -70,12 +70,11 @@
"loopAnimation": "Loop animation",
"stopAnimation": "Stop animation",
"compareTracks": "Compare tracks",
- "exitCompare": "Exit compare mode",
- "addSelectedImages": "Add selected images"
+ "exitCompare": "Exit compare mode"
},
"forms": {
"email": "Email",
- "emailPlaceholder": "email{'@'}example.com",
+ "emailPlaceholder": "email@example.com",
"password": "Password",
"passwordPlaceholder": "Minimum 8 characters",
"newPassword": "New password",
@@ -95,8 +94,7 @@
"tags": "Tags",
"selectVariation": "Select a variation",
"uploadedFiles": "Uploaded files",
- "addImages": "Add one or more images",
- "selectTags": "Select one or more tags"
+ "addImages": "Add one or more images"
},
"auth": {
"login": "Login",
@@ -186,8 +184,7 @@
"dynamicPresentation": "Dynamic presentation",
"staticView": "Static view",
"noContent": "Content not available for this track",
- "selectToCompare": "Select the track you want to compare",
- "otherTracks": "Other tracks"
+ "selectToCompare": "Select the track you want to compare"
},
"errors": {
"saveFailed": "Save failed",
diff --git a/src/locales/fr.json b/src/locales/fr.json
index 5f6cd69..b155bcb 100644
--- a/src/locales/fr.json
+++ b/src/locales/fr.json
@@ -70,12 +70,11 @@
"loopAnimation": "Animation en boucle",
"stopAnimation": "Arrêter l'animation",
"compareTracks": "Comparer les pistes",
- "exitCompare": "Quitter le mode comparer",
- "addSelectedImages": "Ajouter les images sélectionnées"
+ "exitCompare": "Quitter le mode comparer"
},
"forms": {
"email": "Email",
- "emailPlaceholder": "mail{'@'}exemple.com",
+ "emailPlaceholder": "mail@exemple.com",
"password": "Mot de passe",
"passwordPlaceholder": "Minimum 8 caractères",
"newPassword": "Nouveau mot de passe",
@@ -95,8 +94,7 @@
"tags": "Tags",
"selectVariation": "Sélectionnez une déclinaison",
"uploadedFiles": "Fichiers importés",
- "addImages": "Ajouter une ou plusieurs images",
- "selectTags": "Sélectionner un ou plusieurs tags"
+ "addImages": "Ajouter une ou plusieurs images"
},
"auth": {
"login": "Connexion",
@@ -186,8 +184,7 @@
"dynamicPresentation": "Présentation dynamique",
"staticView": "Vue statique",
"noContent": "Contenu non disponible pour cette piste",
- "selectToCompare": "Sélectionnez sur la piste que vous souhaitez comparer",
- "otherTracks": "Autres pistes"
+ "selectToCompare": "Sélectionnez sur la piste que vous souhaitez comparer"
},
"errors": {
"saveFailed": "Erreur lors de la sauvegarde",
diff --git a/src/stores/projects.js b/src/stores/projects.js
index be62742..870a543 100644
--- a/src/stores/projects.js
+++ b/src/stores/projects.js
@@ -52,8 +52,6 @@ export const useProjectsStore = defineStore('projects', () => {
isProjectsLoading.value = false;
projects.value = json.page.children;
// }, 3000);
- }).catch(() => {
- isProjectsLoading.value = false;
});
// Functions