├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── i18nstorage │ ├── I18nStorageModule.java │ ├── I18nStoragePackage.java │ └── I18nStorageUtility.java ├── babel.config.js ├── example ├── .bundle │ └── config ├── .node-version ├── .watchmanconfig ├── Gemfile ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── i18nstorageexample │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── i18nstorageexample │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── release │ │ │ └── java │ │ │ └── com │ │ │ └── i18nstorageexample │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── File.swift │ ├── I18nStorageExample-Bridging-Header.h │ ├── I18nStorageExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── I18nStorageExample.xcscheme │ ├── I18nStorageExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── I18nStorageExampleTests │ │ ├── I18nStorageExampleTests.m │ │ └── Info.plist │ └── Podfile ├── metro.config.js ├── package.json ├── react-native.config.js ├── src │ ├── App.tsx │ ├── IsRTL.tsx │ ├── components │ │ ├── Credits.tsx │ │ ├── Input.tsx │ │ ├── Reset.tsx │ │ ├── TextNoWrap.tsx │ │ ├── Toggle.tsx │ │ ├── WrappedText.tsx │ │ └── index.ts │ └── translation │ │ └── index.tsx └── yarn.lock ├── ios ├── I18nStorage.h ├── I18nStorage.mm └── I18nStorage.xcodeproj │ └── project.pbxproj ├── lefthook.yml ├── package.json ├── react-native-i18n-storage.podspec ├── src ├── constants.ts ├── index.tsx ├── module.ts ├── services │ ├── android.ts │ ├── index.ts │ └── ios.ts ├── types.ts └── utils │ ├── createStoreObject.ts │ └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.18.1 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/i18nstorage/I18nStorageModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/src/main/java/com/i18nstorage/I18nStorageModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/i18nstorage/I18nStoragePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/src/main/java/com/i18nstorage/I18nStoragePackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/i18nstorage/I18nStorageUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/android/src/main/java/com/i18nstorage/I18nStorageUtility.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.node-version: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/i18nstorageexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/debug/java/com/i18nstorageexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/i18nstorageexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/java/com/i18nstorageexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/i18nstorageexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/java/com/i18nstorageexample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/release/java/com/i18nstorageexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/app/src/release/java/com/i18nstorageexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/I18nStorageExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/I18nStorageExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/I18nStorageExample.xcodeproj/xcshareddata/xcschemes/I18nStorageExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample.xcodeproj/xcshareddata/xcschemes/I18nStorageExample.xcscheme -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/Info.plist -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/I18nStorageExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExample/main.m -------------------------------------------------------------------------------- /example/ios/I18nStorageExampleTests/I18nStorageExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExampleTests/I18nStorageExampleTests.m -------------------------------------------------------------------------------- /example/ios/I18nStorageExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/I18nStorageExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/IsRTL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/IsRTL.tsx -------------------------------------------------------------------------------- /example/src/components/Credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/Credits.tsx -------------------------------------------------------------------------------- /example/src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/Input.tsx -------------------------------------------------------------------------------- /example/src/components/Reset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/Reset.tsx -------------------------------------------------------------------------------- /example/src/components/TextNoWrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/TextNoWrap.tsx -------------------------------------------------------------------------------- /example/src/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/Toggle.tsx -------------------------------------------------------------------------------- /example/src/components/WrappedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/WrappedText.tsx -------------------------------------------------------------------------------- /example/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/components/index.ts -------------------------------------------------------------------------------- /example/src/translation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/src/translation/index.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/I18nStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/ios/I18nStorage.h -------------------------------------------------------------------------------- /ios/I18nStorage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/ios/I18nStorage.mm -------------------------------------------------------------------------------- /ios/I18nStorage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/ios/I18nStorage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/package.json -------------------------------------------------------------------------------- /react-native-i18n-storage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/react-native-i18n-storage.podspec -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/services/android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/services/android.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/services/ios.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/createStoreObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/src/utils/createStoreObject.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './createStoreObject'; 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedrowaihi/react-native-i18n-storage/HEAD/yarn.lock --------------------------------------------------------------------------------