diff options
author | rakekniven <2069590+rakekniven@users.noreply.github.com> | 2022-06-03 18:51:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 18:51:51 +0200 |
commit | 237b6bdcd4e099c92e8169a5d7e093cbc6d59bd8 (patch) | |
tree | 7a6dd69278db7c3ae1e00fc96132d8ad3ee8d4d5 /apps/settings | |
parent | 6d5d91f6f93acbbd9886714ca59ebcc31578bd31 (diff) | |
parent | 4399ed47122543b404fff82b2246b55544842e57 (diff) | |
download | nextcloud-server-237b6bdcd4e099c92e8169a5d7e093cbc6d59bd8.tar.gz nextcloud-server-237b6bdcd4e099c92e8169a5d7e093cbc6d59bd8.zip |
Merge pull request #32537 from nextcloud/rakekniven-patch-2
l10n: Fix escaping issue
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/src/components/BasicSettings/BackgroundJob.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/src/components/BasicSettings/BackgroundJob.vue b/apps/settings/src/components/BasicSettings/BackgroundJob.vue index a785d585228..525e82b42b8 100644 --- a/apps/settings/src/components/BasicSettings/BackgroundJob.vue +++ b/apps/settings/src/components/BasicSettings/BackgroundJob.vue @@ -22,7 +22,7 @@ <template> <SettingsSection :title="t('settings', 'Background jobs')" - :description="t('settings', `For the server to work properly, it's important to configure background jobs correctly. Cron is the recommended setting. Please see the documentation for more information.`)" + :description="t('settings', 'For the server to work properly, it’s important to configure background jobs correctly. Cron is the recommended setting. Please see the documentation for more information.')" :doc-url="backgroundJobsDocUrl"> <template v-if="lastCron !== 0"> <span v-if="oldExecution" class="error"> |