Translate static texts

This commit is contained in:
2025-09-15 15:44:50 +02:00
parent 0c5a6963d3
commit 165e3d1559
7 changed files with 226 additions and 178 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
<script setup lang="ts">
const { t } = useI18n();
const props = withDefaults(
defineProps<{
title?: string;
@@ -42,7 +43,7 @@ const isOpen = ref(false);
</template>
</VaImage>
<template #footer>
<VaButton @click="isOpen = false">Close</VaButton>
<VaButton @click="isOpen = false">{{ t('vuestic.close') }}</VaButton>
</template>
</VaModal>
</template>