Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/firstrunwizard-settings.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/firstrunwizard-settings.mjs.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/components/settings/SettingsApps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<NcSettingsSection :name="t('firstrunwizard', 'Connect other apps to {productName}', { productName })"
<NcSettingsSection :name="t('firstrunwizard', 'Connect other apps to {productName}', { productName }, null, {escape: false})"
:description="
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 })
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})
">
<ul :class="$style.list"
:aria-label="t('firstrunwizard', 'Apps to connect to {productName}', { productName })">
:aria-label="t('firstrunwizard', 'Apps to connect to {productName}', { productName }, null, {escape: false})">
<li v-for="app, id of apps"
:key="id">
<NcButton :href="app.link">
Expand Down
2 changes: 2 additions & 0 deletions src/components/settings/SettingsClients.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
'firstrunwizard',
'{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.',
{ productName },
null,
{escape: false}
)
">
<ul :class="$style.list" :aria-label="t('firstrunwizard', 'App for syncing')">
Expand Down