mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
(it)(pronouns) use only available morphemes in grammar table and avoiding / emoji pronouns
This commit is contained in:
parent
16d97044c7
commit
35adb122cf
@ -28,11 +28,10 @@ pronouns:
|
||||
Guarda: {https://twitter.com/lypomania/status/1290274971642544128=Guida di lypomania},
|
||||
{https://lgbta.wikia.org/wiki/Nullpronominal=”Senza il pronominale” su wiki LGBTQIA+}
|
||||
morphemes:
|
||||
pronoun_subject: '#'
|
||||
pronoun_object: '#'
|
||||
possessive_determiner: 'di''#'
|
||||
possessive_pronoun: 'di''#'
|
||||
reflexive: '#self'
|
||||
pronoun_n: '#'
|
||||
pronoun_d: '#'
|
||||
pronoun_a: '#'
|
||||
possessive: 'di #'
|
||||
examples: [':Di', ':Andrea']
|
||||
routes: ['Evitare']
|
||||
ideas:
|
||||
@ -76,11 +75,15 @@ pronouns:
|
||||
description: 'Pronomi con le emoji'
|
||||
history: '{https://lgbta.wikia.org/wiki/Emojiself_Pronouns=Emojiself} pronouns are intended for online communication and not supposed to be pronounced.'
|
||||
morphemes:
|
||||
pronoun_subject: '#'
|
||||
pronoun_object: '#'
|
||||
possessive_determiner: 'di''#'
|
||||
possessive_pronoun: 'di''#'
|
||||
reflexive: '#stesso'
|
||||
pronoun_n: '#'
|
||||
pronoun_d: '#'
|
||||
pronoun_a: '#'
|
||||
possessive: 'di #'
|
||||
noun: '#'
|
||||
noun_i: 'i#'
|
||||
adjective: '#'
|
||||
past_participle: '#'
|
||||
h: ''
|
||||
examples: ['💫', '💙']
|
||||
mirror:
|
||||
route: 'specchio'
|
||||
|
@ -9,20 +9,42 @@
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Subject</th>
|
||||
<th>Object</th>
|
||||
<th>Possessive determiner</th>
|
||||
<th>Possessive pronoun</th>
|
||||
<th>Reflexive</th>
|
||||
<th>personali</th>
|
||||
<th>indirecto</th>
|
||||
<th>directo</th>
|
||||
<th>possessiva</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive_pronoun" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_d" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_a" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive" :counter="counter" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>articolo</th>
|
||||
<th>articolo indef.</th>
|
||||
<th>noun</th>
|
||||
<th>noun (i)</th>
|
||||
<th>adjective</th>
|
||||
<th>past participle</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="article" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="article_indefinite" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="noun" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="noun_i" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="adjective" :counter="counter" /></td>
|
||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="past_participle" :counter="counter" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
Loading…
x
Reference in New Issue
Block a user