diff -urN ../calendar.orig/calendar.php ./calendar.php --- ../calendar.orig/calendar.php 2013-11-11 10:53:27.000000000 +0200 +++ ./calendar.php 2013-11-15 22:32:52.000000000 +0200 @@ -316,6 +316,7 @@ } $no_override = array_flip((array)$this->rc->config->get('dont_override')); +$p['current'] = 1; $p['blocks']['view']['name'] = $this->gettext('mainoptions'); diff -urN ../calendar.orig/drivers/database/database_driver.php ./drivers/database/database_driver.php --- ../calendar.orig/drivers/database/database_driver.php 2013-11-11 10:53:27.000000000 +0200 +++ ./drivers/database/database_driver.php 2013-11-15 23:51:09.000000000 +0200 @@ -110,7 +110,7 @@ { // attempt to create a default calendar for this user if (empty($this->calendars)) { - if ($this->create_calendar(array('name' => 'Default', 'color' => 'cc0000'))) + if ($this->create_calendar(array('name' => ($this->cal->gettext('default_calendar_name') ? $this->cal->gettext('default_calendar_name') : 'Default'), 'color' => 'cc0000', 'showalarms' => true))) $this->_read_calendars(); } diff -urN ../calendar.orig/localization/en_US.inc ./localization/en_US.inc --- ../calendar.orig/localization/en_US.inc 2013-11-11 10:53:27.000000000 +0200 +++ ./localization/en_US.inc 2013-11-15 23:41:33.000000000 +0200 @@ -21,6 +21,7 @@ // calendar $labels['calendar'] = 'Calendar'; $labels['calendars'] = 'Calendars'; +$labels['default_calendar_name'] = 'Default calendar'; $labels['category'] = 'Category'; $labels['categories'] = 'Categories'; $labels['createcalendar'] = 'Create new calendar'; diff -urN ../calendar.orig/localization/ru_RU.inc ./localization/ru_RU.inc --- ../calendar.orig/localization/ru_RU.inc 2013-11-11 10:53:27.000000000 +0200 +++ ./localization/ru_RU.inc 2013-11-15 23:41:17.000000000 +0200 @@ -18,6 +18,7 @@ $labels['time_format'] = 'Формат времени'; $labels['timeslots'] = 'Промежутков в час'; $labels['first_day'] = 'Первый день недели'; +$labels['first_hour'] = 'Первый час дня'; $labels['default_view'] = 'Вид по умолчанию'; $labels['workinghours'] = 'Рабочие часы'; $labels['add_category'] = 'Добавить категорию'; @@ -41,6 +42,7 @@ $labels['remove'] = 'Удалить'; $labels['cancel'] = 'Завершить'; $labels['calendars'] = 'Календари'; +$labels['default_calendar_name'] = 'Основной календарь'; $labels['category'] = 'Категория'; $labels['categories'] = 'Категории'; $labels['createcalendar'] = 'Создать новый календарь'; diff -urN ../calendar.orig/skins/larry/calendar.css ./skins/larry/calendar.css --- ../calendar.orig/skins/larry/calendar.css 2013-11-11 10:53:27.000000000 +0200 +++ ./skins/larry/calendar.css 2015-02-23 00:22:20.000000000 +0200 @@ -1362,6 +1362,7 @@ /* Invitation UI in mail */ +.contextmenu.popupmenu li a.calendarlink span.calendar, #messagemenu li a.calendarlink span.calendar { background-position: 0px -1948px; }