]> Lady’s Gitweb - Langdev/blob - data/qjt/srcs/x-XX-jt/files/db.js
Initial commit with docs/srcs for early langs
[Langdev] / data / qjt / srcs / x-XX-jt / files / db.js
1 // SPDX-FileCopyrightText: Lady <https://www.ladys.computer/about/#lady>
2 // SPDX-License-Identifier: CC0-1.0
3 /* Main Database */
4 var dispList = new Array();
5 var wordList = new Array();
6 var tagList = {
7 people: new Array(),
8 body_parts: new Array(),
9 clothing: new Array(),
10 biorythms: new Array(),
11 sight: new Array(),
12 touch: new Array(),
13 taste: new Array(),
14 smell: new Array(),
15 hearing: new Array(),
16 emotions: new Array(),
17 life: new Array(),
18 abstracts: new Array(),
19 lang: new Array(),
20 time: new Array(),
21 numbers: new Array(),
22 submat: new Array(),
23 easky: new Array(),
24 natoc: new Array(),
25 names: new Array(),
26 qualcon: new Array(),
27 locn: new Array(),
28 pron: new Array(),
29 exp: new Array(),
30 anim: new Array(),
31 plant: new Array(),
32 food: new Array(),
33 tool: new Array(),
34 jwlry: new Array(),
35 inst: new Array(),
36 build: new Array(),
37 dist: new Array(),
38 art: new Array(),
39 yn: new Array(),
40 conj: new Array(),
41 mod: new Array(),
42 tense: new Array(),
43 mood: new Array(),
44 article: new Array(),
45 excl: new Array(),
46 prep: new Array(),
47 verb: new Array(),
48 };
49
50 function wordFilter() {
51 var f = document.getElementById("filters").value
52 if (f === "all") dispList = wordList.sort(nameSort);
53 else dispList = tagList[f].sort(nameSort);
54 document.getElementById("dictContent").innerHTML = "<tr class='empty'></tr>";
55 for (i=0; i<dispList.length; i++) {
56 document.getElementById("dictContent").appendChild(dispList[i].tableData);
57 }
58 document.getElementById("dictContent").innerHTML += "<tr class='empty'></tr>"
59 document.getElementById("wordCount").innerHTML = "Number of words shown:&nbsp;&nbsp;"+dispList.length;
60 }
61
62 function Word(name, etymology, meaning, tag) {
63 this.name = name;
64 this.etymology = "["+etymology+"]";
65 this.meaning = meaning;
66 this.tag = tag;
67 this.tableData = document.createElement("tr");
68 this.tableData.innerHTML = "<td><dfn lang='x-XX-jt'>"+this.name+"</dfn></td><td>"+this.etymology+"</td><td class='def'>"+this.meaning+"</td>";
69 this.sort = "";
70 }
71
72 function nameSort(word1, word2) {
73 var name1 = word1.sort;
74 var name2 = word2.sort;
75 if (name1 < name2) return -1;
76 else return 1;
77 };
78
79 var categorize = function(word) {
80 wordList[wordList.length] = word;
81 tagList[word.tag][tagList[word.tag].length] = word;
82 var caseLtr;
83 for (i=0; i<word.name.length; i++) {
84 switch (word.name[i]) {
85
86 case "ä":
87 caseLtr = "a";
88 break;
89
90 case "ā":
91 caseLtr = "a";
92 break;
93
94 case "æ":
95 caseLtr = "ae";
96 break;
97
98 case "ꜵ":
99 caseLtr = "ao";
100 break;
101
102 case "ē":
103 caseLtr = "e";
104 break;
105
106 case "ħ":
107 caseLtr = "h";
108 break;
109
110 case "ī":
111 caseLtr = "i";
112 break;
113
114 case "œ":
115 caseLtr = "oe";
116 break;
117
118 case "ə":
119 caseLtr = "u";
120 break;
121
122 case "ʒ":
123 caseLtr = "z";
124 break;
125
126 case "1":
127 if (word.name[i+1] === "0") caseLtr = "8";
128 else caseLtr = "1";
129 break;
130
131 default:
132 caseLtr = word.name[i];
133 break;
134
135 };
136 word.sort = word.sort + caseLtr;
137 }
138 };
139
140 // categorize(new Word("æt", "VII sæd + dāt", "(of a female) Virgin", "people"));
141 categorize(new Word("dāhätso", "VII dāhatso", "Gatherer", "people"));
142 categorize(new Word("dātäd", "VII dātād", "Friend", "people"));
143 categorize(new Word("dogotād", "VII dowä + tuæd, 'strong person'", "Adult", "people"));
144 categorize(new Word("dowätu", "VII", "Baby", "people"));
145 categorize(new Word("hätvē", "VII howē, 'create'", "Craftsman", "people"));
146 categorize(new Word("hodowä", "VII", "Leader", "people"));
147 categorize(new Word("jāstugā", "VIII jāstulæ, from VII jäsāto + tuædl, 'speaking people'", "1. (archaic) Speaker<br />2. The Language", "people"));
148 categorize(new Word("judænted", "VIII jundænted, from VII juädosā + sæted, 'loving woman'", "Caretaker", "people"));
149 categorize(new Word("otfähud", "VII hotsähē + tuædl, 'crab people'", "Mute", "people"));
150 categorize(new Word("sænted", "VIII sæntid, from VII sæted", "Woman", "people"));
151 categorize(new Word("tāħätœ", "VII", "Guardian", "people"));
152 categorize(new Word("tātä", "VIII tāhätœ", "Army", "people"));
153 categorize(new Word("tꜵtsā", "VII tautsē", "Hunter", "people"));
154 categorize(new Word("totādo", "VII totæd + dā, 'fast child'", "Older child", "people"));
155 categorize(new Word("toted", "VIII totid, from VII totæd", "Young child", "people"));
156 categorize(new Word("toʒutā", "VII towu + switād, 'small man'", "Young adult", "people"));
157 categorize(new Word("tuād (1)", "VII tuæd", "Person", "people"));
158 categorize(new Word("tudävä", "VII tudāwä", "Elder", "people"));
159 categorize(new Word("ʒeted", "VIII ʒitid, from VII switād", "Man", "people"));
160 categorize(new Word("dädhē", "VII däwdhī", "Neck/Throat", "body_parts"));
161 categorize(new Word("dājofoto", "VII dāoso + jäsāto, 'takes speech'", "Ear", "body_parts"));
162 categorize(new Word("dāodwā", "VII dā'o + dowā, 'go strong'", "Spine", "body_parts"));
163 categorize(new Word("dāəsāso", "VII dā'o + həsäso, 'goes back'", "Joints", "body_parts"));
164 categorize(new Word("dotädo", "VII", "Head", "body_parts"));
165 categorize(new Word("dotovī", "VII dotädo + owī, 'head owī'", "Nose", "body_parts"));
166 categorize(new Word("dovätħī", "VII dowä + tähādī, 'big side'", "Hip", "body_parts"));
167 categorize(new Word("dowāħē", "VII dowa+hā'ē, 'great life'", "Heart", "body_parts"));
168 // categorize(new Word("edæn", "VIII nedæ, from VII sæted", "Female breast", "body_parts"));
169 categorize(new Word("hādosī", "VII", "Eye", "body_parts"));
170 categorize(new Word("hādoso", "VII ħā'o + dāso", "Blood", "body_parts"));
171 categorize(new Word("ħāfohē", "VIII ħæfohē, from VII ħœtsohē", "Chest/Torso", "body_parts"));
172 categorize(new Word("hāsutmā", "VII hāso + sat'wā 'front of arm'", "Shoulder", "body_parts"));
173 categorize(new Word("hāto", "VII", "Hair", "body_parts"));
174 categorize(new Word("hopājo", "VII hotad + jāso, 'ground touch'", "Foot", "body_parts"));
175 categorize(new Word("hopəsāto", "VII howē + jäsāto, 'speech maker'", "Lung", "body_parts"));
176 categorize(new Word("ħosuād", "VII hosāso + tuæd, 'rock body'", "Bone", "body_parts"));
177 categorize(new Word("ovītfē", "VII owī+otsē, 'sharp eater'", "Tooth", "body_parts"));
178 categorize(new Word("sādo", "VII sā'do", "Leg", "body_parts"));
179 categorize(new Word("sätꜵsā", "VII sä'täusē", "Meat/Flesh", "body_parts"));
180 // categorize(new Word("säthāē", "VII sä'täusē + hā'ē, 'lifemeat'", "Placenta", "body_parts"));
181 categorize(new Word("sods", "VII so + odso, 'that which drinks'", "Tongue", "body_parts"));
182 categorize(new Word("sojā", "VII so + jāso, 'that which touches'", "Finger", "body_parts"));
183 categorize(new Word("somə", "VII sodā", "Skin", "body_parts"));
184 categorize(new Word("səhowē", "VII so + howē, 'that which creates'", "Hand", "body_parts"));
185 categorize(new Word("səwā", "VIII sawā, from VII sat'wā", "Arm", "body_parts"));
186 categorize(new Word("tuād (2)", "VII tuæd", "Body", "body_parts"));
187 // categorize(new Word("zætowu", "VII sæd + towu, 'female weakness'", "Female reproductive system, esp. vulva", "body_parts"));
188 // categorize(new Word("ʒœto", "VII sœt", "Male reproductive system, esp. penis", "body_parts"));
189 categorize(new Word("zotsē", "VII sotsē", "Mouth", "body_parts"));
190 categorize(new Word("əsoto", "VIII asoto, from VII dasīto", "Pants", "clothing"));
191 categorize(new Word("dätoso", "VII dotäsā", "Shoes", "clothing"));
192 categorize(new Word("domodä", "VII dosoä", "Shirt", "clothing"));
193 categorize(new Word("dətädā", "VII ddotädā", "Hat", "clothing"));
194 categorize(new Word("jätādə", "VII säte + dotädā, 'animal hat'", "Mask", "clothing"));
195 categorize(new Word("todā", "VII todæ", "Clothing", "clothing"));
196 categorize(new Word("dāfuso", "VII dāso + tuso, 'water need'", "Thirst", "biorythms"));
197 categorize(new Word("dotogä", "VIII dotolvä, from VII dotowā, 'to sleep'", "Sleep", "biorythms"));
198 categorize(new Word("josət", "VII däusət + hotsə", "Waste elimination", "biorythms"));
199 // categorize(new Word("sænäʒē", "VII sædhā + ätē, 'moon sickness'", "Menstration", "biorythms"));
200 categorize(new Word("sētgē", "VII sēt + tēdsī, 'food pain'", "Hunger", "biorythms"));
201 categorize(new Word("bīfeut", "VII towu + hīätsē, 'berry'", "Purple", "sight"));
202 categorize(new Word("dāhētə (1)", "VII", "Transparent/Translucent", "sight"));
203 categorize(new Word("dwīmet", "VII dowīet", "Brown", "sight"));
204 categorize(new Word("fozē", "VII howosē", "Vision", "sight"));
205 categorize(new Word("hīə", "VIII hīa, from VII hīat", "Green", "sight"));
206 categorize(new Word("hīfə", "VII ħīha", "Light", "sight"));
207 categorize(new Word("jꜵtə", "VII daotə", "Blue", "sight"));
208 categorize(new Word("mꜵt", "VII ətäut", "Grey", "sight"));
209 categorize(new Word("ətꜵ", "VII utꜵt", "Dark/Black", "sight"));
210 categorize(new Word("ʒꜵ", "VII dꜵsē", "Red/Yellow/Orange", "sight"));
211 categorize(new Word("ʒændā", "VII sædhā", "White", "sight"));
212 categorize(new Word("hofäsē", "VII hotsäsē", "Feeling (physical)", "touch"));
213 categorize(new Word("tedsī", "VII tēdsī", "Pain", "touch"));
214 categorize(new Word("dātīt", "VII dātītsē", "Sourness", "taste"));
215 categorize(new Word("dojīdo", "VII däwdhī + dosā'o, 'throat feelings'", "Sweetness", "taste"));
216 categorize(new Word("jowäset", "VII dowäso + sēt, 'ocean food'", "Saltiness", "taste"));
217 categorize(new Word("pꜵfē", "VII sotsē + dꜵsē, 'mouth fire'", "Hotness (spiciness)", "taste"));
218 categorize(new Word("sofēʒī", "VII sotsē + tēdsī, 'tongue pain'", "Bitterness", "taste"));
219 categorize(new Word("ojīs", "VII owī + dosā'o, 'nose emotions'", "Scent", "smell"));
220 categorize(new Word("dopäjē", "VII dotädo + tēdsī, 'head pain'", "Loud", "hearing"));
221 categorize(new Word("foʒuso", "VII towu + tēdsī, 'weak voice'", "Quiet", "hearing"));
222 categorize(new Word("zāpā", "VII jäsāto", "Noise", "hearing"));
223 categorize(new Word("ʒäsā", "VII jäsāto", "Speech", "hearing"));
224 categorize(new Word("pomä", "No direct ancestors, influenced by VII dosā'ā and jäsāto", "Music", "hearing"));
225 categorize(new Word("ʒāo", "VII dosā'o", "Emotion", "emotions"));
226 categorize(new Word("dodā", "VII", "Happiness", "emotions"));
227 categorize(new Word("topā", "VII dotāt", "Anger", "emotions"));
228 categorize(new Word("ħœfo", "VII ħo'to", "Sadness", "emotions"));
229 categorize(new Word("hotäjo", "VII hosāso + dotädo", "Frustration", "emotions"));
230 categorize(new Word("hozīd", "VII hosīd", "Love, between friends or family", "emotions"));
231 categorize(new Word("jumændosā", "VIII numädosā, from VII juädosā", "Awe; love of art/beauty", "emotions"));
232 categorize(new Word("mowā", "VII dowæt", "Calmness/Peacefulness", "emotions"));
233 categorize(new Word("ʒꜵjə", "VII dꜵsē + dodsā", "Passion", "emotions"));
234 categorize(new Word("dāosē", "VII dā + dæsī", "Mental energy/Exitement", "emotions"));
235 categorize(new Word("hämē", "VII hā'ē", "Life", "life"));
236 categorize(new Word("fäē", "VII täh'ē", "Death", "life"));
237 categorize(new Word("däħmē", "VII däħē", "Livingness/Healthiness", "life"));
238 categorize(new Word("täħē", "VII täħ'ē", "Deadness/Lack of life", "life"));
239 categorize(new Word("ätē", "VII", "Sickness", "life"));
240 categorize(new Word("fedso", "VII tēdsī + so, 'pain thing'", "Injury", "life"));
241 categorize(new Word("jo", "VII dāt + so", "Right", "abstracts"));
242 categorize(new Word("zäfo", "VII tāt + so", "Wrong", "abstracts"));
243 categorize(new Word("dävo", "VII dꜵwä", "Knowledge/Wisdom", "abstracts"));
244 categorize(new Word("jꜵvə", "VII dowä", "Power", "abstracts"));
245 categorize(new Word("soʒumäd", "VII so + juädosā", "Beauty", "abstracts"));
246 categorize(new Word("hosē", "VII hosīd", "Trust", "abstracts"));
247 categorize(new Word("dāgꜵwə", "VII dāt + dæwä", "Hope", "abstracts"));
248 categorize(new Word("doteħvo", "VII dowä + totehħo", "Courage", "abstracts"));
249 categorize(new Word("toʒutsā", "VII towu + jäsāto, 'small speech'", "Word", "lang"));
250 categorize(new Word("doʒāto", "VII dowä + jasāto", "Statement", "lang"));
251 categorize(new Word("pœt", "No direct ancestors", "A moment; also, time", "time"));
252 categorize(new Word("hœpə", "VII hīhä", "Day, esp. midday", "time"));
253 categorize(new Word("zænʒā", "VII sædhā", "Night", "time"));
254 categorize(new Word("ædæ", "VII sædhā + hā'ē, 'moon life'", "Month", "time"));
255 categorize(new Word("dovītə", "VII dowätu + ħīhä, 'baby sun'", "Morning", "time"));
256 categorize(new Word("fəmovə", "VII tudowu + ħīhä, 'old sun'", "Evening", "time"));
257 categorize(new Word("səpœ", "VIII sapœ, from VII sat + VIII pœt", "The current time; the present", "time"));
258 categorize(new Word("ʒœt", "VII so + VIII pœt", "A later time; the future", "time"));
259 categorize(new Word("pəsä", "VII pœt + səsä", "A previous time; the past", "time"));
260 categorize(new Word("1 - ʒo", "VII so", "One", "numbers"));
261 categorize(new Word("2 - mos", "VIII los, from VII sol, 'things'", "Two", "numbers"));
262 categorize(new Word("3 - goju", "VIII ʒols, from VII so + sol", "Three", "numbers"));
263 categorize(new Word("4 - zävā", "VII sat'wā, 'hand'", "Four", "numbers"));
264 categorize(new Word("5 - wāt", "VIII wālt, from VIII zālt, from VII sol", "Five", "numbers"));
265 categorize(new Word("6 - spo", "VII sol", "Six", "numbers"));
266 categorize(new Word("7 - jät", "VIII ʒät, from VII sol", "Seven", "numbers"));
267 categorize(new Word("10 - sænto", "VIII säntol, from VII sat'wāl, 'hands'", "Eight", "numbers"));
268 categorize(new Word("dāso", "VII", "Water", "submat"));
269 categorize(new Word("vemet", "VIII vimet, from VII dowiet", "Wood", "submat"));
270 categorize(new Word("pozäso", "VII hosāso", "Rock/Stone", "submat"));
271 categorize(new Word("pozə", "VII hotsə", "Ground", "submat"));
272 categorize(new Word("dꜵsē", "VII", "Fire", "submat"));
273 categorize(new Word("dozə", "VII dowä + hosāso, 'strong rock'", "Metal", "submat"));
274 categorize(new Word("tovuso", "VII towu + hosāso", "Clay", "submat"));
275 categorize(new Word("dꜵtə", "VII", "Sky", "easky"));
276 categorize(new Word("ħītə", "VII ħīhä", "Moon", "easky"));
277 categorize(new Word("toväē", "VII towā'ē", "Star", "easky"));
278 categorize(new Word("hoʒā", "VII hotsā", "Land", "easky"));
279 categorize(new Word("tudāso", "VII", "River/Creek", "easky"));
280 categorize(new Word("dœväso", "VII dowäso", "Large body of water", "easky"));
281 categorize(new Word("towudo", "VII towu + dāso, 'small water'", "Smaller body of water", "easky"));
282 categorize(new Word("dowätsā", "VII dowä + hotsā, 'great land'", "Mountains", "easky"));
283 categorize(new Word("tovutzā", "VII towu + hotsā, 'weak land'", "Valleys", "easky"));
284 categorize(new Word("dāsozā", "VII dāso + hotsā, 'water land'", "Island", "easky"));
285 categorize(new Word("ʒꜵ", "VII dꜵtə + so, 'skystuff'", "Air", "submat"));
286 categorize(new Word("gupə", "VIII gud + pozə, 'allground'", "Earth/World", "easky"));
287 categorize(new Word("dꜵtosā", "VII dꜵtə + dosāo, 'sky emotions'", "Weather", "natoc"));
288 categorize(new Word("dātäso", "VII", "Cloud", "natoc"));
289 categorize(new Word("dozā", "VII dodsā", "Rain", "natoc"));
290 categorize(new Word("dotəs", "VII dotās", "Snow", "natoc"));
291 categorize(new Word("jowā", "VII dowæt", "Wind", "natoc"));
292 categorize(new Word("ətꜵ", "VII ətꜵt", "Storm", "natoc"));
293 categorize(new Word("jovəs", "VII dowä + dotās, 'hard snow'", "Hail", "natoc"));
294 categorize(new Word("ʒꜵsə", "VII dætə + dꜵsē, 'sky fire'", "Lightning", "natoc"));
295 categorize(new Word("hāpē", "VII hā'ē", "Spring", "natoc"));
296 categorize(new Word("ħīmä (1)", "VII ħīhä", "Summer", "natoc"));
297 categorize(new Word("ħīmä (2)", "VIII ħīmä (1)", "Year", "time"));
298 categorize(new Word("täænē", "VIII tänē, from VII täh'ē", "Autumn", "natoc"));
299 categorize(new Word("ændə", "VII sædħā", "Winter", "natoc"));
300 categorize(new Word("tæn", "IX täænē, 'Autumn'", "Feminine name", "names"));
301 categorize(new Word("īotæhiə", "IX īotā + VII hīa, 'Green Shoot'", "Feminine name", "names"));
302 categorize(new Word("īo", "dim. of īotæhiə", "Feminine name", "names"));
303 categorize(new Word("dā", "VII", "Quickness", "qualcon"));
304 categorize(new Word("tud", "VII", "Slowness", "qualcon"));
305 categorize(new Word("jovä", "VII dowä", "Greatness", "qualcon"));
306 categorize(new Word("fowu", "VII towu", "Smallness/Unimporance", "qualcon"));
307 categorize(new Word("gopä", "VII dowä", "Strength", "qualcon"));
308 categorize(new Word("tämu", "VII towu", "Weakness", "qualcon"));
309 categorize(new Word("dāpe", "VII dāt", "Goodness", "qualcon"));
310 categorize(new Word("tāt", "VII", "Badness", "qualcon"));
311 categorize(new Word("mꜵwə", "VII dꜵwə", "Wisdom", "qualcon"));
312 categorize(new Word("dātäʒo", "VII dotädo + dātäso", "Stupidity", "qualcon"));
313 categorize(new Word("täʒo", "VIII dātäʒo", "Foolishness", "qualcon"));
314 categorize(new Word("totāħho", "VII totehħo", "Hardworkingness/Determination", "qualcon"));
315 categorize(new Word("tudvu", "VII tud + towu", "Lazy", "qualcon"));
316 categorize(new Word("äħmo", "No direct ancestors, influenced by VII owī", "Sharpness", "qualcon"));
317 categorize(new Word("ħāso", "VII", "Front", "locn"));
318 categorize(new Word("səsä", "VII həsāso", "Back", "locn"));
319 categorize(new Word("tīhād", "VII tähādī", "Side", "locn"));
320 categorize(new Word("dhītə", "VII", "Top", "locn"));
321 categorize(new Word("œsə", "VII dœtsə", "Down", "locn"));
322 categorize(new Word("pī", "No direct ancestors", "Right (side)", "locn"));
323 categorize(new Word("dī", "No direct ancestors", "Left (side)", "locn"));
324 categorize(new Word("zäto", "VII satohī", "Nearness", "locn"));
325 categorize(new Word("sojo", "VII sodohī", "Farness", "locn"));
326 categorize(new Word("sahī", "VII satohī", "Here", "pron"));
327 categorize(new Word("dosī", "VII sodohī", "There", "pron"));
328 categorize(new Word("zo", "VII so", "That", "pron"));
329 categorize(new Word("sət", "VIII sat, from VII", "This", "pron"));
330 categorize(new Word("ʒod", "VII sod", "Impersonal third person pronoun", "pron"));
331 categorize(new Word("æ", "VII sæ", "Female third person pronoun", "pron"));
332 categorize(new Word("su", "VII", "Male third person pronoun", "pron"));
333 categorize(new Word("əwād", "VII sə'æd", "Second person pronoun", "pron"));
334 categorize(new Word("zī", "VII sī", "First person pronoun", "pron"));
335 categorize(new Word("fœt", "VII zo + sat, 'This or that?'", "Impersonal relative pronoun", "pron"));
336 categorize(new Word("fī", "VII sī, 'Me?'", "Personal relative pronoun", "pron"));
337 categorize(new Word("dāzēt", "VII däsāt + sēt, 'Need food'", "Hunger", "qualcon"));
338 categorize(new Word("odāso", "VII däsāt + odso, 'Need drink'", "Thirst", "qualcon"));
339 categorize(new Word("dotäsvā", "VII däsāt + dotowā, 'Need sleep'", "Exhaustion", "qualcon"));
340 categorize(new Word("ꜵte", "VII ꜵhē", "Brokenness", "qualcon"));
341 categorize(new Word("tudän", "VII tudowä", "Age", "qualcon"));
342 categorize(new Word("otād", "VII totæd", "Youth", "qualcon"));
343 categorize(new Word("æn", "VII sæd", "Female", "qualcon"));
344 categorize(new Word("sœt", "VII", "Male", "qualcon"));
345 categorize(new Word("väd", "VII dowä", "Hardness", "qualcon"));
346 categorize(new Word("ofu", "VII towu", "Softness", "qualcon"));
347 categorize(new Word("ħœt", "VII hotsə", "Roughness", "qualcon"));
348 categorize(new Word("dæs", "VII dāso", "Smoothness", "qualcon"));
349 categorize(new Word("ʒosē", "VII dꜵsē", "Heat", "qualcon"));
350 categorize(new Word("œtäs", "VII dotās", "Coldness", "qualcon"));
351 categorize(new Word("ħēmə", "VII ħīat", "Flexibility", "qualcon"));
352 categorize(new Word("zudso", "VII juädosā +so", "Beauty", "qualcon"));
353 categorize(new Word("ħotʒī", "VII howosē + tēdsī", "Ugliness", "qualcon"));
354 categorize(new Word("dātomē", "VII dāt + sotsē", "Smile", "exp"));
355 categorize(new Word("ʒotā", "VII dotāt", "Frown", "exp"));
356 categorize(new Word("dəsāto", "VII dodā + jäsāto, 'Happy voice", "Laughter", "exp"));
357 categorize(new Word("dojā", "VII dodsā", "Crying", "exp"));
358 categorize(new Word("dātoso", "VII", "Shortwolf", "anim"));
359 categorize(new Word("zoʒo", "VII", "Largefrog", "anim"));
360 categorize(new Word("zofā", "VII zotsā", "Snake", "anim"));
361 categorize(new Word("gꜵsī", "VII", "Salamander", "anim"));
362 categorize(new Word("gosə", "VII", "Bird", "anim"));
363 categorize(new Word("hotusē", "VII hotsäħē", "Crab", "anim"));
364 categorize(new Word("dāzät", "VII dāsotē", "Fish", "anim"));
365 categorize(new Word("tävē", "VII toväħe", "Insects", "anim"));
366 categorize(new Word("dādē", "VII", "Frog hare", "anim"));
367 categorize(new Word("gāo", "VII bāo", "Small mammal", "anim"));
368 categorize(new Word("tabꜵ", "VII täh'e + bāo, 'Zombie mouse'", "Porcumouse (poisonous)", "anim"));
369 categorize(new Word("dovī", "VII dowī", "Otterbear", "anim"));
370 categorize(new Word("sätsuē", "VII sätsutē", "Deer", "anim"));
371 categorize(new Word("zätē", "VII sätē", "Animal", "anim"));
372 categorize(new Word("ħofē", "VII hīätsē + otsē, 'Plant-eater'", "Platipus-cow (cattle)", "anim"));
373 categorize(new Word("fꜵzē", "VII sä'tꜵsē", "Pig", "anim"));
374 categorize(new Word("dätzē", "VII dā + sätē, 'quick animal'", "Waterfox (cat)", "anim"));
375 //Note: For dätze, the "quick" in the etymology is a reference to swiftness, nimbleness, cleverness, etc.
376 categorize(new Word("hīät", "VII hīat", "Vegitation", "plant"));
377 categorize(new Word("dꜵʒīt", "VII dꜵzīat", "Flowering plant", "plant"));
378 categorize(new Word("ofī", "VII hotsīt", "Bush", "plant"));
379 categorize(new Word("dotīät", "VII dotiat", "Tree", "plant"));
380 categorize(new Word("īotā", "VII hīāt + otād", "A sprout", "plant"));
381 categorize(new Word("sēt", "VII", "Food", "food"));
382 categorize(new Word("hīfē", "VII hīätsē", "Plantstuffs (edible)", "food"));
383 categorize(new Word("sāfē", "VII sä'tꜵsē", "Meat", "food"));
384 categorize(new Word("tidfē", "VII dtāītsē", "Fruit", "food"));
385 categorize(new Word("votāsē", "VII towā'ē + sēt, 'Starfood'", "Rice", "food"));
386 categorize(new Word("dāħītsə", "VII ħīhä + dātītsē, 'Sun fruit'", "Apple (yellow)", "food"));
387 categorize(new Word("dædsā", "VII sædħā + dātītsē, 'Moon fruit'", "Snow citrus (similar to Satsuma)", "food"));
388 categorize(new Word("tovītsē", "VII towā'ē + dātītsē, 'Star fruit'", "Compound berry", "food"));
389 categorize(new Word("odsāo", "VII dosā'o + odsā", "Alcohol", "food"));
390 categorize(new Word("tꜵwā", "VII tauhā", "Weapon", "tool"));
391 categorize(new Word("owī", "VII", "Sharp object", "tool"));
392 categorize(new Word("gəsī", "VIII bəsī, from VII gosə + owī", "Spear", "tool"));
393 categorize(new Word("ꜵvīt", "VII owī", "Knife", "tool"));
394 categorize(new Word("hofädo", "VII hotsə + dā'o", "Wheel", "tool"));
395 categorize(new Word("hofādso", "VIII hofädo + so", "Wheeled cart", "tool"));
396 categorize(new Word("dotsīto", "VII dotohī + so", "Pot (or other container)", "tool"));
397 categorize(new Word("däʒētsē", "VII däwdhī + dātītsē, 'neck fruit'", "Necklace", "jwlry"));
398 categorize(new Word("sədētsā", "VIII sadētsā, from VII sat'wā + dātītsē, 'wrist fruit'", "Bracelet", "jwlry"));
399 categorize(new Word("owītsē", "VII owī + dātītsē, 'sharp fruit'", "Piercing", "jwlry"));
400 //Note: As you may have noticed, fruit is considered a symbol of wealth, beauty, and adornment - Jewelry
401 categorize(new Word("jāsotə", "VII jāso + hotsə", "Drums", "inst"));
402 categorize(new Word("ʒāo", "VII jāso + dāso", "Strings", "inst"));
403 categorize(new Word("domā", "VII dowæt", "Flutes", "inst"));
404 categorize(new Word("tototsə", "VII totēhħo + hotsə", "Copper", "submat"));
405 categorize(new Word("dawotsə", "VII dꜵwä + hotsə", "Bronze", "submat"));
406 categorize(new Word("hīotsə", "VII hīhä + hotsə", "Gold", "submat"));
407 categorize(new Word("oʒās", "VII ħosāso", "Dirt", "submat"));
408 categorize(new Word("tozo", "VII todā + so", "Cloth", "submat"));
409 categorize(new Word("sosutē", "VII sodā + sätsutē", "Leather", "submat"));
410 categorize(new Word("ʒud", "VII du", "Fine; OK", "qualcon"));
411 categorize(new Word("ꜵtfē", "VII ꜵħē", "Dangerous", "qualcon"));
412 categorize(new Word("pāzo", "VII hāso", "Start/Beginning", "locn"));
413 categorize(new Word("ʒätso", "VII həsäso", "Finish/End", "locn"));
414 categorize(new Word("ʒätāzo", "VII däsāt", "More", "pron"));
415 categorize(new Word("dꜵs", "VII dāoso", "Less", "pron"));
416 categorize(new Word("ꜵst", "VII dꜵsət", "Another", "pron"));
417 categorize(new Word("toʒu", "VIII hoʒā + tovuso, 'Clay land'", "Map", "tool"));
418 categorize(new Word("tātä", "VIII tāhätœ", "Army", "people"));
419 categorize(new Word("dumä", "VII daħmē + səhī", "Room", "build"));
420 categorize(new Word("duwātsä", "VIII tuād + dowätsā", "City", "build"));
421 categorize(new Word("dāʒo", "VIII doʒāto", "Story (literature)", "lang"));
422 categorize(new Word("fotjo", "VIII fot + sojo, 'What farness'", "Length", "dist"));
423 categorize(new Word("fäħsēħ", "VIII fatäsol'ħə, 'drawing'", "Draft", "art"));
424 categorize(new Word("wādœʒə", "VIII jäsāto + œʒə + əwād, 'How are you spoken?'", "Name", "lang"));
425 categorize(new Word("du", "VII", "Yes", "yn"));
426 categorize(new Word("fo", "VII to", "No", "yn"));
427 categorize(new Word("væ", "VII howē", "For", "conj"));
428 categorize(new Word("mœ", "No direct ancestors", "And", "conj"));
429 categorize(new Word("fīt", "VII to", "Nor", "conj"));
430 categorize(new Word("o", "No direct ancestors", "But", "conj"));
431 categorize(new Word("äz", "VII däsat", "Or", "conj"));
432 categorize(new Word("od", "No direct ancestors", "Yet", "conj"));
433 categorize(new Word("sē", "VII howosē", "So", "conj"));
434 categorize(new Word("-l (1)", "- - -", "Pluralize", "mod"));
435 categorize(new Word("-l'ħə", "- - -", "-ing", "mod"));
436 categorize(new Word("-l'vet", "- - -", "-tion", "mod"));
437 categorize(new Word("-l'to", "- - -", "One who... (-er)", "mod"));
438 categorize(new Word("-l'ʒē", "- - -", "-ate", "mod"));
439 categorize(new Word("to-", "- - -", "un-", "mod"));
440 categorize(new Word("met-", "- - -", "re-", "mod"));
441 categorize(new Word("uħl'-", "- - -", "Optative (indicative)/Permissive (imperative)", "mood"));
442 categorize(new Word("äl'-", "- - -", "Mirative (indicative)", "mood"));
443 categorize(new Word("odl'-", "- - -", "Assumptive & deductive (indicative)/Hortative (imperative)", "mood"));
444 categorize(new Word("dul'-", "- - -", "Alethic - No other possibility; must be true (indicative)/Jussive (imperative)", "mood"));
445 categorize(new Word("fīl'-", "- - -", "Not", "mod"));
446 categorize(new Word("ʒāsl'-", "- - -", "Renarrative (indicative)", "mood"));
447 categorize(new Word("tädl'-", "- - -", "Commissive (indicative)/Precative (imperative)", "mood"));
448 categorize(new Word("-l'vo", "- - -", "-ify", "mod"));
449 categorize(new Word("-l'go", "- - -", "Past tense", "tense"));
450 categorize(new Word("-l'ä", "- - -", "Future tense", "tense"));
451 categorize(new Word("-l'gī", "- - -", "Infinitive", "mod"));
452 categorize(new Word("-l (2)", "- - -", "Imperative", "mood"));
453 categorize(new Word("pə", "No direct ancestors", "Definite Article", "article"));
454 categorize(new Word("ʒā", "No direct ancestors", "Indefinite Article", "article"));
455 categorize(new Word("äʒə", "No direct ancestors", "Proper Article", "article"));
456 categorize(new Word("odo", "VIII dosī", "Hello", "excl"));
457 categorize(new Word("ʒꜵʒā", "VIII ʒāo + ʒꜵ, 'Emotion of the air'", "Aura/Atmosphere", "abstracts"));
458 categorize(new Word("tuʒꜵā", "VIII tuād + IX ʒꜵʒā, 'Aura person'", "Spirit/Presence", "people"));
459 categorize(new Word("dwomā", "VIII dwīmet", "Coffee", "food"));
460 categorize(new Word("-l'āo", "- - -", "Past participle", "mod"));
461 categorize(new Word("īʒāo", "VIII dītāʒol'āo, 'risen'", "Bread", "food"));
462 categorize(new Word("ʒꜵ", "VII jāso", "With", "prep"));
463 categorize(new Word("ʒoħ", "VII sodoħī", "To", "prep"));
464 categorize(new Word("sī", "VII satoħī", "From", "prep"));
465 categorize(new Word("zəfo", "VIII zafo, from VII satoħī", "In", "prep"));
466 categorize(new Word("täħdē", "VII tähādī", "Out", "prep"));
467 categorize(new Word("īə", "VII hīhä", "On", "prep"));
468 categorize(new Word("tsə", "VII ħofsə", "Off", "prep"));
469 categorize(new Word("ād", "VII dādē", "Around", "prep"));
470 categorize(new Word("āo", "VII bāo", "Through", "prep"));
471 categorize(new Word("gos", "VII gosə", "Above", "prep"));
472 categorize(new Word("āso", "VII hosāso", "Below", "prep"));
473 categorize(new Word("āī", "VII hādī", "Between", "prep"));
474 categorize(new Word("äādī", "VII tähādī", "Beside", "prep"));
475 categorize(new Word("āʒo", "VIII āo + ʒꜵ", "Of", "prep"));
476 categorize(new Word("āfī", "IX āʒo + VIII āfohī, 'Of where'", "At", "prep")); // Note: āfohī was later removed from VIII in favor of an improved interrogative pronoun system
477 categorize(new Word("dot", "VII", "Is defined", "verb"));
478 categorize(new Word("howā", "VII ohwā", "Is done/Is able to be done", "verb"));
479 categorize(new Word("dāo", "VII", "Is gone", "verb"));
480 categorize(new Word("teo", "VII", "Is stopped", "verb"));
481 categorize(new Word("otsē", "VII", "Is eaten", "verb"));
482 categorize(new Word("odso", "VII", "Is drunk", "verb"));
483 categorize(new Word("ħowē", "VII", "Is made", "verb"));
484 categorize(new Word("ꜵhē", "VII", "Is destroyed", "verb"));
485 categorize(new Word("dꜵsət", "VII", "Is given", "verb"));
486 categorize(new Word("dāoso", "VII", "Is taken", "verb"));
487 categorize(new Word("dohī", "VII dotohī", "Is had", "verb"));
488 categorize(new Word("tꜵso", "VII", "Is wanted", "verb"));
489 categorize(new Word("däsāt", "VII", "Is needed", "verb"));
490 categorize(new Word("dədowä", "VII dodowə", "Is grown", "verb"));
491 categorize(new Word("osə", "VII", "Is used", "verb"));
492 categorize(new Word("ʒāso", "VII jāso", "Is touched/Is felt", "verb"));
493 categorize(new Word("jäsāto", "VII", "Is spoken", "verb"));
494 categorize(new Word("dotowä", "VII", "Is slept", "verb"));
495 categorize(new Word("howosē", "VII", "Is seen", "verb"));
496 categorize(new Word("dowāt", "VII dowätu + ħowē, 'Make new'", "Is mixed", "verb"));
497 categorize(new Word("toto", "VII totehħo, 'able'", "Is enabled", "verb"));
498 categorize(new Word("dꜵtāo", "VII dꜵtə + dā'o", "Is flown", "verb"));
499 categorize(new Word("däud", "VII dā'oso + sod", "Is grabbed", "verb"));
500 categorize(new Word("foāso", "VII toh + dā'oso", "Is dropped", "verb"));
501 categorize(new Word("ēdꜵtī", "VII dꜵsət + tēdsī", "Is attacked", "verb"));
502 categorize(new Word("ätꜵs", "VII dꜵsət + ätē", "Is hurt", "verb"));
503 categorize(new Word("sītā", "VII sat'wā + tēdsī", "Is punched", "verb"));
504 categorize(new Word("sētī", "VII sā'do + tēdsī", "Is kicked", "verb"));
505 categorize(new Word("sādo", "VII dā'o + dā'oso", "Is brought", "verb"));
506 categorize(new Word("dosī", "VII dā'o + sī", "Is come", "verb"));
507 categorize(new Word("totā", "VII to + te'o", "Is left", "verb"));
508 categorize(new Word("ħowətē", "VIII ħowatē, from VII ħowē + tahē", "Is killed", "verb"));
509 categorize(new Word("ʒoħʒə", "VIII ʒoħ + hoʒā, 'To land'", "Is arrived", "verb"));
510 categorize(new Word("dītāʒo", "VIII dhītə ʒo sādo", "Is risen", "verb"));
511 categorize(new Word("fātjoso", "VIII fotjo + dāoso, 'Long take'", "Is drawn (as in 'pull')", "verb"));
512 categorize(new Word("fətäso", "X fatäso, from IX fātjoso + VIII jäsāto, 'Drawn speech'", "Is drawn (as in, a picture)", "verb"));
513 categorize(new Word("dꜵdo", "VIII sādo", "Is pulled", "verb"));
514 categorize(new Word("zīʒꜵ", "VIII zīol + ʒꜵ, 'With ourselves'", "Togetherness", "qualcon"));
515 categorize(new Word("po", "VIII pœt", "While", "conj"));
516 categorize(new Word("zäħso", "VIII zudso + äħmo, 'Sharp beauty'", "Masculine name", "names"));
517 categorize(new Word("dāħe", "VIII däħme + āfī, 'Living at'", "House", "build"));
518 categorize(new Word("sāħēt", "IX dāħe + VIII sēt, 'Food house'", "Store, esp. for food", "build"));
519 categorize(new Word("päto", "No direct ancestors", "Father", "people"));
520 categorize(new Word("īʒo", "IX zīʒꜵ + VIII ħowē, 'Assemble'", "Is met", "verb"))
521
522 window.addEventListener('DOMContentLoaded', wordFilter, false);
523 window.addEventListener('change', wordFilter, false);
This page took 0.264141 seconds and 5 git commands to generate.