diff --git a/src/components/status/status.js b/src/components/status/status.js index 7ee2632bd..ba6fe1b68 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -24,6 +24,7 @@ import { faLock, faLockOpen, faGlobe, + faIgloo, faTimes, faRetweet, faReply, @@ -43,6 +44,7 @@ import { library.add( faEnvelope, faGlobe, + faIgloo, faLock, faLockOpen, faTimes, @@ -484,6 +486,8 @@ const Status = { return 'lock-open' case 'direct': return 'envelope' + case 'local': + return 'igloo' default: return 'globe' } diff --git a/src/i18n/en.json b/src/i18n/en.json index 5e99cc6ef..9f52d7bd1 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -117,6 +117,7 @@ "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.", "scope_in_timeline": { + "local": "Non-federated", "direct": "Direct", "private": "Followers-only", "public": "Public",