Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
"command.open_url": "Open url",
"command.possible_hard_string": "Possible Hard string",
"command.refresh_usage": "Refresh usage report",
"command.export_usage_report": "Export usage report as Markdown",
"command.export_no_report": "No usage report available. Please refresh the usage report first.",
"command.export_success": "Usage report exported to {0}",
"command.rename_key": "Rename key",
"command.set_display_language": "Set as display language",
"command.set_source_language": "Set as source language",
Expand Down
3 changes: 3 additions & 0 deletions locales/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
"command.open_url": "URL ์—ด๊ธฐ",
"command.possible_hard_string": "๊ฐ€๋Šฅํ•œ ํ•˜๋“œ ๋ฌธ์ž์—ด",
"command.refresh_usage": "์‚ฌ์šฉ๋Ÿ‰ ๋ณด๊ณ ์„œ ์ƒˆ๋กœ ๊ณ ์นจ",
"command.export_usage_report": "์‚ฌ์šฉ๋Ÿ‰ ๋ณด๊ณ ์„œ๋ฅผ ๋งˆํฌ๋‹ค์šด์œผ๋กœ ๋‚ด๋ณด๋‚ด๊ธฐ",
"command.export_no_report": "์‚ฌ์šฉ๋Ÿ‰ ๋ณด๊ณ ์„œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค. ๋จผ์ € ์‚ฌ์šฉ๋Ÿ‰ ๋ณด๊ณ ์„œ๋ฅผ ์ƒˆ๋กœ ๊ณ ์นจํ•˜์„ธ์š”.",
"command.export_success": "์‚ฌ์šฉ๋Ÿ‰ ๋ณด๊ณ ์„œ๊ฐ€ {0}์— ๋‚ด๋ณด๋‚ด์กŒ์Šต๋‹ˆ๋‹ค.",
"command.rename_key": "ํ‚ค ์ด๋ฆ„ ๋ณ€๊ฒฝ",
"command.set_display_language": "ํ‘œ์‹œ ์–ธ์–ด๋กœ ์„ค์ •",
"command.set_source_language": "์†Œ์Šค ์–ธ์–ด๋กœ ์„ค์ •",
Expand Down
13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,12 @@
"title": "%command.refresh_usage%",
"icon": "$(refresh)"
},
{
"command": "i18n-ally.export-usage-report",
"category": "%extname%",
"title": "%command.export_usage_report%",
"icon": "$(export)"
},
{
"command": "i18n-ally.support",
"category": "%extname%",
Expand Down Expand Up @@ -610,9 +616,14 @@
"view/title": [
{
"command": "i18n-ally.refresh-usage",
"group": "navigation",
"group": "navigation@1",
"when": "view =~ /i18n-ally-locales-usage/"
},
{
"command": "i18n-ally.export-usage-report",
"group": "navigation@2",
"when": "view =~ /i18n-ally-locales-usage/ && i18n-ally-has-report"
},
{
"command": "i18n-ally.new-key",
"group": "navigation",
Expand Down
Loading