[de] wip
This commit is contained in:
parent
9d66a30f29
commit
9ad1636249
|
@ -1,6 +1,64 @@
|
|||
<template>
|
||||
<div>
|
||||
<Separator icon="pen-nib"/>
|
||||
<h3>TODO // how to call this section?</h3>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dictum mi et felis volutpat,
|
||||
quis posuere nulla bibendum. Nunc hendrerit ipsum sit amet nulla blandit, non interdum lectus vehicula.
|
||||
Phasellus vehicula convallis tellus, quis viverra metus tempor placerat. Phasellus volutpat porta dolor,
|
||||
sed tincidunt tortor tincidunt sit amet. In dignissim sem viverra sapien posuere, pulvinar molestie
|
||||
enim malesuada.
|
||||
</p>
|
||||
<p>
|
||||
Fusce sit amet facilisis est, quis tincidunt tortor. Ut ullamcorper nulla nisi,
|
||||
facilisis efficitur ex faucibus ac. Sed non magna justo. Vivamus pharetra leo sed cursus gravida.
|
||||
Aenean placerat placerat quam a egestas.
|
||||
</p>
|
||||
<div class="row">
|
||||
<div v-for="(declension, name) in declensions" class="col-12 col-lg-4">
|
||||
<h4>{{ name }}</h4>
|
||||
<h5 class="h6">⋅ <T>nouns.singular</T></h5>
|
||||
<Declension word="" :template="declension" open/>
|
||||
<h5 class="h6">⁖ <T>nouns.plural</T></h5>
|
||||
<Declension word="" :template="declension" open plural/>
|
||||
</div>
|
||||
</div>
|
||||
<Separator icon="book-open"/>
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {NounDeclension} from "../../../src/classes";
|
||||
import NounsNav from "./NounsNav";
|
||||
|
||||
export default {
|
||||
components: { NounsNav },
|
||||
data() {
|
||||
return {
|
||||
declensions: {
|
||||
'Y-Formen': new NounDeclension({
|
||||
N: 'das Authory', G: 'des Authorys', D: 'dem Authory', A: 'das Authory',
|
||||
N_pl: 'die Authorys', G_pl: 'der Authorys', D_pl: 'der Authorys', A_pl: 'die Authorys',
|
||||
}),
|
||||
'Doppelpunkt-Formen': new NounDeclension({
|
||||
N: 'der:die Author:in', G: 'des:der Authors:in', D: 'dem:der Author:in', A: 'den:die Author:in',
|
||||
N_pl: 'die Author:innen', G_pl: 'der Author:innen', D_pl: 'den Author:innen', A_pl: 'die Author:innen',
|
||||
}),
|
||||
'Unterstrich-Formen': new NounDeclension({
|
||||
N: 'der_die Author_in', G: 'des_der Authors_in', D: 'dem_der Author_in', A: 'den_die Author_in',
|
||||
N_pl: 'die Author_innen', G_pl: 'der Author_innen', D_pl: 'den Author_innen', A_pl: 'die Author_innen',
|
||||
}),
|
||||
'Sternzeichen-Formen': new NounDeclension({
|
||||
N: 'der*die Author*in', G: 'des*der Authors*in', D: 'dem*der Author*in', A: 'den*die Author*in',
|
||||
N_pl: 'die Author*innen', G_pl: 'der Author*innen', D_pl: 'den Author*innen', A_pl: 'die Author*innen',
|
||||
}),
|
||||
'Großbuchstabe-Formen': new NounDeclension({
|
||||
N: '?? AuthorIn', G: '?? AuthorsIn', D: '?? AuthorIn', A: '?? AuthorIn',
|
||||
N_pl: 'die AuthorInnen', G_pl: 'der AuthorInnen', D_pl: 'den AuthorInnen', A_pl: 'die AuthorInnen',
|
||||
}),
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -1 +1,6 @@
|
|||
export default {}
|
||||
export default {
|
||||
N: 'wer?',
|
||||
G: 'wessen?',
|
||||
D: 'wem?',
|
||||
A: 'wen?',
|
||||
}
|
||||
|
|
|
@ -9,20 +9,27 @@
|
|||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Nominativ</th>
|
||||
<th>Dativ</th>
|
||||
<th>Akkusativ</th>
|
||||
<th>Genitiv</th>
|
||||
<th>Artikel</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Pronomen</th>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_d" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_a" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g" :counter="counter"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Artikel</th>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_n" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_g" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_d" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_a" :counter="counter"/></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -2,5 +2,5 @@ name pronouns description
|
|||
Normative Pronomen sie,er It's worth mentioning that pronouns ≠ gender. One can still be nonbinary while using pronouns that are congruent with (or opposite to) their gender assigned at birth.
|
||||
Neutrum es Those pronouns have been in common use in normative German already, but usually not for describing a person. But remember that the “es” pronoun has a history of transphobic use, so only use it with people who explicitly wish it.
|
||||
Neopronomen dey,die,el,em,en,et,ey,hän,hen,iks,ind,per,ser,sier,they,xier,zet,ersie Unlike the other pronouns, which are officially recognised as “grammatically correct”, albeit used in a different meaning than we're used to, neopronouns are novel. Not being included in dictionaries doesn't make them any worse, though! Some neoprouns' names are derived from the names of their creators.
|
||||
Grafische Pronomen er_sie,er*sie,er:sie These pronouns use special typographic characters that are not necessarily meant to be pronounced literally.
|
||||
Grafische Pronomen er:sie,er*sie,er_sie These pronouns use special typographic characters that are not necessarily meant to be pronounced literally.
|
||||
|
||||
|
|
|
|
@ -22,4 +22,4 @@ zet Neopronomen „zet“ FALSE zet zerm zern zets dezet dieszet zet zet FALS
|
|||
er_sie Neopronomen „er_sie“ FALSE er_sie ihm_ihr ihn_sie sein_ihr der_die des_der dem_der den_die diese_r _e _in FALSE FALSE FALSE
|
||||
er*sie Neopronomen „er*sie“ FALSE er*sie ihm*ihr ihn*sie sein*ihr der*die des*der dem*der den*die diese*r *e *in FALSE FALSE FALSE
|
||||
er:sie Neopronomen „er:sie“ FALSE er:sie ihm:ihr ihn:sie sein:ihr der:die des:der dem:der den:die diese:r :e :in FALSE FALSE FALSE
|
||||
ersie Neopronomen „ersie“ FALSE ersie ihmihr ihnsie seinihr derdie desder demder dendie dieseer _e _in ?? FALSE FALSE FALSE
|
||||
ersie Neopronomen „ersie“ FALSE ersie ihmihr ihnsie seinihr derdie desder demder dendie dieseer _e _in FALSE FALSE FALSE
|
||||
|
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
@ -657,7 +657,7 @@ links:
|
|||
Fajnie by było gdyby te osoby też otworzyły się na naszą niewiedzę i pozwoliły nam popełniać błędy.
|
||||
W końcu nie piszemy o tym wszystkim, bo chcemy dla nich źle. Wręcz przeciwnie.
|
||||
response: >
|
||||
Nasza odpowiedź: {https://twitter.com/neutratywy/status/1416760234673115140=Thread}
|
||||
Nasza odpowiedź: {https://twitter.com/neutratywy/status/1416760234673115140=Wątek na Twitterze}
|
||||
-
|
||||
icon: 'newspaper'
|
||||
url: 'https://www.glamour.pl/artykul/emma-corrin-jest-osoba-niebinarna-gwiazda-the-crown-oglasza-ruszam-w-nowa-podroz-210707095140'
|
||||
|
@ -710,6 +710,8 @@ links:
|
|||
W skrócie: krótki akapit zajawkowy jest naszpikowany manipulacją, sugeruje jakobyśmy nienawidziły polszczyzny,
|
||||
wkłada słowa w nasze usta i demonstruje brak riserczu na temat, na który piszecie.
|
||||
Nie przekonuje to, by reszta tekstu (czy czasopisma) miała być warta choćby i grosza z prenumeraty.
|
||||
- >
|
||||
{https://twitter.com/neutratywy/status/1419197039016091650=Wątek na Twitterze}
|
||||
socials:
|
||||
-
|
||||
icon: 'twitter'
|
||||
|
|
|
@ -146,7 +146,7 @@ router.post('/profile/save', handleErrorAsync(async (req, res) => {
|
|||
words = ${JSON.stringify(req.body.words)},
|
||||
teamName = ${req.isGranted('users') ? req.body.teamName || null : ''},
|
||||
footerName = ${req.isGranted('users') ? req.body.footerName || null : ''},
|
||||
footerAreas = ${req.isGranted('users') ? req.body.footerAreas.join(',').toLowerCase() || null : ''},
|
||||
footerAreas = ${req.isGranted('users') ? req.body.footerAreas.join(',') || null : ''},
|
||||
card = NULL
|
||||
WHERE id = ${ids[0]}
|
||||
`);
|
||||
|
@ -157,7 +157,7 @@ router.post('/profile/save', handleErrorAsync(async (req, res) => {
|
|||
${JSON.stringify(req.body.words)}, 1,
|
||||
${req.isGranted('users') ? req.body.teamName || null : ''},
|
||||
${req.isGranted('users') ? req.body.footerName || null : ''},
|
||||
${req.isGranted('users') ? req.body.footerAreas.join(',').toLowerCase() || null : ''}
|
||||
${req.isGranted('users') ? req.body.footerAreas.join(',') || null : ''}
|
||||
)`);
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue