Dictionaries
如何使用传统的基于字典的翻译模式
字典是一种传统做法,用键值对的嵌套对象来组织翻译。虽然推荐使用 <T> 组件,但在从其他 i18n 库迁移,或更倾向于集中管理翻译时,字典也很实用。
建议: 新项目请使用 <T> 组件。字典主要用于迁移场景以及与现有翻译流程的兼容。
字典与组件翻译
字典模式
// dictionary.ts
export default {
greetings: {
hello: '你好,世界!',
welcome: '欢迎你,{name}!'
}
};
// 组件用法
function MyComponent() {
const d = useTranslations();
return <div>{d('greetings.hello')}</div>;
}组件范式
// 直接使用组件 - 推荐
function MyComponent() {
return <T><div>你好,世界!</div></T>;
}权衡
字典的优势
- 集中存储 - 所有翻译统一管理于一处
- 行业标准 - 沿用其他 i18n 库的通用范式
- 便于迁移 - 可轻松迁入现有翻译
字典的劣势
- 复杂性 - 需要更多设置和配置
- 可维护性 - 内容与使用分离,使更新更困难
- 可调试性 - 更难将翻译追溯到组件
- 可读性 - 键名不显示实际内容
快速上手
步骤 1:创建字典
在项目根目录或 src 目录中创建一个字典文件:
const dictionary = {
greetings: {
hello: '你好,世界!',
welcome: '欢迎使用我们的应用!'
},
navigation: {
home: '首页',
about: '关于我们',
contact: '联系我们'
}
};
export default dictionary;或使用 JSON 格式:
{
"greetings": {
"hello": "你好,世界!",
"welcome": "欢迎使用我们的应用!"
},
"navigation": {
"home": "首页",
"about": "关于",
"contact": "联系我们"
}
}然后将它传入你的 <GTProvider> 组件:
import dictionary from "./dictionary.js";
import config from "./gt.config.json";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<GTProvider {...config} dictionary={dictionary}>
<App />
</GTProvider>
</StrictMode>
);步骤 2:在组件中使用
useTranslations 钩子可用于访问字典条目:
import { useTranslations } from 'gt-react';
function MyComponent() {
const d = useTranslations();
return (
<div>
<h1>{d('greetings.hello')}</h1>
<p>{d('greetings.welcome')}</p>
</div>
);
}使用变量
使用 {variable} 语法将变量添加到字典项中:
const dictionary = {
user: {
greeting: '你好,{name}!',
itemCount: '你有 {count} 个条目',
orderTotal: '合计:${amount}'
}
};function UserDashboard() {
const d = useTranslations();
return (
<div>
<h1>{d('user.greeting', { name: 'Alice' })}</h1>
<p>{d('user.itemCount', { count: 5 })}</p>
<p>{d('user.orderTotal', { amount: 99.99 })}</p>
</div>
);
}使用前缀
通过前缀将字典访问限定到特定部分:
const dictionary = {
dashboard: {
header: {
welcome: '欢迎回来!',
lastLogin: '上次登录:{date}'
},
stats: {
totalUsers: '用户总数:{count}',
activeUsers: '活跃用户数:{count}'
}
}
};function DashboardHeader() {
// 前缀将访问范围限定为 'dashboard.header'
const d = useTranslations('dashboard.header');
return (
<header>
<h1>{d('welcome')}</h1> {/* -> dashboard.header.welcome */}
<p>{d('lastLogin', { date: '今天' })}</p> {/* -> dashboard.header.lastLogin */}
</header>
);
}
function DashboardStats() {
// 统计区块使用不同的前缀
const d = useTranslations('dashboard.stats');
return (
<div>
<p>{d('totalUsers', { count: 1000 })}</p> {/* -> dashboard.stats.totalUsers */}
<p>{d('activeUsers', { count: 150 })}</p> {/* -> dashboard.stats.activeUsers */}
</div>
);
}多语言支持
自动翻译(推荐)
大多数用户应使用 loadTranslations,基于基础字典自动生成翻译:
const dictionary = {
common: {
save: '保存',
cancel: '取消',
delete: '删除'
},
forms: {
required: '此字段为必填',
email: '请输入有效的邮箱地址'
}
};
export default dictionary;然后创建一个 loadTranslations 函数,用于加载生成的翻译 files:
export default async function loadTranslations(locale: string) {
const translations = await import(`./_gt/${locale}.json`);
return translations.default;
}将其传递给你的 <GTProvider>:
import loadTranslations from './loadTranslations';
import dictionary from './dictionary';
createRoot(document.getElementById("root")!).render(
<StrictMode>
<GTProvider
{...config}
dictionary={dictionary}
loadTranslations={loadTranslations}
>
<App />
</GTProvider>
</StrictMode>
);GT 会基于你的基础字典自动为其他语言生成翻译。运行 npx gtx-cli translate 可为所有已配置的语言生成翻译。
手动翻译文件(迁移)
若从其他 i18n 库迁移,或采用手动方式管理翻译,请使用 loadDictionary:
export default async function loadDictionary(locale: string) {
const translations = await import(`../public/locales/${locale}.json`);
return translations.default;
}这将从你的 public/locales/ 目录加载 JSON 翻译文件:
选择合适的方法: 对于具备自动翻译生成功能的新项目,请使用 loadTranslations;迁移现有翻译文件时,请使用 loadDictionary。
生产环境配置
构建流程
将翻译集成到你的构建管道中:
{
"scripts": {
"build": "npx gtx-cli translate && <...你的构建命令...>"
}
}开发环境与生产环境的行为差异
- 开发环境:使用 Dev API key 按需翻译字典条目
- 生产环境:在构建阶段预先生成所有字典翻译
与组件配合使用
dictionaries 与 <T> 组件 可以协同工作:
function MixedApproach() {
const d = useTranslations();
return (
<div>
{/* 简单字符串使用字典 */}
<h1>{d('page.title')}</h1>
{/* 复杂 JSX 使用 T 组件 */}
<T>
<p>这是一条包含<a href="/link">链接</a>的<strong>复杂消息</strong>。</p>
</T>
{/* 表单标签使用字典 */}
<label>{d('forms.email')}</label>
</div>
);
}后续步骤
本指南如何?