mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00

the #shared alias used by Nuxt cannot be easily disabled and to prevent breackage with jiti, we make use of it
71 lines
2.4 KiB
Vue
71 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
import forbidden from '#shared/forbidden.ts';
|
|
|
|
definePageMeta({
|
|
translatedPaths: (config) => {
|
|
if (!config.user.enabled) {
|
|
return [];
|
|
}
|
|
return [`/${encodeURIComponent(config.user.termsRoute)}`];
|
|
},
|
|
});
|
|
|
|
const { $translator: translator } = useNuxtApp();
|
|
useSimpleHead({
|
|
title: translator.translate('terms.header'),
|
|
description: translator.translate('terms.content.intro'),
|
|
}, translator);
|
|
</script>
|
|
|
|
<template>
|
|
<Page>
|
|
<h2>
|
|
<Icon v="gavel" />
|
|
<T>terms.header</T>
|
|
</h2>
|
|
|
|
<p class="small">
|
|
<em>
|
|
<T>terms.lastUpdate</T><T>quotation.colon</T>
|
|
2023-03-06
|
|
(explicit mention of ableism)
|
|
</em>
|
|
</p>
|
|
|
|
<div v-if="$te('terms.translationDisclaimer')" class="alert alert-warning">
|
|
<Icon v="exclamation-triangle" />
|
|
<T>terms.translationDisclaimer</T>
|
|
</div>
|
|
|
|
<p>
|
|
<T>terms.content.intro</T>
|
|
<a href="mailto:contact@pronouns.page" target="_blank" rel="noopener">contact@pronouns.page</a>.
|
|
</p>
|
|
<p><T>terms.content.consent</T></p>
|
|
|
|
<h3><T>terms.content.accounts.header</T></h3>
|
|
<p><T>terms.content.accounts.age</T></p>
|
|
<p><T>terms.content.accounts.authentication</T></p>
|
|
<p><T>terms.content.accounts.termination</T></p>
|
|
<p><T>terms.content.accounts.inactivity</T></p>
|
|
|
|
<h3><T>terms.content.content.header</T></h3>
|
|
<p><T>terms.content.content.ownership</T></p>
|
|
<p><T>terms.content.content.liability</T></p>
|
|
<p>
|
|
<T>terms.content.content.violations</T>
|
|
<template v-for="(violation, i) in forbidden">
|
|
<T>terms.content.content.violationsExamples.{{ violation }}</T><sup v-if="violation === 'ableism' && new Date < new Date(2023, 3, 6)"> (this clause comes into effect on April 6th, 2023)</sup><template v-if="i !== forbidden.length - 1">
|
|
<T>terms.content.content.violationsSeparator</T>
|
|
</template>
|
|
</template><T>terms.content.content.violationsEnd</T>
|
|
<T>terms.content.content.violationsStrict</T>
|
|
</p>
|
|
<p><T>terms.content.content.responsibility</T></p>
|
|
|
|
<h3><T>terms.content.closing.header</T></h3>
|
|
<p><T>terms.content.closing.jurisdiction</T></p>
|
|
<p><T>terms.content.closing.changes</T></p>
|
|
</Page>
|
|
</template>
|