Skip to content

Commit 42b3566

Browse files
committed
qns: update
1 parent 56e0b68 commit 42b3566

File tree

1 file changed

+1
-1
lines changed
  • packages/quiz/questions/designing-or-developing-for-multilingual-sites

1 file changed

+1
-1
lines changed

packages/quiz/questions/designing-or-developing-for-multilingual-sites/en-US.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Languages like English and French are written from left-to-right, top-to-bottom.
3636

3737
## Do not concatenate translated strings
3838

39-
Do not do anything like `"The date today is " + date`. It will break in languages with different word order. Use a template string with parameters substitution for each language instead. For example, look at the following two sentences in English and Chinese respectively: `I will travel on {% date %}` and `{% date %} 我会出发`. Note that the position of the variable is different due to grammar rules of the language.
39+
Do not do anything like `"The date today is " + date`. It will break in languages with different word order. Use a template string with parameters substitution for each language instead. For example, look at the following two sentences in English and Chinese respectively: `I will travel on {% date %}` and `我会在{% date %}出发`. Note that the position of the variable is different due to grammar rules of the language.
4040

4141
## Formatting dates and currencies
4242

0 commit comments

Comments
 (0)