@umituz/react-native-localization 1.0.0
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/LICENSE +21 -0
- package/README.md +292 -0
- package/lib/domain/repositories/ILocalizationRepository.d.ts +17 -0
- package/lib/domain/repositories/ILocalizationRepository.d.ts.map +1 -0
- package/lib/domain/repositories/ILocalizationRepository.js +6 -0
- package/lib/domain/repositories/ILocalizationRepository.js.map +1 -0
- package/lib/index.d.ts +10 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +12 -0
- package/lib/index.js.map +1 -0
- package/lib/infrastructure/components/LocalizationProvider.d.ts +11 -0
- package/lib/infrastructure/components/LocalizationProvider.d.ts.map +1 -0
- package/lib/infrastructure/components/LocalizationProvider.js +14 -0
- package/lib/infrastructure/components/LocalizationProvider.js.map +1 -0
- package/lib/infrastructure/config/i18n.d.ts +7 -0
- package/lib/infrastructure/config/i18n.d.ts.map +1 -0
- package/lib/infrastructure/config/i18n.js +49 -0
- package/lib/infrastructure/config/i18n.js.map +1 -0
- package/lib/infrastructure/config/languages.d.ts +34 -0
- package/lib/infrastructure/config/languages.d.ts.map +1 -0
- package/lib/infrastructure/config/languages.js +200 -0
- package/lib/infrastructure/config/languages.js.map +1 -0
- package/lib/infrastructure/config/languagesData.d.ts +7 -0
- package/lib/infrastructure/config/languagesData.d.ts.map +1 -0
- package/lib/infrastructure/config/languagesData.js +36 -0
- package/lib/infrastructure/config/languagesData.js.map +1 -0
- package/lib/infrastructure/locales/en-US/animation.json +30 -0
- package/lib/infrastructure/locales/en-US/audio.json +56 -0
- package/lib/infrastructure/locales/en-US/datetime.json +140 -0
- package/lib/infrastructure/locales/en-US/emoji.json +29 -0
- package/lib/infrastructure/locales/en-US/errors.json +43 -0
- package/lib/infrastructure/locales/en-US/forms.json +38 -0
- package/lib/infrastructure/locales/en-US/general.json +56 -0
- package/lib/infrastructure/locales/en-US/icons.json +34 -0
- package/lib/infrastructure/locales/en-US/index.d.ts +757 -0
- package/lib/infrastructure/locales/en-US/index.d.ts.map +1 -0
- package/lib/infrastructure/locales/en-US/index.js +35 -0
- package/lib/infrastructure/locales/en-US/index.js.map +1 -0
- package/lib/infrastructure/locales/en-US/location.json +49 -0
- package/lib/infrastructure/locales/en-US/media.json +49 -0
- package/lib/infrastructure/locales/en-US/navigation.json +52 -0
- package/lib/infrastructure/locales/en-US/onboarding.json +76 -0
- package/lib/infrastructure/locales/en-US/settings.json +65 -0
- package/lib/infrastructure/locales/en-US/toast.json +38 -0
- package/lib/infrastructure/storage/AsyncStorageWrapper.d.ts +12 -0
- package/lib/infrastructure/storage/AsyncStorageWrapper.d.ts.map +1 -0
- package/lib/infrastructure/storage/AsyncStorageWrapper.js +29 -0
- package/lib/infrastructure/storage/AsyncStorageWrapper.js.map +1 -0
- package/lib/infrastructure/storage/LocalizationStore.d.ts +30 -0
- package/lib/infrastructure/storage/LocalizationStore.d.ts.map +1 -0
- package/lib/infrastructure/storage/LocalizationStore.js +90 -0
- package/lib/infrastructure/storage/LocalizationStore.js.map +1 -0
- package/package.json +64 -0
- package/src/domain/repositories/ILocalizationRepository.ts +18 -0
- package/src/index.ts +24 -0
- package/src/infrastructure/components/LocalizationProvider.tsx +21 -0
- package/src/infrastructure/config/i18n.ts +57 -0
- package/src/infrastructure/config/languages.ts +245 -0
- package/src/infrastructure/config/languagesData.ts +38 -0
- package/src/infrastructure/locales/en-US/animation.json +30 -0
- package/src/infrastructure/locales/en-US/audio.json +56 -0
- package/src/infrastructure/locales/en-US/datetime.json +140 -0
- package/src/infrastructure/locales/en-US/emoji.json +29 -0
- package/src/infrastructure/locales/en-US/errors.json +43 -0
- package/src/infrastructure/locales/en-US/forms.json +38 -0
- package/src/infrastructure/locales/en-US/general.json +56 -0
- package/src/infrastructure/locales/en-US/icons.json +34 -0
- package/src/infrastructure/locales/en-US/index.ts +36 -0
- package/src/infrastructure/locales/en-US/location.json +49 -0
- package/src/infrastructure/locales/en-US/media.json +49 -0
- package/src/infrastructure/locales/en-US/navigation.json +52 -0
- package/src/infrastructure/locales/en-US/onboarding.json +76 -0
- package/src/infrastructure/locales/en-US/settings.json +65 -0
- package/src/infrastructure/locales/en-US/toast.json +38 -0
- package/src/infrastructure/storage/AsyncStorageWrapper.ts +30 -0
- package/src/infrastructure/storage/LocalizationStore.ts +118 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"libraries": {
|
|
3
|
+
"lucide": "Lucide Icons",
|
|
4
|
+
"material": "Material Design",
|
|
5
|
+
"fontawesome": "FontAwesome",
|
|
6
|
+
"ionicons": "Ionicons"
|
|
7
|
+
},
|
|
8
|
+
"categories": {
|
|
9
|
+
"all": "All Icons",
|
|
10
|
+
"navigation": "Navigation",
|
|
11
|
+
"action": "Action",
|
|
12
|
+
"social": "Social",
|
|
13
|
+
"communication": "Communication",
|
|
14
|
+
"media": "Media",
|
|
15
|
+
"business": "Business",
|
|
16
|
+
"weather": "Weather",
|
|
17
|
+
"symbols": "Symbols",
|
|
18
|
+
"emoji": "Emoji"
|
|
19
|
+
},
|
|
20
|
+
"picker": {
|
|
21
|
+
"title": "Select Icon",
|
|
22
|
+
"search": "Search icons...",
|
|
23
|
+
"searchPlaceholder": "Search",
|
|
24
|
+
"noResults": "No icons found",
|
|
25
|
+
"selected": "Selected",
|
|
26
|
+
"selectLibrary": "Select Library",
|
|
27
|
+
"selectCategory": "Select Category"
|
|
28
|
+
},
|
|
29
|
+
"actions": {
|
|
30
|
+
"select": "Select",
|
|
31
|
+
"cancel": "Cancel",
|
|
32
|
+
"clear": "Clear Selection"
|
|
33
|
+
}
|
|
34
|
+
}
|