aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortusooa <tusooa@kazv.moe>2023-12-27 22:36:13 -0500
committertusooa <tusooa@kazv.moe>2023-12-27 22:36:13 -0500
commit4777bec85fd5488c5c50d5452efe26a51f90f53e (patch)
tree5238ecebfc017ecc4bdd470e9a1d66b528d1099a /src
parent0110fd86c2f166de5be8d675ffa34ab815463b2d (diff)
Add a description on what groups do
Diffstat (limited to 'src')
-rw-r--r--src/components/settings_modal/tabs/profile_tab.js5
-rw-r--r--src/components/settings_modal/tabs/profile_tab.vue5
-rw-r--r--src/i18n/en.json1
3 files changed, 10 insertions, 1 deletions
diff --git a/src/components/settings_modal/tabs/profile_tab.js b/src/components/settings_modal/tabs/profile_tab.js
index 3cb3ae45..dee17450 100644
--- a/src/components/settings_modal/tabs/profile_tab.js
+++ b/src/components/settings_modal/tabs/profile_tab.js
@@ -120,8 +120,11 @@ const ProfileTab = {
const src = this.$store.state.users.currentUser.cover_photo
return (!src) ? this.defaultBanner : src
},
+ groupActorAvailable () {
+ return this.$store.state.instance.groupActorAvailable
+ },
availableActorTypes () {
- return this.$store.state.instance.groupActorAvailable ? ['Person', 'Service', 'Group'] : ['Person', 'Service']
+ return this.groupActorAvailable ? ['Person', 'Service', 'Group'] : ['Person', 'Service']
}
},
methods: {
diff --git a/src/components/settings_modal/tabs/profile_tab.vue b/src/components/settings_modal/tabs/profile_tab.vue
index e6dc5987..de5219a7 100644
--- a/src/components/settings_modal/tabs/profile_tab.vue
+++ b/src/components/settings_modal/tabs/profile_tab.vue
@@ -122,6 +122,11 @@
</Select>
</label>
</p>
+ <div v-if="groupActorAvailable">
+ <small>
+ {{ $t('settings.actor_type_description') }}
+ </small>
+ </div>
<p>
<interface-language-switcher
:prompt-text="$t('settings.email_language')"
diff --git a/src/i18n/en.json b/src/i18n/en.json
index 55c24905..a9b00856 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -360,6 +360,7 @@
"primary_language": "Primary language:",
"fallback_language": "Fallback language {index}:",
"actor_type": "This account is:",
+ "actor_type_description": "Marking your account as a group will make it automatically repeat statuses that mention it.",
"actor_type_Person": "a normal user",
"actor_type_Service": "a bot",
"actor_type_Group": "a group",