fix: unify prompt terminology and rename translation keys#119
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Nov 20, 2025
fix/unify-prompt-terminologybreaking-brake/cc-wf-studio:fix/unify-prompt-terminologyCopy head branch name to clipboard
Merged
fix: unify prompt terminology and rename translation keys#119breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom fix/unify-prompt-terminologybreaking-brake/cc-wf-studio:fix/unify-prompt-terminologyCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
fix/unify-prompt-terminologybreaking-brake/cc-wf-studio:fix/unify-prompt-terminologyCopy head branch name to clipboard
Conversation
Renamed translation keys from promptTemplate to prompt for consistency. Updated all translation files (ja, en, ko, zh-CN, zh-TW) and component usage. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Merged
github-actions Bot
added a commit
that referenced
this pull request
Nov 20, 2025
## [2.9.0](v2.8.0...v2.9.0) (2025-11-20) ### Features * add prompt preview to SubAgentNode canvas display ([#118](#118)) ([25f5ad6](25f5ad6)) ### Bug Fixes * simplify PromptNode canvas display style ([#120](#120)) ([fc9b391](fc9b391)) * unify prompt terminology and rename translation keys ([#119](#119)) ([29d8111](29d8111))
Contributor
|
🎉 This PR is included in version 2.9.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
breaking-brake
added a commit
that referenced
this pull request
Nov 20, 2025
Renamed translation keys from promptTemplate to prompt for consistency. Updated all translation files (ja, en, ko, zh-CN, zh-TW) and component usage. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
Merged
github-actions Bot
added a commit
that referenced
this pull request
Nov 20, 2025
## [2.9.0](v2.8.0...v2.9.0) (2025-11-20) ### Features * add prompt preview to SubAgentNode canvas display ([#118](#118)) ([25f5ad6](25f5ad6)) ### Bug Fixes * simplify PromptNode canvas display style ([#120](#120)) ([73d6a55](73d6a55)) * unify prompt terminology and rename translation keys ([#119](#119)) ([c616374](c616374))
breaking-brake
added a commit
that referenced
this pull request
Nov 23, 2025
Renamed translation keys from promptTemplate to prompt for consistency. Updated all translation files (ja, en, ko, zh-CN, zh-TW) and component usage. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
breaking-brake
pushed a commit
that referenced
this pull request
Nov 23, 2025
## [2.9.0](v2.8.0...v2.9.0) (2025-11-20) ### Features * add prompt preview to SubAgentNode canvas display ([#118](#118)) ([25f5ad6](25f5ad6)) ### Bug Fixes * simplify PromptNode canvas display style ([#120](#120)) ([73d6a55](73d6a55)) * unify prompt terminology and rename translation keys ([#119](#119)) ([c616374](c616374))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Prompt node used inconsistent terminology across the codebase:
promptTemplateCurrent Behavior
property.promptTemplate,property.promptTemplate.placeholderExpected Behavior
property.prompt.label,property.prompt.placeholderSolution
Renamed all translation keys from
promptTemplatetopromptand updated display text for consistency across all supported languages.Changes
Translation Keys:
src/webview/src/i18n/translation-keys.tsproperty.promptTemplate→property.prompt.labelproperty.promptTemplate.placeholder→property.prompt.placeholderproperty.promptTemplate.help→property.prompt.helpdefault.promptTemplate→default.promptTranslation Files: All 5 language files updated
Component Updates:
PropertyPanel.tsx: Updated to use new translation keys (property.prompt.label, etc.)NodePalette.tsx: Updated default prompt value to usedefault.promptImpact
Testing
Notes
This change affects UI text only. No functional behavior changes.