feat(i18n): mention @ file references in chat input placeholder - #11984
Conversation
| "prompt.placeholder.connecting": "Sunucuya bağlanılıyor...", | ||
| "prompt.placeholder.default": "Bir mesaj yazın... (Göndermek için Enter, yeni satır için Shift+Enter)", | ||
| "prompt.placeholder.default": | ||
| "Bir mesaj yazın, dosyalardan bahsetmek için @ ... (Göndermek için Enter, yeni satır için Shift+Enter)", |
There was a problem hiding this comment.
SUGGESTION: Stray space before the ellipsis in the Turkish translation
All 19 other locale translations place the trailing ... directly after the last word (e.g. ... to mention files...), but this one has @ ... ( with a space between @ and ..., and puts the @ symbol at the end of the clause instead of before the verb phrase like the other translations (@ to mention files pattern). Consider rewording to something like Bir mesaj yazın, dosyaları belirtmek için @ kullanın... (...) or moving @ earlier for consistency with the other locales, and dropping the extra space before ....
Reply with @kilocode-bot fix it to have Kilo Code address this issue.
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (1 file changed since last review)
This incremental review covered only the one commit added since the last review ( Previous Review Summary (commit 7932d14)Current summary above is authoritative. Previous snapshots are kept for context only. Previous review (commit 7932d14)Status: 1 Issue Found | Recommendation: Nice-to-have; safe to merge as-is Overview
Issue Details (click to expand)SUGGESTION
Files Reviewed (21 files)
Purely cosmetic string change with no logic, no shared-opencode-file impact, and no test requirement. Formatting-only prettier diff in the second commit is out of scope per REVIEW.md. Reviewed by claude-sonnet-5-20260630 · Input: 20 · Output: 3.7K · Cached: 377.5K Review guidance: REVIEW.md from base branch |
|
Thanks for the contribution! merged. |
…-Org#11984) * feat(i18n): mention @ file references in chat input placeholder * style: run prettier on i18n placeholder translations * fix(i18n): move @ before ellipsis in Turkish placeholder for consistency --------- Co-authored-by: Sylwester Liljegren <sylwester.liljegren@softronic.se>
Issue
No issue to reference, as this is a purely cosmetical change with no impact on any functionality.
Context
The chat input placeholder only told users how to send a message. It gave no hint that typing
@opens the file-mention autocomplete, so the feature was easy to miss. This updates the placeholder to surface that capability.Implementation
Updated the
prompt.placeholder.defaultstring (rendered byPromptInput.tsx) to include an@ to mention fileshint, and added matching translations across all 20 supported locales inpackages/kilo-vscode/webview-ui/src/i18n/. Each translation keeps the existing Enter / Shift+Enter guidance intact.Screenshots / Video
Type a message... (Enter to send, Shift+Enter for new line)Type a message, @ to mention files... (Enter to send, Shift+Enter for new line)How to Test
Manual/local verification
bun turbo typecheckran on push (pre-push hook) and passed forkilo-codeand all packages in scope.Reviewer test steps
bun run extensionType a message, @ to mention files... (Enter to send, Shift+Enter for new line)@mention hintBlocked checks and substitute verification
Checklist
Get in Touch