Hello there! I would like to introduce you to an impressive i18n plugin that has proven to be very useful for our projects. I believe it may also meet your needs and I highly recommend trying it out.
If you found it helpful, a star would be a great feedback.i18n-plan
i18n-plan
i18n-plan
is an easy-to-use internationalization plugin for Javascript, supports both nodejs and browser-based applications, and should work with any Javascript framework.
What i18n-plan
can do
- Use a sample commands provided to generate and update your local language files
- Provide export and import features to enable efficient management of local language files. Your local language files can be export as
.xls
files , and can update by import.xls
files. This feature allows for seamless collaboration on manage the local languages files. - Out-of-the-box automatic translation feature powered by ChatGPT or YouDao is currently integrated. Additionally, We provide a custom option that allows you to integrate any other translator of your choice into
i18n-plan
procedures. - retrieve the text content using its corresponding key in your business logical.
- Use template strings to inject dynamic data into translations.
Getting started
install
yarn add i18n-plan
or
npm -i i18n-plan
Create a Configuration file
- The presence of a
I18NPLAN.config.cjs
file in a directory indicates that the directory is a project's root. - The following content is a simple case. Here is an example configuration with detailed explanation for each setting item
// The file should be export by `module.exports`
module.exports = {
lans: ["en-US", "es-MX"],
refer: "en-US",
output: "build/locales"
}
Manage locale language files
- After creating the Configuration file in your project's root directory, you are now able to use it.
- you can proceed to create
.lan.json
files within your project. The naming convention of.lan.json
ini18n-plan
is specifically used to identify files containing language translations.
|-- project
| |
| |-- build
| | |-- locales
| |
| |-- page1
| | |-- index.js
| | |-- index.css
| | +-- page1.lan.json // new
| |
| `-- page2
| |-- index.js
| |-- index.css
| +-- page2.lan.json // new
- we have created two
.lan.json
:page1.lan.json
andpage2.lan.json
, and assuming that the content of the two files are:
// page1.lan.json
{
"name": "hello, I'm the page one",
"templateString": "what's the time? It's ${date}"
}
// page2.lan.json
{
"name": "while I'm the page two"
}
- Now you can execute
npx i18n-plan
command in the terminal to generate locale files. See details about import / export / translation - During the collection process, the process will search for all files that match the
.lan.json
format, starting from the root directory. With the configuration specified above, two files will be generated in thebuild/locales
directory:en-US.json
andes-MX.json
. - The name of
lan.json
will takes as thekey
for it's collection. if two or more.lan.json
file with the same name, they will be merged.
{
"page1": {
"name": "hello, I'm the page one",
"templateString": "what's the time? It's ${date}"
},
"page2": {
"name": "while I'm the page two"
}
}
translation
- Set
auto
to true to enable translation feature - Here is the detailed explanation for each setting item
{
translation: {
auto: true,
retryTime: 0,
interval: 1000,
inBatch: false,
resolve: {}
},
}
- You can now configure your translator settings in
resolve
.
ChatGPT
- Api key and Organization key are required.
- If you are in a district where you need to use a VPN to access ChatGPT, then
proxy
setting is required.
interface TranslationResolveChatgpt {
translator: "chatgpt"
rules?: string[]
options: {
organization: string
apiKey: string
}
proxy?: tunnel.ProxyOptions
}
resolve: {
translator: "chatgpt",
rules: [],
options: {
organization: "",
apiKey: "",
},
proxy: {
host: "127.0.0.1",
port: 10809,
},
},
YouDao translation
- key and appkey are required.
interface TranslationResolveYoudao {
translator: "youdao"
options: {
key: string
appkey: string
api?: string
vocabId?: string
}
}
resolve: {
translator: "youdao",
options: {
key: "",
appkey: "",
},
},
Custom translator integration
- You can integrate your preferred translation service into
i18n-plan
procedures, like DeepL or Google
type Translator= (props: { config: Config; from: string; to: string; content: I18NPLAN.TranslationContent[] }) => Promise<I18NPLAN.TranslationContent[] | TranslationError>
type TranslationContent = { key: string[]; value: string; lanName: string }
type TranslationError = {
errorCode: number
error: any
}
resolve: {
custom: ({ config, from, to, content }) => {
return new Promise((resolve, reject) => {
resolve("my translation")
})
},
}
Usage in your app
- After generating our language resources as described above, we can now access and utilize them in our business logic.
setLan
- This function is used to save language resources which can be imported. If package size is a concern, it is recommended to use
Ajax request
to dynamically fetch the language resources. - You can invoke this function multiple times to merge language resources.
- It has two parameters:
Parameter | Description |
---|---|
lanRes | it expects a language resources in json format |
isReset | it determines if the language resources should be reset or merged. default: false
|
function setLan(lanRes: I18NPLAN.Lan, isRestore?: boolean): I18NPLAN.Lan
getLan
- This function returns the value by its path
- It has two parameters:
Parameter | Description |
---|---|
key | the path of key |
params | an object should be provided if the text contains template formats |
function getLan(key: string | string[], params?: Record<string, I18NPLAN.BasicLanValue>): I18NPLAN.BasicLanValue | undefined
example
import { setLan, getLan } from "i18n-plan"
console.log(
setLan({
page1: {
name: "hello, I'm the page one",
templateString: "what's the time? It's ${date}",
},
})
)
console.log(getLan("page1,templateString", { date: new Date().toLocaleTimeString() })) // what's the time? It's 11:28:45 AM
console.log(
setLan({
page2: {
name: "while I'm the page two",
},
})
)
console.log(getLan("page2,name")) // while I'm the page two
console.log(setLan({}, true)) // {}
Commands
- Collect and Update Locale Language Files
This command will search for the .lan.json
files in the root directory, and merges all the items within the files to generate the reference language file. This file will serve as the basis for updating other languages.
npx i18n-plan
- To translate the corresponding content of the giving keys
// If you want to translate the keys for the `name` of `page1` and `page2`
{
"page1": {
"name": "hello, I'm the page one",
"templateString": "now is ${date}"
},
"page2": {
"name": "while I'm the page two",
}
}
// then expected file content be like:
{
"keys": ["page1,name", "page2,name"]
}
npx i18n-plan translate path=<an absolute path which refer to a json file>
- export and import
npx i18n-plan export path=<an absolute path which refer to a .xls file>
npx i18n-plan import path=<an absolute path which refer to a .xls file>
Top comments (0)