> ## Documentation Index
> Fetch the complete documentation index at: https://developer.watson-orchestrate.ibm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Multi-language support overview

Agentic workflows support multi-language configurations for user activities. Configure target languages in your agentic workflow code, export translatable text to CSV files, add translations, and import them back using the ADK CLI.

| Category                   | What gets translated                                                                                                                                       | What does NOT get translated                                     |
| -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- |
| **User activities**        | Field labels and display names<br />Help text and placeholder text<br />Form instructions<br />Button labels<br />Choice option labels<br />Error messages | User input<br />Dynamic content from variables<br />Tool outputs |
| **Agentic workflow logic** | -                                                                                                                                                          | Agentic workflow expressions<br />Conditions<br />Variable names |
| **Metadata**               | -                                                                                                                                                          | Tool names<br />Tool descriptions<br />Agentic workflow names    |

## Supported locale codes

* `en`: English
* `fr`: French
* `es`: Spanish
* `de`: German
* `it`: Italian
* `ja`: Japanese
* `ko`: Korean
* `zh-CN`: Chinese (Simplified)
* `zh-TW`: Chinese (Traditional)
* `pt-BR`: Portuguese (Brazilian)

## Steps

<Steps>
  <Step title="Configure target locales">
    Define target languages in your agentic workflow code using `aflow.target_locales(['fr', 'es'])`. For details, see [Configuring target locales](./multi_language_configuration).
  </Step>

  <Step title="Import the agentic workflow">
    Import your agentic workflow into watsonx Orchestrate using the ADK CLI. For details, see [Managing tools](/tools/manage_tool).
  </Step>

  <Step title="Manage translations">
    Export translatable text to CSV, add translations, and import them back. For details, see [Managing translations](./multi_language_translations).
  </Step>
</Steps>
