Logo
Explore Help
Register Sign In
lfg2025/archy
1
0
Fork 0
You've already forked archy
Code Issues 13 Pull Requests Actions Packages Projects Releases 44 Wiki Activity
archy/neode-ui/src/main.ts

16 lines
294 B
TypeScript
Raw Normal View History

mid coding commit
2026-01-24 22:59:20 +00:00
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import './style.css'
import App from './App.vue'
import router from './router'
feat: add vue-i18n infrastructure and externalize all UI strings (A11Y-03) Set up vue-i18n with English locale file containing 500+ keys organized by view namespace. All 15 views converted to use t() calls instead of hardcoded strings. Infrastructure ready for community translations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 13:45:59 +00:00
import i18n from './i18n'
mid coding commit
2026-01-24 22:59:20 +00:00
const app = createApp(App)
const pinia = createPinia()
app.use(pinia)
app.use(router)
feat: add vue-i18n infrastructure and externalize all UI strings (A11Y-03) Set up vue-i18n with English locale file containing 500+ keys organized by view namespace. All 15 views converted to use t() calls instead of hardcoded strings. Infrastructure ready for community translations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 13:45:59 +00:00
app.use(i18n)
mid coding commit
2026-01-24 22:59:20 +00:00
app.mount('#app')
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.8 Page: 78ms Template: 5ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API