Android resolves localized strings at runtime by looking up resource files insideDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ovolab/fastlane-plugin-ovo_poeditor/llms.txt
Use this file to discover all available pages before exploring further.
values-{locale} directories under res/. The default locale’s strings live in the root values/ directory. The plugin mirrors this convention exactly: it creates one directory per language, writes your strings.xml file into each one, and places the designated default language in the root values/ folder so Android falls back to it automatically when no better locale match is found.
Output directory layout
Given the example below withdefault_language: "en", the plugin produces:
| Language | Output path |
|---|---|
Matches default_language | {output_dir}/values/{file_name} |
| Any other language | {output_dir}/values-{language}/{file_name} |
language_map entry exists for a language, the mapped value is used instead of the raw language code when building the values-{…} folder name. See Language Mapping for details.
Fastfile example
Fastfile
The unquoted_strings parameter
Android’s resource compiler treats apostrophes and quotation marks inside string values as special characters. POEditor can export strings with or without surrounding quotes depending on your preference. The unquoted_strings parameter controls this:
| Value | Behavior |
|---|---|
0 (default) | Strings are exported with quotes preserved |
1 | Strings are exported without quotes (unquoted) |
Fastfile
Tips and notes
The
default_language parameter is optional. If you omit it, no language receives the special values/ placement — every language will be written to a values-{language}/ directory, including languages that would normally serve as the app’s fallback locale. Make sure your Android project has a values/strings.xml from another source if you rely on a default fallback.Related pages
- Language Mapping — translate POEditor codes to Android folder names
- Fallback Languages — fill in missing strings from another language
- Action Parameters — full reference for every available option
- File Formats — all supported export format identifiers