Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/AdminSettings.vue')
-rw-r--r--src/components/AdminSettings.vue30
1 files changed, 21 insertions, 9 deletions
diff --git a/src/components/AdminSettings.vue b/src/components/AdminSettings.vue
index ea0e8e3f..4a79e237 100644
--- a/src/components/AdminSettings.vue
+++ b/src/components/AdminSettings.vue
@@ -300,6 +300,12 @@
<div v-if="isSetup" id="secure-view-settings" class="section">
<h2>{{ t('richdocuments', 'Secure view settings') }}</h2>
<p>{{ t('richdocuments', 'Secure view enables you to secure documents by embedding a watermark') }}</p>
+ <ul>
+ <li>{{ t('richdocuments', 'The settings only apply to compatible office files that are opened in Nextcloud Office') }}</li>
+ <li>{{ t('richdocuments', 'The following options within Nextcloud Office will be disabled: Copy, Download, Export, Print') }}</li>
+ <li>{{ t('richdocuments', 'Files may still be downloadable through Nextcloud unless restricted otherwise through sharing or access control settings') }}</li>
+ <li>{{ t('richdocuments', 'Previews will be blocked for watermarked files to not leak the first page of documents') }}</li>
+ </ul>
<SettingsCheckbox v-model="settings.watermark.enabled"
:label="t('richdocuments', 'Enable watermarking')"
hint=""
@@ -337,6 +343,12 @@
hint=""
:disabled="updating"
@input="update" />
+ <SettingsCheckbox v-if="!settings.watermark.shareAll"
+ v-model="settings.watermark.shareDisabledDownload"
+ :label="t('richdocuments', 'Show watermark for shares without download permission')"
+ hint=""
+ :disabled="updating"
+ @input="update" />
<h3>Link shares</h3>
<SettingsCheckbox v-model="settings.watermark.linkAll"
@@ -775,18 +787,18 @@ export default {
margin-left: 25px;
&:not(.multiselect) {
margin-top: 10px;
- font-style: italic;
}
- ul {
- margin-bottom: 15px;
- }
+ }
- li {
- list-style: disc;
- padding: 3px;
- margin-left: 20px;
- }
+ ul {
+ margin-bottom: 15px;
+ }
+
+ li {
+ list-style: disc;
+ padding: 3px;
+ margin-left: 20px;
}
.modal__content {