diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-09-07 15:13:26 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-09-07 15:13:26 +0200 |
commit | f3e98878da39ff086a2e194cf0c5c6c78c0df9f6 (patch) | |
tree | 6298e0a5ff6ef41e45ec1061217c51ce4b43f0fd /apps/calendar/templates/calendar.php | |
parent | dabf10f99c05dd82010850988fef43bf5dda2bba (diff) | |
download | nextcloud-server-f3e98878da39ff086a2e194cf0c5c6c78c0df9f6.tar.gz nextcloud-server-f3e98878da39ff086a2e194cf0c5c6c78c0df9f6.zip |
Implement calendar list view
Diffstat (limited to 'apps/calendar/templates/calendar.php')
-rw-r--r-- | apps/calendar/templates/calendar.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/calendar/templates/calendar.php b/apps/calendar/templates/calendar.php index 0961390b212..768c1a6486a 100644 --- a/apps/calendar/templates/calendar.php +++ b/apps/calendar/templates/calendar.php @@ -35,6 +35,8 @@ $weekdays = array('monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'satur Calendar.UI.monthshort = new Array("<?php echo $l -> t("Jan.");?>", "<?php echo $l -> t("Feb.");?>", "<?php echo $l -> t("Mar.");?>", "<?php echo $l -> t("Apr.");?>", "<?php echo $l -> t("May");?>", "<?php echo $l -> t("Jun.");?>", "<?php echo $l -> t("Jul.");?>", "<?php echo $l -> t("Aug.");?>", "<?php echo $l -> t("Sep.");?>", "<?php echo $l -> t("Oct.");?>", "<?php echo $l -> t("Nov.");?>", "<?php echo $l -> t("Dec.");?>"); Calendar.UI.cw_label = "<?php echo $l->t("Week");?>"; Calendar.UI.cws_label = "<?php echo $l->t("Weeks");?>"; + Calendar.UI.more_before = String('<?php echo $l->t('More before {startdate}') ?>'); + Calendar.UI.more_after = String('<?php echo $l->t('More after {enddate}') ?>'); </script> <div id="sysbox"></div> <div id="controls"> @@ -153,7 +155,9 @@ $weekdays = array('monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'satur </table> </div> <div id="listview"> - + <div id="more_before"></div> + <div id="events"></div> + <div id="more_after"></div> </div> </div> <!-- Dialogs --> |