diff --git a/src/components/AdminSettings/MatterbridgeIntegration.vue b/src/components/AdminSettings/MatterbridgeIntegration.vue index fc9ff524459..0cfe277e5d4 100644 --- a/src/components/AdminSettings/MatterbridgeIntegration.vue +++ b/src/components/AdminSettings/MatterbridgeIntegration.vue @@ -146,7 +146,7 @@ export default { async enableMatterbridgeApp() { if (OC.PasswordConfirmation.requiresPasswordConfirmation()) { OC.PasswordConfirmation.requirePasswordConfirmation(this.enableMatterbridgeAppCallback, {}, () => { - showError(t('spreed', 'An error occurred while installing the Matterbridge app')) + showError(t('spreed', 'An error occurred while installing the Matterbridge app.')) }) } @@ -158,7 +158,7 @@ export default { try { await enableMatterbridgeApp() } catch (e) { - showError(t('spreed', 'An error occurred while installing the Talk Matterbridge. Please install it manually'), { + showError(t('spreed', 'An error occurred while installing the Talk Matterbridge. Please install it manually.'), { onClick: () => { window.open('https://apps.nextcloud.com/apps/talk_matterbridge', '_blank') }, diff --git a/src/components/AdminSettings/RecordingServers.vue b/src/components/AdminSettings/RecordingServers.vue index d2cdad4f91d..37491c92d3d 100644 --- a/src/components/AdminSettings/RecordingServers.vue +++ b/src/components/AdminSettings/RecordingServers.vue @@ -110,7 +110,7 @@ export default { return this.uploadLimit !== 0 && this.uploadLimit < 512 * (1024 ** 2) }, uploadLimitWarning() { - return t('spreed', 'The PHP settings "upload_max_filesize" or "post_max_size" only will allow to upload files up to {maxUpload}.', { + return t('spreed', 'The PHP settings "upload_max_filesize" or "post_max_size" will allow to upload files up to {maxUpload} only.', { maxUpload: formatFileSize(this.uploadLimit, true, true), }) },