Skip to content

Commit

Permalink
feat(i18n): add ko locales fast_htmlcs
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Feb 28, 2024
1 parent 0c4339a commit 603b8c3
Show file tree
Hide file tree
Showing 6 changed files with 424 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ type RunnerConfig = {
1. eu ("Basque")
1. fr ("French")
1. ar ("Arabic")
1. ko ("Korean")
1. he ("Hebrew")
1. nl ("Dutch")
1. no_NB ("Norwegian")
Expand Down
2 changes: 1 addition & 1 deletion fast_axecore/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fast_axecore",
"description": "A light high performance fork of axecore",
"description": "A high performance rewrite of axecore",
"version": "4.6.33",
"license": "MPL-2.0",
"engines": {
Expand Down
416 changes: 416 additions & 0 deletions fast_htmlcs/Translations/ko.ts

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions fast_htmlcs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fast_htmlcs",
"version": "0.0.75",
"description": "A high performance fork of HTML_CodeSniffer.",
"version": "0.0.76",
"description": "A high performance rewrite of HTML_CodeSniffer.",
"license": "BSD-3-Clause",
"main": "index.js",
"keywords": [
Expand All @@ -14,7 +14,7 @@
"build:all": "yarn cp:build && tsc && yarn build:locales",
"prepack": "tsc && yarn build:locales && yarn swc:dist",
"build": "yarn build:all && yarn swc:dist",
"build:locales": "grunt build --lang=en,ar,fr,es,it,ja,nl,pl,zh_CN,zh_TW",
"build:locales": "grunt build --lang=en,ar,fr,es,it,ja,nl,pl,zh_CN,zh_TW,ko",
"swc:dist": "npx swc --copy-files --config-file .swcrc ./build -d ./build",
"test": "grunt eslint",
"fix": "prettier --write '**/*.{ts,tsx}'",
Expand Down
2 changes: 2 additions & 0 deletions kayle/lib/runner-js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const runnersJavascript = {
htmlcs_it: loadRunnerScript("htmlcs", "it"),
htmlcs_nl: loadRunnerScript("htmlcs", "nl"),
htmlcs_pl: loadRunnerScript("htmlcs", "pl"),
htmlcs_ko: loadRunnerScript("htmlcs", "ko"),
htmlcs_zh_CN: loadRunnerScript("htmlcs", "zh-CN"),
htmlcs_zh_TW: loadRunnerScript("htmlcs", "zh-TW"),
// axe scripts in all locales
Expand Down Expand Up @@ -98,6 +99,7 @@ export type Runner = Exclude<
| "htmlcs_ja"
| "htmlcs_fr"
| "htmlcs_it"
| "htmlcs_ko"
| "htmlcs_nl"
| "htmlcs_pl"
| "htmlcs_zh_CN"
Expand Down
2 changes: 1 addition & 1 deletion kayle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kayle",
"version": "0.8.19",
"version": "0.8.20",
"description": "Extremely fast and accurate accessibility engine built for any headless tool like playwright or puppeteer.",
"main": "./build/index.js",
"keywords": [
Expand Down

0 comments on commit 603b8c3

Please sign in to comment.