diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-06-30 09:11:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-30 09:11:54 +0200 |
commit | f7a69c765af490767fcd765f06086f7604fdbc43 (patch) | |
tree | 1c93d10384169d16967d64c716b01363125a86c2 | |
parent | 3acdc1339d0d7b04357bc05013a0f13521792961 (diff) | |
parent | 409672d981fe1e91d8536d2d924c016a870d9121 (diff) | |
download | nextcloud-server-f7a69c765af490767fcd765f06086f7604fdbc43.tar.gz nextcloud-server-f7a69c765af490767fcd765f06086f7604fdbc43.zip |
Merge pull request #247 from nextcloud/l10n-fixes
Fix update notification text
-rw-r--r-- | apps/updatenotification/templates/admin.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/updatenotification/templates/admin.php b/apps/updatenotification/templates/admin.php index 0be070cac30..b1cc76534e3 100644 --- a/apps/updatenotification/templates/admin.php +++ b/apps/updatenotification/templates/admin.php @@ -47,7 +47,9 @@ <input name="oca_updatenotification_groups_list" type="hidden" id="oca_updatenotification_groups_list" value="<?php p($_['notify_groups']) ?>" style="width: 400px"> <em class="<?php if (!in_array($currentChannel, ['daily', 'git'])) p('hidden'); ?>"> <br /> - <?php p($l->t('Only notification for app updates are available, because the selected update channel for the server itself does not allow notifications.')); ?> + <?php p($l->t('Only notification for app updates are available.')); ?> + <?php if ($currentChannel === 'daily') p($l->t('The selected update channel makes dedicated notifications for the server obsolete.')); ?> + <?php if ($currentChannel === 'git') p($l->t('The selected update channel does not support updates of the server.')); ?> </em> </p> </form> |