#154 [zh] wip
This commit is contained in:
parent
ff10a51a65
commit
1ac6ced974
|
@ -9,6 +9,9 @@
|
|||
(<nuxt-link :to="author.pronounsLink">{{ author.pronouns }}</nuxt-link>)
|
||||
–
|
||||
</template>
|
||||
<template v-if="!author.pronouns && author.areas && Object.keys(author.areas).length">
|
||||
–
|
||||
</template>
|
||||
<template v-for="(link, area, index) in author.areas">
|
||||
<Spaceless>
|
||||
<nuxt-link v-if="link && link.indexOf('/') === 0" :to="link">{{ area.replace(/_/g, ' ') }}</nuxt-link>
|
||||
|
|
|
@ -168,41 +168,48 @@ contact:
|
|||
headline: 'contact@pronouns.page'
|
||||
authors:
|
||||
-
|
||||
name: 'The “Neutral Language Council” collective'
|
||||
link: '/blog/neutral-language-council'
|
||||
name: '台灣非二元酷兒浪子'
|
||||
link: 'https://www.facebook.com/TaiwanNonbinary/'
|
||||
group: true
|
||||
-
|
||||
name: 'Andrea'
|
||||
profile: 'andrea'
|
||||
pronouns: 'they'
|
||||
pronounsLink: '/they'
|
||||
website: 'https://avris.it'
|
||||
twitter: 'AvrisIT'
|
||||
mail: 'andrea@avris.it'
|
||||
areas:
|
||||
code: 'https://gitlab.com/Avris/Zaimki'
|
||||
language: ~
|
||||
faq: '/faq'
|
||||
編碼: 'https://gitlab.com/Avris/Zaimki'
|
||||
|
||||
-
|
||||
name: 'Paweł Dembowski'
|
||||
profile: 'Ausir'
|
||||
pronouns: 'he'
|
||||
pronounsLink: '/he'
|
||||
profile: 'ausir'
|
||||
pronouns: '他'
|
||||
pronounsLink: '/他'
|
||||
twitter: 'VaultAusir'
|
||||
mail: 'pawel.dembowski@gmail.com'
|
||||
areas:
|
||||
language: ~
|
||||
sources: '/sources'
|
||||
翻譯監管: ~
|
||||
|
||||
-
|
||||
name: 'Szymon Misiek'
|
||||
profile: 'szymon'
|
||||
pronouns: 'he'
|
||||
pronounsLink: '/he'
|
||||
mail: 'misiek.sz.93@gmail.com'
|
||||
orcid: '0000-0002-0214-0387'
|
||||
name: '曹宗漢'
|
||||
profile: 'fakinorb'
|
||||
pronouns: '佢'
|
||||
pronounsLink: '佢'
|
||||
twitter: 'fakinorb'
|
||||
mail: 'mimakatta.00@gmail.com'
|
||||
areas:
|
||||
language: ~
|
||||
sources: '/sources'
|
||||
術語學: ~
|
||||
翻譯: ~
|
||||
-
|
||||
name: '曹昌倫'
|
||||
profile: 'TWFoodLover'
|
||||
pronouns: '他'
|
||||
pronounsLink: '他'
|
||||
twitter: 'TWFoodLover'
|
||||
mail: 'atsaotw@gmail.com'
|
||||
areas:
|
||||
翻譯: ~
|
||||
|
||||
|
||||
support:
|
||||
enabled: true
|
||||
|
@ -228,7 +235,7 @@ profile:
|
|||
defaultWords:
|
||||
- ['沒有尊稱', '君', '先生', '小姐', '夫人', '同志', '太太']
|
||||
- ['男', '女', '哥哥/弟弟', '姐姐/妹妹', '朋友']
|
||||
- ['可愛', '美麗', '性感', '好看']
|
||||
- ['可愛', '美麗', '性感', '好看', '帥哥']
|
||||
- ['男朋友', '女朋友', '知音', '丈夫', '妻子']
|
||||
flags:
|
||||
defaultPronoun: '他'
|
||||
|
|
|
@ -1,33 +1,4 @@
|
|||
<template>
|
||||
<section>
|
||||
<h2 class="h4">
|
||||
<Icon v="spell-check"/>
|
||||
<T>pronouns.grammarTable</T>:
|
||||
</h2>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Subject</th>
|
||||
<th>Object</th>
|
||||
<th>Possessive determiner</th>
|
||||
<th>Possessive pronoun</th>
|
||||
<th>Reflexive</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_pronoun" :counter="counter"/></td>
|
||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter"/></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
Reference in New Issue