Skip to main content
This action does not delete existing translations; instead, it overwrites translations with the same identifier or creates new ones.

By default, pulled translations are stored in the suprsend/translation/ directory, but you can change the destination using the -d, --dir flag. We recommend specifying a directory when working with multiple production or staging workspaces.

Syntax

suprsend translation pull [flags]

Flags

FlagDescriptionDefault
-h, --helpShow help for the command
-d, --dir stringOutput directory for translations
-f, --forceForce pull to default directory without prompting the user. Use it in your CI/CD pipeline to avoid manual intervention.
-m, --mode stringMode of translations to pull fromlive

Example

# Pull all live translations to default directory
suprsend translation pull

# Pull translations into custom directory path
suprsend translation pull --dir dev-environment/translations

# Pull translations from production workspace
suprsend translation pull --workspace production

# Pull draft translations
suprsend translation pull --mode draft

# Force pull to default directory without prompting
suprsend translation pull --force