@markuplint/i18n 3.0.0-dev.54 → 3.0.0-dev.96
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/locales/ja.json +2 -0
- package/package.json +5 -2
package/$schema.json
CHANGED
|
@@ -116,6 +116,7 @@
|
|
|
116
116
|
"one": { "type": "string" },
|
|
117
117
|
"origin": { "type": "string" },
|
|
118
118
|
"password": { "type": "string" },
|
|
119
|
+
"placeholder label option": { "type": "string" },
|
|
119
120
|
"property name": { "type": "string" },
|
|
120
121
|
"query": { "type": "string" },
|
|
121
122
|
"quote": { "type": "string" },
|
|
@@ -182,6 +183,7 @@
|
|
|
182
183
|
"{0} greater than or equal to {1} less than or equal to {2}": { "type": "string" },
|
|
183
184
|
"{0} greater than or equal to {1}": { "type": "string" },
|
|
184
185
|
"{0} has {1}": { "type": "string" },
|
|
186
|
+
"{0} if it has {1}": { "type": "string" },
|
|
185
187
|
"{0} includes {1}": { "type": "string" },
|
|
186
188
|
"{0} is {1:c}": { "type": "string" },
|
|
187
189
|
"{0} is {1}": { "type": "string" },
|
package/locales/ja.json
CHANGED
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
"one": "1",
|
|
105
105
|
"origin": "オリジン",
|
|
106
106
|
"password": "パスワード",
|
|
107
|
+
"placeholder label option": "プレースホルダーラベルオプション",
|
|
107
108
|
"property name": "プロパティ名",
|
|
108
109
|
"query": "クエリ",
|
|
109
110
|
"quote": "クオート",
|
|
@@ -166,6 +167,7 @@
|
|
|
166
167
|
"{0} greater than or equal to {1} less than or equal to {2}": "{1}以上で{2}以下の{0}",
|
|
167
168
|
"{0} greater than or equal to {1}": "{1}以上の{0}",
|
|
168
169
|
"{0} has {1}": "{0}は{1}を持っています",
|
|
170
|
+
"{0} if it has {1}": "{1}を持つならば、{0}",
|
|
169
171
|
"{0} includes {1}": "{0}は{1}を含んでいます",
|
|
170
172
|
"{0} is {1:c}": "{0}{1:c}",
|
|
171
173
|
"{0} is {1} but {2}": "{0}は{1}ですが、{2}",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/i18n",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.96+3b9f1720",
|
|
4
4
|
"description": "HTML parser for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -11,9 +11,12 @@
|
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
|
13
13
|
},
|
|
14
|
+
"typedoc": {
|
|
15
|
+
"entryPoint": "./src/index.ts"
|
|
16
|
+
},
|
|
14
17
|
"scripts": {
|
|
15
18
|
"build": "tsc",
|
|
16
19
|
"clean": "tsc --build --clean"
|
|
17
20
|
},
|
|
18
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "3b9f17205d7754b29edf790bdbbf5e4931ba27a2"
|
|
19
22
|
}
|