diff options
author | rakekniven <2069590+rakekniven@users.noreply.github.com> | 2022-05-21 14:27:59 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-06-03 16:14:29 +0200 |
commit | 4399ed47122543b404fff82b2246b55544842e57 (patch) | |
tree | 7a6dd69278db7c3ae1e00fc96132d8ad3ee8d4d5 /apps/settings/src | |
parent | 6d5d91f6f93acbbd9886714ca59ebcc31578bd31 (diff) | |
download | nextcloud-server-4399ed47122543b404fff82b2246b55544842e57.tar.gz nextcloud-server-4399ed47122543b404fff82b2246b55544842e57.zip |
l10n: Fix escaping issue
At Transifex the string is cut and shown `For the server to work properly, it`
I modified this without vue knowledge. @CarlSchwan Can you check please?
Reported at Transifex.
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/settings/src')
-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"> |