-
|
Having typesafe is great. Thanks. However having google translate ready sentences in translation files would be great. For instance, "This_is_your_password" would hard to copy and paste translate and let translators edit or proofread. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
ivanhofer
May 29, 2022
Replies: 1 comment 1 reply
-
|
If I understand correctly you are referring to the key-based translations that are used in most examples. {
"password_label": "This is your password"
}You can choose any key you want. So you could also write: {
"This is your passsword": "This is your password"
}for your base translation and tranlslate it to other languages e.g. german: {
"This is your passsword": "Das ist dein Passwort"
}Was this your question? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ivanhofer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I understand correctly you are referring to the key-based translations that are used in most examples.
e.g.
{ "password_label": "This is your password" }You can choose any key you want. So you could also write:
{ "This is your passsword": "This is your password" }for your base translation and tranlslate it to other languages e.g. german:
{ "This is your passsword": "Das ist dein Passwort" }Was this your question?