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

github.com/nextcloud/survey_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2016-08-08 12:48:42 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2016-08-08 19:05:20 +0300
commita6cef578781257e9e0a3c808a054d496862cbeed (patch)
tree770e0b3a711d03c822783f3b1e7cb26ddf99db52 /templates
parentb5328ec249c0bc24a3b5ec4b57c185d16191b266 (diff)
many small improvements to prepare the client for the Nextcloud 10 release
Diffstat (limited to 'templates')
-rw-r--r--templates/admin.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/templates/admin.php b/templates/admin.php
index 033d828..9e909ad 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -26,7 +26,11 @@
<h2><?php p($l->t('Usage report')); ?></h2>
<p>
- <?php p($l->t('When the server receives a new report of your instance, all entries from previous reports are removed. So in case you disable one of the settings below, you can send a new report, to delete the data, that is currently stored on the server.')); ?>
+ <?php p($l->t('You can help us to improve Nextcloud be sending us some data about your current setup and usage.')); ?>
+ </p>
+
+ <p>
+ <?php p($l->t('We take your privacy seriously. The data are anonymized and you can enable/disable it at any time, by default it is always disabled. Below you can also adjust what kind of data are send and always see the last report send to us. When the server receives a new report of your instance, all entries from previous reports are removed. In case you disable one of the settings below, you can send a new report, to delete the data, that is currently stored on the server.')); ?>
</p>
<button><?php p($l->t('Send new report now')); ?></button>
@@ -37,7 +41,7 @@
<label for="survey_client_monthly_report"><?php p($l->t('Send "Usage report" monthly')); ?></label>
</p>
- <h3><?php p($l->t('Data Control')); ?></h3>
+ <h3><?php p($l->t('Data to send')); ?></h3>
<?php
foreach ($_['categories'] as $category => $data) {
?>
@@ -50,9 +54,14 @@
}
?>
+ <?php if (!empty($_['last_report'])): ?>
+
<h3><?php p($l->t('Last report')); ?></h3>
<p><textarea title="<?php p($l->t('Last report')); ?>" class="last_report" readonly="readonly"><?php p($_['last_report']);?></textarea></p>
<em class="last_sent"><?php p($l->t('Sent on: %s', [$_['last_sent']])); ?></em>
+
+ <?php endif; ?>
+
</div>