Lightweight, simple, flexible, automatic translation internationalization tool for Solid
English | 简体中文
To make internationalization easy and enjoyable 😄💪🏻
- solid-js >= 1.0.0
- i18n-pro >= 2.0.0
- lightweight: +
- The following features are inherited from i18n-pro
- simple
- flexible
- automatic-translation
- keyless
This library is implemented based on i18n-pro combined with Solid
's context
feature
Mainly composed of 2
parts
- I18nProvider
- useI18n
I18nProvider:Configure container components for internationalization initialization properties
useI18n:Hook method for obtaining internationalization API and state
A simple example is as follows
import { render } from 'solid-js/web'
import { I18nProvider, useI18n } from '@i18n-pro/solid'
function App() {
const { t } = useI18n()
return <>{t('hello world')}</>
}
render(
() => (
<I18nProvider
namespace="i18n-example"
locale="en"
langs={{
zh: {
'hello world': '你好世界',
},
ja:{
"hello world": "こんにちは世界",
},
}}
>
<App />
</I18nProvider>
),
document.getElementById('root'),
)
To avoid unnecessary duplicate document content, some of the documents in this library are linked to the content in
i18n-pro
Thei18n-pro
related link in the current document is based on the2.1.0
version. If you are using a different version, you need to check the document corresponding to the version you are using to avoid inconsistent usage
- Current Library
- i18n-pro
Copyright (c) 2023-present Eyelly Wu