XLIFF

Frontitude supports XLIFF 1.2 and 2.0.

Format is which are automatically detected by our Developer CLI, so there's no need to pass the format type when using it. ✨

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