Merge branch 'main' into credentials
This commit is contained in:
commit
3d6117bd57
|
@ -171,12 +171,6 @@ form[disabled] {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
li {
|
li {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
a:not([href='#']) {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
&:hover a:not([href='#']) {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
>li:before {
|
>li:before {
|
||||||
content: "⋅";
|
content: "⋅";
|
||||||
|
@ -190,12 +184,6 @@ form[disabled] {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
li {
|
li {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
a:not([href='#']) {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
&:hover a:not([href='#']) {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
>li:before {
|
>li:before {
|
||||||
content: "⁖";
|
content: "⁖";
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</li>
|
</li>
|
||||||
</draggable>
|
</draggable>
|
||||||
<div class="input-group py-1">
|
<div class="input-group py-1">
|
||||||
<input v-model="search" class="form-control form-control-sm" :placeholder="$t('crud.search')"/>
|
<input v-model="search" class="form-control" :placeholder="$t('crud.search')"/>
|
||||||
<button v-if="search" type="button" class="btn btn-light btn-sm border text-danger" @click.prevent="search = ''">
|
<button v-if="search" type="button" class="btn btn-light btn-sm border text-danger" @click.prevent="search = ''">
|
||||||
<Icon v="times"/>
|
<Icon v="times"/>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -45,13 +45,11 @@
|
||||||
<ul class="list-singular">
|
<ul class="list-singular">
|
||||||
<li v-for="w in s.el.masc">
|
<li v-for="w in s.el.masc">
|
||||||
{{ w }}
|
{{ w }}
|
||||||
<a :href="`/api/nouns/${w}.png`" target="_blank" rel="noopener"><Icon v="image"/></a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-if="config.nouns.plurals" class="list-plural">
|
<ul v-if="config.nouns.plurals" class="list-plural">
|
||||||
<li v-for="w in s.el.mascPl">
|
<li v-for="w in s.el.mascPl">
|
||||||
<Spelling :text="w"/>
|
<Spelling :text="w"/>
|
||||||
<a :href="`/api/nouns/${w}.png`" target="_blank" rel="noopener"><Icon v="image"/></a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -73,13 +71,11 @@
|
||||||
<ul class="list-singular">
|
<ul class="list-singular">
|
||||||
<li v-for="w in s.el.fem">
|
<li v-for="w in s.el.fem">
|
||||||
<Spelling :text="w"/>
|
<Spelling :text="w"/>
|
||||||
<a :href="`/api/nouns/${w}.png`" target="_blank" rel="noopener"><Icon v="image"/></a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-if="config.nouns.plurals" class="list-plural">
|
<ul v-if="config.nouns.plurals" class="list-plural">
|
||||||
<li v-for="w in s.el.femPl">
|
<li v-for="w in s.el.femPl">
|
||||||
<Spelling :text="w"/>
|
<Spelling :text="w"/>
|
||||||
<a :href="`/api/nouns/${w}.png`" target="_blank" rel="noopener"><Icon v="image"/></a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -102,14 +98,12 @@
|
||||||
<li v-for="w in s.el.neutr">
|
<li v-for="w in s.el.neutr">
|
||||||
<Declension v-if="config.nouns.declension" :word="w" tooltip/>
|
<Declension v-if="config.nouns.declension" :word="w" tooltip/>
|
||||||
<template v-else><Spelling :text="w"/></template>
|
<template v-else><Spelling :text="w"/></template>
|
||||||
<a :href="`/api/nouns/${w}.png`" target="_blank" rel="noopener"><Icon v="image"/></a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-if="config.nouns.plurals" class="list-plural">
|
<ul v-if="config.nouns.plurals" class="list-plural">
|
||||||
<li v-for="w in s.el.neutrPl">
|
<li v-for="w in s.el.neutrPl">
|
||||||
<Declension v-if="config.nouns.declension" :word="w" plural :singularOptions="s.el.neutr" tooltip/>
|
<Declension v-if="config.nouns.declension" :word="w" plural :singularOptions="s.el.neutr" tooltip/>
|
||||||
<template v-else><Spelling :text="w"/></template>
|
<template v-else><Spelling :text="w"/></template>
|
||||||
<a :href="`/api/nouns/${w}.png`" target="_blank" rel="noopener"><Icon v="image"/></a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -172,6 +166,16 @@
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a :href="`/api/nouns/${s.el.id}.png`" target="_blank" rel="noopener"
|
||||||
|
class="btn btn-concise btn-outline-primary btn-sm m-1"
|
||||||
|
>
|
||||||
|
<Icon v="image"/>
|
||||||
|
<span class="btn-label">
|
||||||
|
<T>nouns.image</T>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
</template></template>
|
</template></template>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<span class="flag-wrapper">
|
<span class="flag-wrapper">
|
||||||
<a v-if="link" :href="`/${config.nouns.route}/${config.nouns.terms.route}#${link.toLowerCase()}`" :title="alt">
|
<a v-if="link" :href="`/${config.nouns.route}/${config.terminology.route}#${link.toLowerCase()}`" :title="alt">
|
||||||
<img :src="img" :alt="name" class="flag-mini rounded"/>
|
<img :src="img" :alt="name" class="flag-mini rounded"/>
|
||||||
<Spelling escape :text="name"/><sup v-if="custom" class="text-muted"><small><Icon v="user"/></small></sup>
|
<Spelling escape :text="name"/><sup v-if="custom" class="text-muted"><small><Icon v="user"/></small></sup>
|
||||||
</a>
|
</a>
|
||||||
|
@ -29,23 +29,37 @@
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
link() {
|
link() {
|
||||||
if (!this.config.nouns.terms.enabled || !(this.config.nouns.terms.published || this.$isGranted('terms'))) {
|
if (!this.config.terminology.enabled || !(this.config.terminology.published || this.$isGranted('terms'))) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let fallback = null;
|
||||||
|
|
||||||
for (let term of this.terms || []) {
|
for (let term of this.terms || []) {
|
||||||
if (term.key && term.key.toLowerCase().includes(this.alt.toLowerCase())) {
|
// exact match
|
||||||
|
if (term.key && term.key.toLowerCase() === this.alt.toLowerCase()) {
|
||||||
return term.key;
|
return term.key;
|
||||||
}
|
}
|
||||||
if (term.term.toLowerCase().includes(this.name.toLowerCase())) {
|
if (term.term.toLowerCase() === this.name.toLowerCase()) {
|
||||||
return this.name;
|
return this.name;
|
||||||
}
|
}
|
||||||
if (term.original.toLowerCase().includes(this.alt.toLowerCase())) {
|
if (term.original.toLowerCase() === this.alt.toLowerCase()) {
|
||||||
return this.alt;
|
return this.alt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fallback
|
||||||
|
if (term.key && term.key.toLowerCase().includes(this.alt.toLowerCase())) {
|
||||||
|
fallback = term.key;
|
||||||
|
}
|
||||||
|
if (term.term.toLowerCase().includes(this.name.toLowerCase())) {
|
||||||
|
fallback = this.name;
|
||||||
|
}
|
||||||
|
if (term.original.toLowerCase().includes(this.alt.toLowerCase())) {
|
||||||
|
fallback = this.alt;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return fallback;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -160,11 +160,11 @@
|
||||||
for (let subroute of this.config.nouns.subroutes || []) {
|
for (let subroute of this.config.nouns.subroutes || []) {
|
||||||
extras.push(`/${this.config.nouns.route}/${subroute}`);
|
extras.push(`/${this.config.nouns.route}/${subroute}`);
|
||||||
}
|
}
|
||||||
if (this.config.nouns.inclusive.enabled) {
|
if (this.config.inclusive.enabled) {
|
||||||
extras.push(`/${this.config.nouns.route}/${this.config.nouns.inclusive.route}`);
|
extras.push(`/${this.config.inclusive.route}`);
|
||||||
}
|
}
|
||||||
if (this.config.nouns.terms.enabled) {
|
if (this.config.terminology.enabled) {
|
||||||
extras.push(`/${this.config.nouns.route}/${this.config.nouns.terms.route}`);
|
extras.push(`/${this.config.terminology.route}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
links.push({
|
links.push({
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn-group mb-3 d-none d-md-flex bg-white category-filter">
|
<div class="btn-group mb-3 d-none d-md-flex bg-white category-filter">
|
||||||
<button v-for="category in config.nouns.inclusive.categories"
|
<button v-for="category in config.inclusive.categories"
|
||||||
:class="['btn btn-sm', filter === ':' + category ? 'btn-primary' : 'btn-outline-primary']"
|
:class="['btn btn-sm', filter === ':' + category ? 'btn-primary' : 'btn-outline-primary']"
|
||||||
@click="filter = filter === ':' + category ? '' : ':' + category"
|
@click="filter = filter === ':' + category ? '' : ':' + category"
|
||||||
>
|
>
|
||||||
|
@ -35,15 +35,15 @@
|
||||||
<template v-slot:header>
|
<template v-slot:header>
|
||||||
<th class="text-nowrap">
|
<th class="text-nowrap">
|
||||||
<Icon v="comment-times"/>
|
<Icon v="comment-times"/>
|
||||||
<T>nouns.inclusive.insteadOf</T>
|
<T>inclusive.insteadOf</T>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-nowrap">
|
<th class="text-nowrap">
|
||||||
<Icon v="comment-check"/>
|
<Icon v="comment-check"/>
|
||||||
<T>nouns.inclusive.say</T>
|
<T>inclusive.say</T>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-nowrap">
|
<th class="text-nowrap">
|
||||||
<Icon v="comment-dots"/>
|
<Icon v="comment-dots"/>
|
||||||
<T>nouns.inclusive.because</T>
|
<T>inclusive.because</T>
|
||||||
</th>
|
</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</template>
|
</template>
|
||||||
|
@ -278,7 +278,7 @@
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
filter() {
|
filter() {
|
||||||
this.setHash(this.config.nouns.inclusive.hashNamespace || '', this.filter);
|
this.setHash(this.config.inclusive.hashNamespace || '', this.filter);
|
||||||
if (this.$refs.dictionarytable) {
|
if (this.$refs.dictionarytable) {
|
||||||
this.$refs.dictionarytable.reset();
|
this.$refs.dictionarytable.reset();
|
||||||
this.$refs.dictionarytable.focus();
|
this.$refs.dictionarytable.focus();
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<Icon v="comment-times"/>
|
<Icon v="comment-times"/>
|
||||||
<T>nouns.inclusive.insteadOf</T>
|
<T>inclusive.insteadOf</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<NounForm v-model="form.insteadOf" maxlength="128"/>
|
<NounForm v-model="form.insteadOf" maxlength="128"/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<Icon v="comment-check"/>
|
<Icon v="comment-check"/>
|
||||||
<T>nouns.inclusive.say</T>
|
<T>inclusive.say</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<NounForm v-model="form.say" maxlength="128"/>
|
<NounForm v-model="form.say" maxlength="128"/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -36,14 +36,14 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<Icon v="comment-dots"/>
|
<Icon v="comment-dots"/>
|
||||||
<T>nouns.inclusive.because</T>
|
<T>inclusive.because</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<textarea v-model="form.because" class="form-control form-control-sm" required rows="6"></textarea>
|
<textarea v-model="form.because" class="form-control form-control-sm" required rows="6"></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label><strong><T>nouns.inclusive.categories</T>:</strong></label>
|
<label><strong><T>inclusive.categories</T>:</strong></label>
|
||||||
<a v-for="category in config.nouns.inclusive.categories"
|
<a v-for="category in config.inclusive.categories"
|
||||||
href="#" :class="['badge border mx-1 text-decoration-none', form.categories.includes(category) ? 'bg-primary text-white' : 'bg-light text-primary']"
|
href="#" :class="['badge border mx-1 text-decoration-none', form.categories.includes(category) ? 'bg-primary text-white' : 'bg-light text-primary']"
|
||||||
@click.prevent="form.categories = form.categories.includes(category) ? form.categories.filter(c => c !== category) : [...form.categories, category]"
|
@click.prevent="form.categories = form.categories.includes(category) ? form.categories.filter(c => c !== category) : [...form.categories, category]"
|
||||||
>
|
>
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label><strong><T>nouns.inclusive.sources</T>:</strong></label>
|
<label><strong><T>inclusive.sources</T>:</strong></label>
|
||||||
<ListInput v-model="form.links" v-slot="s">
|
<ListInput v-model="form.links" v-slot="s">
|
||||||
<input v-model="s.val" type="url" class="form-control" @keyup="s.update(s.val)" required/>
|
<input v-model="s.val" type="url" class="form-control" @keyup="s.update(s.val)" required/>
|
||||||
</ListInput>
|
</ListInput>
|
||||||
|
|
|
@ -1,16 +1,19 @@
|
||||||
<template>
|
<template>
|
||||||
<draggable tag="ul" v-model="iVal" handle=".handle" ghostClass="ghost" @end="$emit('input', iVal)" class="list-unstyled" :group="group">
|
<draggable tag="ul" v-model="iVal" handle=".handle" ghostClass="ghost" @end="$emit('input', iVal)" class="list-unstyled" :group="group">
|
||||||
<li v-for="(v, i) in iVal" ref="items">
|
<li v-for="(v, i) in iVal" ref="items">
|
||||||
<div class="input-group input-group-sm mb-1">
|
<div>
|
||||||
<button class="btn btn-light border handle" type="button" :aria-label="$t('table.sort')">
|
<div class="input-group input-group-sm mb-1">
|
||||||
<Icon v="bars"/>
|
<button class="btn btn-light border handle" type="button" :aria-label="$t('table.sort')">
|
||||||
</button>
|
<Icon v="bars"/>
|
||||||
<slot v-bind:val="iVal[i]" v-bind:update="curry(update)(i)">
|
</button>
|
||||||
<input v-model="iVal[i]" type="text" class="form-control" required/>
|
<slot v-bind:val="iVal[i]" v-bind:update="curry(update)(i)">
|
||||||
</slot>
|
<input v-model="iVal[i]" type="text" class="form-control" required/>
|
||||||
<button class="btn btn-outline-danger" type="button" @click.prevent="remove(i)" :aria-label="$t('crud.remove')">
|
</slot>
|
||||||
<Icon v="times"/>
|
<button class="btn btn-outline-danger" type="button" @click.prevent="remove(i)" :aria-label="$t('crud.remove')">
|
||||||
</button>
|
<Icon v="times"/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<slot name="validation" v-bind:val="iVal[i]"></slot>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
|
@ -1,34 +1,38 @@
|
||||||
<template>
|
<template>
|
||||||
<ListInput v-model="v" :prototype="{key: '', value: 0}" v-slot="s" :group="group">
|
<ListInput v-model="v" :prototype="{key: '', value: 0}" :group="group">
|
||||||
<button type="button" :class="['btn', parseInt(s.val.value) === 1 ? 'btn-primary' : 'btn-outline-secondary']"
|
<template v-slot="s">
|
||||||
:aria-label="$t('profile.opinion.yes')"
|
<button type="button" :class="['btn', parseInt(s.val.value) === 1 ? 'btn-primary' : 'btn-outline-secondary']"
|
||||||
:title="$t('profile.opinion.yes')"
|
:aria-label="$t('profile.opinion.yes')"
|
||||||
@click="s.update({key: s.val.key, value: 1})">
|
:title="$t('profile.opinion.yes')"
|
||||||
<Icon v="heart"/>
|
@click="s.update({key: s.val.key, value: 1})">
|
||||||
</button>
|
<Icon v="heart"/>
|
||||||
<button type="button" :class="['btn', parseInt(s.val.value) === 2 ? 'btn-primary' : 'btn-outline-secondary']"
|
</button>
|
||||||
:aria-label="$t('profile.opinion.jokingly')"
|
<button type="button" :class="['btn', parseInt(s.val.value) === 2 ? 'btn-primary' : 'btn-outline-secondary']"
|
||||||
:title="$t('profile.opinion.jokingly')"
|
:aria-label="$t('profile.opinion.jokingly')"
|
||||||
@click="s.update({key: s.val.key, value: 2})">
|
:title="$t('profile.opinion.jokingly')"
|
||||||
<Icon v="grin-tongue"/>
|
@click="s.update({key: s.val.key, value: 2})">
|
||||||
</button>
|
<Icon v="grin-tongue"/>
|
||||||
<button type="button" :class="['btn', parseInt(s.val.value) === 0 ? 'btn-primary' : 'btn-outline-secondary']"
|
</button>
|
||||||
:aria-label="$t('profile.opinion.meh')"
|
<button type="button" :class="['btn', parseInt(s.val.value) === 0 ? 'btn-primary' : 'btn-outline-secondary']"
|
||||||
:title="$t('profile.opinion.meh')"
|
:aria-label="$t('profile.opinion.meh')"
|
||||||
@click="s.update({key: s.val.key, value: 0})">
|
:title="$t('profile.opinion.meh')"
|
||||||
<Icon v="thumbs-up"/>
|
@click="s.update({key: s.val.key, value: 0})">
|
||||||
</button>
|
<Icon v="thumbs-up"/>
|
||||||
<button type="button" :class="['btn', parseInt(s.val.value) === -1 ? 'btn-primary' : 'btn-outline-secondary']"
|
</button>
|
||||||
:aria-label="$t('profile.opinion.no')"
|
<button type="button" :class="['btn', parseInt(s.val.value) === -1 ? 'btn-primary' : 'btn-outline-secondary']"
|
||||||
:title="$t('profile.opinion.no')"
|
:aria-label="$t('profile.opinion.no')"
|
||||||
@click="s.update({key: s.val.key, value: -1})">
|
:title="$t('profile.opinion.no')"
|
||||||
<Icon v="thumbs-down"/>
|
@click="s.update({key: s.val.key, value: -1})">
|
||||||
</button>
|
<Icon v="thumbs-down"/>
|
||||||
<input v-model="s.val.key" class="form-control mw-input" @keyup="s.update(s.val)" required/>
|
</button>
|
||||||
<small v-if="validation && s.val.key && validation(s.val.key)" class="input-group-text bg-danger text-white">
|
<input v-model="s.val.key" :class="['form-control', 'mw-input', invalid(s.val) ? 'border-danger' : '']" @keyup="s.update(s.val)" required/>
|
||||||
<Icon v="exclamation-triangle"/>
|
</template>
|
||||||
<span class="ml-1">{{$t(validation(s.val.key))}}</span>
|
<template v-slot:validation="s">
|
||||||
</small>
|
<p v-if="invalid(s.val)" class="small text-danger">
|
||||||
|
<Icon v="exclamation-triangle"/>
|
||||||
|
<span class="ml-1">{{$t(validation(s.val.key))}}</span>
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
</ListInput>
|
</ListInput>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -40,6 +44,11 @@
|
||||||
validation: {},
|
validation: {},
|
||||||
},
|
},
|
||||||
data() { return { v: this.value } },
|
data() { return { v: this.value } },
|
||||||
watch: { v() { this.$emit('input', this.v); } }
|
watch: { v() { this.$emit('input', this.v); } },
|
||||||
|
methods: {
|
||||||
|
invalid(val) {
|
||||||
|
return this.validation && val.key && this.validation(val.key)
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="mb-3 d-flex justify-content-between flex-column flex-md-row">
|
<div class="mb-3 d-flex justify-content-between flex-column flex-md-row">
|
||||||
<h2 class="text-nowrap">
|
<h2 class="text-nowrap mw-50">
|
||||||
<Avatar :user="user"/>
|
<Avatar :user="user"/>
|
||||||
@{{user.username}}
|
@{{user.username}}
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="row">
|
<section class="row">
|
||||||
<div v-if="Object.keys(profile.names).length" class="col-6 col-lg-4">
|
<div v-if="Object.keys(profile.names).length" :class="['col-6', mainRowCount === 3 ? 'col-lg-4' : 'col-lg-6']">
|
||||||
<h3>
|
<h3>
|
||||||
<Icon v="signature"/>
|
<Icon v="signature"/>
|
||||||
<T>profile.names</T>
|
<T>profile.names</T>
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
<li v-for="(opinion, name) in profile.names"><Opinion :word="name" :opinion="opinion"/></li>
|
<li v-for="(opinion, name) in profile.names"><Opinion :word="name" :opinion="opinion"/></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="Object.keys(profile.pronouns).length" class="col-6 col-lg-4">
|
<div v-if="Object.keys(profile.pronouns).length" :class="['col-6', mainRowCount === 3 ? 'col-lg-4' : 'col-lg-6']">
|
||||||
<h3>
|
<h3>
|
||||||
<Icon v="tags"/>
|
<Icon v="tags"/>
|
||||||
<T>profile.pronouns</T>
|
<T>profile.pronouns</T>
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="profile.links.length" class="col-12 col-lg-4">
|
<div v-if="profile.links.length" :class="['col-12', mainRowCount === 3 ? 'col-lg-4' : 'col-lg-6']">
|
||||||
<h3>
|
<h3>
|
||||||
<Icon v="link"/>
|
<Icon v="link"/>
|
||||||
<T>profile.links</T>
|
<T>profile.links</T>
|
||||||
|
@ -83,14 +83,14 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="clearfix">
|
<section class="clearfix" v-if="Object.values(profile.words).map(w => Object.keys(w).length).reduce((a, b) => a + b, 0) > 0">
|
||||||
<h3>
|
<h3>
|
||||||
<Icon v="scroll-old"/>
|
<Icon v="scroll-old"/>
|
||||||
<T>profile.words</T>
|
<T>profile.words</T>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div v-for="group in profile.words" v-if="Object.keys(profile.words).length" class="col-6 col-lg-3">
|
<div v-for="group in profile.words" v-if="Object.keys(group).length" class="col-6 col-lg-3">
|
||||||
<ul class="list-unstyled">
|
<ul class="list-unstyled">
|
||||||
<li v-for="(opinion, word) in group"><Opinion :word="word" :opinion="opinion"/></li>
|
<li v-for="(opinion, word) in group"><Opinion :word="word" :opinion="opinion"/></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -185,6 +185,13 @@
|
||||||
hasDescriptionColumn() {
|
hasDescriptionColumn() {
|
||||||
return this.profile.age || this.profile.description.trim().length || this.profile.team;
|
return this.profile.age || this.profile.description.trim().length || this.profile.team;
|
||||||
},
|
},
|
||||||
|
mainRowCount() {
|
||||||
|
let c = 0;
|
||||||
|
if (Object.keys(this.profile.names).length) { c++; }
|
||||||
|
if (Object.keys(this.profile.pronouns).length) { c++; }
|
||||||
|
if (this.profile.links.length) { c++; }
|
||||||
|
return c;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -195,4 +202,8 @@
|
||||||
max-width: 5rem;
|
max-width: 5rem;
|
||||||
max-height: 5rem;
|
max-height: 5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mw-50 {
|
||||||
|
min-width: 50%;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -56,13 +56,18 @@
|
||||||
<p class="small text-muted mb-0">
|
<p class="small text-muted mb-0">
|
||||||
<T>sources.submit.pronounsInfo</T>
|
<T>sources.submit.pronounsInfo</T>
|
||||||
</p>
|
</p>
|
||||||
<ListInput v-model="form.pronouns" v-slot="s">
|
<ListInput v-model="form.pronouns">
|
||||||
<input v-model="s.val" type="text" class="form-control" @keyup="s.update(s.val)" required maxlength="24"/>
|
<template v-slot="s">
|
||||||
<small v-if="s.val && !pronounLibrary.isCanonical(s.val) && !(config.sources.extraTypes || []).includes(s.val)"
|
<input v-model="s.val" type="text" class="form-control" @keyup="s.update(s.val)" required maxlength="24"/>
|
||||||
class="input-group-text bg-danger text-white">
|
</template>
|
||||||
<Icon v="exclamation-triangle"/>
|
<template v-slot:validation="s">
|
||||||
<span class="ml-1"><T>profile.pronounsNotFound</T></span>
|
<p v-if="s.val && !pronounLibrary.isCanonical(s.val) && !(config.sources.extraTypes || []).includes(s.val)"
|
||||||
</small>
|
class="small text-danger"
|
||||||
|
>
|
||||||
|
<Icon v="exclamation-triangle"/>
|
||||||
|
<span class="ml-1"><T>profile.pronounsNotFound</T></span>
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
</ListInput>
|
</ListInput>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn-group mb-3 d-none d-md-flex bg-white category-filter">
|
<div class="btn-group mb-3 d-none d-md-flex bg-white category-filter">
|
||||||
<button v-for="category in config.nouns.terms.categories"
|
<button v-for="category in config.terminology.categories"
|
||||||
:class="['btn btn-sm', filter === ':' + category ? 'btn-primary' : 'btn-outline-primary']"
|
:class="['btn btn-sm', filter === ':' + category ? 'btn-primary' : 'btn-outline-primary']"
|
||||||
@click="filter = filter === ':' + category ? '' : ':' + category"
|
@click="filter = filter === ':' + category ? '' : ':' + category"
|
||||||
>
|
>
|
||||||
|
@ -177,7 +177,15 @@
|
||||||
|
|
||||||
// those must be methods, not computed, because when modified, they don't get updated in the view for some reason
|
// those must be methods, not computed, because when modified, they don't get updated in the view for some reason
|
||||||
visibleEntries() {
|
visibleEntries() {
|
||||||
return Object.values(this.entries).filter(n => n.matches(this.filter));
|
const values = Object.values(this.entries).filter(n => n.matches(this.filter));
|
||||||
|
if (this.filter) {
|
||||||
|
return values.sort((a, b) => {
|
||||||
|
if (a.key && a.key.toLowerCase() === this.filter.toLowerCase()) { return -1; }
|
||||||
|
if (b.key && b.key.toLowerCase() === this.filter.toLowerCase()) { return 1; }
|
||||||
|
return a.term[0].localeCompare(b.term[0]);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return values;
|
||||||
},
|
},
|
||||||
entriesCountApproved() {
|
entriesCountApproved() {
|
||||||
return Object.values(this.entries).filter(n => n.approved).length;
|
return Object.values(this.entries).filter(n => n.approved).length;
|
||||||
|
@ -212,7 +220,7 @@
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
filter() {
|
filter() {
|
||||||
this.setHash(this.config.nouns.terms.hashNamespace || '', this.filter);
|
this.setHash(this.config.terminology.hashNamespace || '', this.filter);
|
||||||
if (this.$refs.dictionarytable) {
|
if (this.$refs.dictionarytable) {
|
||||||
this.$refs.dictionarytable.reset();
|
this.$refs.dictionarytable.reset();
|
||||||
this.$refs.dictionarytable.focus();
|
this.$refs.dictionarytable.focus();
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<div class="col-12 col-lg-6">
|
<div class="col-12 col-lg-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<T>nouns.terms.term</T>
|
<T>terminology.term</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<NounForm v-model="form.term" required maxlength="128"/>
|
<NounForm v-model="form.term" required maxlength="128"/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
<div class="col-12 col-lg-6">
|
<div class="col-12 col-lg-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<T>nouns.terms.original</T>
|
<T>terminology.original</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<NounForm v-model="form.original" maxlength="1024"/>
|
<NounForm v-model="form.original" maxlength="1024"/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -33,14 +33,14 @@
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<T>nouns.terms.definition</T>
|
<T>terminology.definition</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<textarea v-model="form.definition" class="form-control form-control-sm" required rows="6"></textarea>
|
<textarea v-model="form.definition" class="form-control form-control-sm" required rows="6"></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label><strong><T>nouns.terms.category</T>:</strong></label>
|
<label><strong><T>terminology.category</T>:</strong></label>
|
||||||
<a v-for="category in config.nouns.terms.categories"
|
<a v-for="category in config.terminology.categories"
|
||||||
href="#" :class="['badge border mx-1 text-decoration-none', form.categories.includes(category) ? 'bg-primary text-white' : 'bg-light text-primary']"
|
href="#" :class="['badge border mx-1 text-decoration-none', form.categories.includes(category) ? 'bg-primary text-white' : 'bg-light text-primary']"
|
||||||
@click.prevent="form.categories = form.categories.includes(category) ? form.categories.filter(c => c !== category) : [...form.categories, category]"
|
@click.prevent="form.categories = form.categories.includes(category) ? form.categories.filter(c => c !== category) : [...form.categories, category]"
|
||||||
>
|
>
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
<div class="col-12 col-lg-4">
|
<div class="col-12 col-lg-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="text-nowrap"><strong>
|
<label class="text-nowrap"><strong>
|
||||||
<T>nouns.terms.images</T>
|
<T>terminology.images</T>
|
||||||
</strong></label>
|
</strong></label>
|
||||||
<ImageWidget v-model="form.images" multiple sizes="big,thumb"/>
|
<ImageWidget v-model="form.images" multiple sizes="big,thumb"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,10 +10,12 @@ sources:
|
||||||
|
|
||||||
nouns:
|
nouns:
|
||||||
enabled: false
|
enabled: false
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: false
|
|
||||||
|
terminology:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -42,22 +42,24 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: true
|
|
||||||
categories:
|
terminology:
|
||||||
- 'sexuelle Orientierung'
|
enabled: true
|
||||||
- 'romantische Orientierung'
|
categories:
|
||||||
- 'tertiäre Orientierung'
|
- 'sexuelle Orientierung'
|
||||||
- 'Geschlecht'
|
- 'romantische Orientierung'
|
||||||
- 'Geschlechtsausdruck'
|
- 'tertiäre Orientierung'
|
||||||
- 'Beziehungsmodell'
|
- 'Geschlecht'
|
||||||
- 'Sprache'
|
- 'Geschlechtsausdruck'
|
||||||
- 'Anziehung'
|
- 'Beziehungsmodell'
|
||||||
- 'Politik'
|
- 'Sprache'
|
||||||
- 'Vorurteil'
|
- 'Anziehung'
|
||||||
route: 'terminologie'
|
- 'Politik'
|
||||||
|
- 'Vorurteil'
|
||||||
|
route: 'terminologie'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -70,7 +70,7 @@ pronouns:
|
||||||
short: 'beliebig'
|
short: 'beliebig'
|
||||||
description: >
|
description: >
|
||||||
Auch wenn es für manche Menschen sehr wichtig ist, dass bestimmte Pronomen benutzt werden, wenn über sie geredet wird, ist es anderen egal, welche Pronomen für sie verwendet werden.
|
Auch wenn es für manche Menschen sehr wichtig ist, dass bestimmte Pronomen benutzt werden, wenn über sie geredet wird, ist es anderen egal, welche Pronomen für sie verwendet werden.
|
||||||
options: 'Überprüfe die Optionen [share]{/=hier}.'
|
options: 'Überprüfe die Optionen [share]{/pronomen=hier}.'
|
||||||
others: 'Andere Formen'
|
others: 'Andere Formen'
|
||||||
othersRaw: 'andere'
|
othersRaw: 'andere'
|
||||||
or: 'oder'
|
or: 'oder'
|
||||||
|
@ -163,19 +163,21 @@ nouns:
|
||||||
plural: 'Plural'
|
plural: 'Plural'
|
||||||
pluralShort: 'Pl.'
|
pluralShort: 'Pl.'
|
||||||
|
|
||||||
terms:
|
image: 'Bild'
|
||||||
header: 'Terminologie'
|
|
||||||
headerLong: 'Wörterbuch von Queerer Terminologie'
|
terminology:
|
||||||
info:
|
header: 'Terminologie'
|
||||||
- >
|
headerLong: 'Wörterbuch von Queerer Terminologie'
|
||||||
Viele Begriffe und Ausdrucksweisen die mit der LSBTQ+ Community verbunden sind,
|
info:
|
||||||
funktionieren im Deutschen so, wie sie aus dem Englischen geliehen worden sind.
|
- >
|
||||||
Hier präsentieren wir die Bedeutung von Begriffen und schlagen Deutsche Übersetzungen für sie vor.
|
Viele Begriffe und Ausdrucksweisen die mit der LSBTQ+ Community verbunden sind,
|
||||||
term: 'Begriff'
|
funktionieren im Deutschen so, wie sie aus dem Englischen geliehen worden sind.
|
||||||
original: 'Etymologie'
|
Hier präsentieren wir die Bedeutung von Begriffen und schlagen Deutsche Übersetzungen für sie vor.
|
||||||
category: 'Kategorie'
|
term: 'Begriff'
|
||||||
images: 'Zusätzliche Bilder, von außerhalb des Flaggenkataloges'
|
original: 'Etymologie'
|
||||||
definition: 'Definition'
|
category: 'Kategorie'
|
||||||
|
images: 'Zusätzliche Bilder, von außerhalb des Flaggenkataloges'
|
||||||
|
definition: 'Definition'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'FAQ'
|
header: 'FAQ'
|
||||||
|
@ -405,8 +407,11 @@ profile:
|
||||||
description: 'Beschreibung'
|
description: 'Beschreibung'
|
||||||
names: 'Namen'
|
names: 'Namen'
|
||||||
pronouns: 'Pronomen'
|
pronouns: 'Pronomen'
|
||||||
pronounsInfo: 'Du kannst entweder ein Pronomen (z.B. „sier“ or „sie/ihr“) oder einen Link (z.B. „https://de.pronouns.page/dey“) oder vier benutzerdefinierten Formen (z.B. „xier/xies/xiem/xien“).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: 'Wir können keinen Link zu diesem Pronomen finden!'
|
Du kannst entweder ein <strong>Pronomen</strong> (z.B. „sier“ or „sie/ihr“) oder einen <strong>Link</strong> (z.B. „https://de.pronouns.page/dey“)
|
||||||
|
oder <strong>vier benutzerdefinierten Formen</strong> (z.B. „xier/xies/xiem/xien“).
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: 'Wir können keinen Link zu diesem Pronomen finden!' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Wörter'
|
words: 'Wörter'
|
||||||
birthday: 'Alter'
|
birthday: 'Alter'
|
||||||
birthdayInfo: 'Wir veröffentlichen nicht dein Geburtstag, sondern nur das errechnete Alter.'
|
birthdayInfo: 'Wir veröffentlichen nicht dein Geburtstag, sondern nur das errechnete Alter.'
|
||||||
|
|
|
@ -27,7 +27,7 @@ Yup, she calls it “torture” when someone… asks her a question. And not a d
|
||||||
She's not being asked what her genitals are. She's not being asked her gender identity.
|
She's not being asked what her genitals are. She's not being asked her gender identity.
|
||||||
Someone's literally just trying to establish the basis for the conversation by knowing how to talk to / about her.
|
Someone's literally just trying to establish the basis for the conversation by knowing how to talk to / about her.
|
||||||
And the answer is literally two syllables!
|
And the answer is literally two syllables!
|
||||||
Yes, that question _might_ be tricky sometimes,
|
Yes, that question _might_ be tricky _sometimes_,
|
||||||
but she's not a closeted trans person who could feel anxious trying to decide if the situation is safe enough
|
but she's not a closeted trans person who could feel anxious trying to decide if the situation is safe enough
|
||||||
to give someone their real pronouns. No. She's just a brat. A snowflake.
|
to give someone their real pronouns. No. She's just a brat. A snowflake.
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ Another thing that we see quite often in people's cards is a description like th
|
||||||
Sure, policing someone's neopronouns would be transphobic. And that's why we don't do that.
|
Sure, policing someone's neopronouns would be transphobic. And that's why we don't do that.
|
||||||
Paw can easily link to paw's pronouns by putting in all five grammatical forms
|
Paw can easily link to paw's pronouns by putting in all five grammatical forms
|
||||||
([paw/paw/paw's/paw's/pawself](https://en.pronouns.page/paw/paw/paw's/paw's/pawself)),
|
([paw/paw/paw's/paw's/pawself](https://en.pronouns.page/paw/paw/paw's/paw's/pawself)),
|
||||||
by using a shorthand notation for nameself pronouns ([:paw](https://en.pronouns.page/:paw)),
|
by using a shorthand notation for the nameself pronouns ([:paw](https://en.pronouns.page/:paw)),
|
||||||
or by using a generator that's available in the [Pronouns](/pronouns) section.
|
or by using a generator that's available in the [Pronouns](/pronouns) section.
|
||||||
We talk about it in the instructions in the card editor –
|
We talk about it in the instructions in the card editor –
|
||||||
if only people would read them before rushing to get angry…
|
if only people would read them before rushing to get angry…
|
||||||
|
@ -32,4 +32,4 @@ There's _actual_ queerphobia destroying people's lives all around the world –
|
||||||
but you use that word to describe a _minor inconvenience_ completely unrelated to your gender or orientation?
|
but you use that word to describe a _minor inconvenience_ completely unrelated to your gender or orientation?
|
||||||
|
|
||||||
Think about it… If you message a group of queer volunteers doing their best to create a free website for the community,
|
Think about it… If you message a group of queer volunteers doing their best to create a free website for the community,
|
||||||
and you call them “homophobes”, how do you expect allocishet people take queerphobia seriously?
|
and you call them “homophobes”, how do you expect allocishet people to take queerphobia seriously?
|
||||||
|
|
|
@ -71,23 +71,25 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
|
||||||
terms:
|
|
||||||
enabled: true
|
|
||||||
categories:
|
|
||||||
- 'sexual orientation'
|
|
||||||
- 'romantic orientation'
|
|
||||||
- 'tertiary orientation'
|
|
||||||
- 'gender'
|
|
||||||
- 'gender expression'
|
|
||||||
- 'relationship model'
|
|
||||||
- 'language'
|
|
||||||
- 'attraction'
|
|
||||||
- 'politics'
|
|
||||||
- 'prejudice'
|
|
||||||
|
|
||||||
route: 'terms'
|
inclusive:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
terminology:
|
||||||
|
enabled: true
|
||||||
|
categories:
|
||||||
|
- 'sexual orientation'
|
||||||
|
- 'romantic orientation'
|
||||||
|
- 'tertiary orientation'
|
||||||
|
- 'gender'
|
||||||
|
- 'gender expression'
|
||||||
|
- 'relationship model'
|
||||||
|
- 'language'
|
||||||
|
- 'attraction'
|
||||||
|
- 'politics'
|
||||||
|
- 'prejudice'
|
||||||
|
|
||||||
|
route: 'terminology'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
name pronouns description
|
name pronouns description
|
||||||
Normative forms she,he 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.
|
Normative forms she,he 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.
|
||||||
Normative-ish forms they,they/them/themself,it,one Those pronouns have been in common use in normative English already, but recently they got a slightly different new usage: describing a single, specific person.
|
Normative-ish forms they,they/them/themself,it,one Those pronouns have been in common use in normative English already, but recently they got a slightly different new usage: describing a single, specific person.
|
||||||
Neopronouns ae,co,e,e/em/es,ey,fae,hu,ne,ne/nir,per,s/he,thon,ve,vi,vi/vim,xe,ze,ze/zir,zhe 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.
|
Popular neopronouns ae,ey,fae,xe,ze,ze/zir 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!
|
||||||
|
Other neopronouns co,e,e/em/es,hu,ne,ne/nir,per,s/he,thon,ve,vi,vi/vim,zhe These neopronouns are less often used than their more popular counterparts, but it doesn't make them any worse (and some of them are historically notable). Some neoprouns' names are derived from the names of their creators. If your pronoun is not on the list, use the generator below!
|
||||||
|
|
|
|
@ -73,7 +73,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
Even though for many people it's incredibly important that people use specific pronouns to talk about them,
|
Even though for many people it's incredibly important that people use specific pronouns to talk about them,
|
||||||
others don't mind being addressed in any way – as long as the context is clear as to who one talks about.
|
others don't mind being addressed in any way – as long as the context is clear as to who one talks about.
|
||||||
options: 'check out the options [share]{/=here}.'
|
options: 'check out the options [share]{/pronouns=here}.'
|
||||||
others: 'Other forms'
|
others: 'Other forms'
|
||||||
othersRaw: 'other'
|
othersRaw: 'other'
|
||||||
or: 'or'
|
or: 'or'
|
||||||
|
@ -207,17 +207,19 @@ nouns:
|
||||||
plural: 'plural'
|
plural: 'plural'
|
||||||
pluralShort: 'pl.'
|
pluralShort: 'pl.'
|
||||||
|
|
||||||
terms:
|
image: 'Picture'
|
||||||
header: 'Terminology'
|
|
||||||
headerLong: 'Dictionary of queer terminology'
|
terminology:
|
||||||
info:
|
header: 'Terminology'
|
||||||
- >
|
headerLong: 'Dictionary of queer terminology'
|
||||||
A dictionary of terms related to the LGBTQ+ community.
|
info:
|
||||||
term: 'Term'
|
- >
|
||||||
original: 'Etymology'
|
A dictionary of terms related to the LGBTQ+ community.
|
||||||
category: 'Category'
|
term: 'Term'
|
||||||
images: 'Additional images, from outside the flag catalogue'
|
original: 'Etymology'
|
||||||
definition: 'Definition'
|
category: 'Category'
|
||||||
|
images: 'Additional images, from outside the flag catalogue'
|
||||||
|
definition: 'Definition'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'FAQ'
|
header: 'FAQ'
|
||||||
|
@ -487,12 +489,15 @@ profile:
|
||||||
names: 'Names'
|
names: 'Names'
|
||||||
pronouns: 'Pronouns'
|
pronouns: 'Pronouns'
|
||||||
pronounsInfo: >
|
pronounsInfo: >
|
||||||
You can enter a pronoun (eg. “they” or “she/her”)
|
You can enter a <strong>pronoun</strong> (eg. “they” or “she/her”)
|
||||||
or a link (eg. “https://en.pronouns.page/e”)
|
or a <strong>link</strong> (eg. “https://en.pronouns.page/e”)
|
||||||
or the custom five forms (eg. “ze/zem/zir/zirs/zirself”).
|
or the custom five forms (eg. “ze/zem/zir/zirs/zirself”).
|
||||||
Keep in mind that <strong>all five forms</strong> are required in that case,
|
Keep in mind that <strong>all five forms</strong> are required in that case,
|
||||||
otherwise the app can only guess what exactly do you mean.
|
otherwise the app can only guess what exactly do you mean.
|
||||||
pronounsNotFound: 'We can''t find a link to this pronoun!'
|
You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
If your pronouns follow the {/pronouns#nameself=<strong>nameself pattern</strong>},
|
||||||
|
you can also use a colon shorthand (eg. “:star”).
|
||||||
|
pronounsNotFound: 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Words'
|
words: 'Words'
|
||||||
birthday: 'Age'
|
birthday: 'Age'
|
||||||
birthdayInfo: 'We do not publish your birthday, just the calculated age.'
|
birthdayInfo: 'We do not publish your birthday, just the calculated age.'
|
||||||
|
|
|
@ -46,22 +46,24 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: false
|
templates: false
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: true
|
|
||||||
categories:
|
terminology:
|
||||||
- 'orientación sexual'
|
enabled: true
|
||||||
- 'orientación romántica'
|
categories:
|
||||||
- 'orientacja terciaria'
|
- 'orientación sexual'
|
||||||
- 'género'
|
- 'orientación romántica'
|
||||||
- 'expresión de género'
|
- 'orientacja terciaria'
|
||||||
- 'modelo de relación'
|
- 'género'
|
||||||
- 'lenguaje'
|
- 'expresión de género'
|
||||||
- 'atracción'
|
- 'modelo de relación'
|
||||||
- 'política'
|
- 'lenguaje'
|
||||||
- 'prejuicio'
|
- 'atracción'
|
||||||
route: 'terminologia'
|
- 'política'
|
||||||
|
- 'prejuicio'
|
||||||
|
route: 'terminologia'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -75,7 +75,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
Aunque para mucha gente sea muy importante que se utilicen pronombres específicos para hablar de elles,
|
Aunque para mucha gente sea muy importante que se utilicen pronombres específicos para hablar de elles,
|
||||||
a otres no les molesta que les llamen de cualquier manera - mientras que en el contexto sea claro a quién se está hablando.
|
a otres no les molesta que les llamen de cualquier manera - mientras que en el contexto sea claro a quién se está hablando.
|
||||||
options: 'Checa las opciones [compartir]{/=aquí}.'
|
options: 'Checa las opciones [share]{/pronombres=aquí}.'
|
||||||
others: 'Otras formas'
|
others: 'Otras formas'
|
||||||
othersRaw: 'Otras'
|
othersRaw: 'Otras'
|
||||||
or: 'o'
|
or: 'o'
|
||||||
|
@ -168,17 +168,19 @@ nouns:
|
||||||
plural: 'plural'
|
plural: 'plural'
|
||||||
pluralShort: 'pl.'
|
pluralShort: 'pl.'
|
||||||
|
|
||||||
terms:
|
image: 'Imagen'
|
||||||
header: 'Terminología'
|
|
||||||
headerLong: 'Diccionario de terminología queer'
|
terminology:
|
||||||
info:
|
header: 'Terminología'
|
||||||
- >
|
headerLong: 'Diccionario de terminología queer'
|
||||||
Un diccionario de terminología relacionada con la comunidad LGBTQ+.
|
info:
|
||||||
term: 'Término'
|
- >
|
||||||
original: 'Etimología'
|
Un diccionario de terminología relacionada con la comunidad LGBTQ+.
|
||||||
category: 'Categoría'
|
term: 'Término'
|
||||||
images: 'Imágenes adicionales, de fuera del catálogo de banderas'
|
original: 'Etimología'
|
||||||
definition: 'Definición'
|
category: 'Categoría'
|
||||||
|
images: 'Imágenes adicionales, de fuera del catálogo de banderas'
|
||||||
|
definition: 'Definición'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'Preguntas'
|
header: 'Preguntas'
|
||||||
|
@ -418,8 +420,11 @@ profile:
|
||||||
description: 'Descripción'
|
description: 'Descripción'
|
||||||
names: 'Nombres'
|
names: 'Nombres'
|
||||||
pronouns: 'Pronombres'
|
pronouns: 'Pronombres'
|
||||||
pronounsInfo: 'Puedes introducir un pronombre (p. ej. “elle” o “ella”) o un enlace (“http://es.pronouns.page/ellx”).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: '¡No podemos encontrar un enlace a este pronombre!'
|
Puedes introducir un <strong>pronombre</strong> (p. ej. “elle” o “ella”)
|
||||||
|
o un <strong>enlace</strong> (“http://es.pronouns.page/ellx”).
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: '¡No podemos encontrar un enlace a este pronombre!' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Palabras'
|
words: 'Palabras'
|
||||||
birthday: 'Edad'
|
birthday: 'Edad'
|
||||||
birthdayInfo: 'No publicamos la fecha de tu cumpleaños, sólo la edad calculada.'
|
birthdayInfo: 'No publicamos la fecha de tu cumpleaños, sólo la edad calculada.'
|
||||||
|
|
|
@ -7,7 +7,7 @@ pronouns:
|
||||||
route: 'pronoms'
|
route: 'pronoms'
|
||||||
default: 'il'
|
default: 'il'
|
||||||
any: 'any'
|
any: 'any'
|
||||||
plurals: true
|
plurals: false
|
||||||
honorifics: false
|
honorifics: false
|
||||||
multiple:
|
multiple:
|
||||||
name: 'Formes interchangeables'
|
name: 'Formes interchangeables'
|
||||||
|
@ -25,9 +25,13 @@ pronouns:
|
||||||
pronunciation:
|
pronunciation:
|
||||||
enabled: true
|
enabled: true
|
||||||
voices:
|
voices:
|
||||||
GB:
|
FR:
|
||||||
language: 'en-GB'
|
language: 'fr-FR'
|
||||||
voice: 'Emma'
|
voice: 'Lea'
|
||||||
|
engine: 'standard'
|
||||||
|
CA:
|
||||||
|
language: 'fr-CA'
|
||||||
|
voice: 'Gabrielle'
|
||||||
engine: 'neural'
|
engine: 'neural'
|
||||||
|
|
||||||
sources:
|
sources:
|
||||||
|
@ -46,22 +50,24 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: true
|
|
||||||
categories:
|
terminology:
|
||||||
- 'orientation sexuelle'
|
enabled: true
|
||||||
- 'orientation romantique'
|
categories:
|
||||||
- 'orientation tertiaire'
|
- 'orientation sexuelle'
|
||||||
- 'genre'
|
- 'orientation romantique'
|
||||||
- 'expression du genre'
|
- 'orientation tertiaire'
|
||||||
- 'modèle de relation'
|
- 'genre'
|
||||||
- 'langage'
|
- 'expression du genre'
|
||||||
- 'attirance'
|
- 'modèle de relation'
|
||||||
- 'politique'
|
- 'langage'
|
||||||
- 'préjugé'
|
- 'attirance'
|
||||||
route: 'terminologie'
|
- 'politique'
|
||||||
|
- 'préjugé'
|
||||||
|
route: 'terminologie'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
@ -130,7 +136,7 @@ profile:
|
||||||
- ['[sans titre]', 'Mx.', 'M.', 'Mme.', 'MM.', 'Mmes.', 'Mlle.', 'Mlles.', 'Vve.', 'messieurs', 'monsieur', 'madame', 'mesdames', 'mademoiselle', 'mesdemoiselles', 'veuve']
|
- ['[sans titre]', 'Mx.', 'M.', 'Mme.', 'MM.', 'Mmes.', 'Mlle.', 'Mlles.', 'Vve.', 'messieurs', 'monsieur', 'madame', 'mesdames', 'mademoiselle', 'mesdemoiselles', 'veuve']
|
||||||
- ['personne', 'homme', 'femme', 'demoiselle', 'monsieur', 'mec', 'meuf', 'garçon', 'fille', 'poto', 'fréro', 'sœurette']
|
- ['personne', 'homme', 'femme', 'demoiselle', 'monsieur', 'mec', 'meuf', 'garçon', 'fille', 'poto', 'fréro', 'sœurette']
|
||||||
- ['beauté', 'beau gosse', 'belle gosse']
|
- ['beauté', 'beau gosse', 'belle gosse']
|
||||||
- ['ami', 'partenaire', 'mec', 'meuf', 'petit ami', 'petite amie', 'joyfriend', 'mari', 'femme', 'kissmate', 'chéri', 'chérie', 'mon amour']
|
- ['ami', 'partenaire', 'mec', 'meuf', 'petit ami', 'petite amie', 'mari', 'femme', 'kissmate', 'chéri', 'chérie', 'mon amour']
|
||||||
flags:
|
flags:
|
||||||
defaultPronoun: 'iel'
|
defaultPronoun: 'iel'
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,18 @@
|
||||||
<table class="table table-sm">
|
<table class="table table-sm">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Subject</th>
|
<th>Sujet</th>
|
||||||
<th>Object</th>
|
<th>Objet direct</th>
|
||||||
<th>Possessive determiner</th>
|
<th>Objet indirect</th>
|
||||||
<th>Possessive pronoun</th>
|
<th>Possessif</th>
|
||||||
<th>Reflexive</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter"/></td>
|
<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="pronoun_object" :counter="counter"/></td>
|
||||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter"/></td>
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_disjunctive" :counter="counter"/></td>
|
||||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_pronoun" :counter="counter"/></td>
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_possessive" :counter="counter"/></td>
|
||||||
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter"/></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
singular plural isHonorific
|
singular plural isHonorific
|
||||||
Je pense qu'{pronoun_subject} est très gentil. FALSE
|
Je pense qu'{pronoun_subject} est très genti{inflection_l}. FALSE
|
||||||
{'pronoun_subject} est {pronoun_possessive} voisi{conjugation_n}. FALSE
|
{'pronoun_subject} est {pronoun_possessive} voisi{inflection_n}. FALSE
|
||||||
Je vais {pronoun_object} rencontrer bientôt. FALSE
|
Je vais {pronoun_object} rencontrer bientôt. FALSE
|
||||||
Je me fie à {pronoun_disjunctive}. FALSE
|
Je me fie à {pronoun_disjunctive}. FALSE
|
||||||
|
|
|
|
@ -3,8 +3,8 @@ export default [
|
||||||
'pronoun_object',
|
'pronoun_object',
|
||||||
'pronoun_disjunctive',
|
'pronoun_disjunctive',
|
||||||
'pronoun_possessive',
|
'pronoun_possessive',
|
||||||
'conjugation_l',
|
'inflection_l',
|
||||||
'conjugation_x',
|
'inflection_x',
|
||||||
'conjugation_e',
|
'inflection_e',
|
||||||
'conjugation_n',
|
'inflection_n',
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name pronouns description
|
name pronouns description
|
||||||
Formes normatives il,elle Il convient de mentionner que les pronoms ≠ genre. On peut toujours être non-binaire tout en utilisant des pronoms adéquats (ou opposés) à son genre assigné à la naissance.
|
Formes normatives il,elle Il convient de mentionner que les pronoms ≠ genre. On peut toujours être non-binaire tout en utilisant des pronoms adéquats (ou opposés) à son genre assigné à la naissance.
|
||||||
Formes semi-normatives on Ces pronoms font parties de la norme dans la langue française, mais généralement pas pour des personnes spécifiques.
|
Formes semi-normatives on Ces pronoms font parties de la norme dans la langue française, mais généralement pas pour des personnes spécifiques.
|
||||||
Néo-pronoms al,ael,el,em,iel,ielle,ille,im,ol,ul,yel,yelle Contrairement aux autres pronoms, qui sont officiellement reconnus comme " grammaticalement corrects ", bien qu'utilisés dans un sens différent de celui auquel nous sommes habitués, les néo-pronoms sont inédits. Le fait de ne pas figurer dans les dictionnaires ne les rend pas pires pour autant !
|
Néo-pronoms al,ael,el,em,iel,ielle,ille,im,ol,ul,yel,yelle Contrairement aux autres pronoms, qui sont officiellement reconnus comme « grammaticalement corrects », bien qu'utilisés dans un sens différent de celui auquel nous sommes habitués, les néo-pronoms sont inédits. Le fait de ne pas figurer dans les dictionnaires ne les rend pas pires pour autant !
|
||||||
|
|
Can't render this file because it contains an unexpected character in line 4 and column 134.
|
|
@ -1,16 +1,16 @@
|
||||||
key description normative pronoun_subject pronoun_object pronoun_disjunctive pronoun_possessive conjugation_l conjugation_x conjugation_e conjugation_n plural pluralHonorific pronounceable history thirdForm smallForm sourcesInfo
|
key description normative pronoun_subject pronoun_object pronoun_disjunctive pronoun_possessive inflection_l inflection_x inflection_e inflection_n plural pluralHonorific pronounceable history thirdForm smallForm sourcesInfo
|
||||||
il Normatif, masculin TRUE il le lui mon l x é n FALSE FALSE TRUE
|
il,il/le Normatif, masculin TRUE il le lui mon l x é n FALSE FALSE TRUE
|
||||||
elle Normatif, féminin TRUE elle la elle ma le se e ne FALSE FALSE TRUE
|
elle,elle/la Normatif, féminin TRUE elle la elle ma lle se ée ne FALSE FALSE TRUE
|
||||||
on Normatif, indéfini TRUE on en soi man l·le x·se é·e n·e FALSE FALSE TRUE
|
on,on/en Normatif, indéfini TRUE on en soi man l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
al Neopronom «al» FALSE al lea al mo l·le x·se é·e n·e FALSE FALSE TRUE
|
al,al/lea Neopronom « al » FALSE al lea al man l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
ael Neopronom «ael» FALSE ael lea ael mo l·le x·se é·e n·e FALSE FALSE TRUE
|
ael,ael/lea Neopronom « ael » FALSE ael lea ael man l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
el Neopronom «el» FALSE el lea el mo l·le x·se é·e n·e FALSE FALSE TRUE
|
el,el/lea Neopronom « el » FALSE el lea el mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
em Neopronom «em» FALSE em lea em mo l·le x·se é·e n·e FALSE FALSE TRUE Proche à «elle»
|
em,em/lea Neopronom « em » FALSE em lea em mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE Proche à « elle »
|
||||||
iel Neopronom «iel» FALSE iel lea ellui mo l·le x·se é·e n·e FALSE FALSE TRUE Mélange de «il» et «elle»
|
iel,iel/lea Neopronom « iel » FALSE iel lea ellui mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE Mélange de « il » et « elle »
|
||||||
ielle Neopronom «ielle» FALSE ielle lea ielle mo l·le x·se é·e n·e FALSE FALSE TRUE
|
ielle,ielle/lea Neopronom « ielle » FALSE ielle lea ellui mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
ille Neopronom «ille» FALSE ille lea ille mo l·le x·se é·e n·e FALSE FALSE TRUE
|
ille,ille/lea Neopronom « ille » FALSE ille lea ellui mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
im Neopronom «im» FALSE im lea im mo l·le x·se é·e n·e FALSE FALSE TRUE Proche à «il»
|
im,im/lea Neopronom « im » FALSE im lea im mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE Proche à « il »
|
||||||
ol Neopronom «ol» FALSE ol lo ol mo l·le x·se é·e n·e FALSE FALSE TRUE
|
ol,ol/lo Neopronom « ol » FALSE ol lo ol mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
ul Neopronom «ul» FALSE ul lu ul mo l·le x·se é·e n·e FALSE FALSE TRUE
|
ul,ul/lu Neopronom « ul » FALSE ul lu ul mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
yel Neopronom «yel» FALSE yel lea yel mo l·le x·se é·e n·e FALSE FALSE TRUE Une orthographe alternative de «iel»
|
yel,yel/lea Neopronom « yel » FALSE yel lea ellui mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE Une orthographe alternative de « iel »
|
||||||
yelle Neopronom «yelle» FALSE yelle lea yelle mo l·le x·se é·e n·e FALSE FALSE TRUE
|
yelle,yell/lea Neopronom « yelle » FALSE yelle lea ellui mo l·le|=lé x·se é·e n·e|=né FALSE FALSE TRUE
|
||||||
|
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
@ -21,9 +21,9 @@ home:
|
||||||
- >
|
- >
|
||||||
Pourquoi est-ce que c’est important ? Par simple décence humaine.
|
Pourquoi est-ce que c’est important ? Par simple décence humaine.
|
||||||
Vous n’appelleriez pas Louise « Annette » simplement parce que vous préférez ce prénom,
|
Vous n’appelleriez pas Louise « Annette » simplement parce que vous préférez ce prénom,
|
||||||
ou parce qu’elle a «l’air d’une Annette selon vous».
|
ou parce qu’elle a « l’air d’une Annette selon vous ».
|
||||||
Ou même si le prénom « Annette » est <em>bien</em> inscrit sur son certificat de naissance,
|
Ou même si le prénom « Annette » est <em>bien</em> inscrit sur son certificat de naissance,
|
||||||
mais qu’elle le déteste et préfère utiliser «Louise.»
|
mais qu’elle le déteste et préfère utiliser « Louise ».
|
||||||
Et c’est la même chose avec les pronoms -
|
Et c’est la même chose avec les pronoms -
|
||||||
si vous ne voulez pas pas être impoli·e envers quelqu’un, adressez-vous à ellui correctement.
|
si vous ne voulez pas pas être impoli·e envers quelqu’un, adressez-vous à ellui correctement.
|
||||||
La seule différence est qu’on connaît généralement le nom des gens, mais pas leurs pronoms.
|
La seule différence est qu’on connaît généralement le nom des gens, mais pas leurs pronoms.
|
||||||
|
@ -73,7 +73,7 @@ pronouns:
|
||||||
Même si pour beaucoup de gens, c'est extrêmement important qu'on utilise des pronoms spécifiques pour parler d'eux,
|
Même si pour beaucoup de gens, c'est extrêmement important qu'on utilise des pronoms spécifiques pour parler d'eux,
|
||||||
d'autres ne voient pas de problème à ce qu'on s'adresse à eux de n'importe quelle façon –
|
d'autres ne voient pas de problème à ce qu'on s'adresse à eux de n'importe quelle façon –
|
||||||
du moment que c'est évident de qui on parle dans le contexte.
|
du moment que c'est évident de qui on parle dans le contexte.
|
||||||
options: 'voir les options [share]{/=ici}.'
|
options: 'voir les options [share]{/pronoms=ici}.'
|
||||||
others: 'Autres formes'
|
others: 'Autres formes'
|
||||||
othersRaw: 'autre'
|
othersRaw: 'autre'
|
||||||
or: 'ou'
|
or: 'ou'
|
||||||
|
@ -167,17 +167,19 @@ nouns:
|
||||||
plural: 'pluriel'
|
plural: 'pluriel'
|
||||||
pluralShort: 'pl.'
|
pluralShort: 'pl.'
|
||||||
|
|
||||||
terms:
|
image: 'Photo'
|
||||||
header: 'Terminologie'
|
|
||||||
headerLong: 'Dictionnaire des terminologies queer'
|
terminology:
|
||||||
info:
|
header: 'Terminologie'
|
||||||
- >
|
headerLong: 'Dictionnaire des terminologies queer'
|
||||||
Un dictionnaire des terminologies utilisées parmi la communauté LGBTQ+.
|
info:
|
||||||
term: 'Terminologie'
|
- >
|
||||||
original: 'Etymologie'
|
Un dictionnaire des terminologies utilisées parmi la communauté LGBTQ+.
|
||||||
category: 'Catégorie'
|
term: 'Terminologie'
|
||||||
images: 'Images supplémentaires'
|
original: 'Etymologie'
|
||||||
definition: 'Définition'
|
category: 'Catégorie'
|
||||||
|
images: 'Images supplémentaires'
|
||||||
|
definition: 'Définition'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'FAQ'
|
header: 'FAQ'
|
||||||
|
@ -234,7 +236,7 @@ faq:
|
||||||
À la place, vous pouvez simplement demander « quels sont tes pronoms ? » ou « comment voudrais-tu que je te genre ? »)
|
À la place, vous pouvez simplement demander « quels sont tes pronoms ? » ou « comment voudrais-tu que je te genre ? »)
|
||||||
- >
|
- >
|
||||||
C’est aussi important de normaliser le fait de se présenter en donnant ses pronoms.
|
C’est aussi important de normaliser le fait de se présenter en donnant ses pronoms.
|
||||||
« Salut, je suis Michael, mes pronoms sont {/il=il/lui}. » Ce n’est pas difficile – mais pour les personnes trans et non-binaires,
|
« Salut, je suis Michel, mes pronoms sont {/il=il/lui}. » Ce n’est pas difficile – mais pour les personnes trans et non-binaires,
|
||||||
c’est tellement important !
|
c’est tellement important !
|
||||||
C’est encore plus facile en ligne: mettez simplement vos pronoms (ou un lien vers des exemples de notre site) dans votre bio.
|
C’est encore plus facile en ligne: mettez simplement vos pronoms (ou un lien vers des exemples de notre site) dans votre bio.
|
||||||
- >
|
- >
|
||||||
|
@ -354,6 +356,7 @@ contact:
|
||||||
members: 'Membres actuels'
|
members: 'Membres actuels'
|
||||||
blog: 'Blog'
|
blog: 'Blog'
|
||||||
upcoming: 'Versions en d’autres langues à venir'
|
upcoming: 'Versions en d’autres langues à venir'
|
||||||
|
member: 'Membre du collectif'
|
||||||
|
|
||||||
support:
|
support:
|
||||||
header: 'Soutien'
|
header: 'Soutien'
|
||||||
|
@ -411,8 +414,11 @@ profile:
|
||||||
description: 'Description'
|
description: 'Description'
|
||||||
names: 'Noms'
|
names: 'Noms'
|
||||||
pronouns: 'Pronoms'
|
pronouns: 'Pronoms'
|
||||||
pronounsInfo: 'Vous pouvez entrer un pronom (ex. « ael » or « il/lui ») ou un lien (ex. « http://fr.pronouns.page/elle »).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: 'Impossible de trouver un lien vers ce pronom !'
|
Vous pouvez entrer un <strong>pronom</strong> (ex. « ael » or « il/lui »)
|
||||||
|
ou un <strong>lien</strong> (ex. « http://fr.pronouns.page/elle »).
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: 'Impossible de trouver un lien vers ce pronom !' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Mots'
|
words: 'Mots'
|
||||||
birthday: ' ge'
|
birthday: ' ge'
|
||||||
birthdayInfo: 'Nous ne publions pas votre date de naissance, seulement l’âge calculé.'
|
birthdayInfo: 'Nous ne publions pas votre date de naissance, seulement l’âge calculé.'
|
||||||
|
@ -455,7 +461,7 @@ share: 'Partager'
|
||||||
crud:
|
crud:
|
||||||
approve: 'Approuver'
|
approve: 'Approuver'
|
||||||
hide: 'Cacher'
|
hide: 'Cacher'
|
||||||
remove: 'Retiret'
|
remove: 'Retirer'
|
||||||
removeConfirm: 'Êtes-vous sûr·e de vouloir retirer cet item ?'
|
removeConfirm: 'Êtes-vous sûr·e de vouloir retirer cet item ?'
|
||||||
edit: 'Éditer'
|
edit: 'Éditer'
|
||||||
add: 'Ajouter'
|
add: 'Ajouter'
|
||||||
|
@ -557,34 +563,34 @@ report:
|
||||||
|
|
||||||
flags:
|
flags:
|
||||||
Abroromantic: 'Abroromantique'
|
Abroromantic: 'Abroromantique'
|
||||||
Abrosexual: 'Abrosexuel·le'
|
Abrosexual: 'Abrosexue{inflection_l}'
|
||||||
Achillean: 'Achilléen'
|
Achillean: 'Achilléen'
|
||||||
Alloromantic_Asexual: 'Alloromantique asexuel·le'
|
Alloromantic_Asexual: 'Alloromantique asexue{inflection_l}'
|
||||||
Agender: 'Agenre'
|
Agender: 'Agenre'
|
||||||
Anarcha-Queer: 'Anarcho-queer'
|
Anarcha-Queer: 'Anarcho-queer'
|
||||||
Androgyne: 'Androgyne'
|
Androgyne: 'Androgyne'
|
||||||
Androsexual: 'Androsexuel·le'
|
Androsexual: 'Androsexue{inflection_l}'
|
||||||
Aporagender: 'Aporagenre'
|
Aporagender: 'Aporagenre'
|
||||||
Archaeopronouns: 'Archéo-pronoms'
|
Archaeopronouns: 'Archéo-pronoms'
|
||||||
Aroace: 'Aroace'
|
Aroace: 'Aroace'
|
||||||
Aromantic: 'Aromantique'
|
Aromantic: 'Aromantique'
|
||||||
Aromantic_Allosexual: 'Aromantique allosexuel·le'
|
Aromantic_Allosexual: 'Aromantique allosexue{inflection_l}'
|
||||||
Asexual: 'Asexuel·le'
|
Asexual: 'Asexue{inflection_l}'
|
||||||
Autigender: 'Autigenre'
|
Autigender: 'Autigenre'
|
||||||
Bear: 'Bear'
|
Bear: 'Bear'
|
||||||
Bicurious: 'Bicurieux·se'
|
Bicurious: 'Bicurieu{inflection_x}'
|
||||||
Bigender: 'Bigenre'
|
Bigender: 'Bigenre'
|
||||||
Biromantic: 'Biromantique'
|
Biromantic: 'Biromantique'
|
||||||
Bisexual: 'Bisexuel·le'
|
Bisexual: 'Bisexue{inflection_l}'
|
||||||
Butch: 'Butch'
|
Butch: 'Butch'
|
||||||
Ceteroromantic: 'Ceteroromantique'
|
Ceteroromantic: 'Ceteroromantique'
|
||||||
Ceterosexual: 'Ceterosexuel·le'
|
Ceterosexual: 'Ceterosexue{inflection_l}'
|
||||||
Cis_Ally: 'Allié·e cis'
|
Cis_Ally: 'Alli{inflection_e} cis'
|
||||||
Demiboy: 'Demiboy'
|
Demiboy: 'Demiboy'
|
||||||
Demigender: 'Demigenre'
|
Demigender: 'Demigenre'
|
||||||
Demigirl: 'Demigirl'
|
Demigirl: 'Demigirl'
|
||||||
Demiromantic: 'Demiromantique'
|
Demiromantic: 'Demiromantique'
|
||||||
Demisexual: 'Demisexuel·le'
|
Demisexual: 'Demisexue{inflection_l}'
|
||||||
Diamoric: 'Diamorique'
|
Diamoric: 'Diamorique'
|
||||||
Enbian: 'Enbian'
|
Enbian: 'Enbian'
|
||||||
Fa*afafine: 'Fa''afafine'
|
Fa*afafine: 'Fa''afafine'
|
||||||
|
@ -595,12 +601,12 @@ flags:
|
||||||
Genderfluid: 'Genderfluid'
|
Genderfluid: 'Genderfluid'
|
||||||
Genderflux: 'Genderflux'
|
Genderflux: 'Genderflux'
|
||||||
Genderqueer: 'Genderqueer'
|
Genderqueer: 'Genderqueer'
|
||||||
Greyasexual: 'Grisexuel·le'
|
Greyasexual: 'Grisexue{inflection_l}'
|
||||||
Greyaromantic: 'Grisromantique'
|
Greyaromantic: 'Grisromantique'
|
||||||
Gynesexual: 'Gynosexuel·le'
|
Gynesexual: 'Gynosexue{inflection_l}'
|
||||||
Heteroflexible: 'Hétéroflexible'
|
Heteroflexible: 'Hétéroflexible'
|
||||||
Heteroromantic: 'Hétéroromantique'
|
Heteroromantic: 'Hétéroromantique'
|
||||||
Heterosexual: 'Hétérosexuel'
|
Heterosexual: 'Hétérosexue{inflection_l}'
|
||||||
Hijra: 'Hijra'
|
Hijra: 'Hijra'
|
||||||
Homoflexible: 'Homoflexible'
|
Homoflexible: 'Homoflexible'
|
||||||
Homoromantic: 'Homoromantique'
|
Homoromantic: 'Homoromantique'
|
||||||
|
@ -615,17 +621,17 @@ flags:
|
||||||
Neopronouns: 'Néopronoms'
|
Neopronouns: 'Néopronoms'
|
||||||
Neutrois: 'Neutrois'
|
Neutrois: 'Neutrois'
|
||||||
Nonbinary: 'Non-binaire'
|
Nonbinary: 'Non-binaire'
|
||||||
Omnisexual: 'Omnisexuel·le'
|
Omnisexual: 'Omnisexue{inflection_l}'
|
||||||
Omniromantic: 'Omniromantique'
|
Omniromantic: 'Omniromantique'
|
||||||
Oriented_Aroace: 'Aroace orienté·e'
|
Oriented_Aroace: 'Aroace orient{inflection_e}'
|
||||||
Pangender: 'Pangenre'
|
Pangender: 'Pangenre'
|
||||||
Panromantic: 'Panromantique'
|
Panromantic: 'Panromantique'
|
||||||
Pansexual: 'Pansexuel·le'
|
Pansexual: 'Pansexue{inflection_l}'
|
||||||
Polyamorous: 'Polyamoureux·se'
|
Polyamorous: 'Polyamoureu{inflection_x}'
|
||||||
Polyromantic: 'Panromantique'
|
Polyromantic: 'Panromantique'
|
||||||
Polysexual: 'Polysexuel·le'
|
Polysexual: 'Polysexue{inflection_l}'
|
||||||
Pomoromantic: 'Pomoromantique'
|
Pomoromantic: 'Pomoromantique'
|
||||||
Pomosexual: 'Pomosexuel·le'
|
Pomosexual: 'Pomosexue{inflection_l}'
|
||||||
Progress_Pride: 'Progress Pride'
|
Progress_Pride: 'Progress Pride'
|
||||||
Queer: 'Queer'
|
Queer: 'Queer'
|
||||||
Queerian: 'Queerian'
|
Queerian: 'Queerian'
|
||||||
|
@ -633,11 +639,11 @@ flags:
|
||||||
Quoiromantic: 'Queeromantique'
|
Quoiromantic: 'Queeromantique'
|
||||||
Sapphic: 'Saphique'
|
Sapphic: 'Saphique'
|
||||||
Sexuality_Questioning: 'En questionnement de sexualité'
|
Sexuality_Questioning: 'En questionnement de sexualité'
|
||||||
Straight_Ally: 'Allié hétéro'
|
Straight_Ally: 'Alli{inflection_e} hétéro'
|
||||||
Toric: 'Toric'
|
Toric: 'Toric'
|
||||||
Transfeminine: 'Transféminin·e'
|
Transfeminine: 'Transfémini{inflection_n}'
|
||||||
Transgender: 'Transgenre'
|
Transgender: 'Transgenre'
|
||||||
Transmasculine: 'Transmasculin·e'
|
Transmasculine: 'Transmasculi{inflection_n}'
|
||||||
Transneutral: 'Transneutre'
|
Transneutral: 'Transneutre'
|
||||||
Trigender: 'Trigenre'
|
Trigender: 'Trigenre'
|
||||||
Trixic: 'Trixic'
|
Trixic: 'Trixic'
|
||||||
|
|
|
@ -64,10 +64,12 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: false
|
|
||||||
|
terminology:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -74,7 +74,7 @@ pronouns:
|
||||||
Ook al is het voor veel mensen erg belangrijk dat men specifieke voornaamwoorden gebruikt om over hun te praten,
|
Ook al is het voor veel mensen erg belangrijk dat men specifieke voornaamwoorden gebruikt om over hun te praten,
|
||||||
vinden anderen het geen probleem om op wat voor manier dan ook aangesproken te worden
|
vinden anderen het geen probleem om op wat voor manier dan ook aangesproken te worden
|
||||||
- zolang de context duidelijk is wat betreft degene over wie wordt gesproken.
|
- zolang de context duidelijk is wat betreft degene over wie wordt gesproken.
|
||||||
options: 'bekijk de mogelijkheden [share]{/=hier}.'
|
options: 'bekijk de mogelijkheden [share]{/voornaamwoorden=hier}.'
|
||||||
others: 'Andere vormen'
|
others: 'Andere vormen'
|
||||||
othersRaw: 'andere'
|
othersRaw: 'andere'
|
||||||
or: 'of'
|
or: 'of'
|
||||||
|
@ -167,6 +167,8 @@ nouns:
|
||||||
plural: 'meervoud'
|
plural: 'meervoud'
|
||||||
pluralShort: 'meerv.'
|
pluralShort: 'meerv.'
|
||||||
|
|
||||||
|
image: 'Beeld'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'FAQ'
|
header: 'FAQ'
|
||||||
headerLong: 'Veelgestelde vragen'
|
headerLong: 'Veelgestelde vragen'
|
||||||
|
@ -261,7 +263,7 @@ faq:
|
||||||
Als je cis bent (=niet trans) en je gebruikt „{/he=he}” or „{/she=she}”, dan zou je kunnen
|
Als je cis bent (=niet trans) en je gebruikt „{/he=he}” or „{/she=she}”, dan zou je kunnen
|
||||||
denken dat jouw voornaamwoorden <em>vanzelfsprekend</em>. zijn.
|
denken dat jouw voornaamwoorden <em>vanzelfsprekend</em>. zijn.
|
||||||
And misschien is dat wel zo - zolang als jouw naam op jouw profiel staat (en traditioneel als mannelijk of vrouwelijk wordt gezien)
|
And misschien is dat wel zo - zolang als jouw naam op jouw profiel staat (en traditioneel als mannelijk of vrouwelijk wordt gezien)
|
||||||
en jouw avatar is ingesteld op jouw foto.
|
en jouw avatar is ingesteld op jouw foto.
|
||||||
Voor velen is dat niet zo en is het daarom moeilijk om te raden hoe ze willen worden aangesproken.
|
Voor velen is dat niet zo en is het daarom moeilijk om te raden hoe ze willen worden aangesproken.
|
||||||
- >
|
- >
|
||||||
Maar het is vooral vanwege het volgende: jouw voornaamwoorden kunnen dan wel ''vanzelfsprekend'' zijn,
|
Maar het is vooral vanwege het volgende: jouw voornaamwoorden kunnen dan wel ''vanzelfsprekend'' zijn,
|
||||||
|
@ -272,7 +274,7 @@ faq:
|
||||||
- >
|
- >
|
||||||
Het is erg belangrijk voor trans, non-binaire and gender non-conforme personen om onze voornaamwoorden te delen.
|
Het is erg belangrijk voor trans, non-binaire and gender non-conforme personen om onze voornaamwoorden te delen.
|
||||||
Tegelijkertijd maakt het ons ook kwetsbaar.
|
Tegelijkertijd maakt het ons ook kwetsbaar.
|
||||||
Maar als cis personen dit ook doen, dan kan dat een wereld van verschil betekenen.
|
Maar als cis personen dit ook doen, dan kan dat een wereld van verschil betekenen.
|
||||||
Het maakt ons comfortabeler, veilig en maakt dat we ons welkom voelen.
|
Het maakt ons comfortabeler, veilig en maakt dat we ons welkom voelen.
|
||||||
{https://avris.it/blog/why-everyone-should-have-pronouns-in-their-bio=(more reasons here).}
|
{https://avris.it/blog/why-everyone-should-have-pronouns-in-their-bio=(more reasons here).}
|
||||||
change:
|
change:
|
||||||
|
@ -291,7 +293,7 @@ faq:
|
||||||
|
|
||||||
- >
|
- >
|
||||||
Voornaamwoorden ≠ gender
|
Voornaamwoorden ≠ gender
|
||||||
Jouw gender zal niet radicaal veranderen puur omdat je een keertje in de war raakte omdat iemand jou ''hen'' noemde.
|
Jouw gender zal niet radicaal veranderen puur omdat je een keertje in de war raakte omdat iemand jou ''hen'' noemde.
|
||||||
Maak je geen zorgen. Experiment. Kijk wat het beste bij jou past.
|
Maak je geen zorgen. Experiment. Kijk wat het beste bij jou past.
|
||||||
preferred-pronouns:
|
preferred-pronouns:
|
||||||
question: 'Waarom moet ik niet ''geprefereerde voornaamwoorden'' zeggen?'
|
question: 'Waarom moet ik niet ''geprefereerde voornaamwoorden'' zeggen?'
|
||||||
|
@ -399,8 +401,12 @@ profile:
|
||||||
description: 'Omschrijving'
|
description: 'Omschrijving'
|
||||||
names: 'Namen'
|
names: 'Namen'
|
||||||
pronouns: 'Voornaamwoorden'
|
pronouns: 'Voornaamwoorden'
|
||||||
pronounsInfo: 'Je kunt een voornaamwoord (bijv. “die” of “zij/haar”) of een link (bijv. “http://nl.pronouns.page/zem”) of vijf eigen vormen (bijv. “hen/hen/hun/hunne/hunzelf”) invoeren.'
|
pronounsInfo: >
|
||||||
pronounsNotFound: 'We kunnen geen link naar dit voornaamwoord vinden!'
|
Je kunt een <strong>voornaamwoord</strong> (bijv. “die” of “zij/haar”)
|
||||||
|
of een <strong>link</strong> (bijv. “http://nl.pronouns.page/zem”)
|
||||||
|
of <strong>vijf eigen vormen</strong> (bijv. “hen/hen/hun/hunne/hunzelf”) invoeren.
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: 'We kunnen geen link naar dit voornaamwoord vinden!' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Woorden'
|
words: 'Woorden'
|
||||||
birthday: 'Leeftijd'
|
birthday: 'Leeftijd'
|
||||||
birthdayInfo: 'We laten jouw verjaardagsdatum niet zien, alleen de berekende leeftijd.'
|
birthdayInfo: 'We laten jouw verjaardagsdatum niet zien, alleen de berekende leeftijd.'
|
||||||
|
|
|
@ -45,23 +45,25 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
|
||||||
terms:
|
|
||||||
enabled: true
|
|
||||||
categories:
|
|
||||||
- 'seksuell legning'
|
|
||||||
- 'romantisk legning'
|
|
||||||
- 'tertiær legning'
|
|
||||||
- 'kjønn'
|
|
||||||
- 'kjønns uttrykk'
|
|
||||||
- 'forholds modell'
|
|
||||||
- 'språk'
|
|
||||||
- 'attraksjon'
|
|
||||||
- 'politikk'
|
|
||||||
- 'fordom'
|
|
||||||
|
|
||||||
route: 'terminologi'
|
inclusive:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
terminology:
|
||||||
|
enabled: true
|
||||||
|
categories:
|
||||||
|
- 'seksuell legning'
|
||||||
|
- 'romantisk legning'
|
||||||
|
- 'tertiær legning'
|
||||||
|
- 'kjønn'
|
||||||
|
- 'kjønns uttrykk'
|
||||||
|
- 'forholds modell'
|
||||||
|
- 'språk'
|
||||||
|
- 'attraksjon'
|
||||||
|
- 'politikk'
|
||||||
|
- 'fordom'
|
||||||
|
|
||||||
|
route: 'terminologi'
|
||||||
|
|
||||||
|
|
||||||
names:
|
names:
|
||||||
|
|
|
@ -73,7 +73,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
Selv om det for mange folk er veldig viktig at andre bruker spesifikke pronomen til å omtale dem
|
Selv om det for mange folk er veldig viktig at andre bruker spesifikke pronomen til å omtale dem
|
||||||
så er det også andre som ikke bryr seg om hvilke pronomen du bruker for dem, eller bruker alle pronomen - så lenge det er klart hvem man snakker om.
|
så er det også andre som ikke bryr seg om hvilke pronomen du bruker for dem, eller bruker alle pronomen - så lenge det er klart hvem man snakker om.
|
||||||
options: 'sjekk ut valgene her [del]{/=her}.'
|
options: 'sjekk ut valgene her [share]{/pronomen=her}.'
|
||||||
others: 'Andre former'
|
others: 'Andre former'
|
||||||
othersRaw: 'andre'
|
othersRaw: 'andre'
|
||||||
or: 'eller'
|
or: 'eller'
|
||||||
|
@ -169,17 +169,19 @@ nouns:
|
||||||
plural: 'flertall.'
|
plural: 'flertall.'
|
||||||
pluralShort: 'fl.'
|
pluralShort: 'fl.'
|
||||||
|
|
||||||
terms:
|
image: 'Bilde'
|
||||||
header: 'Terminologi'
|
|
||||||
headerLong: 'Ordbok av queer terminologi'
|
terminology:
|
||||||
info:
|
header: 'Terminologi'
|
||||||
- >
|
headerLong: 'Ordbok av queer terminologi'
|
||||||
En ordbok med begrep som relaterer til LHBTQ+ fellesskapet.
|
info:
|
||||||
term: 'Begrep'
|
- >
|
||||||
original: 'Etymologi'
|
En ordbok med begrep som relaterer til LHBTQ+ fellesskapet.
|
||||||
category: 'Kategori'
|
term: 'Begrep'
|
||||||
images: 'Ekstra bilder, fra utsiden av flagg katalogen'
|
original: 'Etymologi'
|
||||||
definition: 'Definisjon'
|
category: 'Kategori'
|
||||||
|
images: 'Ekstra bilder, fra utsiden av flagg katalogen'
|
||||||
|
definition: 'Definisjon'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'Spørsmål'
|
header: 'Spørsmål'
|
||||||
|
@ -353,6 +355,7 @@ contact:
|
||||||
members: 'Nåværende medlemmer'
|
members: 'Nåværende medlemmer'
|
||||||
blog: 'Blogg'
|
blog: 'Blogg'
|
||||||
upcoming: 'Kommende språk versjoner'
|
upcoming: 'Kommende språk versjoner'
|
||||||
|
member: 'Member of the collective' # TODO
|
||||||
|
|
||||||
support:
|
support:
|
||||||
header: 'Hjelp'
|
header: 'Hjelp'
|
||||||
|
@ -410,8 +413,12 @@ profile:
|
||||||
description: 'Beskrivelse'
|
description: 'Beskrivelse'
|
||||||
names: 'Navn'
|
names: 'Navn'
|
||||||
pronouns: 'Pronomen'
|
pronouns: 'Pronomen'
|
||||||
pronounsInfo: 'Du kan taste inn ett pronomen (feks. “de” eller “hun/henne” eller en link (feks. “http://no.pronouns.page/hun”).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: 'Vi kan ikke finne en link til dette pronomenet!'
|
Du kan taste inn ett <strong>pronomen</strong> (feks. “de” eller “hun/henne”)
|
||||||
|
eller en <strong>link</strong> (feks. “http://no.pronouns.page/hun”).
|
||||||
|
# TODO add: or the <strong>custom five forms</strong> (eg. “ze/zem/zir/zirs/zirself”).
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: 'Vi kan ikke finne en link til dette pronomenet!' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Ord'
|
words: 'Ord'
|
||||||
birthday: 'Alder'
|
birthday: 'Alder'
|
||||||
birthdayInfo: 'Vi viser ikke bursdagen din, bare den kalkulerte alderen.'
|
birthdayInfo: 'Vi viser ikke bursdagen din, bare den kalkulerte alderen.'
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Poradnik języka neutralnego płciowo
|
||||||
|
|
||||||
|
<small>2021-08-28 | [@Sybil](/@Sybil)</small>
|
||||||
|
|
||||||
|
Prezentacja Sybila stworzona na V Kongres Anarchistyczny Kongresono (kliknij na obrazek, aby otworzyć).
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="/docs/Poradnik języka neutralnego płciowo.pdf" target="_blank">
|
||||||
|
<img src="/img-local/blog/poradnik-języka-neutralnego-płciowo.png" class="hero" alt="Prezentacja w formacie PDF"/>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="/docs/Poradnik języka neutralnego płciowo.pdf" target="_blank" class="btn btn-primary d-block">
|
||||||
|
<span class="fal fa-file-pdf"></span>
|
||||||
|
Prezentacja
|
||||||
|
</a>
|
||||||
|
</p>
|
|
@ -74,6 +74,7 @@ sources:
|
||||||
nouns:
|
nouns:
|
||||||
enabled: true
|
enabled: true
|
||||||
route: 'slowniki'
|
route: 'slowniki'
|
||||||
|
routeMain: 'neutratywy'
|
||||||
collapsable: false
|
collapsable: false
|
||||||
plurals: true
|
plurals: true
|
||||||
pluralsRequired: true
|
pluralsRequired: true
|
||||||
|
@ -85,25 +86,27 @@ nouns:
|
||||||
- 'dukatywy'
|
- 'dukatywy'
|
||||||
- 'osobatywy'
|
- 'osobatywy'
|
||||||
- 'iksatywy'
|
- 'iksatywy'
|
||||||
inclusive:
|
|
||||||
enabled: true
|
inclusive:
|
||||||
categories: ['nieheteronormatywność', 'transpłciowość', 'interpłciowość', 'feminizm', 'niepełnosprawność', 'rasa i narodowość', 'ubóstwo', 'zdrowie psychiczne']
|
enabled: true
|
||||||
route: 'inkluzywny'
|
categories: ['nieheteronormatywność', 'transpłciowość', 'interpłciowość', 'feminizm', 'niepełnosprawność', 'rasa i narodowość', 'ubóstwo', 'zdrowie psychiczne']
|
||||||
terms:
|
route: 'inkluzywny'
|
||||||
enabled: true
|
|
||||||
published: true
|
terminology:
|
||||||
categories:
|
enabled: true
|
||||||
- 'orientacja seksualna'
|
published: true
|
||||||
- 'orientacja romantyczna'
|
categories:
|
||||||
- 'orientacja tertiarna'
|
- 'orientacja seksualna'
|
||||||
- 'płeć'
|
- 'orientacja romantyczna'
|
||||||
- 'ekspresja płciowa'
|
- 'orientacja tertiarna'
|
||||||
- 'model relacji'
|
- 'płeć'
|
||||||
- 'język'
|
- 'ekspresja płciowa'
|
||||||
- 'pociąg'
|
- 'model relacji'
|
||||||
- 'polityka'
|
- 'język'
|
||||||
- 'uprzedzenia'
|
- 'pociąg'
|
||||||
route: 'terminologia'
|
- 'polityka'
|
||||||
|
- 'uprzedzenia'
|
||||||
|
route: 'terminologia'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
@ -1325,13 +1328,13 @@ census:
|
||||||
spis-2021: 'Raport ze Spisu 2021'
|
spis-2021: 'Raport ze Spisu 2021'
|
||||||
|
|
||||||
redirects:
|
redirects:
|
||||||
- { from: '^/neutratywy$', to: '/slowniki/neutratywy' }
|
- { from: '^/slowniki/neutratywy$', to: '/neutratywy' }
|
||||||
- { from: '^/dukatywy$', to: '/slowniki/dukatywy' }
|
- { from: '^/slowniki/dukatywy$', to: '/dukatywy' }
|
||||||
- { from: '^/osobatywy$', to: '/slowniki/osobatywy' }
|
- { from: '^/slowniki/osobatywy$', to: '/osobatywy' }
|
||||||
- { from: '^/iksatywy$', to: '/slowniki/iksatywy' }
|
- { from: '^/slowniki/iksatywy$', to: '/iksatywy' }
|
||||||
- { from: '^/inkluzywny', to: '/slowniki/inkluzywny' }
|
- { from: '^/slowniki/inkluzywny', to: '/inkluzywny' }
|
||||||
- { from: '^/inkluzywnosc', to: '/slowniki/inkluzywny' }
|
- { from: '^/slowniki/inkluzywnosc', to: '/inkluzywny' }
|
||||||
- { from: '^/terminologia', to: '/slowniki/terminologia' }
|
- { from: '^/slowniki/terminologia', to: '/terminologia' }
|
||||||
- { from: '^/rzeczowniki$', to: '/slowniki' }
|
- { from: '^/rzeczowniki$', to: '/slowniki' }
|
||||||
- { from: '^/slownik$', to: '/slowniki' }
|
- { from: '^/slownik$', to: '/slowniki' }
|
||||||
- { from: '^/s%C5%82ownik$', to: '/slowniki' }
|
- { from: '^/s%C5%82ownik$', to: '/slowniki' }
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 287 KiB |
|
@ -5,7 +5,7 @@
|
||||||
:to="buildRoute(route)"
|
:to="buildRoute(route)"
|
||||||
:class="['btn', isActiveRoute(route) ? 'btn-primary' : 'btn-outline-primary']">
|
:class="['btn', isActiveRoute(route) ? 'btn-primary' : 'btn-outline-primary']">
|
||||||
<Icon :v="icon"/>
|
<Icon :v="icon"/>
|
||||||
<T>nouns.{{name}}.header</T>
|
<T>{{name}}</T>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-block d-md-none btn-group-vertical btn-block mb-2 w-100">
|
<div class="d-block d-md-none btn-group-vertical btn-block mb-2 w-100">
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
:to="buildRoute(route)"
|
:to="buildRoute(route)"
|
||||||
:class="['btn', isActiveRoute(route) ? 'btn-primary' : 'btn-outline-primary']">
|
:class="['btn', isActiveRoute(route) ? 'btn-primary' : 'btn-outline-primary']">
|
||||||
<Icon :v="icon"/>
|
<Icon :v="icon"/>
|
||||||
<T>nouns.{{name}}.header</T>
|
<T>{{name}}</T>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@ -23,18 +23,18 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
const links = [
|
const links = [
|
||||||
{name: 'neuterNouns', icon: 'deer', route: 'neutratywy'},
|
{name: 'nouns.neuterNouns.header', icon: 'deer', route: 'neutratywy'},
|
||||||
{name: 'dukajNouns', icon: 'ghost', route: 'dukatywy'},
|
{name: 'nouns.dukajNouns.header', icon: 'ghost', route: 'dukatywy'},
|
||||||
{name: 'personNouns', icon: 'user-friends', route: 'osobatywy'},
|
{name: 'nouns.personNouns.header', icon: 'user-friends', route: 'osobatywy'},
|
||||||
{name: 'xNouns', icon: 'comment-times', route: 'iksatywy'},
|
{name: 'nouns.xNouns.header', icon: 'comment-times', route: 'iksatywy'},
|
||||||
];
|
];
|
||||||
|
|
||||||
if (this.config.nouns.inclusive.enabled) {
|
if (this.config.inclusive.enabled) {
|
||||||
links.push({name: 'inclusive', icon: 'book-heart', route: this.config.nouns.inclusive.route});
|
links.push({name: 'inclusive.header', icon: 'book-heart', route: this.config.inclusive.route});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.config.nouns.terms.enabled) {
|
if (this.config.terminology.enabled) {
|
||||||
links.push({name: 'terms', icon: 'flag', route: this.config.nouns.terms.route});
|
links.push({name: 'terminology.header', icon: 'flag', route: this.config.terminology.route});
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buildRoute(route) {
|
buildRoute(route) {
|
||||||
return `/${this.config.nouns.route}/${route}`;
|
return `/${route}`;
|
||||||
},
|
},
|
||||||
isActiveRoute(route) {
|
isActiveRoute(route) {
|
||||||
let current = decodeURIComponent(this.$route.fullPath).replace(/\/$/, '');
|
let current = decodeURIComponent(this.$route.fullPath).replace(/\/$/, '');
|
||||||
|
|
|
@ -85,7 +85,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
Choć dla wielu osób niezmiernie ważne jest, by używać wobec nich konkretnych zaimków,
|
Choć dla wielu osób niezmiernie ważne jest, by używać wobec nich konkretnych zaimków,
|
||||||
innym nie przeszkadza zwracanie się w dowolny sposób – o ile wiadomo z kontekstu, że to o nich mowa.
|
innym nie przeszkadza zwracanie się w dowolny sposób – o ile wiadomo z kontekstu, że to o nich mowa.
|
||||||
options: 'przejrzyj listę możliwości [share]{/=tutaj}.'
|
options: 'przejrzyj listę możliwości [share]{/zaimki=tutaj}.'
|
||||||
avoiding:
|
avoiding:
|
||||||
header: 'Unikanie form nacechowanych płciowo'
|
header: 'Unikanie form nacechowanych płciowo'
|
||||||
description: >
|
description: >
|
||||||
|
@ -246,7 +246,7 @@ nouns:
|
||||||
- >
|
- >
|
||||||
Płeć człowieka wymyka się jednak prostemu podziałowi kobieta/mężczyzna.
|
Płeć człowieka wymyka się jednak prostemu podziałowi kobieta/mężczyzna.
|
||||||
Jakimi rzeczownikami mogą się opisywać {/pytania#niebinarnosc=osoby niebinarne}?
|
Jakimi rzeczownikami mogą się opisywać {/pytania#niebinarnosc=osoby niebinarne}?
|
||||||
Jeśli używają {/ono=rodzaju neutralnego}, {/onu=postpłciowego} czy {/=innych nienormatywnych form},
|
Jeśli używają {/ono=rodzaju neutralnego}, {/onu=postpłciowego} czy {/zaimki=innych nienormatywnych form},
|
||||||
to które formy rzeczowników pasują do nich gramatycznie?
|
to które formy rzeczowników pasują do nich gramatycznie?
|
||||||
Jak przetłumaczyć z angielskiego zawód osoby używającej zaimków <em>they/them</em>?
|
Jak przetłumaczyć z angielskiego zawód osoby używającej zaimków <em>they/them</em>?
|
||||||
Jak opisywać grupy mieszane?
|
Jak opisywać grupy mieszane?
|
||||||
|
@ -371,38 +371,40 @@ nouns:
|
||||||
plural: 'liczba mnoga'
|
plural: 'liczba mnoga'
|
||||||
pluralShort: 'l. mn.'
|
pluralShort: 'l. mn.'
|
||||||
|
|
||||||
inclusive:
|
image: 'Obrazek'
|
||||||
header: 'Inkluzywność'
|
|
||||||
headerLong: 'Słownik inkluzywnego języka'
|
|
||||||
insteadOf: 'Zamiast'
|
|
||||||
say: 'Lepiej mów'
|
|
||||||
because: 'Ponieważ'
|
|
||||||
info:
|
|
||||||
- >
|
|
||||||
Język jest nośnikiem myśli, nośnikiem kultury, podstawą komunikacji. Wpływa na to, co robimy i jak myślimy.
|
|
||||||
Jeśli chcemy tworzyć społeczeństwo otwarte na różnorodność i akceptujące odmienność,
|
|
||||||
to nasz język też musi być włączający.
|
|
||||||
- >
|
|
||||||
Inkluzywny język to nie tylko rzeczowniki i nie tylko kwestie płciowości.
|
|
||||||
Poniżej przedstawiamy słownik, w którym zbieramy sugestie,
|
|
||||||
jakich konstrukcji lepiej unikać i dlatego, oraz czym je zastępować.
|
|
||||||
categories: 'Kategorie'
|
|
||||||
sources: 'Linki źródłowe'
|
|
||||||
|
|
||||||
terms:
|
inclusive:
|
||||||
header: 'Terminologia'
|
header: 'Inkluzywność'
|
||||||
headerLong: 'Słownik terminologii queerowej'
|
headerLong: 'Słownik inkluzywnego języka'
|
||||||
info:
|
insteadOf: 'Zamiast'
|
||||||
- >
|
say: 'Lepiej mów'
|
||||||
Większość zwrotów i wyrażeń związanych ze społecznością LGBTQ+
|
because: 'Ponieważ'
|
||||||
funkcjonuje w polszczyźnie jako anglojęzyczne wstawki.
|
info:
|
||||||
Poniżej przedstawiamy słownik tłumaczący, co dane określenia oznaczają,
|
- >
|
||||||
i jakie proponujemy dla nich polskie tłumaczenia.
|
Język jest nośnikiem myśli, nośnikiem kultury, podstawą komunikacji. Wpływa na to, co robimy i jak myślimy.
|
||||||
term: 'Określenie'
|
Jeśli chcemy tworzyć społeczeństwo otwarte na różnorodność i akceptujące odmienność,
|
||||||
original: 'Pochodzenie, określenie angielskie'
|
to nasz język też musi być włączający.
|
||||||
category: 'Kategoria'
|
- >
|
||||||
images: 'Dodatkowe obrazki, spoza katalogu flag'
|
Inkluzywny język to nie tylko rzeczowniki i nie tylko kwestie płciowości.
|
||||||
definition: 'Definicja'
|
Poniżej przedstawiamy słownik, w którym zbieramy sugestie,
|
||||||
|
jakich konstrukcji lepiej unikać i dlatego, oraz czym je zastępować.
|
||||||
|
categories: 'Kategorie'
|
||||||
|
sources: 'Linki źródłowe'
|
||||||
|
|
||||||
|
terminology:
|
||||||
|
header: 'Terminologia'
|
||||||
|
headerLong: 'Słownik terminologii queerowej'
|
||||||
|
info:
|
||||||
|
- >
|
||||||
|
Większość zwrotów i wyrażeń związanych ze społecznością LGBTQ+
|
||||||
|
funkcjonuje w polszczyźnie jako anglojęzyczne wstawki.
|
||||||
|
Poniżej przedstawiamy słownik tłumaczący, co dane określenia oznaczają,
|
||||||
|
i jakie proponujemy dla nich polskie tłumaczenia.
|
||||||
|
term: 'Określenie'
|
||||||
|
original: 'Pochodzenie, określenie angielskie'
|
||||||
|
category: 'Kategoria'
|
||||||
|
images: 'Dodatkowe obrazki, spoza katalogu flag'
|
||||||
|
definition: 'Definicja'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
header: 'Imiona'
|
header: 'Imiona'
|
||||||
|
@ -497,7 +499,7 @@ faq:
|
||||||
question: 'Czy ktoś tego w ogóle używa?'
|
question: 'Czy ktoś tego w ogóle używa?'
|
||||||
answer:
|
answer:
|
||||||
- >
|
- >
|
||||||
Tak! Niemal wszystkie formy, które {/=tu prezentujemy},
|
Tak! Niemal wszystkie formy, które {/zaimki=tu prezentujemy},
|
||||||
zostały nam podesłane przez osoby rzeczywiście ich używające,
|
zostały nam podesłane przez osoby rzeczywiście ich używające,
|
||||||
albo wzięte z tekstów literatury.
|
albo wzięte z tekstów literatury.
|
||||||
Ewentualnie {/ona/ich=uzupełniłośmy} je jedynie w miejscach, gdzie którejś części brakowało,
|
Ewentualnie {/ona/ich=uzupełniłośmy} je jedynie w miejscach, gdzie którejś części brakowało,
|
||||||
|
@ -709,7 +711,7 @@ faq:
|
||||||
Jednak nie każda osoba chce używać zaimków i form męskich czy żeńskich,
|
Jednak nie każda osoba chce używać zaimków i form męskich czy żeńskich,
|
||||||
choćby dlatego, że płeć człowieka wymyka się tym dwóm kategoriom.
|
choćby dlatego, że płeć człowieka wymyka się tym dwóm kategoriom.
|
||||||
Coraz więcej osób używa w odniesieniu do siebie
|
Coraz więcej osób używa w odniesieniu do siebie
|
||||||
{/ono=rodzaju neutralnego} i {/=innych form}.
|
{/ono=rodzaju neutralnego} i {/zaimki=innych form}.
|
||||||
Formy te zaczynają być także potrzebne w tłumaczeniach z języków,
|
Formy te zaczynają być także potrzebne w tłumaczeniach z języków,
|
||||||
gdzie używane są formy niebinarne takie jak choćby angielskie zaimki they/them.
|
gdzie używane są formy niebinarne takie jak choćby angielskie zaimki they/them.
|
||||||
Z tego powodu proponujemy rozbudowę niebinarnej polszczyzny poprzez wspólne tworzenie form neutralnych.
|
Z tego powodu proponujemy rozbudowę niebinarnej polszczyzny poprzez wspólne tworzenie form neutralnych.
|
||||||
|
@ -780,7 +782,7 @@ faq:
|
||||||
question: 'Jak zwracać się do osoby, której płci nie znamy, lub do mieszanej grupy osób?'
|
question: 'Jak zwracać się do osoby, której płci nie znamy, lub do mieszanej grupy osób?'
|
||||||
answer:
|
answer:
|
||||||
- >
|
- >
|
||||||
Wiele form, które {/=tutaj proponujemy}, można zastosować właśnie w takich sytuacjach, np.:
|
Wiele form, które {/zaimki=tutaj proponujemy}, można zastosować właśnie w takich sytuacjach, np.:
|
||||||
„{/on/a=moi drodzy/drogie}”, „drogie osoby”, „{/on*=wszys* chętn*}”, „{/onx=jesteś wspaniałx}”, itp.
|
„{/on/a=moi drodzy/drogie}”, „drogie osoby”, „{/on*=wszys* chętn*}”, „{/onx=jesteś wspaniałx}”, itp.
|
||||||
zmiana:
|
zmiana:
|
||||||
question: 'Czy mogę zmienić swoje zaimki?'
|
question: 'Czy mogę zmienić swoje zaimki?'
|
||||||
|
@ -874,7 +876,7 @@ people:
|
||||||
Przede wszystkim, nie idź na łatwiznę i nie opisuj jej zaimkami, które <em>wydaje ci się</em>,
|
Przede wszystkim, nie idź na łatwiznę i nie opisuj jej zaimkami, które <em>wydaje ci się</em>,
|
||||||
że <em>„powinna”</em> używać ze względu na „męskie” czy „żeńskie” ciało.
|
że <em>„powinna”</em> używać ze względu na „męskie” czy „żeńskie” ciało.
|
||||||
Niektórzy używają zamiennie na przykład „they” i „she”, wtedy żeńskie zaimki w polszczyźnie są na miejscu.
|
Niektórzy używają zamiennie na przykład „they” i „she”, wtedy żeńskie zaimki w polszczyźnie są na miejscu.
|
||||||
W przciwnym wypadku zajrzyj na naszą [home] {/=stronę główną},
|
W przciwnym wypadku zajrzyj do sekcji [tags] {/zaimki=Zaimki},
|
||||||
gdzie opisujemy neutralne możliwości. Zapoznaj się z nimi i na tej podstawie dokonaj wyboru.
|
gdzie opisujemy neutralne możliwości. Zapoznaj się z nimi i na tej podstawie dokonaj wyboru.
|
||||||
Możesz też spróbować spytać bezpośrednio osobę zainteresowaną o jej preferencje
|
Możesz też spróbować spytać bezpośrednio osobę zainteresowaną o jej preferencje
|
||||||
– posiłkując się naszymi [globe-americas] {/english=anglojęzycznymi materiałami}.
|
– posiłkując się naszymi [globe-americas] {/english=anglojęzycznymi materiałami}.
|
||||||
|
@ -901,7 +903,7 @@ english:
|
||||||
- >
|
- >
|
||||||
This website is an effort to put together in a structured and accessible way
|
This website is an effort to put together in a structured and accessible way
|
||||||
the existing ideas for less gendered pronouns and other forms.
|
the existing ideas for less gendered pronouns and other forms.
|
||||||
We create it in Polish (see: [home] {/=Homepage}),
|
We create it in Polish (see: [tags] {/zaimki=Zaimki}),
|
||||||
but if you don't speak it, yet still are interested in
|
but if you don't speak it, yet still are interested in
|
||||||
how this language tries to cope with the omnipresent binaries,
|
how this language tries to cope with the omnipresent binaries,
|
||||||
we've prepared a short overview of those ideas in English.
|
we've prepared a short overview of those ideas in English.
|
||||||
|
@ -1022,8 +1024,10 @@ profile:
|
||||||
description: 'Opis'
|
description: 'Opis'
|
||||||
names: 'Imiona'
|
names: 'Imiona'
|
||||||
pronouns: 'Zaimki'
|
pronouns: 'Zaimki'
|
||||||
pronounsInfo: 'Możesz tu wpisać zaimek (np. „onu”, „on/jego”) lub wkleić linka do niego (np. „https://zaimki.pl/ona/ich”).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: 'Nie możemy znaleźć tego zaimka!'
|
Możesz tu wpisać <strong>zaimek</strong> (np. „onu”, „on/jego”) lub wkleić <strong>linka</strong> do niego (np. „https://zaimki.pl/ona/ich”).
|
||||||
|
Użyj {/zaimki#generator=<strong>generatora</strong>} by wypełnić luki w zdaniach niestandardowymi formami.'
|
||||||
|
pronounsNotFound: 'Niepoprawny format. Szczegóły w instrukcji powyżej'
|
||||||
words: 'Słowa'
|
words: 'Słowa'
|
||||||
birthday: 'Wiek'
|
birthday: 'Wiek'
|
||||||
birthdayInfo: 'Nie pokazujemy publicznie pełnej daty urodzenia, jedynie obliczony wiek.'
|
birthdayInfo: 'Nie pokazujemy publicznie pełnej daty urodzenia, jedynie obliczony wiek.'
|
||||||
|
|
|
@ -47,22 +47,24 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: false
|
templates: false
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: true
|
|
||||||
categories:
|
terminology:
|
||||||
- 'orientação sexual'
|
enabled: true
|
||||||
- 'orientação romântica'
|
categories:
|
||||||
- 'orientação terciária'
|
- 'orientação sexual'
|
||||||
- 'gênero'
|
- 'orientação romântica'
|
||||||
- 'expressão de gênero'
|
- 'orientação terciária'
|
||||||
- 'modelo de relação'
|
- 'gênero'
|
||||||
- 'linguagem'
|
- 'expressão de gênero'
|
||||||
- 'atração'
|
- 'modelo de relação'
|
||||||
- 'política'
|
- 'linguagem'
|
||||||
- 'preconceito'
|
- 'atração'
|
||||||
route: 'terminologia'
|
- 'política'
|
||||||
|
- 'preconceito'
|
||||||
|
route: 'terminologia'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -74,7 +74,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
Enquanto para muita gente é importante que se utilize pronomes específicos para falar dels,
|
Enquanto para muita gente é importante que se utilize pronomes específicos para falar dels,
|
||||||
a outres não ês incomoda que sejam chamades de qualquer maneira - conquanto que no contexto esteja claro com quem se está falando.
|
a outres não ês incomoda que sejam chamades de qualquer maneira - conquanto que no contexto esteja claro com quem se está falando.
|
||||||
options: 'Verifique as opções [compartilhar]{/= aqui}.'
|
options: 'Verifique as opções [share] {/pronomes= aqui}.'
|
||||||
others: 'Outras formas'
|
others: 'Outras formas'
|
||||||
othersRaw: 'Outras'
|
othersRaw: 'Outras'
|
||||||
or: 'ou'
|
or: 'ou'
|
||||||
|
@ -166,17 +166,19 @@ nouns:
|
||||||
plural: 'plural'
|
plural: 'plural'
|
||||||
pluralShort: 'pl.'
|
pluralShort: 'pl.'
|
||||||
|
|
||||||
terms:
|
image: 'Imagem'
|
||||||
header: 'Terminologia'
|
|
||||||
headerLong: 'Dicionário de terminologia queer'
|
terminology:
|
||||||
info:
|
header: 'Terminologia'
|
||||||
- >
|
headerLong: 'Dicionário de terminologia queer'
|
||||||
Um dicionário de terminologia relacionada à comunidade LGBTQ+.
|
info:
|
||||||
term: 'Termo'
|
- >
|
||||||
original: 'Etimologia'
|
Um dicionário de terminologia relacionada à comunidade LGBTQ+.
|
||||||
category: 'Categoria'
|
term: 'Termo'
|
||||||
images: 'Imagens adicionais, de fora do catálogo de bandeiras'
|
original: 'Etimologia'
|
||||||
definition: 'Definição'
|
category: 'Categoria'
|
||||||
|
images: 'Imagens adicionais, de fora do catálogo de bandeiras'
|
||||||
|
definition: 'Definição'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'Perguntas'
|
header: 'Perguntas'
|
||||||
|
@ -415,8 +417,11 @@ profile:
|
||||||
description: 'Descrição'
|
description: 'Descrição'
|
||||||
names: 'Nomes'
|
names: 'Nomes'
|
||||||
pronouns: 'Pronomes'
|
pronouns: 'Pronomes'
|
||||||
pronounsInfo: 'Pode introduzir um pronome (p. ex. “ele” ou “ela”) ou um link (“http://pt.pronouns.page/elx”).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: '˜Não podemos encontrar um link com este pronome!'
|
Pode introduzir um <strong>pronome</strong> (p. ex. “ele” ou “ela”)
|
||||||
|
ou um <strong>link</strong> (“http://pt.pronouns.page/elx”).
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: '˜Não podemos encontrar um link com este pronome!' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'Palavras'
|
words: 'Palavras'
|
||||||
birthday: 'Idade'
|
birthday: 'Idade'
|
||||||
birthdayInfo: 'Não publicamos a data do aniversário, somente a idade calculada.'
|
birthdayInfo: 'Não publicamos a data do aniversário, somente a idade calculada.'
|
||||||
|
|
|
@ -50,21 +50,23 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: true
|
|
||||||
categories:
|
terminology:
|
||||||
- 'orientacja seksualna'
|
enabled: true
|
||||||
- 'orientacja romantyczna'
|
categories:
|
||||||
- 'orientacja tertiarna'
|
- 'orientacja seksualna'
|
||||||
- 'określenie orientacji romantycznej i seksualnej'
|
- 'orientacja romantyczna'
|
||||||
- 'płeć'
|
- 'orientacja tertiarna'
|
||||||
- 'ekspresja płciowa'
|
- 'określenie orientacji romantycznej i seksualnej'
|
||||||
- 'model relacji'
|
- 'płeć'
|
||||||
- 'język'
|
- 'ekspresja płciowa'
|
||||||
- 'pociąg'
|
- 'model relacji'
|
||||||
route: 'terminology'
|
- 'język'
|
||||||
|
- 'pociąg'
|
||||||
|
route: 'terminology'
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -26,12 +26,12 @@
|
||||||
{name: 'nouns', icon: 'book', route: ''},
|
{name: 'nouns', icon: 'book', route: ''},
|
||||||
];
|
];
|
||||||
|
|
||||||
if (this.config.nouns.inclusive.enabled) {
|
if (this.config.inclusive.enabled) {
|
||||||
links.push({name: 'inclusive', icon: 'book-heart', route: this.config.nouns.inclusive.route});
|
links.push({name: 'inclusive', icon: 'book-heart', route: this.config.inclusive.route});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.config.nouns.terms.enabled) {
|
if (this.config.terminology.enabled) {
|
||||||
links.push({name: 'terms', icon: 'flag', route: this.config.nouns.terms.route});
|
links.push({name: 'terms', icon: 'flag', route: this.config.terminology.route});
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buildRoute(route) {
|
buildRoute(route) {
|
||||||
return `/${this.config.nouns.route}/${route}`;
|
return `/${route}`;
|
||||||
},
|
},
|
||||||
isActiveRoute(route) {
|
isActiveRoute(route) {
|
||||||
return decodeURIComponent(this.$route.fullPath).replace(/\/$/, '') === this.buildRoute(route).replace(/\/$/, '');
|
return decodeURIComponent(this.$route.fullPath).replace(/\/$/, '') === this.buildRoute(route).replace(/\/$/, '');
|
||||||
|
|
|
@ -74,7 +74,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
Even though for many people it's incredibly important that people use specific pronouns to talk about them,
|
Even though for many people it's incredibly important that people use specific pronouns to talk about them,
|
||||||
others don't mind being addressed in any way – as long as the context is clear as to who one talks about.
|
others don't mind being addressed in any way – as long as the context is clear as to who one talks about.
|
||||||
options: 'check out the options [share]{/=here}.'
|
options: 'check out the options [share]{/pronouns=here}.'
|
||||||
others: 'Other forms'
|
others: 'Other forms'
|
||||||
othersRaw: 'other'
|
othersRaw: 'other'
|
||||||
or: 'or'
|
or: 'or'
|
||||||
|
@ -171,20 +171,22 @@ nouns:
|
||||||
nouns:
|
nouns:
|
||||||
header: 'נײטראַלע סובסטאַנטיװן'
|
header: 'נײטראַלע סובסטאַנטיװן'
|
||||||
|
|
||||||
terms:
|
image: 'Image'
|
||||||
header: 'טערמינאָלאָגיע'
|
|
||||||
headerLong: 'Słownik terminologii queerowej'
|
terminology:
|
||||||
info:
|
header: 'טערמינאָלאָגיע'
|
||||||
- >
|
headerLong: 'Słownik terminologii queerowej'
|
||||||
Większość zwrotów i wyrażeń związanych ze społecznością LGBTQ+
|
info:
|
||||||
funkcjonuje w polszczyźnie jako anglojęzyczne wstawki.
|
- >
|
||||||
Poniżej przedstawiamy słownik tłumaczący, co dane określenia oznaczają,
|
Większość zwrotów i wyrażeń związanych ze społecznością LGBTQ+
|
||||||
i jakie proponujemy dla nich polskie tłumaczenia.
|
funkcjonuje w polszczyźnie jako anglojęzyczne wstawki.
|
||||||
term: 'Określenie'
|
Poniżej przedstawiamy słownik tłumaczący, co dane określenia oznaczają,
|
||||||
original: 'Pochodzenie, określenie angielskie'
|
i jakie proponujemy dla nich polskie tłumaczenia.
|
||||||
category: 'Kategoria'
|
term: 'Określenie'
|
||||||
images: 'Dodatkowe obrazki, spoza katalogu flag'
|
original: 'Pochodzenie, określenie angielskie'
|
||||||
definition: 'Definicja'
|
category: 'Kategoria'
|
||||||
|
images: 'Dodatkowe obrazki, spoza katalogu flag'
|
||||||
|
definition: 'Definicja'
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'פֿראַגעס'
|
header: 'פֿראַגעס'
|
||||||
|
@ -418,8 +420,16 @@ profile:
|
||||||
description: 'באַשרײַבונג'
|
description: 'באַשרײַבונג'
|
||||||
names: 'נעמען'
|
names: 'נעמען'
|
||||||
pronouns: 'פּראָנאָמען'
|
pronouns: 'פּראָנאָמען'
|
||||||
pronounsInfo: 'You can enter a pronoun (eg. “they” or “she/sher”) or a link (eg. “http://en.pronouns.page/e”) or the custom five forms (eg. “ze/zem/zir/zirs/zirself”).'
|
pronounsInfo: >
|
||||||
pronounsNotFound: 'We can''t find a link to this pronoun!'
|
You can enter a <strong>pronoun</strong> (eg. “they” or “she/her”)
|
||||||
|
or a <strong>link</strong> (eg. “https://en.pronouns.page/e”)
|
||||||
|
or the custom five forms (eg. “ze/zem/zir/zirs/zirself”).
|
||||||
|
Keep in mind that <strong>all five forms</strong> are required in that case,
|
||||||
|
otherwise the app can only guess what exactly do you mean.
|
||||||
|
You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
If your pronouns follow the {/pronouns#nameself=<strong>nameself pattern</strong>},
|
||||||
|
you can also use a colon shorthand (eg. “:star”).
|
||||||
|
pronounsNotFound: 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: 'װערטער'
|
words: 'װערטער'
|
||||||
birthday: 'עלטער'
|
birthday: 'עלטער'
|
||||||
birthdayInfo: 'We do not publish your birthday, just the calculated age.'
|
birthdayInfo: 'We do not publish your birthday, just the calculated age.'
|
||||||
|
|
|
@ -49,10 +49,12 @@ nouns:
|
||||||
declension: false
|
declension: false
|
||||||
submit: true
|
submit: true
|
||||||
templates: true
|
templates: true
|
||||||
inclusive:
|
|
||||||
enabled: false
|
inclusive:
|
||||||
terms:
|
enabled: false
|
||||||
enabled: false
|
|
||||||
|
terminology:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
names:
|
names:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -71,7 +71,7 @@ pronouns:
|
||||||
description: >
|
description: >
|
||||||
其實對很多人來說,別人用特定代詞來談論他們是非常重要的,
|
其實對很多人來說,別人用特定代詞來談論他們是非常重要的,
|
||||||
但其他人不介意別人怎麼叫他們,只要內容清楚在談論誰。
|
但其他人不介意別人怎麼叫他們,只要內容清楚在談論誰。
|
||||||
options: '查看選項 [share]{/= 這裡}.'
|
options: '查看選項 [share] {/pronouns= 這裡}.'
|
||||||
others: '其他形式'
|
others: '其他形式'
|
||||||
othersRaw: '其他'
|
othersRaw: '其他'
|
||||||
or: '或'
|
or: '或'
|
||||||
|
@ -153,6 +153,8 @@ nouns:
|
||||||
plural: '複數'
|
plural: '複數'
|
||||||
pluralShort: '複數'
|
pluralShort: '複數'
|
||||||
|
|
||||||
|
image: 'Image' # TODO
|
||||||
|
|
||||||
faq:
|
faq:
|
||||||
header: 'FAQ'
|
header: 'FAQ'
|
||||||
headerLong: 'Frequently asked questions'
|
headerLong: 'Frequently asked questions'
|
||||||
|
@ -384,8 +386,10 @@ profile:
|
||||||
description: '傳記'
|
description: '傳記'
|
||||||
names: '名字'
|
names: '名字'
|
||||||
pronouns: '代詞'
|
pronouns: '代詞'
|
||||||
pronounsInfo: '您可以輸入代詞(例如“他”或“他/你”)或鏈接(例如“ http://zh.pronouns.page/佢”'
|
pronounsInfo: '您可以輸入代詞(例如“他”或“他/你”)或鏈接(例如“http://zh.pronouns.page/佢”)'
|
||||||
pronounsNotFound: '我們找不到這個代詞的鏈接'
|
# TODO add <strong></strong> around the words "pronoun" and "link"
|
||||||
|
# TODO add: You can also use {/pronouns#generator=<strong>the generator</strong>} to fill out sentences with custom forms.
|
||||||
|
pronounsNotFound: '我們找不到這個代詞的鏈接' # TODO 'Unrecognised format. Please check out the instruction above.'
|
||||||
words: '詞匯'
|
words: '詞匯'
|
||||||
birthday: '嵗'
|
birthday: '嵗'
|
||||||
birthdayInfo: '我們不發布您的生日,只發布計算出的年齡。'
|
birthdayInfo: '我們不發布您的生日,只發布計算出的年齡。'
|
||||||
|
|
|
@ -188,16 +188,20 @@ export default {
|
||||||
if (config.nouns.enabled) {
|
if (config.nouns.enabled) {
|
||||||
routes.push({ path: '/' + config.nouns.route, component: resolve(__dirname, 'routes/nouns.vue') });
|
routes.push({ path: '/' + config.nouns.route, component: resolve(__dirname, 'routes/nouns.vue') });
|
||||||
for (let subroute of config.nouns.subroutes || []) {
|
for (let subroute of config.nouns.subroutes || []) {
|
||||||
routes.push({ path: `/${config.nouns.route}/${subroute}`, component: resolve(__dirname, `data/nouns/${subroute}.vue`) });
|
routes.push({ path: `/${subroute}`, component: resolve(__dirname, `data/nouns/${subroute}.vue`) });
|
||||||
}
|
|
||||||
if (config.nouns.inclusive.enabled) {
|
|
||||||
routes.push({path: `/${config.nouns.route}/${config.nouns.inclusive.route}`, component: resolve(__dirname, 'routes/inclusive.vue')});
|
|
||||||
}
|
|
||||||
if (config.nouns.terms.enabled) {
|
|
||||||
routes.push({path: `/${config.nouns.route}/${config.nouns.terms.route}`, component: resolve(__dirname, 'routes/queerTerms.vue')});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (config.inclusive.enabled) {
|
||||||
|
routes.push({path: `/${config.inclusive.route}`, component: resolve(__dirname, 'routes/inclusive.vue')});
|
||||||
|
}
|
||||||
|
if (config.terminology.enabled) {
|
||||||
|
routes.push({path: `/${config.terminology.route}`, component: resolve(__dirname, 'routes/terminology.vue')});
|
||||||
|
|
||||||
|
// TODO remove later
|
||||||
|
routes.push({path: `/${config.nouns.route}/${config.terminology.route}`, component: resolve(__dirname, 'routes/terminology.vue')});
|
||||||
|
}
|
||||||
|
|
||||||
if (config.names.enabled) {
|
if (config.names.enabled) {
|
||||||
routes.push({ path: '/' + config.names.route, component: resolve(__dirname, 'routes/names.vue') });
|
routes.push({ path: '/' + config.names.route, component: resolve(__dirname, 'routes/names.vue') });
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,16 +68,16 @@
|
||||||
nouns_search: ['GET', '/api/nouns/search/{term}'],
|
nouns_search: ['GET', '/api/nouns/search/{term}'],
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
enabled: this.config.nouns.inclusive.enabled,
|
enabled: this.config.inclusive.enabled,
|
||||||
header: 'nouns.inclusive.header',
|
header: 'inclusive.header',
|
||||||
icon: 'book-heart',
|
icon: 'book-heart',
|
||||||
endpoints: {
|
endpoints: {
|
||||||
inclusive_all: ['GET', '/api/inclusive'],
|
inclusive_all: ['GET', '/api/inclusive'],
|
||||||
inclusive_search: ['GET', '/api/inclusive/search/{term}'],
|
inclusive_search: ['GET', '/api/inclusive/search/{term}'],
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
enabled: this.config.nouns.terms.enabled,
|
enabled: this.config.terminology.enabled,
|
||||||
header: 'nouns.terms.header',
|
header: 'terminology.header',
|
||||||
icon: 'flag',
|
icon: 'flag',
|
||||||
endpoints: {
|
endpoints: {
|
||||||
terms_all: ['GET', '/api/terms'],
|
terms_all: ['GET', '/api/terms'],
|
||||||
|
|
|
@ -4,12 +4,12 @@
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
<Icon v="book-heart"/>
|
<Icon v="book-heart"/>
|
||||||
<T>nouns.inclusive.headerLong</T>
|
<T>inclusive.headerLong</T>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<T>nouns.inclusive.info</T>
|
<T>inclusive.info</T>
|
||||||
<Share :title="$t('nouns.inclusive.headerLong')"/>
|
<Share :title="$t('inclusive.headerLong')"/>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<InclusiveDictionary load ref="inclusivedictionary"/>
|
<InclusiveDictionary load ref="inclusivedictionary"/>
|
||||||
|
@ -25,14 +25,14 @@
|
||||||
components: { NounsNav },
|
components: { NounsNav },
|
||||||
mixins: [ hash ],
|
mixins: [ hash ],
|
||||||
mounted() {
|
mounted() {
|
||||||
this.handleHash(this.config.nouns.inclusive.hashNamespace || '', filter => {
|
this.handleHash(this.config.inclusive.hashNamespace || '', filter => {
|
||||||
this.$refs.inclusivedictionary.setFilter(filter);
|
this.$refs.inclusivedictionary.setFilter(filter);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
head() {
|
head() {
|
||||||
return head({
|
return head({
|
||||||
title: this.$t('nouns.inclusive.headerLong'),
|
title: this.$t('inclusive.headerLong'),
|
||||||
description: this.$t('nouns.inclusive.info')[0],
|
description: this.$t('inclusive.info')[0],
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
pronouns.page/@{{user.username}}
|
pronouns.page/@{{user.username}}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<!--
|
||||||
<div v-if="($user() && $user().username === profile.username) || $isGranted('users')">
|
<div v-if="($user() && $user().username === profile.username) || $isGranted('users')">
|
||||||
<small>
|
<small>
|
||||||
<Icon v="id-card"/>
|
<Icon v="id-card"/>
|
||||||
|
@ -49,6 +50,7 @@
|
||||||
</template>
|
</template>
|
||||||
<small v-else><T>profile.card.generating</T></small>
|
<small v-else><T>profile.card.generating</T></small>
|
||||||
</div>
|
</div>
|
||||||
|
-->
|
||||||
</Profile>
|
</Profile>
|
||||||
|
|
||||||
<Ban :user="user"/>
|
<Ban :user="user"/>
|
||||||
|
@ -103,7 +105,7 @@
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
async mounted() {
|
async mounted() {
|
||||||
if (this.config.nouns.terms.enabled) {
|
if (this.config.terminology.enabled) {
|
||||||
this.terms = await this.$axios.$get(`/terms`);
|
this.terms = await this.$axios.$get(`/terms`);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -90,35 +90,37 @@
|
||||||
<OpinionLegend/>
|
<OpinionLegend/>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="signature"/>
|
<Icon v="signature"/>
|
||||||
<T>profile.names</T>
|
<T>profile.names</T>
|
||||||
</h3>
|
</h3>
|
||||||
<OpinionListInput v-model="names"/>
|
<OpinionListInput v-model="names"/>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="link"/>
|
<Icon v="link"/>
|
||||||
<T>profile.pronouns</T>
|
<T>profile.pronouns</T>
|
||||||
</h3>
|
</h3>
|
||||||
<p class="small mb-2">
|
<div class="alert alert-info">
|
||||||
<T>profile.pronounsInfo</T>
|
<p class="small mb-0">
|
||||||
</p>
|
<Icon v="info-circle"/>
|
||||||
|
<T>profile.pronounsInfo</T>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
<OpinionListInput v-model="pronouns" :validation="validatePronoun"/>
|
<OpinionListInput v-model="pronouns" :validation="validatePronoun"/>
|
||||||
<Answer question="custom-pronouns" small/>
|
</section>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="comment-edit"/>
|
<Icon v="comment-edit"/>
|
||||||
<T>profile.description</T>
|
<T>profile.description</T>
|
||||||
</h3>
|
</h3>
|
||||||
<textarea class="form-control form-control-sm" v-model="description" maxlength="256" rows="4"/>
|
<textarea class="form-control form-control-sm" v-model="description" maxlength="256" rows="4"/>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="flag"/>
|
<Icon v="flag"/>
|
||||||
<T>profile.flags</T>
|
<T>profile.flags</T>
|
||||||
|
@ -129,20 +131,20 @@
|
||||||
<ButtonList v-model="flags" :options="allFlags" v-slot="s">
|
<ButtonList v-model="flags" :options="allFlags" v-slot="s">
|
||||||
<Flag :name="s.desc.split('|')[0]" :alt="s.desc.split('|')[1]" :img="`/flags/${s.v}.png`"/>
|
<Flag :name="s.desc.split('|')[0]" :alt="s.desc.split('|')[1]" :img="`/flags/${s.v}.png`"/>
|
||||||
</ButtonList>
|
</ButtonList>
|
||||||
</div>
|
|
||||||
|
|
||||||
<details class="form-group border rounded" :open="Object.keys(customFlags).length > 0">
|
<details class="form-group border rounded" :open="Object.keys(customFlags).length > 0">
|
||||||
<summary class="px-3 py-2">
|
<summary class="px-3 py-2">
|
||||||
<T>profile.flagsCustom</T>
|
<T>profile.flagsCustom</T>
|
||||||
</summary>
|
</summary>
|
||||||
<div class="border-top">
|
<div class="border-top">
|
||||||
<ImageWidgetRich v-model="customFlags" sizes="flag"/>
|
<ImageWidgetRich v-model="customFlags" sizes="flag"/>
|
||||||
</div>
|
</div>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<Answer question="flags" small/>
|
<Answer question="flags" small/>
|
||||||
|
</section>
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="link"/>
|
<Icon v="link"/>
|
||||||
<T>profile.links</T>
|
<T>profile.links</T>
|
||||||
|
@ -159,9 +161,9 @@
|
||||||
</a>
|
</a>
|
||||||
😉
|
😉
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="birthday-cake"/>
|
<Icon v="birthday-cake"/>
|
||||||
<T>profile.birthday</T>
|
<T>profile.birthday</T>
|
||||||
|
@ -175,9 +177,9 @@
|
||||||
<Icon v="times"/>
|
<Icon v="times"/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<div class="form-group">
|
<section class="form-group">
|
||||||
<h3 class="h4">
|
<h3 class="h4">
|
||||||
<Icon v="scroll-old"/>
|
<Icon v="scroll-old"/>
|
||||||
<T>profile.words</T>
|
<T>profile.words</T>
|
||||||
|
@ -188,12 +190,14 @@
|
||||||
</h4>
|
</h4>
|
||||||
<OpinionListInput v-model="words[i]" group="words"/>
|
<OpinionListInput v-model="words[i]" group="words"/>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<button class="btn btn-primary w-100" type="submit">
|
<section>
|
||||||
<Icon v="save"/>
|
<button class="btn btn-primary w-100" type="submit">
|
||||||
<T>profile.editor.save</T>
|
<Icon v="save"/>
|
||||||
</button>
|
<T>profile.editor.save</T>
|
||||||
|
</button>
|
||||||
|
</section>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -401,4 +405,7 @@
|
||||||
.saving {
|
.saving {
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
|
section.form-group {
|
||||||
|
margin-bottom: 5rem;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</div>
|
</div>
|
||||||
<SimplePronounList :pronouns="groupPronouns"/>
|
<SimplePronounList :pronouns="groupPronouns"/>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item">
|
<li class="list-group-item" id="generator">
|
||||||
<p class="h5">
|
<p class="h5">
|
||||||
<T>home.generator.header</T>
|
<T>home.generator.header</T>
|
||||||
</p>
|
</p>
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li v-if="config.pronouns.multiple !== false" class="list-group-item">
|
<li v-if="config.pronouns.multiple !== false" class="list-group-item" id="multiple">
|
||||||
<p class="h5">
|
<p class="h5">
|
||||||
<Spelling :text="config.pronouns.multiple.name"/>
|
<Spelling :text="config.pronouns.multiple.name"/>
|
||||||
</p>
|
</p>
|
||||||
|
@ -143,7 +143,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li v-if="config.pronouns.null !== false" class="list-group-item">
|
<li v-if="config.pronouns.null !== false" class="list-group-item" id="nameself">
|
||||||
<p class="h5">
|
<p class="h5">
|
||||||
<Spelling :text="config.pronouns.null.description"/>
|
<Spelling :text="config.pronouns.null.description"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -4,12 +4,12 @@
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
<Icon v="flag"/>
|
<Icon v="flag"/>
|
||||||
<T>nouns.terms.headerLong</T>
|
<T>terminology.headerLong</T>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<T>nouns.terms.info</T>
|
<T>terminology.info</T>
|
||||||
<Share :title="$t('nouns.terms.headerLong')"/>
|
<Share :title="$t('terminology.headerLong')"/>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<TermsDictionary load ref="termsdictionary"/>
|
<TermsDictionary load ref="termsdictionary"/>
|
||||||
|
@ -26,14 +26,14 @@
|
||||||
|
|
||||||
mixins: [ hash ],
|
mixins: [ hash ],
|
||||||
mounted() {
|
mounted() {
|
||||||
this.handleHash(this.config.nouns.terms.hashNamespace || '', filter => {
|
this.handleHash(this.config.terminology.hashNamespace || '', filter => {
|
||||||
this.$refs.termsdictionary.setFilter(filter);
|
this.$refs.termsdictionary.setFilter(filter);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
head() {
|
head() {
|
||||||
return head({
|
return head({
|
||||||
title: this.$t('nouns.terms.headerLong'),
|
title: this.$t('terminology.headerLong'),
|
||||||
description: this.$t('nouns.terms.info')[0],
|
description: this.$t('terminology.info')[0],
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
}
|
}
|
|
@ -6,7 +6,10 @@ import cookieParser from 'cookie-parser';
|
||||||
import grant from "grant";
|
import grant from "grant";
|
||||||
import router from "./routes/user";
|
import router from "./routes/user";
|
||||||
import { loadSuml } from './loader';
|
import { loadSuml } from './loader';
|
||||||
import {isGranted} from "../src/helpers";
|
import {handleErrorAsync, isGranted} from "../src/helpers";
|
||||||
|
import cookieSettings from "../src/cookieSettings";
|
||||||
|
import SQL from "sql-template-strings";
|
||||||
|
import {createCanvas, loadImage, registerFont} from "canvas";
|
||||||
|
|
||||||
global.config = loadSuml('config');
|
global.config = loadSuml('config');
|
||||||
|
|
||||||
|
@ -25,7 +28,7 @@ app.use(express.urlencoded({ extended: true }));
|
||||||
app.use(cookieParser());
|
app.use(cookieParser());
|
||||||
app.use(session({
|
app.use(session({
|
||||||
secret: process.env.SECRET,
|
secret: process.env.SECRET,
|
||||||
cookie: {},
|
cookie: cookieSettings,
|
||||||
resave: false,
|
resave: false,
|
||||||
saveUninitialized: false,
|
saveUninitialized: false,
|
||||||
}));
|
}));
|
||||||
|
@ -77,6 +80,8 @@ app.use(async function (req, res, next) {
|
||||||
|
|
||||||
router.use(grant.express()(require('./social').config));
|
router.use(grant.express()(require('./social').config));
|
||||||
|
|
||||||
|
app.use(require('./routes/home').default);
|
||||||
|
|
||||||
app.use(require('./routes/banner').default);
|
app.use(require('./routes/banner').default);
|
||||||
|
|
||||||
app.use(require('./routes/user').default);
|
app.use(require('./routes/user').default);
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
import { Router } from 'express';
|
||||||
|
import {buildLocaleList, handleErrorAsync} from "../../src/helpers";
|
||||||
|
|
||||||
|
const router = Router();
|
||||||
|
|
||||||
|
router.get('/versions', handleErrorAsync(async (req, res) => {
|
||||||
|
return res.json(buildLocaleList(global.config.locale));
|
||||||
|
}));
|
||||||
|
|
||||||
|
export default router;
|
|
@ -166,45 +166,33 @@ router.post('/nouns/remove/:id', handleErrorAsync(async (req, res) => {
|
||||||
return res.json('ok');
|
return res.json('ok');
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const findBaseForm = (noun, query) => {
|
router.get('/nouns/:id.png', async (req, res) => {
|
||||||
for (let form of ['masc', 'fem', 'neutr', 'mascPl', 'femPl', 'neutrPl']) {
|
const noun = (await req.db.get(SQL`
|
||||||
for (let formPart of noun[form].split('|')) {
|
|
||||||
if (formPart.toLowerCase() === query.toLowerCase()) {
|
|
||||||
return formPart;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
router.get('/nouns/:word.png', handleErrorAsync(async (req, res) => {
|
|
||||||
const query = req.params.word.toLowerCase();
|
|
||||||
const term = '%' + query + '%';
|
|
||||||
const noun = (await req.db.all(SQL`
|
|
||||||
SELECT * FROM nouns
|
SELECT * FROM nouns
|
||||||
WHERE locale = ${global.config.locale}
|
WHERE locale = ${global.config.locale}
|
||||||
|
AND id = ${req.params.id}
|
||||||
AND approved >= ${req.isGranted('nouns') ? 0 : 1}
|
AND approved >= ${req.isGranted('nouns') ? 0 : 1}
|
||||||
AND (masc like ${term} OR fem like ${term} OR neutr like ${term} OR mascPl like ${term} OR femPl like ${term} OR neutrPl like ${term})
|
AND deleted = 0
|
||||||
ORDER BY masc
|
`));
|
||||||
`)).filter(noun =>
|
|
||||||
noun.masc.toLowerCase().split('|').includes(query)
|
|
||||||
|| noun.fem.toLowerCase().split('|').includes(query)
|
|
||||||
|| noun.neutr.toLowerCase().split('|').includes(query)
|
|
||||||
|| noun.mascPl.toLowerCase().split('|').includes(query)
|
|
||||||
|| noun.femPl.toLowerCase().split('|').includes(query)
|
|
||||||
|| noun.neutrPl.toLowerCase().split('|').includes(query)
|
|
||||||
)[0]
|
|
||||||
|
|
||||||
if (!noun) {
|
if (!noun) {
|
||||||
return res.status(404).json({error: 'Not found'});
|
return res.status(404).json({error: 'Not found'});
|
||||||
}
|
}
|
||||||
|
|
||||||
const base = findBaseForm(noun, query);
|
let maxItems = 0;
|
||||||
|
['masc', 'fem', 'neutr'].forEach((form, column) => {
|
||||||
|
let items = 0;
|
||||||
|
for (let [key, symbol] of [['', '⋅'], ['Pl', '⁖']]) {
|
||||||
|
items += noun[form + key].split('|').filter(x => x.length).length;
|
||||||
|
}
|
||||||
|
if (items > maxItems) {
|
||||||
|
maxItems = items;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
const width = 1200;
|
|
||||||
const height = 600;
|
|
||||||
const padding = 48;
|
const padding = 48;
|
||||||
|
const width = 1200;
|
||||||
|
const height = padding * 2.5 + (maxItems + 1) * 48 + padding;
|
||||||
const mime = 'image/png';
|
const mime = 'image/png';
|
||||||
|
|
||||||
registerFont('static/fonts/quicksand-v21-latin-ext_latin-regular.ttf', { family: 'Quicksand', weight: 'regular'});
|
registerFont('static/fonts/quicksand-v21-latin-ext_latin-regular.ttf', { family: 'Quicksand', weight: 'regular'});
|
||||||
|
@ -218,33 +206,36 @@ router.get('/nouns/:word.png', handleErrorAsync(async (req, res) => {
|
||||||
context.drawImage(bg, 0, 0, width, height);
|
context.drawImage(bg, 0, 0, width, height);
|
||||||
|
|
||||||
context.font = 'bold 64pt Quicksand';
|
context.font = 'bold 64pt Quicksand';
|
||||||
context.fillText(base, width / 2 - context.measureText(base).width / 2, 120);
|
|
||||||
|
|
||||||
for (let [column, key, icon] of [[0, 'masculine', '\uf222'], [1, 'feminine', '\uf221'], [2, 'neuter', '\uf22c']]) {
|
for (let [column, key, icon] of [[0, 'masculine', '\uf222'], [1, 'feminine', '\uf221'], [2, 'neuter', '\uf22c']]) {
|
||||||
context.font = 'regular 24pt FontAwesome';
|
context.font = 'regular 24pt FontAwesome';
|
||||||
context.fillText(icon, column * (width - 2 * padding) / 3 + padding, 192);
|
context.fillText(icon, column * (width - 2 * padding) / 3 + padding, padding * 1.5);
|
||||||
|
|
||||||
context.font = 'bold 24pt Quicksand';
|
context.font = 'bold 24pt Quicksand';
|
||||||
context.fillText(translations.nouns[key], column * (width - 2 * padding) / 3 + padding + 36, 192);
|
context.fillText(translations.nouns[key], column * (width - 2 * padding) / 3 + padding + 36, padding * 1.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
context.font = 'regular 24pt Quicksand';
|
context.font = 'regular 24pt Quicksand';
|
||||||
['masc', 'fem', 'neutr'].forEach((form, column) => {
|
['masc', 'fem', 'neutr'].forEach((form, column) => {
|
||||||
let i = 0;
|
let i = 0;
|
||||||
for (let [key, symbol] of [['', '⋅'], ['Pl', '⁖']])
|
for (let [key, symbol] of [['', '⋅'], ['Pl', '⁖']])
|
||||||
noun[form + key].split('|').filter(x => x.length).forEach(part => {
|
noun[form + key].split('|').filter(x => x.length).forEach(part => {
|
||||||
context.fillText(symbol + ' ' + part, column * (width - 2 * padding) / 3 + padding, 244 + i * 48);
|
context.fillText(symbol + ' ' + part, column * (width - 2 * padding) / 3 + padding, padding * 2.5 + i * 48);
|
||||||
i++;
|
i++;
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
context.fillStyle = '#C71585';
|
context.fillStyle = '#C71585';
|
||||||
context.font = 'regular 24pt FontAwesome';
|
context.font = 'regular 16pt FontAwesome';
|
||||||
context.fillText('\uf02c', padding, height - padding);
|
context.fillText('\uf02c', padding, height - padding + 12);
|
||||||
context.font = `regular 24pt Quicksand`;
|
context.font = `regular 16pt Quicksand`;
|
||||||
context.fillText(translations.title, padding + 48, height - padding - 4);
|
context.fillText(
|
||||||
|
translations.title + '/' + (global.config.nouns.routeMain || global.config.nouns.route),
|
||||||
|
padding + 36,
|
||||||
|
height - padding + 8
|
||||||
|
);
|
||||||
|
|
||||||
return res.set('content-type', mime).send(canvas.toBuffer(mime));
|
return res.set('content-type', mime).send(canvas.toBuffer(mime));
|
||||||
}));
|
});
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
|
|
@ -414,7 +414,7 @@ router.get('/user/social/:provider', handleErrorAsync(async (req, res) => {
|
||||||
}
|
}
|
||||||
await saveAuthenticator(req.db, req.params.provider, dbUser, payload);
|
await saveAuthenticator(req.db, req.params.provider, dbUser, payload);
|
||||||
|
|
||||||
return res.cookie('token', token).redirect('/' + config.user.route);
|
return res.cookie('token', token, cookieSettings).redirect('/' + config.user.route);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
router.get('/user/social-connections', handleErrorAsync(async (req, res) => {
|
router.get('/user/social-connections', handleErrorAsync(async (req, res) => {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
const inAYear = new Date();
|
||||||
|
inAYear.setFullYear(inAYear.getFullYear() + 1);
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
maxAge: 365 * 24 * 60 * 60,
|
// secure: process.env.NODE_ENV === 'production',
|
||||||
|
expires: inAYear,
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ class Jwt {
|
||||||
this.publicKey = fs.readFileSync(publicKey);
|
this.publicKey = fs.readFileSync(publicKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
sign(payload, expiresIn = '30d') {
|
sign(payload, expiresIn = '365d') {
|
||||||
return jwt.sign(payload, this.privateKey, {
|
return jwt.sign(payload, this.privateKey, {
|
||||||
expiresIn,
|
expiresIn,
|
||||||
algorithm: 'RS256',
|
algorithm: 'RS256',
|
||||||
|
|
|
@ -2,12 +2,12 @@ module.exports = [
|
||||||
['de', 'Deutsch', 'https://de.pronouns.page', true],
|
['de', 'Deutsch', 'https://de.pronouns.page', true],
|
||||||
['es', 'Español', 'https://es.pronouns.page', true],
|
['es', 'Español', 'https://es.pronouns.page', true],
|
||||||
['en', 'English', 'https://en.pronouns.page', true],
|
['en', 'English', 'https://en.pronouns.page', true],
|
||||||
['fr', 'Français', 'https://fr.pronouns.page', false],
|
['fr', 'Français', 'https://fr.pronouns.page', true],
|
||||||
['nl', 'Nederlands', 'https://nl.pronouns.page', true],
|
['nl', 'Nederlands', 'https://nl.pronouns.page', true],
|
||||||
['no', 'Norsk (Bokmål)', 'https://no.pronouns.page', true],
|
['no', 'Norsk (Bokmål)', 'https://no.pronouns.page', true],
|
||||||
['pl', 'Polski', 'https://zaimki.pl', true],
|
['pl', 'Polski', 'https://zaimki.pl', true],
|
||||||
['pt', 'Português', 'https://pt.pronouns.page', true],
|
['pt', 'Português', 'https://pt.pronouns.page', true],
|
||||||
['ru', 'Русский', 'https://ru.pronouns.page', false],
|
// ['ru', 'Русский', 'https://ru.pronouns.page', false],
|
||||||
['yi', 'ייִדיש', 'https://yi.pronouns.page', false],
|
['yi', 'ייִדיש', 'https://yi.pronouns.page', false],
|
||||||
['zh', '中文', 'https://zh.pronouns.page', true],
|
['zh', '中文', 'https://zh.pronouns.page', true],
|
||||||
];
|
];
|
||||||
|
|
Binary file not shown.
Reference in New Issue