diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-02-26 21:23:20 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-02-26 21:23:20 +0100 |
commit | 04c9cc60349fe8d6899a42781ccacaf6d9df5bf5 (patch) | |
tree | 6703867e9b45eb36cbcd86e9b7b7d47356f69960 /apps/calendar/templates/settings.php | |
parent | a501d4b61e3ba30aa1643b6a92c5177ee69d3b7d (diff) | |
download | nextcloud-server-04c9cc60349fe8d6899a42781ccacaf6d9df5bf5.tar.gz nextcloud-server-04c9cc60349fe8d6899a42781ccacaf6d9df5bf5.zip |
give users the possibility to choose between monday and sunday as first day of the week
Diffstat (limited to 'apps/calendar/templates/settings.php')
-rw-r--r-- | apps/calendar/templates/settings.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/calendar/templates/settings.php b/apps/calendar/templates/settings.php index 979634874e4..f74a45203e1 100644 --- a/apps/calendar/templates/settings.php +++ b/apps/calendar/templates/settings.php @@ -37,6 +37,13 @@ </select> </td></tr> + <tr><td><label for="firstday" class="bold"><?php echo $l->t('First day of the week');?></label></td><td> + <select style="display: none;" id="firstday" title="<?php echo "First day"; ?>" name="firstday"> + <option value="mo" id="mo"><?php echo $l->t("Monday"); ?></option> + <option value="su" id="su"><?php echo $l->t("Sunday"); ?></option> + </select> + </td></tr> + </table> <?php echo $l->t('Calendar CalDAV syncing address:');?> |