Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ The structure of this JSON is described in the example:
"CZ": "cs",
"FR-FR": "fr-rFR" // E.g. the column name is "FR-FR", the localizations will be saved to "values-fr-rFR" folder
},
"resourcesFolderPath": "libraries/translations/src/main/res" // Relative path to your "res" folder with respect to json configuration path
"supportEmptyStrings": false // Enables to support empty strings in the localization sheet
"resourcesStructure" : "ANDROID" // Structure of the generated resources files, could be ANDROID or MOKO_RESOURCES
"resourcesFolderPath": "libraries/translations/src/main/res", // Relative path to your "res" folder with respect to json configuration path
"supportEmptyStrings": false, // Enables to support empty strings in the localization sheet
"resourcesStructure" : "ANDROID", // Structure of the generated resources files, could be ANDROID or MOKO_RESOURCES
"escapeQuotes" : true // Whether escape quotes or not, disable this when working with Compose Resources
}
```

Expand Down Expand Up @@ -88,6 +89,8 @@ test it in your project with the localizerSettings.xml like this:
```

## Changelog
- `1.3.0`
- Support for Compose Resources quote escaping strategy
- `1.2.2`
- Support for Moko-resources localization file structure
- `1.2.1`
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}

group 'cz.ackee.localizer'
version '1.2.2'
version '1.3.0'

def targetVersion = "2022.3.1.18"

Expand Down
Loading