mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
Merge pull request #16467 from nextcloud/fix/settings-app-name
fix(settings): `Talk settings` -> `App settings`
This commit is contained in:
commit
964fef4e24
3 changed files with 3 additions and 3 deletions
|
|
@ -607,7 +607,7 @@ describe('LeftSidebar.vue', () => {
|
|||
subscribe('show-settings', eventHandler)
|
||||
const wrapper = mountComponent()
|
||||
|
||||
const button = findNcButton(wrapper, 'Talk settings')
|
||||
const button = findNcButton(wrapper, 'App settings')
|
||||
expect(button.exists()).toBeTruthy()
|
||||
|
||||
await button.trigger('click')
|
||||
|
|
|
|||
|
|
@ -291,7 +291,7 @@
|
|||
<template #icon>
|
||||
<IconCogOutline :size="20" />
|
||||
</template>
|
||||
{{ t('spreed', 'Talk settings') }}
|
||||
{{ t('spreed', 'App settings') }}
|
||||
</NcButton>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<template>
|
||||
<NcAppSettingsDialog
|
||||
v-model:open="showSettings"
|
||||
:name="t('spreed', 'Talk settings')"
|
||||
:name="t('spreed', 'App settings')"
|
||||
show-navigation>
|
||||
<!-- Custom settings sections registered via OCA.Talk.Settings -->
|
||||
<NcAppSettingsSection
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue