For the complete documentation index, see llms.txt. This page is also available as Markdown.

XLIFF (.xliff)

Frontitude supports XLIFF 1.2 and 2.0.

Format is automatically detected based on the file extension, so there’s no need to specify the format type when using it. ✨

This format is supported by both frontitude pull and frontitude push.

Translations

<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>

Last updated

Was this helpful?