@umituz/react-native-localization 3.7.20 → 3.7.22

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.7.20",
3
+ "version": "3.7.22",
4
4
  "type": "module",
5
5
  "description": "Generic localization system for React Native apps with i18n support",
6
6
  "main": "./src/index.ts",
@@ -14,6 +14,9 @@ import type { Language } from '../../domain/repositories/ILocalizationRepository
14
14
  * Provides current language, RTL state, language switching, and translation function
15
15
  */
16
16
  export const useLocalization = () => {
17
+ if (typeof __DEV__ !== 'undefined' && __DEV__) {
18
+ console.log('[useLocalization] Hook called');
19
+ }
17
20
  const store = useLocalizationStore();
18
21
  const { t } = useTranslationFunction();
19
22