@markuplint/i18n 4.7.1 → 5.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/cjs/index.d.ts +1 -1
- package/esm/index.d.ts +1 -1
- package/locales/ja.json +2 -0
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.0.0-alpha.0](https://github.com/markuplint/markuplint/compare/v4.14.1...v5.0.0-alpha.0) (2026-02-20)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- use explicit `export type` for type-only re-exports ([7c77c05](https://github.com/markuplint/markuplint/commit/7c77c05619518c8d18a183132040f5b2cd0ab6ec))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **i18n:** add Japanese translations for context role messages ([f57ad49](https://github.com/markuplint/markuplint/commit/f57ad4975cb2384ce110c1136f4c78864da2d9a7))
|
|
15
|
+
|
|
6
16
|
## [4.7.1](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.7.0...@markuplint/i18n@4.7.1) (2026-02-10)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @markuplint/i18n
|
package/cjs/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { translator } from './translator.js';
|
|
2
|
-
export { Translator, LocaleSet } from './types.js';
|
|
2
|
+
export type { Translator, LocaleSet } from './types.js';
|
package/esm/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { translator } from './translator.js';
|
|
2
|
-
export { Translator, LocaleSet } from './types.js';
|
|
2
|
+
export type { Translator, LocaleSet } from './types.js';
|
package/locales/ja.json
CHANGED
|
@@ -240,6 +240,8 @@
|
|
|
240
240
|
"also disallows {0} in this context": "このコンテキスト内では{0}も許可しません",
|
|
241
241
|
"ambiguous {0}": "曖昧な{0}",
|
|
242
242
|
"an {0}": "{0}",
|
|
243
|
+
"an accessibility parent with one of the {0}": "次の{0}のいずれかを持つアクセシビリティ親要素",
|
|
244
|
+
"an accessibility parent with the \"{0*}\" {1}": "「{0*}」{1}を持つアクセシビリティ親要素",
|
|
243
245
|
"as its {0} is already provided by {1}": "その{0}は{1}によってすでに提供されています",
|
|
244
246
|
"cannot overwrite {0} to {1}": "{0}を{1}に上書きすることはできません",
|
|
245
247
|
"cannot overwrite {0}": "{0}を上書きすることはできません",
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/i18n",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.0",
|
|
4
4
|
"description": "Internationalization for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=22"
|
|
10
|
+
},
|
|
8
11
|
"main": "./cjs/index.js",
|
|
9
12
|
"types": "./cjs/index.d.ts",
|
|
10
13
|
"exports": {
|
|
@@ -38,5 +41,5 @@
|
|
|
38
41
|
"clean:esm": "tsc --build --clean tsconfig.build.json",
|
|
39
42
|
"clean:cjs": "tsc --build --clean tsconfig.build-cjs.json"
|
|
40
43
|
},
|
|
41
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "13dcfc84ec83d87360c720e253383b60767e1b56"
|
|
42
45
|
}
|