mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
fix: Fix product name casing and spelling
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
278fed2693
commit
7ec6dbdd5b
6 changed files with 7 additions and 7 deletions
|
|
@ -53,4 +53,4 @@ Todo
|
|||
|
||||
### External signaling API
|
||||
|
||||
See [External signaling API](https://nextcloud-spreed-signaling.readthedocs.io/en/latest/) for the Signaling API of the High-Performance Backend.
|
||||
See [External signaling API](https://nextcloud-spreed-signaling.readthedocs.io/en/latest/) for the Signaling API of the High-performance backend.
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ trait TInitialState {
|
|||
if ($signalingMode === Config::SIGNALING_CLUSTER_CONVERSATION
|
||||
&& !$this->memcacheFactory->isAvailable()) {
|
||||
throw new HintException(
|
||||
'High Performance Back-end clustering is only supported with a distributed cache!'
|
||||
'High-performance backend clustering is only supported with a distributed cache!'
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
id="hosted_signaling_server"
|
||||
class="hosted-signaling section">
|
||||
<h2>
|
||||
{{ t('spreed', 'Hosted high-performance backend') }}
|
||||
{{ t('spreed', 'Hosted High-performance backend') }}
|
||||
</h2>
|
||||
|
||||
<p class="settings-hint">
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<NcNoteCard v-if="!showForm"
|
||||
type="warning"
|
||||
:text="t('spreed', 'Recording backend configuration is only possible with a high-performance backend.')" />
|
||||
:text="t('spreed', 'Recording backend configuration is only possible with a High-performance backend.')" />
|
||||
|
||||
<template v-else>
|
||||
<NcNoteCard v-if="showUploadLimitWarning" type="warning" :text="uploadLimitWarning" />
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<NcNoteCard v-if="!showForm"
|
||||
type="warning"
|
||||
:text="t('spreed', 'SIP configuration is only possible with a high-performance backend.')" />
|
||||
:text="t('spreed', 'SIP configuration is only possible with a High-performance backend.')" />
|
||||
|
||||
<template v-else>
|
||||
<NcCheckboxRadioSwitch v-model="dialOutEnabled"
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
<span v-if="loading" class="icon icon-loading-small" />
|
||||
<Plus v-else :size="20" />
|
||||
</template>
|
||||
{{ t('spreed', 'Add high-performance backend server') }}
|
||||
{{ t('spreed', 'Add High-performance backend server') }}
|
||||
</NcButton>
|
||||
|
||||
<NcPasswordField v-if="servers.length"
|
||||
|
|
@ -150,7 +150,7 @@ export default {
|
|||
|
||||
OCP.AppConfig.setValue('spreed', 'hide_signaling_warning', this.hideWarning ? 'yes' : 'no', {
|
||||
success: () => {
|
||||
showSuccess(t('spreed', 'Missing high-performance backend warning hidden'))
|
||||
showSuccess(t('spreed', 'Missing High-performance backend warning hidden'))
|
||||
this.loading = false
|
||||
this.toggleSave()
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue