├── I18n.js ├── README.md ├── af.json ├── am.json ├── ar.json ├── bg.json ├── ca.json ├── cs.json ├── da.json ├── de.json ├── el.json ├── english.json ├── es.json ├── et.json ├── example ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── I18n │ ├── I18n.js │ ├── README.md │ ├── af.json │ ├── am.json │ ├── ar.json │ ├── bg.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── english.json │ ├── es.json │ ├── et.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hu.json │ ├── id.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── lt.json │ ├── lv.json │ ├── ms.json │ ├── nb.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── platform.languages.txt │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh.json │ └── zu.json ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── translate_test │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.js ├── index.android.js ├── index.ios.js ├── ios │ ├── translate_Test.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── translate_Test.xcscheme │ ├── translate_Test │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── translate_TestTests │ │ ├── Info.plist │ │ └── translate_TestTests.m └── package.json ├── fi.json ├── fil.json ├── fr.json ├── he.json ├── hi.json ├── hr.json ├── hu.json ├── id.json ├── it.json ├── ja.json ├── ko.json ├── lt.json ├── lv.json ├── ms.json ├── nb.json ├── nl.json ├── no.json ├── pl.json ├── platform.languages.txt ├── pt.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sr.json ├── sv.json ├── sw.json ├── th.json ├── tr.json ├── uk.json ├── vi.json ├── zh.json └── zu.json /I18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/I18n.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/README.md -------------------------------------------------------------------------------- /af.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /am.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ar.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /bg.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ca.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cs.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /da.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /de.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /el.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/english.json -------------------------------------------------------------------------------- /es.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /et.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/I18n/I18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/I18n/I18n.js -------------------------------------------------------------------------------- /example/I18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/I18n/README.md -------------------------------------------------------------------------------- /example/I18n/af.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/am.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ar.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/bg.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ca.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/cs.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/da.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "Willkommen zu React Native!" 3 | } 4 | -------------------------------------------------------------------------------- /example/I18n/el.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/I18n/english.json -------------------------------------------------------------------------------- /example/I18n/es.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/et.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/fi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/fil.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "Bienvenue à React Native!" 3 | } 4 | -------------------------------------------------------------------------------- /example/I18n/he.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/hi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/hr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/hu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/id.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/it.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ja.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ko.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/lt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/lv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ms.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/nb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/nl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/no.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/platform.languages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/I18n/platform.languages.txt -------------------------------------------------------------------------------- /example/I18n/pt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ro.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/sk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/sl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/sr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/sv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/sw.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/th.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/vi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/I18n/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "欢迎来到 React Native!" 3 | } 4 | -------------------------------------------------------------------------------- /example/I18n/zu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/translate_test/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/java/com/translate_test/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/translate_test/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/java/com/translate_test/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/app.js -------------------------------------------------------------------------------- /example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/index.android.js -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/index.ios.js -------------------------------------------------------------------------------- /example/ios/translate_Test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/translate_Test.xcodeproj/xcshareddata/xcschemes/translate_Test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test.xcodeproj/xcshareddata/xcschemes/translate_Test.xcscheme -------------------------------------------------------------------------------- /example/ios/translate_Test/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/translate_Test/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/translate_Test/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/translate_Test/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/translate_Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test/Info.plist -------------------------------------------------------------------------------- /example/ios/translate_Test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_Test/main.m -------------------------------------------------------------------------------- /example/ios/translate_TestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_TestTests/Info.plist -------------------------------------------------------------------------------- /example/ios/translate_TestTests/translate_TestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/ios/translate_TestTests/translate_TestTests.m -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/example/package.json -------------------------------------------------------------------------------- /fi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /fil.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /fr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /he.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hu.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /id.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /it.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ja.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ko.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ms.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /no.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /platform.languages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiaw/rn-translate-template/HEAD/platform.languages.txt -------------------------------------------------------------------------------- /pt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ro.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sw.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /th.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /vi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /zh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /zu.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------