最佳实践
将 URL 放入变量中
在翻译包含 URL 或类似数据的字符串时,建议将这些 URL 放入变量中,然后在模板中引用它们。
<Translate
string={`Click <a href="{{url}}">here</a>`}
variables={{url: 'https://tacotranslate.com'}}
/>使用 ARIA 标签
在为交互元素(如按钮)翻译文本时,包含 ARIA 标签以确保可访问性非常重要。ARIA 标签可帮助屏幕阅读器提供有关该元素功能的描述性信息。
例如,如果你有一个允许用户从代码块复制文本的按钮,你可以使用 aria-label 属性来提供明确的描述:
<Translate
aria-label={useTranslation('Copy to clipboard')}
string="Copy"
/>这有点太元了。
全局来源数组和多个组件来源
此模式仅在使用 Next.js Pages Router 时有效。
在处理大型应用时,将字符串和翻译拆分到多个、更小的 origins 是有益的。这种做法有助于减小 bundle 大小和传输时间,确保本地化的高效性和可扩展性。
当仅在客户端渲染时这很简单,但在为服务器端渲染获取翻译时,管理 origins 很快会变得复杂。然而,你可以通过使用 TacoTranslate 客户端 origins 数组来自动化来源管理。
请看这个示例,我们已将组件和页面分别拆分到不同的文件中。
components/pricing-table.tsx
import TacoTranslate, {Translate} from 'tacotranslate/react';
import tacoTranslate from '../tacotranslate-client';
// Set an origin name for this component
const origin = 'components/pricing-table';
// Push the origin into the origins array as this file is imported
tacoTranslate.origins.push(origin);
export default function PricingTable() {
return (
<TacoTranslate origin={origin}>
<Translate string="Pricing table" />
// ...
</TacoTranslate>
);
}pages/pricing.tsx
import TacoTranslate, {Translate} from 'tacotranslate/react';
import getTacoTranslateStaticProps from 'tacotranslate/next/get-static-props';
import tacoTranslateClient from '../tacotranslate-client';
import PricingTable from '../components/pricing-table';
const origin = 'pages/pricing';
tacoTranslateClient.origins.push(origin);
export default function PricingPage() {
return (
<TacoTranslate origin={origin}>
<Translate string="Pricing page" />
<PricingTable />
</TacoTranslate>
);
}
// We will now fetch translations for all imported components and their origins automatically
export async function getStaticProps(context) {
return getTacoTranslateStaticProps(context, {client: tacoTranslateClient});
}有关 getTacoTranslateStaticProps 的更多信息,请参阅我们的 服务器端渲染示例。