This commit is contained in:
lingdocs 2021-10-09 21:50:39 -04:00
parent 9fc42d9573
commit 723cf331f9
3 changed files with 3 additions and 4 deletions

View File

@ -19,9 +19,9 @@ import words from "../words/nouns-adjs";
const inputs = {
adjectives: words.filter((w) => isAdjectiveInput(w.entry as EntityInput))
.map((w) => w.entry as AdjectiveInput),
.map((w) => w.entry as AdjectiveInput).sort((a, b) => a.p.localeCompare(b.p)),
unisexNouns: words.filter((w) => isUnisexNounInput(w.entry as EntityInput))
.map((w) => w.entry as UnisexNounInput),
.map((w) => w.entry as UnisexNounInput).sort((a, b) => a.p.localeCompare(b.p)),
};
function makeBlock(e: PredicateInput): T.VerbBlock {

View File

@ -84,7 +84,6 @@ module.exports = [
{ ts: 1567594312839, e: "brave" }, // زړه ور - zuRawár
{ ts: 1527815848, e: "committed" }, // ژمن - jzman
{ ts: 1527813498, e: "light" }, // سپک - spuk
{ ts: 1610447888169, e: "stale, dry (bread/crust); offensive, unpleasant (word)" }, // سپور - spor
{ ts: 1578329248464, e: "white" }, // سپین - speen
{ ts: 1527811860, e: "great" }, // ستر - stur
{ ts: 1527820178, e: "problematic" }, // ستونزمن - stoonzmán

File diff suppressed because one or more lines are too long