Ensure that all text strings in locale-specific files are properly translated into their respective languages. Leaving untranslated English text in non-English locale files creates an inconsistent user experience and reduces the effectiveness of localization efforts.
Ensure that all text strings in locale-specific files are properly translated into their respective languages. Leaving untranslated English text in non-English locale files creates an inconsistent user experience and reduces the effectiveness of localization efforts.
When adding new features or UI elements:
Example of a problem:
// webview-ui/src/i18n/locales/es/mcp.json
{
"serverStatus": {
"retrying": "Reintentando...",
"retryConnection": "Reintentar conexión",
"disabled": "Server is disabled" // English text in Spanish file
}
}
Correct implementation:
// webview-ui/src/i18n/locales/es/mcp.json
{
"serverStatus": {
"retrying": "Reintentando...",
"retryConnection": "Reintentar conexión",
"disabled": "Servidor deshabilitado" // Properly translated to Spanish
}
}
Enter the URL of a public GitHub repository