mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-02-01 16:29:32 +01:00
fix: update project links to point to the new ArtStudies repository
feat: add new homelab project documentation with details on services and hardware fix: correct project code links for Monte Carlo Project and Schelling Segregation Model refactor: rename Studies Projects to ArtStudies for better clarity and consistency i18n: add project descriptions in English, Spanish, and French locales chore: update package name to artsite and adjust dependency versions style: add cover image for ArtLab project fix: update chat message labels for better readability and translation usage
This commit is contained in:
@@ -1,8 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
const { t, locale } = useI18n({
|
||||
useScope: 'local',
|
||||
})
|
||||
|
||||
const { t, locale } = useI18n()
|
||||
const closed = ref(false)
|
||||
</script>
|
||||
|
||||
@@ -11,35 +8,12 @@ const closed = ref(false)
|
||||
v-if="locale !== 'en' && !closed"
|
||||
:description="t('alert.description')"
|
||||
:title="t('alert.title')"
|
||||
color="red"
|
||||
color="error"
|
||||
icon="i-ph-warning-duotone"
|
||||
variant="soft"
|
||||
:close="{
|
||||
color: 'red',
|
||||
color: 'error',
|
||||
}"
|
||||
@update:open="closed = true"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<i18n lang="json">
|
||||
{
|
||||
"en": {
|
||||
"alert": {
|
||||
"title": "Translations alert!",
|
||||
"description": "For time reasons, all article translations will only be available in English. Thank you for your understanding."
|
||||
}
|
||||
},
|
||||
"fr": {
|
||||
"alert": {
|
||||
"title": "Attention aux traductions !",
|
||||
"description": "Pour des raisons de temps, toutes les traductions d'articles ne seront disponibles qu'en anglais. Merci de votre compréhension."
|
||||
}
|
||||
},
|
||||
"es": {
|
||||
"alert": {
|
||||
"title": "¡Atención a las traducciones!",
|
||||
"description": "Por razones de tiempo, todas las traducciones de los artículos estarán disponibles solo en inglés. Gracias por su comprensión."
|
||||
}
|
||||
}
|
||||
}
|
||||
</i18n>
|
||||
|
||||
Reference in New Issue
Block a user