diff options
| author | Mark Felder <feld@FreeBSD.org> | 2020-08-03 18:44:35 -0500 |
|---|---|---|
| committer | Mark Felder <feld@feld.me> | 2021-06-01 12:51:20 -0500 |
| commit | 0604b1d5b7b19db41096876d0d911ea95c3c778f (patch) | |
| tree | 44a898b9aa8868a0269c45252cfd3c73bca8fa68 /src/components/features_panel | |
| parent | 7bd18cda64e0a4ca7a61ff2cf69714f23281e9d9 (diff) | |
Rename legacy PleromaFE Chat functionality to "Shout"
Diffstat (limited to 'src/components/features_panel')
| -rw-r--r-- | src/components/features_panel/features_panel.js | 2 | ||||
| -rw-r--r-- | src/components/features_panel/features_panel.vue | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/features_panel/features_panel.js b/src/components/features_panel/features_panel.js index 8b142d08..d177efeb 100644 --- a/src/components/features_panel/features_panel.js +++ b/src/components/features_panel/features_panel.js @@ -2,7 +2,7 @@ import fileSizeFormatService from '../../services/file_size_format/file_size_for const FeaturesPanel = { computed: { - chat: function () { return this.$store.state.instance.chatAvailable }, + shout: function () { return this.$store.state.instance.shoutAvailable }, pleromaChatMessages: function () { return this.$store.state.instance.pleromaChatMessagesAvailable }, gopher: function () { return this.$store.state.instance.gopherAvailable }, whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled }, diff --git a/src/components/features_panel/features_panel.vue b/src/components/features_panel/features_panel.vue index 9605d09d..a58a99af 100644 --- a/src/components/features_panel/features_panel.vue +++ b/src/components/features_panel/features_panel.vue @@ -8,8 +8,8 @@ </div> <div class="panel-body features-panel"> <ul> - <li v-if="chat"> - {{ $t('features_panel.chat') }} + <li v-if="shout"> + {{ $t('features_panel.shout') }} </li> <li v-if="pleromaChatMessages"> {{ $t('features_panel.pleroma_chat_messages') }} |
