@umituz/react-native-localization 3.5.31 → 3.5.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-localization",
3
- "version": "3.5.31",
3
+ "version": "3.5.32",
4
4
  "description": "Generic localization system for React Native apps with i18n support",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -89,8 +89,6 @@ async function translateObject(enObj, targetObj, targetLang, path = '', stats =
89
89
  targetObj[key][i] = translated;
90
90
  stats.count++;
91
91
  if (isNewKey) stats.newKeys.push(`${currentPath}[${i}]`);
92
- } else {
93
- console.log(` ⏭️ Skipped (universal word): ${currentPath}[${i}]`);
94
92
  }
95
93
 
96
94
  await delay(200);
@@ -115,8 +113,6 @@ async function translateObject(enObj, targetObj, targetLang, path = '', stats =
115
113
  targetObj[key] = translated;
116
114
  stats.count++;
117
115
  if (isNewKey) stats.newKeys.push(currentPath);
118
- } else {
119
- console.log(` ⏭️ Skipped (universal word): ${currentPath}`);
120
116
  }
121
117
 
122
118
  await delay(200);