[ru] Update GrammarTables.vue

This commit is contained in:
Paweł Dembowski 2021-11-21 05:49:23 +00:00
parent 4d86ef9178
commit 9a4e31e829

View File

@ -9,22 +9,22 @@
<table class="table table-sm"> <table class="table table-sm">
<thead> <thead>
<tr> <tr>
<th>Mianownik</th> <th>именительный</th>
<th>Dopełniacz</th> <th>родительный</th>
<th>Celownik</th> <th>дательный</th>
<th>Biernik</th> <th>винительный</th>
<th>Narzędnik</th> <th>творительный</th>
<th>Miejscownik</th> <th>предложный</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter"/></td> <td><Morpheme :pronoun="selectedPronoun" morpheme="nominative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g" :counter="counter"/> / <Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g_acc" :counter="counter"/></td> <td><Morpheme :pronoun="selectedPronoun" morpheme="genitive" :counter="counter"/> / <Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g_acc" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_d" :counter="counter"/></td> <td><Morpheme :pronoun="selectedPronoun" morpheme="dative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_a" :counter="counter"/></td> <td><Morpheme :pronoun="selectedPronoun" morpheme="accusative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_i" :counter="counter"/></td> <td><Morpheme :pronoun="selectedPronoun" morpheme="instrumental" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_l" :counter="counter"/></td> <td><Morpheme :pronoun="selectedPronoun" morpheme="prepositional" :counter="counter"/></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -34,30 +34,39 @@
<table class="table table-sm"> <table class="table table-sm">
<thead> <thead>
<tr> <tr>
<th>1 os.</th> <th>творительный с предлогом</th>
<th>2 os.</th> <th>родительный с предлогом</th>
<th>3 os.</th> <th>Possessive</th>
<th>Przymiotniki</th> <th>Definitive</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td> <td><Morpheme :pronoun="selectedPronoun" morpheme="instrumental_with_preposition" :counter="counter"/></td>
<Morpheme :pronoun="selectedPronoun" morpheme="verb_middle_inter" :counter="counter" <td><Morpheme :pronoun="selectedPronoun" morpheme="genitive_with_preposition" :counter="counter"/> / <Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g_acc" :counter="counter"/></td>
prepend="" <td><Morpheme :pronoun="selectedPronoun" morpheme="possessive" :counter="counter"/></td>
:append="selectedPronoun.isPlural(counter) ? 'śmy' : 'm'" <td><Morpheme :pronoun="selectedPronoun" morpheme="definitive" :counter="counter"/></td>
:appendPr="selectedPronoun.isPlural(counter) ? 'ɕmɨ' : 'm'" </tr>
/> </tbody>
</td> </table>
<td> </div>
<Morpheme :pronoun="selectedPronoun" morpheme="verb_middle_inter" :counter="counter"
prepend="" <div class="table-responsive">
:append="selectedPronoun.isPlural(counter) ? 'ście' : 'ś'" <table class="table table-sm">
:appendPr="selectedPronoun.isPlural(counter) ? 'ɕʨ̑ɛ' : 'ɕ'" <thead>
/> <tr>
</td> <th>Nonreflexive verb past</th>
<td><Morpheme :pronoun="selectedPronoun" morpheme="verb_end_about" :counter="counter" prepend=""/></td> <th>Reflexive verb past</th>
<td><Morpheme :pronoun="selectedPronoun" morpheme="adjective_n" :counter="counter" prepend=""/></td> <th>Short adjective</th>
<th>Adjective</th>
</tr>
</thead>
<tbody>
<tr>
<td><Morpheme :pronoun="selectedPronoun" morpheme="nonreflexive_verb_past" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive_verb_past" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="short_adjective" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="adjective" :counter="counter" prepend=""/></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>