Skip to content

Commit e9be2f5

Browse files
committed
fix(i18n): add translation key to 'skills CLI'
1 parent 8626d66 commit e9be2f5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

app/components/Package/SkillsModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function getWarningTooltip(skill: SkillListItem): string | undefined {
8383
"
8484
@click="selectedMethod = 'skills-cli'"
8585
>
86-
skills CLI
86+
{{ $t('package.skills.skills_cli') }}
8787
</button>
8888
</div>
8989
</div>

i18n/locales/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@
289289
"refs": "{count} ref | {count} refs",
290290
"assets": "{count} asset | {count} assets"
291291
},
292-
"view_source": "View source"
292+
"view_source": "View source",
293+
"skills_cli": "skills CLI"
293294
},
294295
"links": {
295296
"main": "main",

i18n/schema.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,9 @@
873873
},
874874
"view_source": {
875875
"type": "string"
876+
},
877+
"skills_cli": {
878+
"type": "string"
876879
}
877880
},
878881
"additionalProperties": false

0 commit comments

Comments
 (0)