mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 19:19:29 +08:00
* origin/develop: (95 commits) Translated using Weblate (Italian) Translated using Weblate (Chinese (Simplified)) Translated using Weblate (Russian) Translated using Weblate (Polish) Translated using Weblate (Dutch) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) Translated using Weblate (German) ...
54 lines
1.7 KiB
Vue
54 lines
1.7 KiB
Vue
<template>
|
|
<div :label="$t('settings.notifications')">
|
|
<div class="setting-item">
|
|
<h2>{{ $t('settings.notification_setting_filters') }}</h2>
|
|
<div class="select-multiple">
|
|
<span class="label">{{ $t('settings.notification_setting') }}</span>
|
|
<ul class="option-list">
|
|
<li>
|
|
<Checkbox v-model="notificationSettings.follows">
|
|
{{ $t('settings.notification_setting_follows') }}
|
|
</Checkbox>
|
|
</li>
|
|
<li>
|
|
<Checkbox v-model="notificationSettings.followers">
|
|
{{ $t('settings.notification_setting_followers') }}
|
|
</Checkbox>
|
|
</li>
|
|
<li>
|
|
<Checkbox v-model="notificationSettings.non_follows">
|
|
{{ $t('settings.notification_setting_non_follows') }}
|
|
</Checkbox>
|
|
</li>
|
|
<li>
|
|
<Checkbox v-model="notificationSettings.non_followers">
|
|
{{ $t('settings.notification_setting_non_followers') }}
|
|
</Checkbox>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="setting-item">
|
|
<h2>{{ $t('settings.notification_setting_privacy') }}</h2>
|
|
<p>
|
|
<Checkbox v-model="notificationSettings.privacy_option">
|
|
{{ $t('settings.notification_setting_privacy_option') }}
|
|
</Checkbox>
|
|
</p>
|
|
</div>
|
|
<div class="setting-item">
|
|
<p>{{ $t('settings.notification_mutes') }}</p>
|
|
<p>{{ $t('settings.notification_blocks') }}</p>
|
|
<button
|
|
class="btn btn-default"
|
|
@click="updateNotificationSettings"
|
|
>
|
|
{{ $t('general.submit') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./notifications_tab.js"></script>
|
|
<!-- <style lang="scss" src="./profile.scss"></style> -->
|