mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-08 17:10:07 +00:00
## Summary
Fix all i18n `no-restricted-imports` lint warnings and upgrade rules
from `warn` to `error`.
## Changes
- **What**: Migrate Vue components from `import { t/d } from '@/i18n'`
to `const { t } = useI18n()`. Migrate non-component `.ts` files from
`useI18n()` to `import { t/d } from '@/i18n'`. Allow `st` import from
`@/i18n` in Vue components (it wraps `te`/`t` for safe fallback
translation). Remove `@deprecated` tag from `i18n.ts` global exports
(still used by `st` and non-component code). Upgrade both lint rules
from `warn` to `error`.
## Review Focus
- The `st` helper is intentionally excluded from the Vue component
restriction since it provides safe fallback translation needed for
custom node definitions.
Fixes #8701
┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-8704-fix-resolve-i18n-no-restricted-imports-lint-warnings-2ff6d73d365081ae84d8eb0dfef24323)
by [Unito](https://www.unito.io)
---------
Co-authored-by: Amp <amp@ampcode.com>
32 lines
923 B
Vue
32 lines
923 B
Vue
<script setup lang="ts">
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
const { t } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
role="article"
|
|
data-testid="linear-welcome"
|
|
class="flex flex-col items-center justify-center h-full gap-6 p-8 max-w-lg mx-auto text-center"
|
|
>
|
|
<div class="flex flex-col gap-2">
|
|
<h2 class="text-xl font-semibold text-base-foreground">
|
|
{{ t('linearMode.welcome.title')
|
|
}}<sup class="ml-1 text-xs font-normal text-muted-foreground">{{
|
|
t('g.experimental')
|
|
}}</sup>
|
|
</h2>
|
|
<p class="text-base text-muted-foreground">
|
|
{{ t('linearMode.welcome.intro') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-3 text-xs text-muted-foreground/70 max-w-md">
|
|
<p>{{ t('linearMode.welcome.layout') }}</p>
|
|
<p>{{ t('linearMode.welcome.sharing') }}</p>
|
|
<p>{{ t('linearMode.welcome.widget') }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|