Files
artchat/app/components/tool/Duplicated.vue
Arthur DANJOU ff28b719de feat: enhance command palette with new "uses" feature and update chat types
- Added "View setup" command to the command palette in English, French, and Spanish.
- Removed "Tech Stack" command from the command palette.
- Updated MessageContainer to handle new "uses" message type.
- Refactored chat.ts to use a new ChatMessages function for better organization.
- Created new Uses.vue component to display a list of software and gadgets.
- Added Item.vue and List.vue components for rendering individual items and categories.
- Updated content configuration to include new skills and uses categories.
- Added new JSON files for programming languages, frontend, backend, devops, and python frameworks.
- Updated existing JSON files for homelab items with improved descriptions.
- Removed obsolete stack JSON files.
2025-09-02 21:19:32 +02:00

34 lines
903 B
Vue

<script lang="ts" setup>
const { t } = useI18n({ useScope: 'local' })
</script>
<template>
<section class="prose dark:prose-invert">
<h3>{{ t('duplicated.title') }}</h3>
<p>{{ t('duplicated.description') }}</p>
</section>
</template>
<i18n lang="json">
{
"en": {
"duplicated": {
"title": "⚠️ I detected duplicated messages",
"description": "I have therefore removed the older duplicated messages to lighten the application."
}
},
"fr": {
"duplicated": {
"title": "⚠️ J'ai détecté des messages dupliqués",
"description": "J'ai donc supprimé les anciens messages dupliqués pour alléger l'application."
}
},
"es": {
"duplicated": {
"title": "⚠️ He detectado mensajes duplicados",
"description": "Por lo tanto, eliminé los mensajes duplicados más antiguos para aligerar la aplicación."
}
}
}
</i18n>