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
1 change: 1 addition & 0 deletions packages/i18n/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ hu
id
it
ja
ko
kr
nb
nl
Expand Down
4 changes: 4 additions & 0 deletions packages/i18n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the library will be documented in this file.

## vX.X.X (Month DD, YYYY)

- Fix: Use the correct ISO 639-1 code for Korean: `ko`. Keep `kr` as a deprecated alias for backward compatibility. The `kr` alias will be removed in a future major release.

## v1.0.0 (March 19, 2025)

- Add new and missing actions to translations
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The official i18n translations for Valibot. See the [internationalization guide]
| Indonesian (id) | [#683][pr-683-url] | ✅ |
| Italian (it) | [#605][pr-605-url] | ✅ |
| Japanese (ja) | [#431][pr-431-url] | ✅ |
| Korean (kr) | [#429][pr-429-url] | ✅ |
| Korean (ko) | [#429][pr-429-url] | ✅ |
| Norwegian (nb) | [#439][pr-439-url] | ✅ |
| Polish (pl) | [#584][pr-584-url] | ✅ |
| Portuguese (pt) | [#509][pr-509-url] | ✅ |
Expand Down
75 changes: 75 additions & 0 deletions packages/i18n/jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"!it",
"!hu",
"!ja",
"!ko",
"!kr",
"!nb",
"!nl",
Expand Down Expand Up @@ -850,6 +851,80 @@
"./ja/uuid": "./ja/uuid.ts",
"./ja/value": "./ja/value.ts",
"./ja/words": "./ja/words.ts",
"./ko": "./ko/index.ts",
"./ko/schema": "./ko/schema.ts",
"./ko/base64": "./ko/base64.ts",
"./ko/bic": "./ko/bic.ts",
"./ko/bytes": "./ko/bytes.ts",
"./ko/check": "./ko/check.ts",
"./ko/checkAsync": "./ko/checkAsync.ts",
"./ko/checkItems": "./ko/checkItems.ts",
"./ko/checkItemsAsync": "./ko/checkItemsAsync.ts",
"./ko/creditCard": "./ko/creditCard.ts",
"./ko/cuid2": "./ko/cuid2.ts",
"./ko/decimal": "./ko/decimal.ts",
"./ko/digits": "./ko/digits.ts",
"./ko/email": "./ko/email.ts",
"./ko/emoji": "./ko/emoji.ts",
"./ko/empty": "./ko/empty.ts",
"./ko/endsWith": "./ko/endsWith.ts",
"./ko/everyItem": "./ko/everyItem.ts",
"./ko/excludes": "./ko/excludes.ts",
"./ko/finite": "./ko/finite.ts",
"./ko/graphemes": "./ko/graphemes.ts",
"./ko/hash": "./ko/hash.ts",
"./ko/hexColor": "./ko/hexColor.ts",
"./ko/hexadecimal": "./ko/hexadecimal.ts",
"./ko/imei": "./ko/imei.ts",
"./ko/includes": "./ko/includes.ts",
"./ko/integer": "./ko/integer.ts",
"./ko/ip": "./ko/ip.ts",
"./ko/ipv4": "./ko/ipv4.ts",
"./ko/ipv6": "./ko/ipv6.ts",
"./ko/isoDate": "./ko/isoDate.ts",
"./ko/isoDateTime": "./ko/isoDateTime.ts",
"./ko/isoTime": "./ko/isoTime.ts",
"./ko/isoTimeSecond": "./ko/isoTimeSecond.ts",
"./ko/isoTimestamp": "./ko/isoTimestamp.ts",
"./ko/isoWeek": "./ko/isoWeek.ts",
"./ko/length": "./ko/length.ts",
"./ko/mac": "./ko/mac.ts",
"./ko/mac48": "./ko/mac48.ts",
"./ko/mac64": "./ko/mac64.ts",
"./ko/maxBytes": "./ko/maxBytes.ts",
"./ko/maxGraphemes": "./ko/maxGraphemes.ts",
"./ko/maxLength": "./ko/maxLength.ts",
"./ko/maxSize": "./ko/maxSize.ts",
"./ko/maxValue": "./ko/maxValue.ts",
"./ko/maxWords": "./ko/maxWords.ts",
"./ko/mimeType": "./ko/mimeType.ts",
"./ko/minBytes": "./ko/minBytes.ts",
"./ko/minGraphemes": "./ko/minGraphemes.ts",
"./ko/minLength": "./ko/minLength.ts",
"./ko/minSize": "./ko/minSize.ts",
"./ko/minValue": "./ko/minValue.ts",
"./ko/minWords": "./ko/minWords.ts",
"./ko/multipleOf": "./ko/multipleOf.ts",
"./ko/nanoid": "./ko/nanoid.ts",
"./ko/nonEmpty": "./ko/nonEmpty.ts",
"./ko/notBytes": "./ko/notBytes.ts",
"./ko/notGraphemes": "./ko/notGraphemes.ts",
"./ko/notLength": "./ko/notLength.ts",
"./ko/notSize": "./ko/notSize.ts",
"./ko/notValue": "./ko/notValue.ts",
"./ko/notWords": "./ko/notWords.ts",
"./ko/octal": "./ko/octal.ts",
"./ko/partialCheck": "./ko/partialCheck.ts",
"./ko/regex": "./ko/regex.ts",
"./ko/safeInteger": "./ko/safeInteger.ts",
"./ko/size": "./ko/size.ts",
"./ko/someItem": "./ko/someItem.ts",
"./ko/startsWith": "./ko/startsWith.ts",
"./ko/ulid": "./ko/ulid.ts",
"./ko/url": "./ko/url.ts",
"./ko/uuid": "./ko/uuid.ts",
"./ko/value": "./ko/value.ts",
"./ko/words": "./ko/words.ts",
"./kr": "./kr/index.ts",
"./kr/schema": "./kr/schema.ts",
"./kr/base64": "./kr/base64.ts",
Expand Down
Loading
Loading