@markuplint/i18n 5.0.0-alpha.2 → 5.0.0-dev.5
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 +2 -0
- package/CHANGELOG.md +6 -0
- package/locales/ja.json +2 -0
- package/package.json +2 -2
package/$schema.json
CHANGED
|
@@ -228,6 +228,7 @@
|
|
|
228
228
|
"{0} missing {1} in {2}": { "type": "string" },
|
|
229
229
|
"{0} must {1}": { "type": "string" },
|
|
230
230
|
"{0} must be {1}": { "type": "string" },
|
|
231
|
+
"{0} must be before {1}": { "type": "string" },
|
|
231
232
|
"{0} must not {1}": { "type": "string" },
|
|
232
233
|
"{0} must not be {1}": { "type": "string" },
|
|
233
234
|
"{0} must not be skipped": { "type": "string" },
|
|
@@ -241,6 +242,7 @@
|
|
|
241
242
|
"{0} should {1}": { "type": "string" },
|
|
242
243
|
"{0} should associate with {1}": { "type": "string" },
|
|
243
244
|
"{0} should be {1}": { "type": "string" },
|
|
245
|
+
"{0} should be before {1}": { "type": "string" },
|
|
244
246
|
"{0} should not {1}": { "type": "string" },
|
|
245
247
|
"{0} should not be {1}": { "type": "string" },
|
|
246
248
|
"{0} syntax": { "type": "string" },
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.3](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.2...v5.0.0-alpha.3) (2026-02-26)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **i18n:** add "should/must be before" sentence translations for attr-order rule ([4a61c63](https://github.com/markuplint/markuplint/commit/4a61c63ceba21e77db77f70a263737fc0f692326))
|
|
11
|
+
|
|
6
12
|
# [5.0.0-alpha.2](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.1...v5.0.0-alpha.2) (2026-02-23)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @markuplint/i18n
|
package/locales/ja.json
CHANGED
|
@@ -212,6 +212,7 @@
|
|
|
212
212
|
"{0} missing {1} in {2}": "{2}に{0}つの{1}がありません",
|
|
213
213
|
"{0} must {1}": "{0}は{1}するべきです",
|
|
214
214
|
"{0} must be {1}": "{0}は{1}にするべきです",
|
|
215
|
+
"{0} must be before {1}": "{0}は{1}より前にあるべきです",
|
|
215
216
|
"{0} must not {1}": "{0}は{1}するべきではありません",
|
|
216
217
|
"{0} must not be {1}": "{0}は{1}にするべきではありません",
|
|
217
218
|
"{0} must not be skipped": "{0}はスキップしてはいけません",
|
|
@@ -225,6 +226,7 @@
|
|
|
225
226
|
"{0} should {1}": "{0}は{1}したほうがよいです",
|
|
226
227
|
"{0} should associate with {1}": "{0}は{1}と関連付けたほうがよいです",
|
|
227
228
|
"{0} should be {1}": "{0}は{1}にしたほうがよいです",
|
|
229
|
+
"{0} should be before {1}": "{0}は{1}より前にしたほうがよいです",
|
|
228
230
|
"{0} should not {1}": "{0}は{1}しないほうがよいです",
|
|
229
231
|
"{0} should not be {1}": "{0}は{1}にしないほうがよいです",
|
|
230
232
|
"{0} syntax": "{0}構文",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/i18n",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-dev.5+e96392f56",
|
|
4
4
|
"description": "Internationalization for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"clean:esm": "tsc --build --clean tsconfig.build.json",
|
|
42
42
|
"clean:cjs": "tsc --build --clean tsconfig.build-cjs.json"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "e96392f56e4bc8165ba59622b41c822703a96372"
|
|
45
45
|
}
|