Ensure consistent terminology usage across the codebase, especially in localization files and technical documentation. When a term is established (whether in translation or technical context), maintain that same term throughout related files and contexts.
Key guidelines:
Example:
// Incorrect - Inconsistent terminology
{
"vectorStore": {
"embeddings": "埋め込み次元",
"dimensions": "ベクター次元" // Inconsistent with embeddings
}
}
// Correct - Consistent terminology
{
"vectorStore": {
"embeddings": "ベクター次元",
"dimensions": "ベクター次元" // Maintains consistency
}
}
This practice improves code maintainability, reduces confusion, and ensures a more professional user experience, especially in localized applications.
Enter the URL of a public GitHub repository