lingo.dev 0.102.2 → 0.102.4
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 +1 -1
- package/build/cli.cjs +3 -3
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +3 -3
- package/build/cli.mjs.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -158,6 +158,6 @@ If you like what we're doing, give us a ⭐ and help us reach 3,000 stars! 🌟
|
|
|
158
158
|
|
|
159
159
|
## 🌐 Readme in other languages
|
|
160
160
|
|
|
161
|
-
[English](https://github.com/lingodotdev/lingo.dev) • [中文](/readme/zh-Hans.md) • [日本語](/readme/ja.md) • [한국어](/readme/ko.md) • [Español](/readme/es.md) • [Français](/readme/fr.md) • [Русский](/readme/ru.md) • [Deutsch](/readme/de.md) • [Italiano](/readme/it.md) • [العربية](/readme/ar.md) • [हिन्दी](/readme/hi.md) • [বাংলা](/readme/bn.md) • [فارسی](/readme/fa.md)
|
|
161
|
+
[English](https://github.com/lingodotdev/lingo.dev) • [中文](/readme/zh-Hans.md) • [日本語](/readme/ja.md) • [한국어](/readme/ko.md) • [Español](/readme/es.md) • [Français](/readme/fr.md) • [Русский](/readme/ru.md) • [Українська](/readme/uk-UA.md) • [Deutsch](/readme/de.md) • [Italiano](/readme/it.md) • [العربية](/readme/ar.md) • [हिन्दी](/readme/hi.md) • [বাংলা](/readme/bn.md) • [فارسی](/readme/fa.md)
|
|
162
162
|
|
|
163
163
|
Don't see your language? Add it to [`i18n.json`](./i18n.json) and open a PR!
|
package/build/cli.cjs
CHANGED
|
@@ -2466,14 +2466,14 @@ function createXcodeXcstringsLoader(defaultLocale) {
|
|
|
2466
2466
|
});
|
|
2467
2467
|
}
|
|
2468
2468
|
function _removeLocale(input2, locale) {
|
|
2469
|
-
const {
|
|
2469
|
+
const { strings } = input2;
|
|
2470
2470
|
const newStrings = _lodash2.default.cloneDeep(strings);
|
|
2471
2471
|
for (const [key, value] of Object.entries(newStrings)) {
|
|
2472
2472
|
if (_optionalChain([value, 'access', _119 => _119.localizations, 'optionalAccess', _120 => _120[locale]])) {
|
|
2473
2473
|
delete value.localizations[locale];
|
|
2474
2474
|
}
|
|
2475
2475
|
}
|
|
2476
|
-
return {
|
|
2476
|
+
return { ...input2, strings: newStrings };
|
|
2477
2477
|
}
|
|
2478
2478
|
|
|
2479
2479
|
// src/cli/loaders/prettier.ts
|
|
@@ -9917,7 +9917,7 @@ async function renderHero2() {
|
|
|
9917
9917
|
// package.json
|
|
9918
9918
|
var package_default = {
|
|
9919
9919
|
name: "lingo.dev",
|
|
9920
|
-
version: "0.102.
|
|
9920
|
+
version: "0.102.4",
|
|
9921
9921
|
description: "Lingo.dev CLI",
|
|
9922
9922
|
private: false,
|
|
9923
9923
|
publishConfig: {
|