fix: Fix product name casing and spelling

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-01-02 15:24:39 +01:00
parent 278fed2693
commit 7ec6dbdd5b
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
6 changed files with 7 additions and 7 deletions

View file

@ -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.

View file

@ -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!'
);
}

View file

@ -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">

View file

@ -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" />

View file

@ -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"

View file

@ -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()
},