Adding Translations
Key Naming
Use dot notation for predictable structure:
auth.login.title
auth.login.submit
errors.network.timeoutWorkflow
- Add the key
- Add source language value
- Add descriptions for translator context
- Fill target locales
Validation Rules
- Keep keys lowercase and dot-separated
- Avoid ambiguous names like
text1orlabel2 - Preserve placeholders such as
{name}and{count}
Good Example
auth.login.title
auth.login.email_label
auth.login.submit_buttonLast updated on