Add warning for editing statuses

This commit is contained in:
Sean King 2022-06-11 20:40:53 -06:00 committed by Sol Fisher Romanoff
parent 9828984724
commit a9e9096de7
Signed by untrusted user who does not match committer: nbsp
GPG Key ID: 9D3F2B64F2341B62
3 changed files with 13 additions and 0 deletions

View File

@ -257,6 +257,9 @@ const PostStatusForm = {
uploadFileLimitReached () {
return this.newStatus.files.length >= this.fileLimit
},
isEdit () {
return typeof this.statusId !== 'undefined' && this.statusId.trim() !== ''
},
...mapGetters(['mergedConfig']),
...mapState({
mobileLayout: state => state.interface.mobileLayout

View File

@ -66,6 +66,14 @@
<span v-if="safeDMEnabled">{{ $t('post_status.direct_warning_to_first_only') }}</span>
<span v-else>{{ $t('post_status.direct_warning_to_all') }}</span>
</p>
<p
v-if="isEdit"
class="visibility-notice"
>
<span>{{ $t('post_status.edit_remote_warning') }}</span>
<br>
<span>{{ $t('post_status.edit_unsupported_warning') }}</span>
</p>
<div
v-if="!disablePreview"
class="preview-heading faint"

View File

@ -241,6 +241,8 @@
"default": "Just landed in L.A.",
"direct_warning_to_all": "This post will be visible to all the mentioned users.",
"direct_warning_to_first_only": "This post will only be visible to the mentioned users at the beginning of the message.",
"edit_remote_warning": "Other remote instances may not support editing and unable to receive the latest version of your post.",
"edit_unsupported_warning": "Pleroma currently does not support editing mentions or polls.",
"posting": "Posting",
"post": "Post",
"preview": "Preview",