@markuplint/i18n 5.0.0-rc.1 → 5.0.0-rc.2
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/docs/maintenance.ja.md +1 -0
- package/docs/maintenance.md +1 -0
- package/locales/ja.json +2 -0
- package/package.json +7 -3
package/$schema.json
CHANGED
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"c:invalid": { "type": "string" },
|
|
49
49
|
"c:non-standard": { "type": "string" },
|
|
50
50
|
"c:obsolete": { "type": "string" },
|
|
51
|
+
"c:prohibited": { "type": "string" },
|
|
51
52
|
"cell overlap": { "type": "string" },
|
|
52
53
|
"character": { "type": "string" },
|
|
53
54
|
"characters": { "type": "string" },
|
|
@@ -129,6 +130,7 @@
|
|
|
129
130
|
"password": { "type": "string" },
|
|
130
131
|
"perceptible nodes": { "type": "string" },
|
|
131
132
|
"placeholder label option": { "type": "string" },
|
|
133
|
+
"prohibited": { "type": "string" },
|
|
132
134
|
"property name": { "type": "string" },
|
|
133
135
|
"property": { "type": "string" },
|
|
134
136
|
"query": { "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-rc.2](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.1...v5.0.0-rc.2) (2026-04-15)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **i18n:** add "prohibited" keyword for naming prohibition messages ([87b4fca](https://github.com/markuplint/markuplint/commit/87b4fcaa17552e08d1c8eeeeab015f64bf953232))
|
|
11
|
+
|
|
6
12
|
# [5.0.0-rc.1](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.0...v5.0.0-rc.1) (2026-03-27)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @markuplint/i18n
|
package/docs/maintenance.ja.md
CHANGED
|
@@ -89,6 +89,7 @@ packages/@markuplint/i18n/
|
|
|
89
89
|
| ---------------------------------------- | -------------------------------------------- | ------------------------------ |
|
|
90
90
|
| `"c:deprecated": "は非推奨です"` | `"{0} is {1:c}"` + キーワード `"deprecated"` | `「要素」は非推奨です` |
|
|
91
91
|
| `"c:disallowed": "は許可されていません"` | `"{0} is {1:c}"` + キーワード `"disallowed"` | `「属性」は許可されていません` |
|
|
92
|
+
| `"c:prohibited": "は禁止されています"` | `"{0} is {1:c}"` + キーワード `"prohibited"` | `「属性」は禁止されています` |
|
|
92
93
|
|
|
93
94
|
補語キーワードを追加する際:
|
|
94
95
|
|
package/docs/maintenance.md
CHANGED
|
@@ -89,6 +89,7 @@ Complement keywords use the `c:` prefix and are resolved when a placeholder has
|
|
|
89
89
|
| ---------------------------------------- | -------------------------------------------- | ------------------------------ |
|
|
90
90
|
| `"c:deprecated": "は非推奨です"` | `"{0} is {1:c}"` with keyword `"deprecated"` | `「要素」は非推奨です` |
|
|
91
91
|
| `"c:disallowed": "は許可されていません"` | `"{0} is {1:c}"` with keyword `"disallowed"` | `「属性」は許可されていません` |
|
|
92
|
+
| `"c:prohibited": "は禁止されています"` | `"{0} is {1:c}"` with keyword `"prohibited"` | `「属性」は禁止されています` |
|
|
92
93
|
|
|
93
94
|
When adding a complement keyword:
|
|
94
95
|
|
package/locales/ja.json
CHANGED
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"c:invalid": "は妥当ではありません",
|
|
37
37
|
"c:non-standard": "は非標準です",
|
|
38
38
|
"c:obsolete": "は廃止されています",
|
|
39
|
+
"c:prohibited": "は禁止されています",
|
|
39
40
|
"cell overlap": "セルの交差",
|
|
40
41
|
"character": "文字",
|
|
41
42
|
"characters": "文字",
|
|
@@ -117,6 +118,7 @@
|
|
|
117
118
|
"password": "パスワード",
|
|
118
119
|
"perceptible nodes": "知覚要素",
|
|
119
120
|
"placeholder label option": "プレースホルダーラベルオプション",
|
|
121
|
+
"prohibited": "禁止",
|
|
120
122
|
"property name": "プロパティ名",
|
|
121
123
|
"property": "プロパティ",
|
|
122
124
|
"query": "クエリ",
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/i18n",
|
|
3
|
-
"version": "5.0.0-rc.
|
|
3
|
+
"version": "5.0.0-rc.2",
|
|
4
4
|
"description": "Internationalization for markuplint",
|
|
5
|
-
"repository":
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/markuplint/markuplint.git",
|
|
8
|
+
"directory": "packages/@markuplint/i18n"
|
|
9
|
+
},
|
|
6
10
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
7
11
|
"license": "MIT",
|
|
8
12
|
"engines": {
|
|
@@ -41,5 +45,5 @@
|
|
|
41
45
|
"clean:esm": "tsc --build --clean tsconfig.build.json",
|
|
42
46
|
"clean:cjs": "tsc --build --clean tsconfig.build-cjs.json"
|
|
43
47
|
},
|
|
44
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "e43763858d9234c417053becc73dbd088c1e7ea6"
|
|
45
49
|
}
|