Skip to content

Commit 80caa7a

Browse files
fix: apostrophe issue
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 parent d435643 commit 80caa7a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

js/firstrunwizard-settings.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

js/firstrunwizard-settings.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/settings/SettingsApps.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
- SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
55
<template>
6-
<NcSettingsSection :name="t('firstrunwizard', 'Connect other apps to {productName}', { productName })"
6+
<NcSettingsSection :name="t('firstrunwizard', 'Connect other apps to {productName}', { productName }, null, {escape: false})"
77
:description="
8-
t('firstrunwizard', 'Besides the mobile apps and desktop client you can connect any other software that supports the WebDAV/CalDAV/CardDAV protocols to {productName}.', { productName })
8+
t('firstrunwizard', 'Besides the mobile apps and desktop client you can connect any other software that supports the WebDAV/CalDAV/CardDAV protocols to {productName}.', { productName }, null, {escape: false})
99
">
1010
<ul :class="$style.list"
11-
:aria-label="t('firstrunwizard', 'Apps to connect to {productName}', { productName })">
11+
:aria-label="t('firstrunwizard', 'Apps to connect to {productName}', { productName }, null, {escape: false})">
1212
<li v-for="app, id of apps"
1313
:key="id">
1414
<NcButton :href="app.link">

src/components/settings/SettingsClients.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
'firstrunwizard',
1111
'{productName} gives you access to your files wherever you are. Our easy to use desktop and mobile clients are available for all major platforms at zero cost.',
1212
{ productName },
13+
null,
14+
{escape: false}
1315
)
1416
">
1517
<ul :class="$style.list" :aria-label="t('firstrunwizard', 'App for syncing')">

0 commit comments

Comments
 (0)