npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@yh-ui/locale

v1.0.5

Published

YH-UI internationalization locale files

Readme

@yh-ui/locale


✨ 特性

  • 🌍 67 种语言 — 业内最全的 Vue 组件库语言支持(对比:Element Plus 43 种,Naive UI 25 种)
  • 📦 按需加载 — 每个语言包独立文件,只打包使用的语言
  • 运行时切换 — 基于 Vue 响应式系统,切换语言无需刷新页面
  • 🔒 完整类型推导t() 翻译函数支持 key 类型检查,防止拼写错误
  • 🌐 SSR 兼容 — 可在 Nuxt 3 服务端正确渲染

📦 安装

# pnpm(推荐)
pnpm add @yh-ui/locale

# npm
npm install @yh-ui/locale

注意:通常通过 @yh-ui/yh-ui 主包安装,无需单独安装。


🔨 快速开始

在主应用中配置

import { createApp } from 'vue'
import YhUI from '@yh-ui/yh-ui'
import '@yh-ui/yh-ui/css'
import zhCN from '@yh-ui/locale/lang/zh-CN'
import App from './App.vue'

const app = createApp(App)
app.use(YhUI, { locale: zhCN })
app.mount('#app')

通过 ConfigProvider 动态切换(推荐)

<script setup lang="ts">
import { ref } from 'vue'
import { YhConfigProvider } from '@yh-ui/yh-ui'
import zhCN from '@yh-ui/locale/lang/zh-CN'
import enUS from '@yh-ui/locale/lang/en'
import jaJP from '@yh-ui/locale/lang/ja'
import type { Language } from '@yh-ui/locale'

const localeMap = { 'zh-CN': zhCN, en: enUS, ja: jaJP }
const currentLocale = ref<Language>(zhCN)
</script>

<template>
  <YhConfigProvider :locale="currentLocale">
    <!-- 所有子组件自动使用当前语言 -->
    <YhTable :data="data" :columns="columns" />
    <YhPagination :total="100" />
    <YhDatePicker />
  </YhConfigProvider>

  <div>
    <button @click="currentLocale = localeMap['zh-CN']">中文</button>
    <button @click="currentLocale = localeMap['en']">English</button>
    <button @click="currentLocale = localeMap['ja']">日本語</button>
  </div>
</template>

在 Nuxt 3 中使用

// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['@yh-ui/nuxt'],
  yhUI: {
    locale: 'zh-CN' // 设置默认语言
  }
})

🌍 支持语言列表(67 种)

| 语言 | 导入路径 | 语言代码 | | ---------------- | -------------------------- | -------- | | 简体中文 | @yh-ui/locale/lang/zh-CN | zh-CN | | 繁體中文 | @yh-ui/locale/lang/zh-TW | zh-TW | | English | @yh-ui/locale/lang/en | en | | 日本語 | @yh-ui/locale/lang/ja | ja | | 한국어 | @yh-ui/locale/lang/ko | ko | | Français | @yh-ui/locale/lang/fr | fr | | Deutsch | @yh-ui/locale/lang/de | de | | Español | @yh-ui/locale/lang/es | es | | Português | @yh-ui/locale/lang/pt | pt | | Italiano | @yh-ui/locale/lang/it | it | | Русский | @yh-ui/locale/lang/ru | ru | | العربية | @yh-ui/locale/lang/ar | ar | | हिन्दी | @yh-ui/locale/lang/hi | hi | | Türkçe | @yh-ui/locale/lang/tr | tr | | Polski | @yh-ui/locale/lang/pl | pl | | Nederlands | @yh-ui/locale/lang/nl | nl | | Svenska | @yh-ui/locale/lang/sv | sv | | ภาษาไทย | @yh-ui/locale/lang/th | th | | Tiếng Việt | @yh-ui/locale/lang/vi | vi | | Bahasa Indonesia | @yh-ui/locale/lang/id | id | | ... | ... | 共 67 种 |

查看完整列表:docs/guide/i18n


🔌 在自定义 Hook 中使用

import { useLocale } from '@yh-ui/hooks'

const { t, locale } = useLocale()

// 获取翻译文本
t('common.confirm') // '确认' 或 'Confirm'(根据当前语言)
t('table.emptyText') // '暂无数据'

// 读取当前语言
console.log(locale.value.name) // 'zh-CN'

🛠 自定义语言包

如果内置语言包的翻译不满足需求,可以覆盖或扩展:

import zhCN from '@yh-ui/locale/lang/zh-CN'
import type { Language } from '@yh-ui/locale'

const myLocale: Language = {
  ...zhCN,
  name: 'zh-CN-custom',
  common: {
    ...zhCN.common,
    confirm: '好的',
    cancel: '算了'
  }
}

app.use(YhUI, { locale: myLocale })

⚙️ TypeScript 类型

import type { Language, LocaleContext } from '@yh-ui/locale'

// Language: 完整的语言包类型
// LocaleContext: provide/inject 上下文类型

⚠️ 注意事项

  • RTL 语言:阿拉伯语(ar)等 RTL 语言需配合 YhConfigProviderdirection="rtl" 属性使用
  • 按需打包:每个语言包独立文件,Vite/Webpack 会自动做 Tree-shaking,仅打包你导入的语言
  • SSR:服务端渲染时语言包会正常加载,无 DOM 依赖,完全 SSR 安全

🔗 相关资源

📄 开源协议

MIT License © 2024-present YH-UI Team