mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 15:54:03 +01:00
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
20 lines
387 B
Vue
20 lines
387 B
Vue
<script setup lang="ts">
|
|
const { t, locale } = useI18n()
|
|
const closed = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<UAlert
|
|
v-if="locale !== 'en' && !closed"
|
|
:description="t('alert.description')"
|
|
:title="t('alert.title')"
|
|
color="error"
|
|
icon="i-ph-warning-duotone"
|
|
variant="soft"
|
|
:close="{
|
|
color: 'error',
|
|
}"
|
|
@update:open="closed = true"
|
|
/>
|
|
</template>
|