@markuplint/i18n 4.5.2 → 4.5.4

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/$schema.json CHANGED
@@ -94,6 +94,7 @@
94
94
  "hash name": { "type": "string" },
95
95
  "hash-name reference": { "type": "string" },
96
96
  "hash": { "type": "string" },
97
+ "heading levels": { "type": "string" },
97
98
  "hour": { "type": "string" },
98
99
  "html elements": { "type": "string" },
99
100
  "http(s) schema": { "type": "string" },
@@ -227,6 +228,7 @@
227
228
  "{0} must be {1}": { "type": "string" },
228
229
  "{0} must not {1}": { "type": "string" },
229
230
  "{0} must not be {1}": { "type": "string" },
231
+ "{0} must not be skipped": { "type": "string" },
230
232
  "{0} needs {1}": { "type": "string" },
231
233
  "{0} of {1}": { "type": "string" },
232
234
  "{0} or {1}": { "type": "string" },
package/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
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
- ## [4.5.2](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.1...@markuplint/i18n@4.5.2) (2024-09-02)
6
+ ## [4.5.4](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.3...@markuplint/i18n@4.5.4) (2024-10-14)
7
7
 
8
8
  **Note:** Version bump only for package @markuplint/i18n
9
9
 
@@ -11,6 +11,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
+ ## [4.5.3](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.2...@markuplint/i18n@4.5.3) (2024-09-23)
15
+
16
+ ### Bug Fixes
17
+
18
+ - **rules:** fix the message of the `heading-levels` rule and add to translate in Japanese ([ec57e1e](https://github.com/markuplint/markuplint/commit/ec57e1e5ff4549ee5574928ad20fd461d87974a5))
19
+
20
+ ## [4.5.2](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.1...@markuplint/i18n@4.5.2) (2024-09-02)
21
+
22
+ **Note:** Version bump only for package @markuplint/i18n
23
+
14
24
  ## [4.5.1](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.0...@markuplint/i18n@4.5.1) (2024-06-25)
15
25
 
16
26
  **Note:** Version bump only for package @markuplint/i18n
package/locales/ja.json CHANGED
@@ -82,6 +82,7 @@
82
82
  "hash name": "ハッシュ名",
83
83
  "hash-name reference": "ハッシュ名参照",
84
84
  "hash": "ハッシュ",
85
+ "heading levels": "見出しレベル",
85
86
  "hour": "時",
86
87
  "html elements": "HTML要素",
87
88
  "http(s) schema": "HTTP(S)スキーマ",
@@ -211,6 +212,7 @@
211
212
  "{0} must be {1}": "{0}は{1}にするべきです",
212
213
  "{0} must not {1}": "{0}は{1}するべきではありません",
213
214
  "{0} must not be {1}": "{0}は{1}にするべきではありません",
215
+ "{0} must not be skipped": "{0}はスキップしてはいけません",
214
216
  "{0} needs {1}": "{0}には{1}が必要です",
215
217
  "{0} of {1}": "{1}の{0}",
216
218
  "{0} or {1}": "{0}もしくは{1}",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/i18n",
3
- "version": "4.5.2",
3
+ "version": "4.5.4",
4
4
  "description": "Internationalization for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -37,5 +37,5 @@
37
37
  "build:cjs": "tsc --module commonjs --outDir cjs",
38
38
  "clean": "tsc --build --clean"
39
39
  },
40
- "gitHead": "77cd5a25d5cf28c83253b7bfe02cd25b54e236b0"
40
+ "gitHead": "e59d4e8b762c66c7e3fb8b0a0d9d99d5160b0afa"
41
41
  }