Frontitude Developer Docs
FrontitudeGuidesWhat's new
  • 👋Hello, developer
  • 🔢Quick start
  • Deverloper CLI
    • Installation
    • Authentication
    • Commands
    • Example app
    • Supported client-side frameworks
    • File formats
      • JSON (Web)
      • XLIFF
      • Android XML
      • Apple Strings (.strings)
      • ARB (Flutter)
  • Webhooks
    • Introduction
    • Setting up Webhooks
    • Using Webhooks
    • Events
    • Example webhook handler
  • Security and Compliance
    • Security statement
    • Data collection statement
  • Useful links
    • Demo React app
    • Figma plugin
    • Frontitude guides
    • Product updates
Powered by GitBook
On this page

Was this helpful?

  1. Deverloper CLI
  2. File formats

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

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>
PreviousJSON (Web)NextAndroid XML

Last updated 10 months ago

Was this helpful?