forked from AkkomaGang/akkoma-fe
Merge branch 'feature/mrf-keyword-policy-disclosure' into 'develop'
MRF Keyword Policy Disclosure See merge request pleroma/pleroma-fe!1055
This commit is contained in:
commit
788ff531d6
4 changed files with 63 additions and 2 deletions
|
@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
- Pleroma AMOLED dark theme
|
||||
- User level domain mutes, under User Settings -> Mutes
|
||||
- Emoji reactions for statuses
|
||||
- MRF keyword policy disclosure
|
||||
### Changed
|
||||
- Captcha now resets on failed registrations
|
||||
- Notifications column now cleans itself up to optimize performance when tab is left open for a long time
|
||||
|
|
|
@ -11,7 +11,10 @@ const MRFTransparencyPanel = {
|
|||
rejectInstances: state => get(state, 'instance.federationPolicy.mrf_simple.reject', []),
|
||||
ftlRemovalInstances: state => get(state, 'instance.federationPolicy.mrf_simple.federated_timeline_removal', []),
|
||||
mediaNsfwInstances: state => get(state, 'instance.federationPolicy.mrf_simple.media_nsfw', []),
|
||||
mediaRemovalInstances: state => get(state, 'instance.federationPolicy.mrf_simple.media_removal', [])
|
||||
mediaRemovalInstances: state => get(state, 'instance.federationPolicy.mrf_simple.media_removal', []),
|
||||
keywordsFtlRemoval: state => get(state, 'instance.federationPolicy.mrf_keyword.federated_timeline_removal', []),
|
||||
keywordsReject: state => get(state, 'instance.federationPolicy.mrf_keyword.reject', []),
|
||||
keywordsReplace: state => get(state, 'instance.federationPolicy.mrf_keyword.replace', [])
|
||||
}),
|
||||
hasInstanceSpecificPolicies () {
|
||||
return this.quarantineInstances.length ||
|
||||
|
@ -20,6 +23,11 @@ const MRFTransparencyPanel = {
|
|||
this.ftlRemovalInstances.length ||
|
||||
this.mediaNsfwInstances.length ||
|
||||
this.mediaRemovalInstances.length
|
||||
},
|
||||
hasKeywordPolicies () {
|
||||
return this.keywordsFtlRemoval.length ||
|
||||
this.keywordsReject.length ||
|
||||
this.keywordsReplace.length
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -109,6 +109,49 @@
|
|||
/>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h2 v-if="hasKeywordPolicies">
|
||||
{{ $t("about.mrf.keyword.keyword_policies") }}
|
||||
</h2>
|
||||
|
||||
<div v-if="keywordsFtlRemoval.length">
|
||||
<h4>{{ $t("about.mrf.keyword.ftl_removal") }}</h4>
|
||||
|
||||
<ul>
|
||||
<li
|
||||
v-for="keyword in keywordsFtlRemoval"
|
||||
:key="keyword"
|
||||
v-text="keyword"
|
||||
/>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div v-if="keywordsReject.length">
|
||||
<h4>{{ $t("about.mrf.keyword.reject") }}</h4>
|
||||
|
||||
<ul>
|
||||
<li
|
||||
v-for="keyword in keywordsReject"
|
||||
:key="keyword"
|
||||
v-text="keyword"
|
||||
/>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div v-if="keywordsReplace.length">
|
||||
<h4>{{ $t("about.mrf.keyword.replace") }}</h4>
|
||||
|
||||
<ul>
|
||||
<li
|
||||
v-for="keyword in keywordsReplace"
|
||||
:key="keyword"
|
||||
>
|
||||
{{ keyword.pattern }}
|
||||
{{ $t("about.mrf.keyword.is_replaced_by") }}
|
||||
{{ keyword.replacement }}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -16,7 +16,16 @@
|
|||
"mrf_policy_simple_media_removal": "Media Removal",
|
||||
"mrf_policy_simple_media_removal_desc": "This instance removes media from posts on the following instances:",
|
||||
"mrf_policy_simple_media_nsfw": "Media Force-set As Sensitive",
|
||||
"mrf_policy_simple_media_nsfw_desc": "This instance forces media to be set sensitive in posts on the following instances:"
|
||||
"mrf_policy_simple_media_nsfw_desc": "This instance forces media to be set sensitive in posts on the following instances:",
|
||||
"mrf": {
|
||||
"keyword": {
|
||||
"keyword_policies": "Keyword Policies",
|
||||
"ftl_removal": "Removal from \"The Whole Known Network\" Timeline",
|
||||
"reject": "Reject",
|
||||
"replace": "Replace",
|
||||
"is_replaced_by": "→"
|
||||
}
|
||||
}
|
||||
},
|
||||
"chat": {
|
||||
"title": "Chat"
|
||||
|
|
Loading…
Reference in a new issue