i18n: traduire les chaînes hardcodées restantes en anglais/français
- DateTime & Project : locale dayjs dynamique selon la langue active - Images : bouton "Ajouter une ou plusieurs images" via t() - ImagesEditPanel : placeholder, legend tags et bouton ajout via t() - DynamicView : clé PHP "Autres pistes" traduite via t() - Nouvelles clés : forms.selectTags, buttons.addSelectedImages, virtualSample.otherTracks Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
059fb0e5b0
commit
2d3be6d140
7 changed files with 34 additions and 21 deletions
|
|
@ -10,7 +10,7 @@
|
|||
class="flex flex-col | bg-white | border border-grey-200 | text-grey-800 | font-medium | rounded-2xl"
|
||||
@click="isAddImagesModalOpen = true"
|
||||
>
|
||||
Ajouter une ou plusieurs images
|
||||
{{ t('forms.addImages') }}
|
||||
</button>
|
||||
<template v-for="image in page.moodboard" :key="image.uri">
|
||||
<figure
|
||||
|
|
@ -52,11 +52,13 @@
|
|||
import Header from "./Header.vue";
|
||||
import { usePageStore } from "../../../stores/page";
|
||||
import { ref } from "vue";
|
||||
import { useI18n } from "vue-i18n";
|
||||
import ImageDetailsModal from "./ImageDetailsModal.vue";
|
||||
import AddImagesModal from "./add-images-modal/AddImagesModal.vue";
|
||||
import { storeToRefs } from "pinia";
|
||||
|
||||
const { page } = storeToRefs(usePageStore());
|
||||
const { t } = useI18n();
|
||||
|
||||
const selectedTags = ref([]);
|
||||
const imageDetails = ref(null);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue