翻译你的Next.js应用的最简单方法(使用pages设置)。**
如果你正在生产环境中使用next-i18next*(pages目录)*,并想释放一些超能力,可以看看这篇博文。
如果你正在使用带有app目录的Next.js 13/14,则不需要next-i18next,你可以直接使用i18next和react-i18next,就像这篇博文中描述的那样。
虽然Next.js直接提供国际化路由,但它不处理任何翻译内容的管理,也不处理实际的翻译功能。Next.js所做的只是保持你的语言环境和URL同步。
为了补充这一点,next-i18next
提供了剩余的功能 - 翻译内容的管理,以及翻译React组件的组件/钩子 - 同时完全支持SSG/SSR、多个命名空间、代码分割等。
虽然next-i18next
在底层使用了i18next和react-i18next,但next-i18next
的用户只需要将他们的翻译内容作为JSON文件包含进来,不需要担心其他太多事情。
这里有一个在线演示。这个演示应用是简单示例 - 没有更多,也没有更少。
易于设置,易于使用:设置只需几个步骤,配置简单。
没有其他要求:next-i18next
简化了你的Next.js应用的国际化,无需额外依赖。
生产就绪:next-i18next
支持将翻译和配置选项作为props传递到页面,并支持SSG/SSR。
你的next-i18next.config.js
文件将为next-i18next
提供配置。
配置后,appWithTranslation
允许我们通过钩子在组件中使用t
(翻译)函数。
然后我们在页面级组件中的getStaticProps或getServerSideProps(取决于你的情况)中添加serverSideTranslation
。
现在我们的Next.js应用完全可以翻译了!
yarn add next-i18next react-i18next i18next
你还需要安装react
和next
。
默认情况下,next-i18next
期望你的翻译按以下方式组织:
.
└── public
└── locales
├── en
| └── common.json
└── de
└── common.json
这种结构也可以在简单示例中看到。
如果你想以自定义方式组织你的翻译/命名空间,你需要在初始化配置中传入修改后的localePath
和localeStructure
值。
首先,在项目根目录创建一个next-i18next.config.js
文件。嵌套的i18n
对象的语法直接来自Next.js。
这告诉next-i18next
你的defaultLocale
和其他语言环境是什么,以便它可以在服务器上预加载翻译:
next-i18next.config.js
/** @type {import('next-i18next').UserConfig} */ module.exports = { i18n: { defaultLocale: 'en', locales: ['en', 'de'], }, }
现在,创建或修改你的next.config.js
文件,通过将i18n
对象传入你的next.config.js
文件,以启用本地化URL路由:
next.config.js
const { i18n } = require('./next-i18next.config') module.exports = { i18n, }
next-i18next
导出了三个函数,你需要使用它们来翻译你的项目:
这是一个HOC,它包装你的_app
:
import { appWithTranslation } from 'next-i18next' const MyApp = ({ Component, pageProps }) => ( <Component {...pageProps} /> ) export default appWithTranslation(MyApp)
appWithTranslation
HOC主要负责添加一个I18nextProvider
。
这是一个异步函数,你需要在页面级组件中通过getStaticProps
或getServerSideProps
(取决于你的用例)包含它:
import { serverSideTranslations } from 'next-i18next/serverSideTranslations' export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale, [ 'common', 'footer', ])), // 将作为props传递给页面组件 }, } }
注 意,serverSideTranslations
必须从next-i18next/serverSideTranslations
导入 - 这是一个包含NodeJs特定代码的单独模块。
另外,注意serverSideTranslations
与getInitialProps
不兼容,因为它_只能_在服务器环境中执行,而getInitialProps
在页面间导航时会在客户端调用。
serverSideTranslations
HOC主要负责将翻译和配置选项作为props传入页面 - 你需要将它添加到任何有翻译的页面中。
这是你实际用来进行翻译的钩子。useTranslation
钩子来自react-i18next
,但需要直接从next-i18next
导入。
<br/>
不要使用react-i18next
的useTranslation
导出,而只使用next-i18next
的导出!
import { useTranslation } from 'next-i18next' export const Footer = () => { const { t } = useTranslation('footer') return ( <footer> <p>{t('description')}</p> </footer> ) }
默认情况下,next-i18next
会在每次初始请求时将_所有你的命名空间_发送到客户端。对于内容较少的小型应用来说,这可能是一种合适的方法,但许多应用会受益于基于路由拆分命名空间。
要实现这一点,你可以将每个页面所需的命名空间数组传递给serverSideTranslations
。你可以在examples/simple/pages/index.tsx中看到这种方法。传入一个空的所需命名空间数组将不会发送任何命名空间。
注意:useTranslation
为你使用它的组件提供命名空间。然而,serverSideTranslations
为整个React树提供可用的命名空间总数,属于页面级别。两者都是必需的。
默认情况下,next-i18next
在每个请求中只会向客户端发送_当前活动的语言_。这有助于减少发送给客户端的初始负载大小。然而,在某些情况下,可能还需要在运行时使用其他语言的翻译。例如,当使用useTranslation
钩子的getFixedT时。
要改变这种行为并加载额外的语言,只需将语言数组作为最后一个参数传递给serverSideTranslations
。
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; export async function getStaticProps({ locale }) { return { props: { - ...(await serverSideTranslations(locale, ['common', 'footer'])), + ...(await serverSideTranslations(locale, ['common', 'footer'], null, ['en', 'no'])), }, }; }
结果是,无论当前语言如何,'no'和'en'两种语言的翻译都会被加载。
注意:额外的参数应该添加到所有使用
getFixedT
函数的页面中。
默认情况下,next-i18next
会添加defaultLocale
作为后备语言。要更改这一点,你可以设置fallbackLng
。i18next
支持的所有值(字符串
、数组
、对象
和函数
)也都被next-i18next
支持。
此 外,可以将nonExplicitSupportedLngs
设置为true
,以支持一种语言的所有变体,而无需为每个变体提供JSON文件。请注意,所有变体仍然必须包含在locales
中,以启用next.js
内的路由。
注意:
fallbackLng
和nonExplicitSupportedLngs
可以同时使用。只有一个例外:当nonExplicitSupportedLngs
为true
时,不能将fallbackLng
设置为函数。
module.exports = { i18n: { defaultLocale: 'en', locales: ['en', 'fr', 'de-AT', 'de-DE', 'de-CH'], }, fallbackLng: { default: ['en'], 'de-CH': ['fr'], }, nonExplicitSupportedLngs: true, // de, fr和en将作为de-CH的后备语言加载 }
请注意,使用fallbackLng
和nonExplicitSupportedLngs
可能会轻易增加页面的初始大小。
提示:将fallbackLng
设置为false
将不会序列化你的后备语言(通常是defaultLocale
)。这将减少初始页面加载的大小。
如果你需要修改更多高级配置选项,可以通过next-i18next.config.js
传递它们。例如:
module.exports = { i18n: { defaultLocale: 'en', locales: ['en', 'de'], }, localePath: typeof window === 'undefined' ? require('path').resolve('./my-custom/path') : '/public/my-custom/path', ns: ['common'], }
一些i18next
插件(可以通过config.use
传入)是不可序列化的,因为它们包含函数和其他JavaScript原语。
如果你的用例比较高级,可能会遇到这种情况。你会看到Next.js抛出类似这样的错误:
Error: Error serializing `._nextI18Next.userConfig.use[0].process` returned from `getStaticProps` in "/my-page".
Reason: `function` cannot be serialized as JSON. Please only return JSON serializable data types.
要解决这个问题,你需要将config.serializeConfig
设置为false
,并手动将你的配置传递给appWithTranslation
:
import { appWithTranslation } from 'next-i18next' import nextI18NextConfig from '../next-i18next.config.js' const MyApp = ({ Component, pageProps }) => ( <Component {...pageProps} /> ) export default appWithTranslation(MyApp, nextI18NextConfig)
import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import nextI18NextConfig from '../next-i18next.config.js' export const getStaticProps = async ({ locale }) => ({ props: { ...(await serverSideTranslations( locale, ['common', 'footer'], nextI18NextConfig )), }, })
当在使用getStaticPaths
和fallback: true
或fallback: 'blocking'
的服务器端生成页面中使用时,上面指示的默认设置将导致应用在每次加载时被卸载和重新挂载,这会导致各种不利后果,如每个useEffect(() => {...}, [])
钩子被调用两次以及轻微的性能下降。
这是因为对于这些页面,Next.js会先用空的serverSideProps
进行第一次渲染,然后用包含next-i18next
翻译的serverSideProps
进行第二次渲染。在默认设置下,当serverSideProps
为空时,i18n
实例最初是undefined
,导致卸载-重新挂载。
要缓解这个问题,你可以这样做:
import { UserConfig } from 'next-i18next'; import nextI18NextConfig from '../next-i18next.config.js' const emptyInitialI18NextConfig: UserConfig = { i18n: { defaultLocale: nextI18NextConfig.i18n.defaultLocale, locales: nextI18NextConfig.i18n.locales, }, }; const MyApp = ({ Component, pageProps }) => ( <Component {...pageProps} /> ) export default appWithTranslation(MyApp, emptyInitialI18NextConfig) // 确保初始i18n实例不是undefined
只要你确保在fallback页面状态下,你的客户端代码不试图显示任何翻译,这就可以正常工作。否则,你会从Next.js得到一个"服务器-客户端不匹配"错误(因为服务器在其html中有实际的翻译,而客户端html在相同位置有翻译键)。 这是正常的,也是没问题的:你本来就不应该向用户显示翻译键!
自v11.0.0版本起,next-i18next也提供了客户端加载翻译的支持。
在某些用例中,你可能想要动态加载翻译文件,而不必使用serverSideTranslations
。这对于你不想降低页面速度的懒加载组件特别有用。
更多相关信息可以在这里找到。
因为资源在服务器启动时只加载一次,所以在开发过程中对翻译JSON文件所做的任何更改都不会被加载,直到服务器重新启动。
在生产环境中,这通常不是一个问题,但在开发环境中,你可能希望看到翻译JSON文件的更新,而不必每次都重新启动开发服务器。要做到这一点,可以将reloadOnPrerender
配置选项设置为true
。
这个选项会在每次调用serverSideTranslations
(在getStaticProps
或getServerSideProps
中)时重新加载你的翻译。如果你在getServerSideProps
中使用serverSideTranslations
,建议在生产环境中禁用reloadOnPrerender
,以避免在每次服务器调用时重新加载资源。
键名 | 默认值 | 说明 |
---|---|---|
defaultNS | 'common' | |
localePath | './public/locales' | 可以是一个函数,详见下方注释。(如果直接通过配置传递resources选项,也可以为null,如此处所示) |
localeExtension | 'json' | 如果localePath 是一个函数,则忽略此项。 |
localeStructure | '{{lng}}/{{ns}}' | 如果localePath 是一个函数,则忽略此项。 |
reloadOnPrerender | false | |
serializeConfig | true | |
use (用于插件) | [] | |
onPreInitI18next | undefined | 例如:(i18n) => i18n.on('failedLoading', handleFailedLoading) |
作为函数的localePath
的形式为(locale: string, namespace: string, missing: boolean) => string
,返回包含文件名和扩展名的完整路径。当missing
为true时,返回i18next-fs-backend
的addPath
选项的路径;当为false时,返回loadPath
选项的路径。更多信息请参见i18next-fs-backend
仓库。
<br />
如果localePath是一个函数,请确保同时定义ns选项,因为在服务器端我们无法预加载命名空间。
所有其他i18next选项和react-i18next选项也可以传入。
</br>
您也可以直接传入resources
,同时将localePath
设置为null
。
默认情况下,i18next使用{{
作为前缀,}}
作为后缀进行插值。
如果您想/需要覆盖这些插值设置,您必须同时指定一个与您自定义前缀和后缀匹配的替代localeStructure
设置。
例如,如果您想使用{
和}
,配置将如下所示:
{ i18n: { defaultLocale: 'en', locales: ['en', 'nl'], }, interpolation: { prefix: '{', suffix: '}', }, localeStructure: '{lng}/{ns}', }
next-i18next.config.js
路径如果您想更改默认配置路径,可以设置环境变量I18NEXT_DEFAULT_CONFIG_PATH
。
例如,在.env
文件中,您可以设置一个静态路径:
I18NEXT_DEFAULT_CONFIG_PATH=/path/to/project/apps/my-app/next-i18next.config.js
或者,您可以在next.config.js
中使用一个技巧来设置动态路径:
process.env.I18NEXT_DEFAULT_CONFIG_PATH = `${__dirname}/next-i18next.config.js`; // ... 其他导入 const { i18n } = require('./next-i18next.config'); // ... 其他代码 module.exports = { i18n, ... };
这意味着i18n配置文件将与next.config.js
在同一目录中,无论您当前的工作目录是什么。这对于例如使用nx
的单体仓库非常有帮助,当您从项目根目录启动应用程序,但应用程序位于apps/{appName}
中时。
注意 如果您的配置next-i18next.config.js
不在与next.config.js
相同的目录中,您必须手动(或通过自定义脚本)复制它。
如果您计划逐步将next-i18next添加到您的项目中,我们建议您将next-i18next.config
传递给appWithTranslation
以避免任何问题。
例如:
import nextI18nextConfig from '../../next-i18next.config'; //... export default appWithTranslation(MyApp, nextI18nextConfig);
更多信息请参见问题#2259。
一些无服务器PaaS可能无法找到您的翻译路径,需要额外配置。如果您在使用serverSideTranslations
时遇到文件系统问题,请将config.localePath
设置为使用path.resolve
。这里有一个示例。
对于Docker部署,请注意如果您使用Next.js文档中的Dockerfile
,不要忘记将next.config.js
和next-i18next.config.js
复制到Docker镜像中。
COPY --from=builder /app/next.config.js ./next.config.js
COPY --from=builder /app/next-i18next.config.js ./next-i18next.config.js
如果您选择使用内置i18next-fs-backend以外的i18next后端,您需要确保在调用t
函数之前加载翻译资源。
由于React suspense尚不支持SSR,这可以通过两种不同的方式解决:
1) 预加载命名空间:
设置ns
选项,如这个例子所示。这样做将确保在初始化时加载所有翻译资源。
2) 检查ready标志:
如果您不能或不想提供ns
数组,对t
函数的调用将导致命名空间即时加载。这意味着您需要通过检查ready === true
或props.tReady === true
来处理"未就绪"状态。如果不这样做,将导致在翻译加载之前渲染翻译,这将导致尽管翻译实际存在(只是尚未加载)却调用"save missing"。
这可以通过useTranslation钩子或withTranslation HOC来完成。
您是否尝试通过执行next export
生成静态HTML导出并遇到这个错误?
Error: i18n support is not compatible with next export. See here for more info on deploying: https://nextjs.org/docs/deployment
但是有一种方法可以通过next-language-detector的帮助来解决这个问题。
查看这篇博文和这个示例项目。
您有多种方式在子组件中使用t函数:
t
函数传递给子组件useTranslation
函数,如这个例子:https://github.com/i18next/next-i18next/blob/e6b5085b5e92004afa9516bd444b19b2c8cf5758/examples/simple/components/Footer.tsx#L6withTranslation
函数总的来说,您始终需要确保serverSideTranslations包含树中所需的所有命名空间。
感谢这些优秀的人(表情符号键):
<!-- ALL-CONTRIBUTORS-LIST:START - 请勿删除或修改此部分 --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/capellini"><img src="https://avatars3.githubusercontent.com/u/75311?v=4?s=100" width="100px;" alt="Rob Capellini"/><br /><sub><b>Rob Capellini</b></sub></a><br /><a href="https://github.com/i18next/next-i18next/commits?author=capellini" title="代码">💻</a> <a href="https://github.com/i18next/next-i18next/commits?author=capellini" title="测试">⚠️</a></td> <td align="center" valign="top" width="14.28%"><a href="https://en.kachkaev.ru"><img src="https://avatars3.githubusercontent.com/u/608862?v=4?s=100" width="100px;" alt="Alexander Kachkaev"/><br /><sub><b>Alexander Kachkaev</b></sub></a><br /><a href="#talk-kachkaev" title="演讲">📢</a> <a href="#question-kachkaev" title="回答问题">💬</a> <a href="#ideas-kachkaev" title="想法、规划和反馈">🤔</a> <a href="https://github.com/i18next/next-i18next/commits?author=kachkaev" title="代码">💻</a> <a href="https://github.com/i18next/next-i18next/commits?author=kachkaev" title="测试">⚠️</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kandelborg.dk"><img src="https://avatars1.githubusercontent.com/u/33042011?v=4?s=100" width="100px;" alt="Mathias Wøbbe"/><br /><sub><b>Mathias Wøbbe</b></sub></a><br /><a href="https://github.com/i18next/next-i18next/commits?author=MathiasKandelborg" title="代码">💻</a> <a href="#ideas-MathiasKandelborg" title="想法、规划和反馈">🤔</a> <a href="https://github.com/i18next/next-i18next/commits?author=MathiasKandelborg" title="测试">⚠️</a></td> <td align="center" valign="top" width="14.28%"><a href="http://lucasfeliciano.com"><img src="https://avatars3.githubusercontent.com/u/968014?v=4?s=100" width="100px;" alt="Lucas Feliciano"/><br /><sub><b>Lucas Feliciano</b></sub></a><br /><a href="#ideas-lucasfeliciano" title="想法、规划和反馈">🤔</a> <a href="https://github.com/i18next/next-i18next/pulls?q=is%3Apr+reviewed-by%3Alucasfeliciano" title="审查过的拉取请求">👀</a></td> <td align="center" valign="top" width="14.28%"><a href="http://www.fifteenprospects.com"><img src="https://avatars2.githubusercontent.com/u/6932550?v=4?s=100" width="100px;" alt="Ryan Leung"/><br /><sub><b>Ryan Leung</b></sub></a><br /><a href="https://github.com/i18next/next-i18next/commits?author=minocys" title="代码">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="http://nathanfriemel.com"><img src="https://avatars3.githubusercontent.com/u/1325835?v=4?s=100" width="100px;" alt="Nathan Friemel"/><br /><sub><b>Nathan Friemel</b></sub></a><br /><a href="https://github.com/i18next/next-i18next/commits?author=nathanfriemel" title="代码">💻</a> <a href="https://github.com/i18next/next-i18next/commits?author=nathanfriemel" title="文档">📖</a> <a href="#example-nathanfriemel" title="示例">💡</a> <a href="#ideas-nathanfriemel" title="想法、规划和反馈">🤔</a></td> <td align="center" valign="top" width="14.28%"><a href="https://isaachinman.com/"><img src="https://avatars.githubusercontent.com/u/10575782?v=4?s=100" width="100px;" alt="Isaac Hinman"/><br /><sub><b>Isaac Hinman</b></sub></a><br /><a href="#a11y-isaachinman" title="无障碍">️️️️♿️</a> <a href="#question-isaachinman" title="回答问题">💬</a> <a href="#audio-isaachinman" title="音频">🔊</a> <a href="#blog-isaachinman" title="博客文章">📝</a> <a href="https://github.com/i18next/next-i18next/issues?q=author%3Aisaachinman" title="错误报告">🐛</a> <a href="#business-isaachinman" title="业务发展">💼</a> <a href="https://github.com/i18next/next-i18next/commits?author=isaachinman" title="代码">💻</a> <a href="#content-isaachinman" title="内容">🖋</a> <a href="#data-isaachinman" title="数据">🔣</a> <a href="#design-isaachinman" title="设计">🎨</a> <a href="https://github.com/i18next/next-i18next/commits?author=isaachinman" title="文档">📖</a> <a href="#eventOrganizing-isaachinman" title="活动组织">📋</a> <a href="#example-isaachinman" title="示例">💡</a> <a href="#financial-isaachinman" title="财务">💵</a> <a href="#fundingFinding-isaachinman" title="寻找资金">🔍</a> <a href="#ideas-isaachinman" title="想法、规划和反馈">🤔</a> <a href="#infra-isaachinman" title="基础设施(托管、构建工具等)">🚇</a> <a href="#maintenance-isaachinman" title="维护">🚧</a> <a href="#mentoring-isaachinman" title="指导">🧑🏫</a> <a href="#platform-isaachinman" title="打包/移植到新平台">📦</a> <a href="#plugin-isaachinman" title="插件/实用程序库">🔌</a> <a href="#projectManagement-isaachinman" title="项目管理">📆</a> <a href="#research-isaachinman" title="研究">🔬</a> <a href="https://github.com/i18next/next-i18next/pulls?q=is%3Apr+reviewed-by%3Aisaachinman" title="审查过的拉取请求">👀</a> <a href="#security-isaachinman" title="安全">🛡️</a> <a href="#talk-isaachinman" title="演讲">📢</a> <a href="https://github.com/i18next/next-i18next/commits?author=isaachinman" title="测试">⚠️</a> <a href="#tool-isaachinman" title="工具">🔧</a> <a href="#translation-isaachinman" title="翻译">🌍</a> <a href="#tutorial-isaachinman" title="教程">✅</a> <a href="#userTesting-isaachinman" title="用户测试">📓</a> <a href="#video-isaachinman" title="视频">📹</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://locize.com/"><img src="https://avatars.githubusercontent.com/u/1086194?v=4?s=100" width="100px;" alt="Adriano Raiano"/><br /><sub><b>Adriano Raiano</b></sub></a><br /><a href="#a11y-adrai" title="无障碍">️️️️♿️</a> <a href="#question-adrai" title="回答问题">💬</a> <a href="#audio-adrai" title="音频">🔊</a> <a href="#blog-adrai" title="博客文章">📝</a> <a href="https://github.com/i18next/next-i18next/issues?q=author%3Aadrai" title="错误报告">🐛</a> <a href="#business-adrai" title="业务发展">💼</a> <a href="https://github.com/i18next/next-i18next/commits?author=adrai" title="代码">💻</a> <a href="#content-adrai" title="内容">🖋</a> <a href="#data-adrai" title="数据">🔣</a> <a href="#design-adrai" title="设计">🎨</a> <a href="https://github.com/i18next/next-i18next/commits?author=adrai" title="文档">📖</a> <a href="#eventOrganizing-adrai" title="活动组织">📋</a> <a href="#example-adrai" title="示例">💡</a> <a href="#financial-adrai" title="财务">💵</a> <a href="#fundingFinding-adrai" title="资金寻找">🔍</a> <a href="#ideas-adrai" title="想法、规划与反馈">🤔</a> <a href="#infra-adrai" title="基础设施(托管、构建工具等)">🚇</a> <a href="#maintenance-adrai" title="维护">🚧</a> <a href="#mentoring-adrai" title="指导">🧑🏫</a> <a href="#platform-adrai" title="打包/移植到新平台">📦</a> <a href="#plugin-adrai" title="插件/实用程序库">🔌</a> <a href="#projectManagement-adrai" title="项目管理">📆</a> <a href="#research-adrai" title="研究">🔬</a> <a href="https://github.com/i18next/next-i18next/pulls?q=is%3Apr+reviewed-by%3Aadrai" title="审查拉取请求">👀</a> <a href="#security-adrai" title="安全">🛡️</a> <a href="#talk-adrai" title="演讲">📢</a> <a href="https://github.com/i18next/next-i18next/commits?author=adrai" title="测试">⚠️</a> <a href="#tool-adrai" title="工具">🔧</a> <a href="#translation-adrai" title="翻译">🌍</a> <a href="#tutorial-adrai" title="教程">✅</a> <a href="#userTesting-adrai" title="用户测试">📓</a> <a href="#video-adrai" title="视频">📹</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/felixmosh"><img src="https://avatars.githubusercontent.com/u/9304194?v=4?s=100" width="100px;" alt="Felix Mosheev"/><br /><sub><b>Felix Mosheev</b></sub></a><br /><a href="#question-felixmosh" title="回答问题">💬</a> <a href="https://github.com/i18next/next-i18next/commits?author=felixmosh" title="代码">💻</a> <a href="#talk-felixmosh" title="演讲">📢</a> <a href="https://github.com/i18next/next-i18next/commits?author=felixmosh" title="测试">⚠️</a></td> <td align="center" valign="top" width="14.28%"><a href="https://soluble.io/pro"><img src="https://avatars.githubusercontent.com/u/259798?v=4?s=100" width="100px;" alt="Sébastien Vanvelthem"/><br /><sub><b>Sébastien Vanvelthem</b></sub></a><br /><a href="https://github.com/i18next/next-i18next/commits?author=belgattitude" title="代码">💻</a> <a href="https://github.com/i18next/next-i18next/commits?author=belgattitude" title="文档">📖</a> <a href="#example-belgattitude" title="示例">💡</a> <a href="#maintenance-belgattitude" title="维护">🚧</a> <a href="#userTesting-belgattitude" title="用户测试">📓</a></td> </tr> </tbody> </table> 本项目遵循 [all-contributors](https://github.com/kentcdodds/all-contributors) 规范。欢迎各种形式的贡献!本地化即服务 - locize.com
需要翻译管理工具吗?想要使用上下文编辑器编辑你的翻译吗?使用 i18next 维护者为你提供的原创工具!
使用 locize 可以直接支持 i18next 和 next-i18next 的未来发展。
字节跳动发布的AI编程神器IDE
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。
openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高 效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号