Upload Translatable Strings
Add your translatable strings to Wordiy.
Upload Methods
1. File Upload
- Go to your project
- Click Upload Strings
- Select your file (JSON, YAML, CSV)
- Click Upload
Supported formats:
- JSON
- YAML
- CSV
- Properties files
2. Manual Entry
- Click + Add String
- Enter the string key and value
- Click Save
3. API Integration
Use the REST API to automatically sync strings from your codebase.
Format Examples
JSON
{
"welcome_message": "Welcome to our app",
"button_submit": "Submit",
"error_404": "Page not found"
}
YAML
welcome_message: Welcome to our app
button_submit: Submit
error_404: Page not found
CSV
key,value
welcome_message,Welcome to our app
button_submit,Submit
error_404,Page not found