Magic Translate
  • Getting started
  • Clients
    • React
      • The <T> component
      • The useT hook
      • Next.js
    • React SSR
      • The translate function
  • FAQs
    • How fast is the translation
    • How is the usage calculated
    • What are the limitations
    • What happens when the monthly limit is reached?
    • What are the available languages?
Powered by GitBook
On this page
  1. FAQs

What are the limitations

Maximum translated text length

Currently, you can not translate more than 10 KB of text within a single translation component. 10 KB of text, depending on the language, is between 2500 - 10000 characters. If you need to translate more text than that, please split the text into multiple translation components like so

{/* instead of this */}
<T>... very long text ...</T>

{/* do this insead */}
<T>... long text part 1 ...</T>
<T>... long text part 2 ...</T>
PreviousHow is the usage calculatedNextWhat happens when the monthly limit is reached?

Last updated 1 year ago