-
Notifications
You must be signed in to change notification settings - Fork 460
mark vue nodes menu toggle with beta tag #7047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| { | ||
| "g": { | ||
| "beta": "Beta", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical: Duplicate key will cause incorrect value. This adds a Solution: Use a distinct key name: - "beta": "Beta",
+ "betaTag": "Beta",Then update - <Tag severity="info" class="ml-2 text-xs">{{ $t('g.beta') }}</Tag>
+ <Tag severity="info" class="ml-2 text-xs">{{ $t('g.betaTag') }}</Tag>Alternatively, if line 253's
🧰 Tools🪛 Biome (2.1.2)[error] 3-3: The key beta was already declared. This where a duplicated key was declared again. If a key is defined multiple times, only the last definition takes effect. Previous definitions are ignored. (lint/suspicious/noDuplicateObjectKeys) 🤖 Prompt for AI Agents |
||
| "user": "User", | ||
| "currentUser": "Current user", | ||
| "empty": "Empty", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translation key blocked by duplicate in main.json.
The
$t('g.beta')will resolve to"BETA"instead of"Beta"due to the duplicate key issue flagged insrc/locales/en/main.jsonline 3. Once that's fixed by using a distinct key (e.g.,g.betaTag), update this reference accordingly.🤖 Prompt for AI Agents