We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fdc524 commit b349da3Copy full SHA for b349da3
src/i18n/translations.json
@@ -2648,7 +2648,10 @@
2648
},
2649
"format_times": {
2650
"cn": "好了就用({{times}}次)",
2651
- "en": "Use when ready ({{times}} times)"
+ "en": {
2652
+ "1": "Use when ready (1 time)",
2653
+ "other": "Use when ready ({{times}} times)"
2654
+ }
2655
2656
"format_specific_times": {
2657
"cn": "好了就用(指定次数)",
src/models/operator.ts
@@ -78,6 +78,7 @@ export function getSkillUsageTitle(
78
if (skillUsage === CopilotDocV1.SkillUsageType.ReadyToUseTimes) {
79
return skillTimes
80
? i18n.models.operator.skill_usage.format_times({
81
+ count: skillTimes,
82
times: skillTimes,
83
})
84
: i18n.models.operator.skill_usage.format_specific_times
0 commit comments