[Glitch] Change wording of disabled quote state to “You are not allowed to quote this post”

Port 41ab10f88c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire
2025-09-16 12:24:58 +02:00
parent 26193a119b
commit f659190e18
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ export type ApiQuoteState = 'accepted' | 'pending' | 'revoked' | 'unauthorized';
export type ApiQuotePolicy = export type ApiQuotePolicy =
| 'public' | 'public'
| 'followers' | 'followers'
| 'following'
| 'nobody' | 'nobody'
| 'unsupported_policy'; | 'unsupported_policy';
export type ApiUserQuotePolicy = 'automatic' | 'manual' | 'denied' | 'unknown'; export type ApiUserQuotePolicy = 'automatic' | 'manual' | 'denied' | 'unknown';

View File

@@ -21,7 +21,7 @@ export const messages = defineMessages({
quote: { id: 'status.quote', defaultMessage: 'Quote' }, quote: { id: 'status.quote', defaultMessage: 'Quote' },
quote_cannot: { quote_cannot: {
id: 'status.cannot_quote', id: 'status.cannot_quote',
defaultMessage: 'Quotes are disabled on this post', defaultMessage: 'You are not allowed to quote this post',
}, },
quote_followers_only: { quote_followers_only: {
id: 'status.quote_followers_only', id: 'status.quote_followers_only',