@concircle/i18n-ai-translator 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# @concircle/i18n-ai-translator
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<table>
|
|
4
|
+
<tr>
|
|
5
|
+
<td width="200" valign="top">
|
|
6
|
+
<img src="./assets/logo.png" alt="Concircle logo" />
|
|
7
|
+
</td>
|
|
8
|
+
<td valign="top">
|
|
9
|
+
AI-powered internationalization (i18n) translator for UI5 applications. Automatically translates <code>i18n.properties</code> files to multiple languages using OpenAI, with support for glossaries, placeholder preservation, and intelligent caching.
|
|
10
|
+
</td>
|
|
11
|
+
</tr>
|
|
12
|
+
</table>
|
|
4
13
|
|
|
5
14
|
## Features
|
|
6
15
|
|
|
@@ -20,16 +29,6 @@ AI-powered internationalization (i18n) translator for UI5 applications. Automati
|
|
|
20
29
|
npm install @concircle/i18n-ai-translator
|
|
21
30
|
```
|
|
22
31
|
|
|
23
|
-
### Install From Git In Another App
|
|
24
|
-
|
|
25
|
-
If you want to use the CLI from another application's `npm run` scripts without publishing to npm yet, install this package directly from your Git remote:
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
npm install -D git+ssh://git@github.com/DEIN-ORG/DEIN-REPO.git#main
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
This package runs `prepare` on Git-based installs, so the CLI is built automatically during installation.
|
|
32
|
-
|
|
33
32
|
Then add a script in the consuming app:
|
|
34
33
|
|
|
35
34
|
```json
|
package/package.json
CHANGED