> For the complete documentation index, see [llms.txt](https://developer.frontitude.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.frontitude.com/developer-cli/file-formats/xliff-.xliff.md).

# XLIFF (.xliff)

{% hint style="info" %}
Format is automatically detected based on the file extension, so there’s no need to specify the format type when using it. ✨
{% endhint %}

{% hint style="info" %}
This format is supported by both `frontitude pull` and `frontitude push`.
{% endhint %}

## Translations

```xml
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
  <file source-language="en" target-language="es" datatype="plaintext" original="file.ext">
    <body>
      <trans-unit id="info_tooltip.title">
        <source>No worries, you won’t be charged</source>
        <target>No te preocupes, no se te cobrará</target>
      </trans-unit>
      <trans-unit id="info_tooltip.paragraph">
        <source>You can review this order before it's final</source>
        <target>Puedes revisar este pedido antes de que sea definitivo</target>
      </trans-unit>
    </body>
  </file>
  <file source-language="en" target-language="de" datatype="plaintext" original="file.ext">
    <body>
      <trans-unit id="info_tooltip.title">
        <source>No worries, you won’t be charged</source>
        <target>Keine Sorge, es wird Ihnen nichts berechnet</target>
      </trans-unit>
      <trans-unit id="info_tooltip.paragraph">
        <source>You can review this order before it's final</source>
        <target>Sie können diese Bestellung überprüfen, bevor sie endgültig ist</target>
      </trans-unit>
    </body>
  </file>
  <file source-language="en" target-language="ja" datatype="plaintext" original="file.ext">
    <body>
      <trans-unit id="info_tooltip.title">
        <source>No worries, you won’t be charged</source>
        <target>心配無用、請求はされません</target>
      </trans-unit>
      <trans-unit id="info_tooltip.paragraph">
        <source>You can review this order before it's final</source>
        <target>注文が確定する前に確認できます</target>
      </trans-unit>
    </body>
  </file>
</xliff>

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.frontitude.com/developer-cli/file-formats/xliff-.xliff.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
