Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mineschan/locomobileexport
An exporter script for Localise.biz projects for iOS and Android projects
https://github.com/mineschan/locomobileexport
android automation bash ios localisation localization localization-management shell-script
Last synced: 4 months ago
JSON representation
An exporter script for Localise.biz projects for iOS and Android projects
- Host: GitHub
- URL: https://github.com/mineschan/locomobileexport
- Owner: mineschan
- License: mit
- Created: 2017-11-06T08:55:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T03:13:39.000Z (over 5 years ago)
- Last Synced: 2023-08-09T22:13:32.080Z (over 1 year ago)
- Topics: android, automation, bash, ios, localisation, localization, localization-management, shell-script
- Language: Shell
- Size: 46.9 KB
- Stars: 8
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LocoMobileExport
An exporter script for Localise.biz projects for iOS and Android projects## What is LocoMobileExport
```TODO```
## How to use it?
### iOS via CocoaPods
Add this to your Podfile, then run ```pod install```
```pod 'LocoMobileExport'```
To integrate automatic update the .strings files when you build the project everytime, please follow below
steps:1. Go to `YOUR TARGET` -> `Build Settings`, add an `User Defined Settings`
2. Set key to `LOCO_API_KEY` and paste in the API Key value from your Localise.biz project.
3. Navigate to `Build Phases`, add a run script.```bash
SCRIPT=$PODS_ROOT/LocoMobileExport/Sources/auto_export.sh#Need to config the options, see below
$SCRIPT ios --key $LOCO_API_KEY --map 'en=en' --map 'zh=zh-Hant' --output "$PROJECT_DIR/{path_to_lproj_dir}}"
```4. Build the project and see the magic!
### Android via Gradle task & Shell script
1. Download the latest release, unzip it to your project root or anywhere you prefer.
2. Create a bash script in your project root, e.g. `updateLoco.sh`
3. Make it executable by `chmod +x updateLoco.sh`
4. Paste script and modify it to match your project```bash
KEY=YOUR_API_KEY_HERE #1)Change this
SCRIPT=LocoMobileExport/Sources/auto_export.sh #2)..and this#3)..and the map arguments below
$SCRIPT android --key $KEY --map "en_HK=values" --output "${PWD}/app/src/main/res"
```5. Add these lines in your `Build.gradle`
```gradle
task locoExport(type: Exec) {
doFirst {
workingDir rootProject.projectDir
commandLine "./updateLoco.sh"
}
}
//run task before every build
preBuild.dependsOn(locoExport)//or you can choose to update loco when you clean the project
//clean.dependsOn(locoExport)
```## Options
Option | Explanation
------- | -------
{Platform} | `ios` or `android`
--key | Provide the project API Key from localise.biz
--output | Specific the path of where the `.lproj` folder is e.g. `--output "$PROJECT_DIR/MyApp"`
--map (iOS) | `en_US` on localise.biz exports, `en.lproj` in the xcode project, use `--map 'en_US=en'`, can map as many as you want to meet your project setup.
--map (Android) | `en_US` on localise.biz exports, `values` in the res directory, use `--map 'en_US=values'`, can map as many as you want to meet your project setup.
--tags (optional) | Coma separated Loco tags
--plurals (optional) | `true` if resources should be exported as plural resource file
--name (optional) | The name of the strings file. Default is `localizable`