-
Notifications
You must be signed in to change notification settings - Fork 35
/
TEHMC - Translators Expansion of Hebrew Morphology Codes - STEPBible.org CC BY.txt
4780 lines (4767 loc) · 385 KB
/
TEHMC - Translators Expansion of Hebrew Morphology Codes - STEPBible.org CC BY.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
TEHMC - Translators Expansion of Hebrew Morphhology Codes - STEPBible.org CC BY
=======================================================
Hebrew morphology codes with expanded explanations in terms of parsing, meaning and example
Brief morphology codes - as used in the lexicons
Full morphology codes - as used in tagged texts
==============================================================
Data created by www.STEPBible.org based on work at Tyndale House Cambridge (CC BY 4.0)
==============================================================
This licence allows you to:
* Include any part of this data in software or publications without requesting permission
* Download the data and reformat it for your application, without changing the data
* Send any proposed corrections to STEPBibleATGmail.com. to be verified
(You MAY make changes yourself, but you should include a note of changes that can be viewed by those who use your new data)
* Refer others to github.com/STEPBible as the source of the data. Please do not redistribute it yourself.
(Updates or corrections are easier to implement when the data is distributed from a single source)
* We'd love to hear about your project when you make it available. Email us at STEPBibleATGmail.com..
==============================================================
BRIEF LEXICAL MORPHOLOGY CODES:
================
These codes are used in the Lexicon. They are used to define the the word, and not each individual instance of the word.
Form is: Language:Function-Gender-Type
Example: "a Samaritan" is "N:N-M-LG" where "N:" is a "Name" (a special form of 'language' because it isn't restricted to one language); "N" is the function "Noun"; "M" is "Male"; "L" is Location, G=Gentilic (i.e. defining a group of people).
Some traditional Strong numbers refer to more than one word, e.g. G1508= "εἰ μή" which is "G:Cond + G:Neg" (note the space either side of "+")
Some refer to single words that are formed by merging words, e.g. G2504= "κἀγώ" which is G:Conj+G:PerP (note no space either side of "+")
Some words have alternate morphologies for different uses, e.g. G0894= "wormwood" is G:N-F / N:N--T (note the spaces either side of "/".) The first is the Noun "wormwoed" and the second is the Name of star. (The double "--" occurs because this Name does not have a gender.)
The following forms occur in the NT:
Code Example in English Meaning
====================================================
H: ... elohim Hebrew word
A: ... elah Aramaic word
N: ... YHWH Proper noun
H:A young Hebrew Adjective
H:A-F female Hebrew Adjective (Feminine)
H:A-M male Hebrew Adjective (Masculine)
H:A / H:N-M human Hebrew Adjective OR Noun (Masculine)
H:Adv youthfully Hebrew Adverb
H:Cond if Hebrew Conditional
H:Conj and Hebrew Conjunction
H:DemP this Hebrew Demonstrative Pronoun
H:IndP any Hebrew Indefinite Pronoun
H:Intg how? Hebrew Interogative
H:Intj Hey! Hebrew Interjection
H:Neg not Hebrew Negative
H:N person Hebrew Noun
H:N-F woman Hebrew Noun (Feminine)
H:N-M man Hebrew Noun (Masculine)
H:N-M / H:A green Hebrew Noun (Masculine) OR Adjective
H:N-M / H:Adv fast Hebrew Noun (Masculine) OR Adverb
H:N-M/F person Hebrew Noun (Masculine or Feminine)
H:N-M / N:N--L bath Hebrew Noun (Masculine) OR Proper Name of a Location
H:N-M / N:N--T president Hebrew Noun (Masculine) OR Proper Name of some kind
H:N-M / N:N-M-T king Hebrew Noun (Masculine) OR Proper Name (Masculine) of some kind
H:Part up Hebrew Particle
H:PerP-CP we Hebrew Personal Pronoun (Common Plural)
H:PerP-CS I Hebrew Personal Pronoun (Common Singular)
H:PerP-FP they Hebrew Personal Pronoun (Feminine Plural)
H:PerP-FS she Hebrew Personal Pronoun (Feminine Singular)
H:PerP-MP they Hebrew Personal Pronoun (Masculine Plural)
H:PerP-MS he Hebrew Personal Pronoun (Masculine Singular)
H:Prep from Hebrew Preposition
H:Prep / H:Conj with Hebrew Preposition OR Conjunction
H:Prep+H:RelP wence (from where) Hebrew Preposition JOINED TO Relative Pronoun
H:RelP that Hebrew Relative Pronoun
H:V to think Hebrew Verb
N:N Hodiah Proper Name of a Location or Person with no stated gender
N:N-F-L Charlotte Proper Name (Feminine) of a Location
N:N-F-P Mary Proper Name of a Female Person
N:N-F-P / N:N--L Victoria Proper Name of a Female Person OR of a Location
N:N-F-PG Victorian Proper Name of a Female Person in Gentilic sense
N:N-F-T Queen Proper Name of a Female of some kind
N:N-F-T / N:N--L Queens Proper Name of a Female of some kind OR of a Location
N:N--L Judea Proper Name of a Location
N:N--L / N:N--LG Camaroon Proper Name of a Location OR of a Location in Gentilic sense
N:N--L / N:N--LG / N:N-M-P Dominican Proper Name of a Location OR of a Location in Gentilic sense OR of a Male Person
N:N--L / N:N-M-P Alexander Proper Name of a Location OR of a Male Person
N:N--L / N:N-M-T Duke Proper Name of a Location OR Male of some kind
N:N--LG Judean Proper Name of a Location in Gentilic sense
N:N--LG / N:N-M-P Roman Proper Name of a Location in Gentilic sense OR of a Male Person
N:N-M-P Judah Proper Name of a Male Person
N:N-M-P / N:A Frank Proper Name of a Male Person OR Adjectival
N:N-M-P / N:N-F-P Michael Proper Name of a Male Person OR of a Female Person
N:N-M-P / N:N-F-P / N:N--L Jordan Proper Name of a Male Person OR of a Female Person OR of a Location
N:N-M-P / N:N--L Dan Proper Name of a Male Person OR of a Location
N:N-M-P / N:N-M-PG Christian Proper Name of a Male Person OR of a Male Person in Gentilic sense
N:N-M-P / N:N-M-T Prince Proper Name of a Male Person OR Male of some kind
N:N-M-PG Judean Proper Name of a Male Person in Gentilic sense
N:N-M-T King Proper Name of a Male some kind
N:N--PG Judean Proper Name of a Person in Gentilic sense
N:N--T Pharaoh Proper Name of some kind
N:N--TG Nazarite Proper Name of some kind in Gentilic sense
Ps1c my Possessive suffix: 1st person common singular
Ps2m your Possessive suffix: 2nd person masculine singular
Ps2f your Possessive suffix: 2nd person feminine singular
Ps3m his Possessive suffix: 3rd person masculine singular
Ps3f her Possessive suffix: 3rd person feminine singular
Pp1c our Possessive suffix: 1st person common plural
Pp2m your Possessive suffix: 2nd person masculine plural
Pp2f your Possessive suffix: 2nd person feminine plural
Pp3m their Possessive suffix: 3rd person masculine plural
Pp3f their Possessive suffix: 3rd person feminine plural
Os1c me Object suffix: 1st person common singular
Os2m you Object suffix: 2nd person masculine singular
Os2f you Object suffix: 2nd person feminine singular
Os3m him Object suffix: 3rd person masculine singular
Os3f her Object suffix: 3rd person feminine singular
Op1c us Object suffix: 1st person common plural
Op2m you Object suffix: 2nd person masculine plural
Op2f you Object suffix: 2nd person feminine plural
Op3m them Object suffix: 3rd person masculine plural
Op3f them Object suffix: 3rd person feminine plural
Ss1c I Subject suffix: 1st person common singular
Ss2m you Object suffix: 2nd person masculine singular
Ss2f you Object suffix: 2nd person feminine singular
Ss3m he Object suffix: 3rd person masculine singular
Ss3f she Object suffix: 3rd person feminine singular
Sp1c we Object suffix: 1st person common plural
Sp2m you Object suffix: 2nd person masculine plural
Sp2f you Object suffix: 2nd person feminine plural
Sp3m they Object suffix: 3rd person masculine plural
Sp3f they Object suffix: 3rd person feminine plural
FULL MORPHOLOGY CODES:
================
These codes are used in the tagged texts. They are used to define each individual instance of the word.
line 1: Codes + expansion - based on OpenScripture codes which are similar to Westminster codes used by BibleWorks and other commercial software. These codes are described in detail at https://goo.gl/HP4mZQ#HebMorph
- some of the parsing is derived from the data in the codes: Stem implies the likely Action and Voice; Form implies the likely Tense and Mood. These are not definite and depend on context and the normal usage of each verb. See more at https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.evqm50b2x4wq
- the 1st character indicates Hebrew or Aramaic. When codes are strung together, this character becomes "/", e.g. "HC/Ncmsa"
line 2: morphology - the morphology in a phrase that makes sense in English
line 3: explanation - the meaning of this morphology in a phrase that makes sense in English
line 4: example - an example of how a Hebrew or Aramaic word in this form might be translated, using: "Jew" for gentilics, "person/man/woman" for nouns, "late" for adjectives etc
- verbs are based on רוּם (H7311A) which means, roughly: Qal+= "to rise" (eg "I rise", "I am risen"); Piel+= "to raise" (eg "I raise someone", "I am raised [by someone]"; Hiphil+="to exalt" (ie "I cause to be raised")
THE ELEMENTS OF MORPHOLOGY:
Functions: Conjunction, Adverb, Preposition, Particle, Pronoun, Noun, Adjective, Verb, Suffix
- these are defined and parsed in line with OpenScriptures with a few embelishments - see the table at https://goo.gl/HP4mZQ#HebMorph
Stem: Aphel, Haphel, Hiphil, Hishtaphel, Hithpaal, Hithpael, Hithpeel, Hophal, Hothpaal, Ishtaphel, Ithpaal, Itpeel, Niphal, Nithpael, Pael, Peal, Peil, Piel, Pual, Qal, Shaphel, Tiphil
(other minor forms are subsumed into these). For their interpretation https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.evqm50b2x4wq
Action, Determined by Stem: Simple, Intensive/resultive/transtive, Causative/declarative.
In explations these are "performing", "intensifying or achieving" and "causing or confirming"
Voice, Determined by Stem: Active, Passive, Reflexive/iterative.
In explanations these are done "by", "to" and "to or for themselves by"
Form - for non-verbs: different forms depending on Functions. See the table at https://goo.gl/HP4mZQ#HebMorph
- for vebs: Participle, Participle passive, Infinitive, Imperfective, Sequential Imperfective, Conjunction+Imperfective, Perfective, Sequential Perfective, Imperative.
In explanations, Imperfective is "incomplete", Perfective is "complete" and sequential follows the 'completeness' of the previous verb.
Tense, Determined by form: Future/present (for Imperf), Past/present (for Perf), Present/future (for Imperative), N/A (for Part, Infin).
In explanations, the most likely tense is listed first.
Mood, Determined by form: Imperative, Cohortative, Jussive, Enacted (ie not Jussive or Cohortative or Imperative), Enacted/Cohortative, Enacted/Jussive (for ambiguous Imperfective form).
In explanations, "should" is used for cohortative and "may" for Jussive.
Person: First, Second, Third.
In explanations these are "the one speaking or writing", "the one being addressed", "the one being discussed".
Gender: Feminine, Masculine, Either.
For proper nouns: Feminine individual, Masculine individual, Location, Other title (includes names of months, ranks, divinities etc)
Number: Singular, Plural, Dual
State: Construct, Absolute (ie non-construct), Definite (ie includes an Aramaic determinate suffix - this will be replaced by Absolute or Construct in STEPBible tagging).
In explanation, a construct is "a term combined with another"
NOTES:
* Articles and Definite or Paragogic forms are referred to in explanations as "important".
* Passive is determined by the Stem, but Participle Passive turns an Active stem into Passive. So Participle actives are recorded simply as Participle, because they can often take a passive voice.
* Hothpaal in some other systems is classified as Passive, but it is classified here as Reflexive. This occurs only rarely (Lev.13.55, 56 הֻכַּבֵּ֣ס ‘washed out’; Num.1.47; 2.33; 26.62 הָתְפָּקְד֖וּ ‘they were enrolled’; Deu.24.4 הֻטַּמָּ֔אָה ‘she has been declared unclean’; 1Ki.20.27 הָתְפָּקְדוּ֙ ‘they were3 mustered’; Isa.34.6 הֻדַּ֣שְׁנָה ‘it has fattened itself’). Normally this is passive, though it can have some reflexive undertones (esp. Isa.34.6).
* Nithpael in some other systems is classified as equivalent to Reflexive, but it is classified here as Passive. It occurs only rarely (Deu.21.8 וְנִכַּפֵּ֥ר ‘and it will be atoned for’; Prov.27.15 נִשְׁתָּוָֽה ‘she is like’; Eze.23.48 וְנִֽוַּסְּרוּ֙ ‘and.they.will.be.warned’). All these instances are Passive (with the possible exception of Pro.27.15).
* Hithpael is classified as Intensive / Resultative / Transitive, though it sometimes has the sense of Causative / Declarative. This is difficult to decide because there is evidence for either side. Only a few verbs have meanings for Qal/Niphal sufficiently different to Piel/Pual to enable assigning the Hithpael clearly to one rather than the other. See more notes at https://docs.google.com/document/d/110Oha9vqqIhtM8KySEA56g2hy0EkOgK_bV5STUfSLFk/edit#bookmark=id.g4b2vlibgf5y
* "Enacted" means Indicative - ie not subjunctive (a form that has disappeared in Hebrew) or jussive or cohortative (forms that have disappeared in most verbs in Hebrew). In many cases of Imperfective, it is impossible to know if the form is Jussive/Cohortative or not, so it is marked Enacted/jussive or Enacted/cohortative.
* "Sequential" verbs (aka consecutive or non-conjunctive) are prefixed with a vav which changes imperfective to perfective meaning and vice-versa. In general, a section begins with a non-sequential verb and may be succeeded by a number of sequential verbs till the end of the section.
* "Conjunctive" verbs are prefixed with a vav as a conjunction, so it does not change the meaning of the verb. This is recognised by vowel changes in Imperfective verbs. It is rare with Perfective verbs and there is no difference in form by which to identify it, so this is done by context. See more at https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.ygjzsla2gxpu
$
AC Function=Conjunction
Conjunction
a conjunction
"giving to‚ rich _and_ poor": "and"
$
HC Function=Conjunction
Conjunction
a conjunction
"giving to‚ rich _and_ poor": "and"
$
Hc Function=Conjunction; Form=Consecutive;
Consecutive Conjunction
a conjunction marking continued action in the same tense as the preceding verb
"giving to‚ rich _and_ poor": "and"
$
AD Function=Adverb
Adverb
DESCRIBING an action
"it was _wisely_ given": "lately"
$
HD Function=Adverb
Adverb
DESCRIBING an action
"it was _wisely_ given": "lately"
$
AR Function=Preposition
Preposition
a RELATIONSHIP to another person or thing
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
HR Function=Preposition
Preposition
a RELATIONSHIP to another person or thing
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
ARd Function=Preposition ; Form=Definite
Preposition (Definite)
a RELATIONSHIP to another person or thing with an indication that it is important or it has been referred to
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
HRd Function=Preposition ; Form=Definite
Preposition (Definite)
a RELATIONSHIP to another person or thing with an indication that it is important or it has been referred to
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
ASd Function=Suffix ; Form=Directional
Directional Suffix
AND the direction is toward this
Example: to there
$
HSd Function=Suffix ; Form=Directional
Directional Suffix
AND the direction is toward this
Example: to there
$
ASh Function=Suffix ; Form=Paragogic Hé
Paragogic Hé
AND it is important
Example: !
$
HSh Function=Suffix ; Form=Paragogic Hé
Paragogic Hé
AND it is important
Example: !
$
ASn Function=Suffix ; Form=Paragogic Nun
Paragogic Nun
AND it is important
Example: !
$
HSn Function=Suffix ; Form=Paragogic Nun
Paragogic Nun
AND it is important
Example: !
$
ATa Function=Particle ; Form=Definite article (Aramaic)
Definite article (Aramaic)
an INDICATOR that is important or it has been referred to
Example: the
$
ATc Function=Particle ; Form=Conditional
Conditional Particle
an INDICATOR that condition or a consequence follows
Example: "if, for"
$
HTc Function=Particle ; Form=Conditional
Conditional Particle
an INDICATOR that condition or a consequence follows
Example: "if, for"
$
HTd Function=Particle ; Form=Definite article (Hebrew)
Definite article (Hebrew)
an INDICATOR that this is important or it has been referred to
Example: the
$
ATi Function=Particle ; Form=Interrogative
Interrogative Particle
an INDICATOR that a question is being asked
Example: when
$
HTi Function=Particle ; Form=Interrogative
Interrogative Particle
an INDICATOR that a question is being asked
Example: when
$
ATj Function=Particle ; Form=Interjection
Interjection
an INDICATOR that this is an exclamation
Example: Oh!
$
HTj Function=Particle ; Form=Interjection
Interjection
an INDICATOR that this is an exclamation
Example: Oh!
$
ATm Function=Particle ; Form=Demonstrative
Demonstrative Particle
an INDICATOR that is pointing to a specific person or thing
Example: that
$
HTm Function=Particle ; Form=Demonstrative
Demonstrative Particle
an INDICATOR that is pointing to a specific person or thing
Example: that
$
ATn Function=Particle ; Form=Negative
Negative Particle
an INDICATOR that this is not so
Example: not
$
HTn Function=Particle ; Form=Negative
Negative Particle
an INDICATOR that this is not so
Example: not
$
ATo Function=Particle ; Form=Object indicator
Object indicator
an INDICATOR that this are who the action happens to or for
Example: ( )
$
HTo Function=Particle ; Form=Object indicator
Object indicator
an INDICATOR that this are who the action happens to or for
Example: ( )
$
ATr Function=Particle ; Form=Relative
Relative Particle
an INDICATOR that this has already been referred to in the sentence
Example: which
$
HTr Function=Particle ; Form=Relative
Relative Particle
an INDICATOR that this has already been referred to in the sentence
Example: which
$
AAabsa Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Adjective (Singular Either gender, Absolute)"
a male or female person or thing in any way except numerical
Example: a late (person or thing)
$
HAabsa Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Adjective (Singular Either gender, Absolute)"
a male or female person or thing in any way except numerical
Example: a late (person or thing)
$
AAabsc Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Adjective (Singular Either gender, Construct)"
"DESCRIBING a male or female person or thing, combined with another term"
Example: a late (person or thing)
$
HAabsc Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Adjective (Singular Either gender, Construct)"
"DESCRIBING a male or female person or thing, combined with another term"
Example: a late (person or thing)
$
AAabsd Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Adjective (Singular Either gender, Definite)"
an important male or female person or thing
Example: the late (person or thing)
$
HAabsd Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Adjective (Singular Either gender, Definite)"
an important male or female person or thing
Example: the late (person or thing)
$
AAafpa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Adjective (Plural Feminine, Absolute)"
DESCRIBING female people or things
Example: late (female people or things)
$
HAafpa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Adjective (Plural Feminine, Absolute)"
DESCRIBING female people or things
Example: late (female people or things)
$
AAafpc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Adjective (Plural Feminine, Construct)"
"DESCRIBING female people or things, combined with another term"
Example: late (female people or things) of...
$
HAafpc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Adjective (Plural Feminine, Construct)"
"DESCRIBING female people or things, combined with another term"
Example: late (female people or things) of...
$
AAafpd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Adjective (Plural Feminine, Definite)"
important female people or things
Example: the late (female people or things)
$
HAafpd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Adjective (Plural Feminine, Definite)"
important female people or things
Example: the late (female people or things)
$
AAafsa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Adjective (Singular Feminine, Absolute)"
DESCRIBING a female person or thing
Example: a late (female person or thing)
$
HAafsa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Adjective (Singular Feminine, Absolute)"
DESCRIBING a female person or thing
Example: a late (female person or thing)
$
AAafsc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Adjective (Singular Feminine, Construct)"
"DESCRIBING a female person or thing, combined with another term"
Example: a late (female person or thing) of...
$
HAafsc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Adjective (Singular Feminine, Construct)"
"DESCRIBING a female person or thing, combined with another term"
Example: a late (female person or thing) of...
$
AAafsd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Adjective (Singular Feminine, Definite)"
an important female person or thing
Example: the late (female person or thing)
$
HAafsd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Adjective (Singular Feminine, Definite)"
an important female person or thing
Example: the late (female person or thing)
$
AAampa Function=Adjective ; Form=Common ; Gender=Masculine; Number=Plural; State=Absolute
"Adjective (Plural Masculine, Absolute)"
DESCRIBING male people or things
Example: late (male people or things)
$
HAampa Function=Adjective ; Form=Common ; Gender=Masculine; Number=Plural; State=Absolute
"Adjective (Plural Masculine, Absolute)"
DESCRIBING male people or things
Example: late (male people or things)
$
AAampc Function=Adjective ; Form=Common ; Gender=Masculine; Number=Plural; State=Construct
"Adjective (Plural Masculine, Construct)"
"DESCRIBING male people or things, combined with another term"
Example: late (male people or things) of...
$
HAampc Function=Adjective ; Form=Common ; Gender=Masculine; Number=Plural; State=Construct
"Adjective (Plural Masculine, Construct)"
"DESCRIBING male people or things, combined with another term"
Example: late (male people or things) of...
$
AAampd Function=Adjective ; Form=Common ; Gender=Masculine; Number=Plural; State=Definite
"Adjective (Plural Masculine, Definite)"
important male people or things
Example: the late (male people or things)
$
HAampd Function=Adjective ; Form=Common ; Gender=Masculine; Number=Plural; State=Definite
"Adjective (Plural Masculine, Definite)"
important male people or things
Example: the late (male people or things)
$
AAamsa Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Adjective (Singular Masculine, Absolute)"
DESCRIBING a male person or thing
Example: late (male person or thing)
$
HAamsa Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Adjective (Singular Masculine, Absolute)"
DESCRIBING a male person or thing
Example: late (male person or thing)
$
AAamsc Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Adjective (Singular Masculine, Construct)"
"DESCRIBING a male person or thing, combined with another term"
Example: late (male person or thing) of...
$
HAamsc Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Adjective (Singular Masculine, Construct)"
"DESCRIBING a male person or thing, combined with another term"
Example: late (male person or thing) of...
$
AAcbda Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Absolute
"Numerical Adjective (Dual Either gender, Absolute)"
DESCRIBING the number of two male or female people or things
Example: both late (people or things)
$
HAcbda Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Absolute
"Numerical Adjective (Dual Either gender, Absolute)"
DESCRIBING the number of two male or female people or things
Example: both late (people or things)
$
AAcbdc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Construct
"Numerical Adjective (Dual Either gender, Construct)"
"DESCRIBING the number of two male or female people or things, combined with another term"
Example: both second (people or things)
$
HAcbdc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Construct
"Numerical Adjective (Dual Either gender, Construct)"
"DESCRIBING the number of two male or female people or things, combined with another term"
Example: both second (people or things)
$
HAcbpa Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Plural; State=Absolute
"Numerical Adjective (Plural Either gender, Absolute)"
DESCRIBING the number of female people or things
Example: two (female people or things)
$
HAcbpc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Plural; State=Construct
"Numerical Adjective (Plural Either gender, Construct)"
"DESCRIBING the number of female people or things, combined with another term"
Example: two (female people or things) of...
$
AAcbsa Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical Adjective (Singular Either gender, Absolute)"
DESCRIBING the number of a male or female person or thing
Example: one (person or thing)
$
HAcbsa Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical Adjective (Singular Either gender, Absolute)"
DESCRIBING the number of a male or female person or thing
Example: one (person or thing)
$
AAcbsc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Construct
"Numerical Adjective (Singular Either gender, Construct)"
"DESCRIBING the number of a male or female person or thing, combined with another term"
Example: one (person or thing)
$
HAcbsc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Construct
"Numerical Adjective (Singular Either gender, Construct)"
"DESCRIBING the number of a male or female person or thing, combined with another term"
Example: one (person or thing)
$
AAcbsd Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Definite
"Numerical Adjective (Singular Either gender, Definite)"
the number of an important male or female person or thing
Example: the one (person or thing)
$
HAcbsd Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Definite
"Numerical Adjective (Singular Either gender, Definite)"
the number of an important male or female person or thing
Example: the one (person or thing)
$
AAcfda Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Absolute
"Numerical Adjective (Dual Feminine, Absolute)"
DESCRIBING the number of two female people or things
Example: two (female people or things)
$
HAcfda Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Absolute
"Numerical Adjective (Dual Feminine, Absolute)"
DESCRIBING the number of two female people or things
Example: two (female people or things)
$
AAcfdc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Construct
"Numerical Adjective (Dual Feminine, Construct)"
"DESCRIBING the number of two female people or things, combined with another term"
Example: two (people or things)
$
HAcfdc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Construct
"Numerical Adjective (Dual Feminine, Construct)"
"DESCRIBING the number of two female people or things, combined with another term"
Example: two (people or things)
$
AAcfpa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical Adjective (Plural Feminine, Absolute)"
DESCRIBING the number of female people or things
Example: two (female people or things)
$
HAcfpa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical Adjective (Plural Feminine, Absolute)"
DESCRIBING the number of female people or things
Example: two (female people or things)
$
AAcfpc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Construct
"Numerical Adjective (Plural Feminine, Construct)"
"DESCRIBING the number of female people or things, combined with another term"
Example: two (female people or things) of...
$
HAcfpc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Construct
"Numerical Adjective (Plural Feminine, Construct)"
"DESCRIBING the number of female people or things, combined with another term"
Example: two (female people or things) of...
$
AAcfsa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical Adjective (Singular Feminine, Absolute)"
DESCRIBING the number of a female person or thing
Example: one (female person or thing)
$
HAcfsa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical Adjective (Singular Feminine, Absolute)"
DESCRIBING the number of a female person or thing
Example: one (female person or thing)
$
AAcfsc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Construct
"Numerical Adjective (Singular Feminine, Construct)"
"DESCRIBING the number of a female person or thing, combined with another term"
Example: one (female person or thing) of...
$
HAcfsc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Construct
"Numerical Adjective (Singular Feminine, Construct)"
"DESCRIBING the number of a female person or thing, combined with another term"
Example: one (female person or thing) of...
$
AAcmpa Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Plural; State=Absolute
"Numerical Adjective (Plural Masculine, Absolute)"
DESCRIBING the number of male people or things
Example: two (male people or things)
$
HAcmpa Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Plural; State=Absolute
"Numerical Adjective (Plural Masculine, Absolute)"
DESCRIBING the number of male people or things
Example: two (male people or things)
$
AAcmpc Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Plural; State=Construct
"Numerical Adjective (Plural Masculine, Construct)"
"DESCRIBING the number of male people or things, combined with another term"
Example: two (male people or things) of...
$
HAcmpc Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Plural; State=Construct
"Numerical Adjective (Plural Masculine, Construct)"
"DESCRIBING the number of male people or things, combined with another term"
Example: two (male people or things) of...
$
AAcmsa Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Singular; State=Absolute
"Adjective (Singular Masculine, Absolute)"
DESCRIBING a male person or thing
Example: late (male person or thing)
$
HAcmsa Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Singular; State=Absolute
"Adjective (Singular Masculine, Absolute)"
DESCRIBING a male person or thing
Example: late (male person or thing)
$
AAcmsc Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Singular; State=Construct
"Adjective (Singular Masculine, Construct)"
"DESCRIBING a male person or thing, combined with another term"
Example: late (male person or thing) of...
$
HAcmsc Function=Adjective ; Form=Numerical ; Gender=Masculine; Number=Singular; State=Construct
"Adjective (Singular Masculine, Construct)"
"DESCRIBING a male person or thing, combined with another term"
Example: late (male person or thing) of...
$
AAobsa Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Either gender, Absolute)"
DESCRIBING the numerical position of a male or female person or thing
Example: a first (person or thing)
$
HAobsa Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Either gender, Absolute)"
DESCRIBING the numerical position of a male or female person or thing
Example: a first (person or thing)
$
AAobsd Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Definite
"Numerical position Adjective (Singular Either gender, Definite)"
the numerical position of an important male or female person or thing
Example: the first (person or thing)
$
HAobsd Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Definite
"Numerical position Adjective (Singular Either gender, Definite)"
the numerical position of an important male or female person or thing
Example: the first (person or thing)
$
AAofpa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical position Adjective (Plural Feminine, Absolute)"
DESCRIBING the numerical position of female people or things
Example: first (female people or things)
$
HAofpa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical position Adjective (Plural Feminine, Absolute)"
DESCRIBING the numerical position of female people or things
Example: first (female people or things)
$
AAofpd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Definite
"Numerical position Adjective (Plural Feminine, Definite)"
the numerical position of important female people or things
Example: the first (female people or things)
$
HAofpd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Definite
"Numerical position Adjective (Plural Feminine, Definite)"
the numerical position of important female people or things
Example: the first (female people or things)
$
AAofsa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Feminine, Absolute)"
DESCRIBING the numerical position of a female person or thing
Example: a second (female person or thing)
$
HAofsa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Feminine, Absolute)"
DESCRIBING the numerical position of a female person or thing
Example: a second (female person or thing)
$
AAofsc Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Construct
"Numerical position Adjective (Singular Feminine, Construct)"
"DESCRIBING the numerical position of a female person or thing, combined with another term"
Example: a first (person or thing) of...
$
HAofsc Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Construct
"Numerical position Adjective (Singular Feminine, Construct)"
"DESCRIBING the numerical position of a female person or thing, combined with another term"
Example: a first (person or thing) of...
$
AAofsd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Definite
"Numerical position Adjective (Singular Feminine, Definite)"
the numerical position of an important female person or thing
Example: the first (female person or thing)
$
HAofsd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Definite
"Numerical position Adjective (Singular Feminine, Definite)"
the numerical position of an important female person or thing
Example: the first (female person or thing)
$
AAompa Function=Adjective ; Form=Numerical position ; Gender=Masculine; Number=Plural; State=Absolute
"Numerical position Adjective (Plural Masculine, Absolute)"
DESCRIBING the numerical position of male people or things
Example: first (male people or things)
$
HAompa Function=Adjective ; Form=Numerical position ; Gender=Masculine; Number=Plural; State=Absolute
"Numerical position Adjective (Plural Masculine, Absolute)"
DESCRIBING the numerical position of male people or things
Example: first (male people or things)
$
AAompd Function=Adjective ; Form=Numerical position ; Gender=Masculine; Number=Plural; State=Definite
"Numerical position Adjective (Plural Masculine, Definite)"
the numerical position of important male people or things
Example: the first (male people or things)
$
HAompd Function=Adjective ; Form=Numerical position ; Gender=Masculine; Number=Plural; State=Definite
"Numerical position Adjective (Plural Masculine, Definite)"
the numerical position of important male people or things
Example: the first (male people or things)
$
AAomsa Function=Adjective ; Form=Numerical position ; Gender=Masculine; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Masculine, Absolute)"
DESCRIBING the numerical position of a male person or thing
Example: a first (male person or thing)
$
HAomsa Function=Adjective ; Form=Numerical position ; Gender=Masculine; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Masculine, Absolute)"
DESCRIBING the numerical position of a male person or thing
Example: a first (male person or thing)
$
ANcbda Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Absolute
"Noun (Dual Either gender, Absolute)"
a reference to two male or female PEOPLE OR THINGS
Example: both people (or things)
$
HNcbda Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Absolute
"Noun (Dual Either gender, Absolute)"
a reference to two male or female PEOPLE OR THINGS
Example: both people (or things)
$
ANcbdc Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Construct
"Noun (Dual Either gender, Construct)"
"a reference to two male or female PEOPLE OR THINGS, combined with another term"
Example: both people (or things)
$
HNcbdc Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Construct
"Noun (Dual Either gender, Construct)"
"a reference to two male or female PEOPLE OR THINGS, combined with another term"
Example: both people (or things)
$
HNcbpa Function=Noun ; Form=Common ; Gender=Either gender; Number=Plural; State=Absolute
"Noun (Plural Either gender, Absolute)"
a reference to female PEOPLE OR THINGS
Example: (female) people (or things)
$
ANcbpc Function=Noun ; Form=Common ; Gender=Either gender; Number=Plural; State=Construct
"Noun (Plural Either gender, Construct)"
"a reference to male or female PEOPLE OR THINGS, combined with another term"
Example: people (or things)
$
HNcbpc Function=Noun ; Form=Common ; Gender=Either gender; Number=Plural; State=Construct
"Noun (Plural Either gender, Construct)"
"a reference to male or female PEOPLE OR THINGS, combined with another term"
Example: people (or things)
$
ANcbsa Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Singular Either gender, Absolute)"
a reference to a male or female PERSON OR THING
Example: a person (or thing)
$
HNcbsa Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Singular Either gender, Absolute)"
a reference to a male or female PERSON OR THING
Example: a person (or thing)
$
ANcbsc Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Noun (Singular Either gender, Construct)"
"a reference to a male or female PERSON OR THING, combined with another term"
Example: a person (or thing) of...
$
HNcbsc Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Noun (Singular Either gender, Construct)"
"a reference to a male or female PERSON OR THING, combined with another term"
Example: a person (or thing) of...
$
ANcbsd Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Singular Either gender, Definite)"
an important male or female PERSON OR THING
Example: the person (or thing)
$
HNcbsd Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Singular Either gender, Definite)"
an important male or female PERSON OR THING
Example: the person (or thing)
$
ANcfda Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Absolute
"Noun (Dual Feminine, Absolute)"
a reference to two female people or things
Example: both (female) people (or things)
$
HNcfda Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Absolute
"Noun (Dual Feminine, Absolute)"
a reference to two female people or things
Example: both (female) people (or things)
$
ANcfdc Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Construct
"Noun (Dual Feminine, Construct)"
"a reference to two female PEOPLE OR THINGS, combined with another term"
Example: both (female) people (or things)
$
HNcfdc Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Construct
"Noun (Dual Feminine, Construct)"
"a reference to two female PEOPLE OR THINGS, combined with another term"
Example: both (female) people (or things)
$
ANcfpa Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Plural Feminine, Absolute)"
a reference to female PEOPLE OR THINGS
Example: (female) people (or things)
$
HNcfpa Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Plural Feminine, Absolute)"
a reference to female PEOPLE OR THINGS
Example: (female) people (or things)
$
ANcfpc Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Noun (Plural Feminine, Construct)"
"a reference to female PEOPLE OR THINGS, combined with another term"
Example: (female) people (or things) of...
$
HNcfpc Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Noun (Plural Feminine, Construct)"
"a reference to female PEOPLE OR THINGS, combined with another term"
Example: (female) people (or things) of...
$
ANcfpd Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Noun (Plural Feminine, Definite)"
important female PEOPLE OR THINGS
Example: the (female) people (or things)
$
HNcfpd Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Noun (Plural Feminine, Definite)"
important female PEOPLE OR THINGS
Example: the (female) people (or things)
$
ANcfsa Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Singular Feminine, Absolute)"
a reference to a female PERSON OR THING
Example: a (female) person (or thing)
$
HNcfsa Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Singular Feminine, Absolute)"
a reference to a female PERSON OR THING
Example: a (female) person (or thing)
$
ANcfsc Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Singular Feminine, Construct)"
"a reference to a female PERSON OR THING, combined with another term"
Example: a (female) person (or thing) of...
$
HNcfsc Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Singular Feminine, Construct)"
"a reference to a female PERSON OR THING, combined with another term"
Example: a (female) person (or thing) of...
$
ANcfsd Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Noun (Singular Feminine, Definite)"
an important female PERSON OR THING
Example: the (female) person (or thing)
$
HNcfsd Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Noun (Singular Feminine, Definite)"
an important female PERSON OR THING
Example: the (female) person (or thing)
$
ANcmda Function=Noun ; Form=Common ; Gender=Masculine; Number=Dual; State=Absolute
"Noun (Dual Masculine, Absolute)"
a reference to two male PEOPLE OR THINGS
Example: both (male) people (or things)
$
HNcmda Function=Noun ; Form=Common ; Gender=Masculine; Number=Dual; State=Absolute
"Noun (Dual Masculine, Absolute)"
a reference to two male PEOPLE OR THINGS
Example: both (male) people (or things)
$
ANcmdc Function=Noun ; Form=Common ; Gender=Masculine; Number=Dual; State=Construct
"Noun (Dual Masculine, Construct)"
a reference to two male PEOPLE OR THINGS
Example: both (male) people (or things) of...
$
HNcmdc Function=Noun ; Form=Common ; Gender=Masculine; Number=Dual; State=Construct
"Noun (Dual Masculine, Construct)"
a reference to two male PEOPLE OR THINGS
Example: both (male) people (or things) of...
$
ANcmpa Function=Noun ; Form=Common ; Gender=Masculine; Number=Plural; State=Absolute
"Noun (Plural Masculine, Absolute)"
a reference to male PEOPLE OR THINGS
Example: (male) people (or things)
$
HNcmpa Function=Noun ; Form=Common ; Gender=Masculine; Number=Plural; State=Absolute
"Noun (Plural Masculine, Absolute)"
a reference to male PEOPLE OR THINGS
Example: (male) people (or things)
$
ANcmpc Function=Noun ; Form=Common ; Gender=Masculine; Number=Plural; State=Construct
"Noun (Plural Masculine, Construct)"
"a reference to male PEOPLE OR THINGS, combined with another term"
Example: (male) people (or things) of...
$
HNcmpc Function=Noun ; Form=Common ; Gender=Masculine; Number=Plural; State=Construct
"Noun (Plural Masculine, Construct)"
"a reference to male PEOPLE OR THINGS, combined with another term"
Example: (male) people (or things) of...
$
ANcmpd Function=Noun ; Form=Common ; Gender=Masculine; Number=Plural; State=Definite
"Noun (Plural Masculine, Definite)"
important male PEOPLE OR THINGS
Example: the (male) people (or things)
$
HNcmpd Function=Noun ; Form=Common ; Gender=Masculine; Number=Plural; State=Definite
"Noun (Plural Masculine, Definite)"
important male PEOPLE OR THINGS
Example: the (male) people (or things)
$
ANcmsa Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Noun (Singular Masculine, Absolute)"
a reference to a male PERSON OR THING
Example: (male) person (or thing)
$
HNcmsa Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Noun (Singular Masculine, Absolute)"
a reference to a male PERSON OR THING
Example: (male) person (or thing)
$
ANcmsc Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Noun (Singular Masculine, Construct)"
"a reference to a male PERSON OR THING, combined with another term"
Example: (male) person (or thing) of...
$
HNcmsc Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Noun (Singular Masculine, Construct)"
"a reference to a male PERSON OR THING, combined with another term"
Example: (male) person (or thing) of...
$
HNgbpa Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Either gender, Absolute)"
female members of a NAMED group
Example: Jewesses
$
ANgbsa Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Either gender, Absolute)"
a male or female member of a NAMED group
Example: a Jew (male or female)
$
HNgbsa Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Either gender, Absolute)"
a male or female member of a NAMED group
Example: a Jew (male or female)
$
ANgbsd Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Gentilic, Singular Either gender, Definite)"
an important male or female member of a NAMED group
Example: the Jew (male or female)
$
HNgbsd Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Gentilic, Singular Either gender, Definite)"
an important male or female member of a NAMED group
Example: the Jew (male or female)
$
ANgfpa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Feminine, Absolute)"
female members of a NAMED group
Example: Jewesses
$
HNgfpa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Feminine, Absolute)"
female members of a NAMED group
Example: Jewesses
$
ANgfsa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Feminine, Absolute)"
a female member of a NAMED group
Example: a Jewess
$
HNgfsa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Feminine, Absolute)"
a female member of a NAMED group
Example: a Jewess
$
ANgfsc Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Gentilic, Singular Feminine, Construct)"
"a female member of a NAMED group, combined with another term"
Example: a Jewess of...
$
HNgfsc Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Gentilic, Singular Feminine, Construct)"
"a female member of a NAMED group, combined with another term"
Example: a Jewess of...