support displaying of echo chamber status visibility

This commit is contained in:
Henry Jameson 2025-06-18 17:49:40 +03:00
commit 4c3626574d
2 changed files with 5 additions and 0 deletions

View file

@ -24,6 +24,7 @@ import {
faLock, faLock,
faLockOpen, faLockOpen,
faGlobe, faGlobe,
faIgloo,
faTimes, faTimes,
faRetweet, faRetweet,
faReply, faReply,
@ -43,6 +44,7 @@ import {
library.add( library.add(
faEnvelope, faEnvelope,
faGlobe, faGlobe,
faIgloo,
faLock, faLock,
faLockOpen, faLockOpen,
faTimes, faTimes,
@ -484,6 +486,8 @@ const Status = {
return 'lock-open' return 'lock-open'
case 'direct': case 'direct':
return 'envelope' return 'envelope'
case 'local':
return 'igloo'
default: default:
return 'globe' return 'globe'
} }

View file

@ -117,6 +117,7 @@
"flash_security": "Note that this can be potentially dangerous since Flash content is still arbitrary code.", "flash_security": "Note that this can be potentially dangerous since Flash content is still arbitrary code.",
"flash_fail": "Failed to load flash content, see console for details.", "flash_fail": "Failed to load flash content, see console for details.",
"scope_in_timeline": { "scope_in_timeline": {
"local": "Non-federated",
"direct": "Direct", "direct": "Direct",
"private": "Followers-only", "private": "Followers-only",
"public": "Public", "public": "Public",