mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -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},
|
Guarda: {https://twitter.com/lypomania/status/1290274971642544128=Guida di lypomania},
|
||||||
{https://lgbta.wikia.org/wiki/Nullpronominal=”Senza il pronominale” su wiki LGBTQIA+}
|
{https://lgbta.wikia.org/wiki/Nullpronominal=”Senza il pronominale” su wiki LGBTQIA+}
|
||||||
morphemes:
|
morphemes:
|
||||||
pronoun_subject: '#'
|
pronoun_n: '#'
|
||||||
pronoun_object: '#'
|
pronoun_d: '#'
|
||||||
possessive_determiner: 'di''#'
|
pronoun_a: '#'
|
||||||
possessive_pronoun: 'di''#'
|
possessive: 'di #'
|
||||||
reflexive: '#self'
|
|
||||||
examples: [':Di', ':Andrea']
|
examples: [':Di', ':Andrea']
|
||||||
routes: ['Evitare']
|
routes: ['Evitare']
|
||||||
ideas:
|
ideas:
|
||||||
@ -76,11 +75,15 @@ pronouns:
|
|||||||
description: 'Pronomi con le emoji'
|
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.'
|
history: '{https://lgbta.wikia.org/wiki/Emojiself_Pronouns=Emojiself} pronouns are intended for online communication and not supposed to be pronounced.'
|
||||||
morphemes:
|
morphemes:
|
||||||
pronoun_subject: '#'
|
pronoun_n: '#'
|
||||||
pronoun_object: '#'
|
pronoun_d: '#'
|
||||||
possessive_determiner: 'di''#'
|
pronoun_a: '#'
|
||||||
possessive_pronoun: 'di''#'
|
possessive: 'di #'
|
||||||
reflexive: '#stesso'
|
noun: '#'
|
||||||
|
noun_i: 'i#'
|
||||||
|
adjective: '#'
|
||||||
|
past_participle: '#'
|
||||||
|
h: ''
|
||||||
examples: ['💫', '💙']
|
examples: ['💫', '💙']
|
||||||
mirror:
|
mirror:
|
||||||
route: 'specchio'
|
route: 'specchio'
|
||||||
|
@ -9,20 +9,42 @@
|
|||||||
<table class="table table-sm">
|
<table class="table table-sm">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Subject</th>
|
<th>personali</th>
|
||||||
<th>Object</th>
|
<th>indirecto</th>
|
||||||
<th>Possessive determiner</th>
|
<th>directo</th>
|
||||||
<th>Possessive pronoun</th>
|
<th>possessiva</th>
|
||||||
<th>Reflexive</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter" /></td>
|
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter" /></td>
|
||||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter" /></td>
|
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_d" :counter="counter" /></td>
|
||||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter" /></td>
|
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_a" :counter="counter" /></td>
|
||||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive_pronoun" :counter="counter" /></td>
|
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive" :counter="counter" /></td>
|
||||||
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="reflexive" :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>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user