https://github.com/i18n-pro/solid
Lightweight, simple, flexible, automatic translation internationalization tool for Solid(适用于 Solid 的轻量、简单、灵活、自动翻译的国际化工具)
https://github.com/i18n-pro/solid
auto-translation automatic-translation i18n i18n-pro machine-translation solid solid-i18n translator
Last synced: about 2 months ago
JSON representation
Lightweight, simple, flexible, automatic translation internationalization tool for Solid(适用于 Solid 的轻量、简单、灵活、自动翻译的国际化工具)
- Host: GitHub
- URL: https://github.com/i18n-pro/solid
- Owner: i18n-pro
- License: mit
- Created: 2023-02-11T12:36:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-11T16:43:28.000Z (about 1 year ago)
- Last Synced: 2025-04-08T06:03:10.550Z (3 months ago)
- Topics: auto-translation, automatic-translation, i18n, i18n-pro, machine-translation, solid, solid-i18n, translator
- Language: TypeScript
- Homepage:
- Size: 267 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-solid-js - i18n-pro/solid - Lightweight, simple, flexible, automatic translation internationalization tool for Solid (📦 Components & Libraries / Internationalisation)
README
Lightweight, simple, flexible, automatic translation internationalization tool for Solid
English | [简体中文](https://github.com/i18n-pro/solid/blob/v1.0.1/README_zh-CN.md)
[](https://www.npmjs.com/package/@i18n-pro/solid "npm")
[](https://www.npmjs.com/package/@i18n-pro/solid "npm")[](https://github.com/i18n-pro/solid/stargazers "github-stars")
[](https://github.com/i18n-pro/solid/commits/main "last-commit")
[](https://github.com/i18n-pro/solid/issues "github-issues")
[](https://codecov.io/gh/i18n-pro/solid "codecov")
Table of Contents
[Vision](#vision)
[Requirement](#requirement)
[Features](#features)
[Live Demo](#live-demo)
[Principle](#principle)
[License](#license)# Vision
To make internationalization easy and enjoyable 😄💪🏻
# Requirement* solid-js >= **1.0.0**
* i18n-pro >= **2.0.0**# Features
* **lightweight**:[](https://bundlephobia.com/package/i18n-pro "i18n-pro-bundlesize") + [](https://bundlephobia.com/package/@i18n-pro/solid "bundlesize")
* The following features are inherited from [i18n-pro](https://github.com/i18n-pro/core "i18n-pro")
* **simple**
* **flexible**
* **automatic-translation**
* **keyless**# Live Demo
* [Open in CodeSandbox](https://codesandbox.io/p/github/i18n-pro/solid-demo/main?file=README.md)
* [](https://stackblitz.com/github/i18n-pro/solid-demo?file=README.md)# Principle
This library is implemented based on [i18n-pro](https://github.com/i18n-pro/core "i18n-pro") combined with `Solid` 's `context` featureMainly composed of `2` parts
* I18nProvider
* useI18n**I18nProvider**:Configure container components for internationalization initialization properties
**useI18n**:Hook method for obtaining internationalization API and stateA simple example is as follows
```typescript
import { render } from 'solid-js/web'
import { I18nProvider, useI18n } from '@i18n-pro/solid'function App() {
const { t } = useI18n()return <>{t('hello world')}>
}render(
() => (
),
document.getElementById('root'),
)
```# Help Document
>To avoid unnecessary duplicate document content, some of the documents in this library are linked to the content in `i18n-pro`
The `i18n-pro` related link in the current document is based on the `2.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
* [Quick Start](https://github.com/i18n-pro/solid/blob/v1.0.1/docs/dist/USAGE.md)
* [API](https://github.com/i18n-pro/solid/blob/v1.0.1/docs/dist/API.md)
* [Changelog](https://github.com/i18n-pro/solid/blob/v1.0.1/docs/dist/CHANGELOG.md)
* i18n-pro
* [Command Line](https://github.com/i18n-pro/core/blob/v2.1.0/docs/dist/COMMAND_LINE.md)
* [Matching Rules](https://github.com/i18n-pro/core/blob/v2.1.0/docs/dist/MATCH_RULE.md)
* [Q&A](https://github.com/i18n-pro/core/blob/v2.1.0/docs/dist/Q&A.md)
* [Translation Log](https://github.com/i18n-pro/core/blob/v2.1.0/docs/dist/OUTPUT_LOG.md)# License
[MIT](./LICENSE)Copyright (c) 2023-present Eyelly Wu