Skip to content

Commit

Permalink
fix: Fix product name casing and spelling
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Jan 2, 2025
1 parent 1110c4c commit b11c50c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/internal-signaling.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion lib/TInitialState.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected function publishInitialStateShared(): void {
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!'
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/AdminSettings/HostedSignalingServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
2 changes: 1 addition & 1 deletion src/components/AdminSettings/RecordingServers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/AdminSettings/SIPBridge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/components/AdminSettings/SignalingServers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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()
},
Expand Down

0 comments on commit b11c50c

Please sign in to comment.