Skip to content

Commit dd35b20

Browse files
authored
Merge pull request #15710 from nextcloud/fix/redundant-word
2 parents eb8b8df + 7bb5f53 commit dd35b20

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/LeftSidebar/LeftSidebar.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
<NcAppNavigationItem
141141
class="navigation-item"
142142
:to="{ name: 'root' }"
143-
:name="t('spreed', 'Talk home')"
143+
:name="HOME_BUTTON_LABEL"
144144
@click="refreshTalkDashboard">
145145
<template #icon>
146146
<IconHomeOutline :size="20" />
@@ -339,6 +339,7 @@ const canModerateSipDialOut = hasTalkFeature('local', 'sip-support-dialout')
339339
&& getTalkConfig('local', 'call', 'can-enable-sip')
340340
const canNoteToSelf = hasTalkFeature('local', 'note-to-self')
341341
const supportsArchive = hasTalkFeature('local', 'archived-conversations-v2')
342+
const HOME_BUTTON_LABEL = t('spreed', 'Home') // TRANSLATORS: The main home view
342343
const FILTER_LABELS = {
343344
unread: t('spreed', 'Unread'),
344345
mentions: t('spreed', 'Mentions'),
@@ -422,6 +423,7 @@ export default {
422423
showArchived,
423424
showThreadsList,
424425
settingsStore,
426+
HOME_BUTTON_LABEL,
425427
FILTER_LABELS,
426428
actorStore: useActorStore(),
427429
chatExtrasStore: useChatExtrasStore(),

0 commit comments

Comments
 (0)