Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
361 views
in Technique[技术] by (71.8m points)

reactjs - How to add formatting to react-i18next?

This seems insane, but I wasn't really able to find a good solution on this:

Assume you have the following translation file:

en.json

{
  stuff: "<p> random text <b>more random text</b>. more random text {{_distance}}) even more random text <b>and more</b> random text</p>"
}

Now I can call this like so:

<div dangerouslySetInnerHTML={{ __html: t('stuff', { _distance }) }} />

This is pretty dangerous, especially in a case where I want to have external employees work on my translation files. The documentation talks of some seemingly-random replacement gags:

translations: {
  stuff: "<1> random text <3>more random text</3>. more random text {{_distance}}) even more random text <7>and more</7> random text</1>"
}

I guessed the replacements tags for the example. But even if they were correct. Again some external translator would not be able to provide formatted text in his language.

What is the best way to go about this?

question from:https://stackoverflow.com/questions/65873138/how-to-add-formatting-to-react-i18next

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...