ekms 9.4.5 → 9.5.0-beta.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/common/animals.instance.json +40 -280
- package/common/colors.instance.json +92 -320
- package/common/comparable.instance.json +42 -10
- package/common/crew.instance.json +673 -965
- package/common/crew.js +0 -15
- package/common/dates.instance.json +2 -84
- package/common/dates.js +1 -0
- package/common/dimension.instance.json +2 -2
- package/common/dimension.js +1 -1
- package/common/edible.instance.json +874 -2097
- package/common/fastfood.instance.json +4865 -6422
- package/common/fastfood.js +1 -0
- package/common/gdefaults.js +34 -2
- package/common/helpers/concept.js +2 -1
- package/common/helpers/dialogues.js +2 -1
- package/common/kirk.instance.json +3 -23
- package/common/latin.instance.json +472 -1
- package/common/latin.js +145 -19
- package/common/latin.test.json +5325 -0
- package/common/latin_helpers.js +358 -0
- package/common/length.instance.json +128 -384
- package/common/menus.instance.json +21 -61
- package/common/people.instance.json +128 -96
- package/common/percentages.js +1 -0
- package/common/pipboy.instance.json +84 -366
- package/common/pipboy.js +2 -1
- package/common/pipboy.test.json +1690 -0
- package/common/pokemon.instance.json +351 -103
- package/common/pos.js +39 -34
- package/common/pressure.instance.json +32 -124
- package/common/properties.js +0 -16
- package/common/reminders.test.json +2702 -2786
- package/common/reports.instance.json +2 -2
- package/common/reports.js +4 -1
- package/common/reports.test.json +5547 -4514
- package/common/spock.instance.json +3 -23
- package/common/temperature.instance.json +40 -196
- package/common/tokenize.js +30 -2
- package/common/weight.instance.json +241 -301
- package/common/wp.instance.json +347 -373
- package/common/wp.js +25 -4
- package/common/wp.test.json +3104 -0
- package/package.json +3 -2
package/common/wp.js
CHANGED
|
@@ -243,10 +243,29 @@ template = {
|
|
|
243
243
|
],
|
|
244
244
|
associations: {
|
|
245
245
|
positive: [
|
|
246
|
-
{ context: [["
|
|
247
|
-
|
|
248
|
-
{ context: [["
|
|
249
|
-
{ context: [["
|
|
246
|
+
{ context: [["style_wp", 0], ["the", 0], ["letter_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 1], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
|
|
247
|
+
|
|
248
|
+
{ context: [["style_wp", 0], ["the", 0], ["ordinal", 0], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
|
|
249
|
+
{ context: [["style_wp", 1], ["the", 0], ["ordinal", 0], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
|
|
250
|
+
{ context: [["style_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
|
|
251
|
+
{
|
|
252
|
+
context: [
|
|
253
|
+
["style_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 1], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]
|
|
254
|
+
],
|
|
255
|
+
choose: { index: 0, increment: true }
|
|
256
|
+
},
|
|
257
|
+
|
|
258
|
+
{
|
|
259
|
+
context: [['underline_wp', 0], ['article', 0], ['word_wp', 0], ['statefulElementInContext_wp', 0], ['the', 0], ['ordinal', 0], ['paragraph_wp', 0]],
|
|
260
|
+
choose: { index: 0, increment: true },
|
|
261
|
+
},
|
|
262
|
+
|
|
263
|
+
{
|
|
264
|
+
context: [['underline_wp', 0], ['article', 0], ['word_wp', 0], ['statefulElementInContext_wp', 0], ['the', 0], ['ordinal', 1], ['paragraph_wp', 0]],
|
|
265
|
+
choose: { index: 0, increment: true },
|
|
266
|
+
},
|
|
267
|
+
|
|
268
|
+
{ context: [["style_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 1], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
|
|
250
269
|
|
|
251
270
|
{ context: [["word_wp",1],["thatVerb",0],["wordComparison_wp",0],["unknown",0]], choose: 0 },
|
|
252
271
|
{ context: [["paragraph_wp",1],["thatVerb",0],["paragraphComparisonVerb_wp",0],["unknown",0]], choose: 0 },
|
|
@@ -259,6 +278,8 @@ template = {
|
|
|
259
278
|
{ context: [["article",0],["statefulElement_wp",0]], choose: 1 },
|
|
260
279
|
{ context: [["article",0],["statefulElement_wp",1]], choose: 1 },
|
|
261
280
|
{ context: [["article",0],["ordinal", 0],["statefulElement_wp",0]], choose: 2 },
|
|
281
|
+
|
|
282
|
+
{ context: [["styleModifier_wp",0],["statefulElement_wp",0]], choose: 1 },
|
|
262
283
|
]
|
|
263
284
|
},
|
|
264
285
|
|