forked from AkkomaGang/akkoma-fe
Update local only with biohazard icon and locales
This commit is contained in:
parent
a06be20eac
commit
f57f1b7c7a
4 changed files with 9 additions and 4 deletions
|
@ -2,6 +2,7 @@ import { library } from '@fortawesome/fontawesome-svg-core'
|
|||
import {
|
||||
faEnvelope,
|
||||
faLock,
|
||||
faBiohazard,
|
||||
faLockOpen,
|
||||
faGlobe
|
||||
} from '@fortawesome/free-solid-svg-icons'
|
||||
|
@ -9,6 +10,7 @@ import {
|
|||
library.add(
|
||||
faEnvelope,
|
||||
faGlobe,
|
||||
faBiohazard,
|
||||
faLock,
|
||||
faLockOpen
|
||||
)
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
@click="changeVis('local')"
|
||||
>
|
||||
<FAIcon
|
||||
icon="users"
|
||||
icon="biohazard"
|
||||
class="fa-scale-110 fa-old-padding"
|
||||
/>
|
||||
</button>
|
||||
|
|
|
@ -36,6 +36,7 @@ import {
|
|||
faStar,
|
||||
faEyeSlash,
|
||||
faEye,
|
||||
faBiohazard,
|
||||
faThumbtack,
|
||||
faChevronUp,
|
||||
faChevronDown,
|
||||
|
@ -56,6 +57,7 @@ library.add(
|
|||
faEllipsisH,
|
||||
faEyeSlash,
|
||||
faEye,
|
||||
faBiohazard,
|
||||
faThumbtack,
|
||||
faChevronUp,
|
||||
faChevronDown,
|
||||
|
@ -449,7 +451,7 @@ const Status = {
|
|||
case 'direct':
|
||||
return 'envelope'
|
||||
case 'local':
|
||||
return 'users'
|
||||
return 'biohazard'
|
||||
default:
|
||||
return 'globe'
|
||||
}
|
||||
|
|
|
@ -106,7 +106,8 @@
|
|||
"direct": "Direct",
|
||||
"private": "Followers-only",
|
||||
"public": "Public",
|
||||
"unlisted": "Unlisted"
|
||||
"unlisted": "Unlisted",
|
||||
"local": "Local-only post -- only your instance can see this status"
|
||||
}
|
||||
},
|
||||
"image_cropper": {
|
||||
|
@ -257,7 +258,7 @@
|
|||
"private": "Followers-only - post to followers only",
|
||||
"public": "Public - post to public timelines",
|
||||
"unlisted": "Unlisted - do not post to public timelines",
|
||||
"local": "Local - do not federate this post"
|
||||
"local": "Local - only your instance can see this status"
|
||||
}
|
||||
},
|
||||
"registration": {
|
||||
|
|
Loading…
Reference in a new issue