lingo.dev 0.93.1 → 0.93.2
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 +27 -10
- package/build/cli.cjs +2 -2
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +2 -2
- package/build/cli.mjs.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
> [!NOTE]
|
|
2
|
-
> **Introducing
|
|
1
|
+
> [!NOTE]
|
|
2
|
+
> **Introducing Lingo.dev Compiler** - Make any React app multilingual at build time without changing your components. [Read the docs](https://lingo.dev/compiler).
|
|
3
3
|
|
|
4
4
|
<p align="center">
|
|
5
5
|
<a href="https://lingo.dev/compiler">
|
|
@@ -37,13 +37,25 @@ Lingo.dev is an open-source, i18n toolkit designed to help use LLMs for localiza
|
|
|
37
37
|
|
|
38
38
|
Lingo.dev includes:
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
1. **Lingo.dev CLI** - a CLI tool built to help translate apps and markdown content with lightning speed and accuracy. [Docs](https://lingo.dev/cli)
|
|
41
|
+
1. **Lingo.dev CI/CD** - a CI/CD integration for GitHub, GitLab, and Bitbucket built to keep translations up-to-date automatically as soon as new content is added. [Docs](https://lingo.dev/ci)
|
|
42
|
+
1. **Lingo.dev Compiler 🆕** - makes React app multilingual at build time without requiring changes to your existing components. [Docs](https://lingo.dev/compiler)
|
|
43
43
|
|
|
44
44
|
All tools are designed to help use LLM models for precise translation and localization, and to eliminate manual work.
|
|
45
45
|
|
|
46
|
-
##
|
|
46
|
+
## Lingo.dev Compiler Demo
|
|
47
|
+
|
|
48
|
+
See Lingo.dev Compiler in action:
|
|
49
|
+
|
|
50
|
+
[](https://youtu.be/sSo2ERxAvB4)
|
|
51
|
+
|
|
52
|
+
The Lingo.dev Compiler makes React apps multilingual at build time without requiring changes to your existing components.
|
|
53
|
+
|
|
54
|
+
Simply run the compiler and your app will support multiple languages automatically, using your existing LLM API key.
|
|
55
|
+
|
|
56
|
+
After watching the demo, check out the [docs](https://lingo.dev/compiler) to learn more.
|
|
57
|
+
|
|
58
|
+
## 🤝 Community
|
|
47
59
|
|
|
48
60
|
Lingo.dev is community-driven, so we welcome all contributions!
|
|
49
61
|
|
|
@@ -51,6 +63,15 @@ Have an idea for a new feature? Create a GitHub issue!
|
|
|
51
63
|
|
|
52
64
|
Want to contribute? Create a pull request!
|
|
53
65
|
|
|
66
|
+
Want to discuss your idea or get help? [Join us on Discord!](https://lingo.dev/go/discord)
|
|
67
|
+
|
|
68
|
+
## Star History
|
|
69
|
+
|
|
70
|
+
If you like the work we're doing, consider giving us a ⭐️ to help us reach 3,000 stars! 🌟
|
|
71
|
+
|
|
72
|
+
[](https://www.star-history.com/#lingodotdev/lingo.dev&Date)
|
|
73
|
+
|
|
74
|
+
|
|
54
75
|
## 🌐 Readme in other languages
|
|
55
76
|
|
|
56
77
|
- [English](https://github.com/lingodotdev/lingo.dev)
|
|
@@ -67,7 +88,3 @@ Want to contribute? Create a pull request!
|
|
|
67
88
|
- [Bengali](/readme/bn.md)
|
|
68
89
|
|
|
69
90
|
Don't see your language? Just add a new language code to the [`i18n.json`](./i18n.json) file and open a PR!
|
|
70
|
-
|
|
71
|
-
## 💬 Talk to us
|
|
72
|
-
|
|
73
|
-
Have feedback, feature requests, bug reports or other suggestions? [Talk to us on Discord!](https://lingo.dev/go/discord)
|
package/build/cli.cjs
CHANGED
|
@@ -6580,7 +6580,7 @@ async function renderHero() {
|
|
|
6580
6580
|
// package.json
|
|
6581
6581
|
var package_default = {
|
|
6582
6582
|
name: "lingo.dev",
|
|
6583
|
-
version: "0.93.
|
|
6583
|
+
version: "0.93.2",
|
|
6584
6584
|
description: "Lingo.dev CLI",
|
|
6585
6585
|
private: false,
|
|
6586
6586
|
publishConfig: {
|
|
@@ -6681,7 +6681,7 @@ var package_default = {
|
|
|
6681
6681
|
"@ai-sdk/openai": "^1.3.22",
|
|
6682
6682
|
"@babel/generator": "^7.27.1",
|
|
6683
6683
|
"@babel/parser": "^7.27.1",
|
|
6684
|
-
"@babel/traverse": "^7.
|
|
6684
|
+
"@babel/traverse": "^7.26.7",
|
|
6685
6685
|
"@babel/types": "^7.27.1",
|
|
6686
6686
|
"@datocms/cma-client-node": "^4.0.1",
|
|
6687
6687
|
"@gitbeaker/rest": "^39.34.3",
|