diff --git a/.husky/pre-commit b/.husky/pre-commit index 5a182ef..35b91f0 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,2 @@ -#!/usr/bin/env sh -. "$(dirname -- "$0")/_/husky.sh" yarn lint-staged diff --git a/package.json b/package.json index 10e9bad..7e5370e 100644 --- a/package.json +++ b/package.json @@ -28,15 +28,17 @@ "@unhead/vue": "^1.9.14", "@vee-validate/zod": "^4.13.1", "@vueuse/core": "^10.11.0", - "@vueuse/integrations": "^10.11.0", + "@vueuse/integrations": "^10.10.0", "axios": "^1.7.2", "chart.js": "^4.4.3", "floating-vue": "^5.2.2", "lucide-vue-next": "^0.396.0", "pinia": "^2.1.7", "splitpanes": "^3.1.5", + "universal-cookie": "^6.1.3", "vee-validate": "^4.13.1", "vue": "^3.4.29", + "vue-i18n": "9", "vue-router": "^4.3.3", "vue-sonner": "^1.1.3", "zod": "^3.23.8" diff --git a/src/app/index.ts b/src/app/index.ts index 070d625..e2c4070 100644 --- a/src/app/index.ts +++ b/src/app/index.ts @@ -2,6 +2,8 @@ import { createApp } from 'vue'; import { router, pinia } from './providers'; import { createHead } from '@unhead/vue'; import App from './App.vue'; +import i18n from '@/shared/lib/i18n'; + import './styles/primary/index.scss'; import 'floating-vue/dist/style.css'; @@ -14,6 +16,7 @@ const head = createHead(); app.use(pinia); app.use(router); +app.use(i18n); app.use(head); app.use(autoAnimatePlugin); app.directive('tooltip', vTooltip); diff --git a/src/entities/board/ui/BoardPreviewCard.vue b/src/entities/board/ui/BoardPreviewCard.vue index a062c4e..d067bd6 100644 --- a/src/entities/board/ui/BoardPreviewCard.vue +++ b/src/entities/board/ui/BoardPreviewCard.vue @@ -1,13 +1,16 @@