clarify non-shared message, also add for shared via calendar

master
Jan-Christoph Borchardt 2013-11-21 10:24:41 +01:00
parent 1d5966707f
commit 6df6811b00
1 changed files with 5 additions and 1 deletions

View File

@ -60,7 +60,7 @@ if(is_array($sharedwithByEvent)) {
<?php endforeach; ?>
</ul>
<?php if(!$eventsharees) {
$nobody = $l->t('Nobody');
$nobody = $l->t('Not shared with anyone');
print_unescaped('<div id="sharedWithNobody">' . OC_Util::sanitizeHTML($nobody) . '</div>');
} ?>
<br />
@ -96,5 +96,9 @@ if(is_array($sharedwithByEvent)) {
</li>
<?php endforeach; ?>
</ul>
<?php if(!$calsharees) {
$nobody = $l->t('Not shared with anyone via calendar');
print_unescaped('<div>' . OC_Util::sanitizeHTML($nobody) . '</div>');
} ?>
<br />
<?php p($l->t('NOTE: Actions on events shared via calendar will affect the entire calendar sharing.')); ?>