├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SQL ├── mssql.initial.sql ├── mssql │ └── .keep.folder ├── mysql.initial.sql ├── mysql │ └── .keep.folder ├── oracle.initial.sql ├── oracle │ └── .keep.folder ├── postgres.initial.sql ├── postgres │ └── .keep.folder ├── sqlite.initial.sql └── sqlite │ └── .keep.folder ├── bin └── copyDateTimeParser.php ├── calendar.php ├── calendar_base.js ├── calendar_ui.js ├── composer.json ├── config.inc.php.dist ├── drivers ├── caldav │ ├── caldav_driver.php │ └── caldav_sync.php ├── calendar_driver.php ├── database │ └── database_driver.php ├── ical │ ├── ical_driver.php │ └── ical_sync.php ├── kolab │ ├── SQL │ │ ├── mysql.initial.sql │ │ ├── mysql │ │ │ ├── 2012080600.sql │ │ │ ├── 2013011000.sql │ │ │ ├── 2014041700.sql │ │ │ └── 2014082600.sql │ │ ├── oracle.initial.sql │ │ ├── postgres.initial.sql │ │ └── sqlite.initial.sql │ ├── kolab_calendar.php │ ├── kolab_driver.php │ ├── kolab_invitation_calendar.php │ └── kolab_user_calendar.php ├── ldap │ └── resources_driver_ldap.php └── resources_driver.php ├── helpdocs ├── en_US │ ├── _static │ │ ├── _skin │ │ ├── kolab │ │ │ ├── alarms-popup.png │ │ │ ├── calendar-acl.png │ │ │ ├── calendar-header.png │ │ │ ├── calendar-print.png │ │ │ ├── calendar-toolbar.png │ │ │ ├── event-participants.png │ │ │ ├── event-resize.png │ │ │ ├── itip-invitation.png │ │ │ └── itip-reply.png │ │ └── larry │ │ │ ├── alarms-popup.png │ │ │ ├── calendar-acl.png │ │ │ ├── calendar-header.png │ │ │ ├── calendar-print.png │ │ │ ├── calendar-toolbar.png │ │ │ ├── event-participants.png │ │ │ ├── event-resize.png │ │ │ ├── itip-invitation.png │ │ │ └── itip-reply.png │ ├── importexport.rst │ ├── index.rst │ ├── invitations.rst │ ├── manage.rst │ ├── overview.rst │ ├── printing.rst │ ├── settings.rst │ └── sharing.rst ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ca_ES │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── cs_CZ │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── da_DK │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── de_CH │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── en_RO │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── en_US │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── et_EE │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── fi_FI │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── fr_CH │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ku_IQ │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── sl_SI │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── vi_VN │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── importexport.po │ │ │ ├── index.po │ │ │ ├── invitations.po │ │ │ ├── manage.po │ │ │ ├── overview.po │ │ │ ├── settings.po │ │ │ └── sharing.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── importexport.po │ │ ├── index.po │ │ ├── invitations.po │ │ ├── manage.po │ │ ├── overview.po │ │ ├── settings.po │ │ └── sharing.po └── po │ ├── importexport.pot │ ├── index.pot │ ├── invitations.pot │ ├── manage.pot │ ├── overview.pot │ ├── settings.pot │ └── sharing.pot ├── lib ├── caldav_client.php ├── calendar_itip.php ├── calendar_recurrence.php ├── calendar_ui.php ├── encryption.php ├── js │ ├── fullcalendar.js │ └── moment.js ├── oauth_client.php ├── oauth_token_storage.php └── sounds │ ├── _readme │ ├── aurora.aac │ ├── aurora.mp3 │ ├── aurora.ogg │ ├── aurora.wav │ ├── bamboo.aac │ ├── bamboo.mp3 │ ├── bamboo.ogg │ ├── bamboo.wav │ ├── bells.aac │ ├── bells.mp3 │ ├── bells.ogg │ ├── bells.wav │ ├── chord.aac │ ├── chord.mp3 │ ├── chord.ogg │ ├── chord.wav │ ├── circles.aac │ ├── circles.mp3 │ ├── circles.ogg │ ├── circles.wav │ ├── glass.aac │ ├── glass.mp3 │ ├── glass.ogg │ ├── glass.wav │ ├── maramba.aac │ ├── maramba.mp3 │ ├── maramba.ogg │ ├── maramba.wav │ ├── metal.aac │ ├── metal.mp3 │ ├── metal.ogg │ ├── metal.wav │ ├── ripple.aac │ ├── ripple.mp3 │ ├── ripple.ogg │ ├── ripple.wav │ ├── startrek.aac │ ├── startrek.mp3 │ ├── startrek.ogg │ ├── startrek.wav │ ├── whistle.aac │ ├── whistle.mp3 │ ├── whistle.ogg │ ├── whistle.wav │ ├── yoohoo.aac │ ├── yoohoo.mp3 │ ├── yoohoo.ogg │ └── yoohoo.wav ├── localization ├── bg_BG.inc ├── ca_ES.inc ├── cs_CZ.inc ├── da_DK.inc ├── de.inc ├── de_CH.inc ├── de_DE.inc ├── el.inc ├── en_US.inc ├── es_AR.inc ├── es_ES.inc ├── et_EE.inc ├── fi_FI.inc ├── fr_FR.inc ├── hr_HR.inc ├── hu_HU.inc ├── it_IT.inc ├── ja_JP.inc ├── ko_KR.inc ├── lv.inc ├── nl_NL.inc ├── pl.inc ├── pl_PL.inc ├── pt_BR.inc ├── pt_PT.inc ├── ru_RU.inc ├── sk_SK.inc ├── sl_SI.inc ├── sv.inc ├── sv_SE.inc ├── th_TH.inc ├── uk_UA.inc └── zh_CN.inc ├── print.js ├── skins ├── autumn-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── black-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── blue-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── classic │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── elastic │ ├── elastic.css │ ├── elastic.min.css │ ├── libkolab.min.css │ └── templates │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabform.html │ │ └── print.html ├── green-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── grey-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── pink-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── plata-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── summer-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html ├── teal-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ │ ├── attendee-status.png │ │ ├── autocomplete.png │ │ ├── badge_cancelled.png │ │ ├── badge_confidential.png │ │ ├── badge_private.png │ │ ├── calendar.png │ │ ├── calendars.png │ │ ├── eventicons.png │ │ ├── focusview.png │ │ ├── freebusy-colors.png │ │ ├── ical-attachment.png │ │ ├── invitation.png │ │ ├── loading_blue.gif │ │ ├── sendinvitation.png │ │ ├── toggle.gif │ │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ │ ├── attachment.html │ │ ├── calendar.html │ │ ├── dialog.html │ │ ├── eventedit.html │ │ ├── freebusylegend.html │ │ ├── itipattend.html │ │ ├── kolabacl.html │ │ ├── kolabform.html │ │ └── print.html └── violet-larry │ ├── README │ ├── calendar.css │ ├── fullcalendar.css │ ├── iehacks.css │ ├── images │ ├── attendee-status.png │ ├── autocomplete.png │ ├── badge_cancelled.png │ ├── badge_confidential.png │ ├── badge_private.png │ ├── calendar.png │ ├── calendars.png │ ├── eventicons.png │ ├── focusview.png │ ├── freebusy-colors.png │ ├── ical-attachment.png │ ├── invitation.png │ ├── loading_blue.gif │ ├── sendinvitation.png │ ├── toggle.gif │ └── toolbar.png │ ├── print.css │ ├── print.iehacks.css │ └── templates │ ├── attachment.html │ ├── calendar.html │ ├── dialog.html │ ├── eventedit.html │ ├── freebusylegend.html │ ├── itipattend.html │ ├── kolabacl.html │ ├── kolabform.html │ └── print.html └── vendor └── sabre └── vobject └── lib └── DateTimeParser.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .keep.folder 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/README.md -------------------------------------------------------------------------------- /SQL/mssql.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/SQL/mssql.initial.sql -------------------------------------------------------------------------------- /SQL/mssql/.keep.folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQL/mysql.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/SQL/mysql.initial.sql -------------------------------------------------------------------------------- /SQL/mysql/.keep.folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQL/oracle.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/SQL/oracle.initial.sql -------------------------------------------------------------------------------- /SQL/oracle/.keep.folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQL/postgres.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/SQL/postgres.initial.sql -------------------------------------------------------------------------------- /SQL/postgres/.keep.folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQL/sqlite.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/SQL/sqlite.initial.sql -------------------------------------------------------------------------------- /SQL/sqlite/.keep.folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/copyDateTimeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/bin/copyDateTimeParser.php -------------------------------------------------------------------------------- /calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/calendar.php -------------------------------------------------------------------------------- /calendar_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/calendar_base.js -------------------------------------------------------------------------------- /calendar_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/calendar_ui.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/composer.json -------------------------------------------------------------------------------- /config.inc.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/config.inc.php.dist -------------------------------------------------------------------------------- /drivers/caldav/caldav_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/caldav/caldav_driver.php -------------------------------------------------------------------------------- /drivers/caldav/caldav_sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/caldav/caldav_sync.php -------------------------------------------------------------------------------- /drivers/calendar_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/calendar_driver.php -------------------------------------------------------------------------------- /drivers/database/database_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/database/database_driver.php -------------------------------------------------------------------------------- /drivers/ical/ical_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/ical/ical_driver.php -------------------------------------------------------------------------------- /drivers/ical/ical_sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/ical/ical_sync.php -------------------------------------------------------------------------------- /drivers/kolab/SQL/mysql.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/mysql.initial.sql -------------------------------------------------------------------------------- /drivers/kolab/SQL/mysql/2012080600.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/mysql/2012080600.sql -------------------------------------------------------------------------------- /drivers/kolab/SQL/mysql/2013011000.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /drivers/kolab/SQL/mysql/2014041700.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/mysql/2014041700.sql -------------------------------------------------------------------------------- /drivers/kolab/SQL/mysql/2014082600.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/mysql/2014082600.sql -------------------------------------------------------------------------------- /drivers/kolab/SQL/oracle.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/oracle.initial.sql -------------------------------------------------------------------------------- /drivers/kolab/SQL/postgres.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/postgres.initial.sql -------------------------------------------------------------------------------- /drivers/kolab/SQL/sqlite.initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/SQL/sqlite.initial.sql -------------------------------------------------------------------------------- /drivers/kolab/kolab_calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/kolab_calendar.php -------------------------------------------------------------------------------- /drivers/kolab/kolab_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/kolab_driver.php -------------------------------------------------------------------------------- /drivers/kolab/kolab_invitation_calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/kolab_invitation_calendar.php -------------------------------------------------------------------------------- /drivers/kolab/kolab_user_calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/kolab/kolab_user_calendar.php -------------------------------------------------------------------------------- /drivers/ldap/resources_driver_ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/ldap/resources_driver_ldap.php -------------------------------------------------------------------------------- /drivers/resources_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/drivers/resources_driver.php -------------------------------------------------------------------------------- /helpdocs/en_US/_static/_skin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/alarms-popup.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/calendar-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/kolab/calendar-acl.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/calendar-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/kolab/calendar-header.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/calendar-print.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/calendar-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/kolab/calendar-toolbar.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/event-resize.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/itip-invitation.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/en_US/_static/kolab/itip-reply.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/alarms-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/alarms-popup.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/calendar-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/calendar-acl.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/calendar-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/calendar-header.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/calendar-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/calendar-print.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/calendar-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/calendar-toolbar.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/event-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/event-resize.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/itip-invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/itip-invitation.png -------------------------------------------------------------------------------- /helpdocs/en_US/_static/larry/itip-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/_static/larry/itip-reply.png -------------------------------------------------------------------------------- /helpdocs/en_US/importexport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/importexport.rst -------------------------------------------------------------------------------- /helpdocs/en_US/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/index.rst -------------------------------------------------------------------------------- /helpdocs/en_US/invitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/invitations.rst -------------------------------------------------------------------------------- /helpdocs/en_US/manage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/manage.rst -------------------------------------------------------------------------------- /helpdocs/en_US/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/overview.rst -------------------------------------------------------------------------------- /helpdocs/en_US/printing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/printing.rst -------------------------------------------------------------------------------- /helpdocs/en_US/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/settings.rst -------------------------------------------------------------------------------- /helpdocs/en_US/sharing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/en_US/sharing.rst -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ar/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ar/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/bg_BG/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/bg_BG/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ca_ES/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ca_ES/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/cs_CZ/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/cs_CZ/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/da_DK/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/da_DK/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/de/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/de_CH/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_CH/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/de_DE/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/de_DE/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/el/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/el/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/en_RO/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_RO/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/en_US/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/en_US/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/es_AR/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_AR/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/es_ES/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/et_EE/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/et_EE/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/fi_FI/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fi_FI/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_CH/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_CH/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_FR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_FR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_FR/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_FR/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_FR/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_FR/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_FR/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_FR/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/fr_FR/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/fr_FR/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/he/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/he/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/hr/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hr/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/hu_HU/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hu_HU/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/hu_HU/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hu_HU/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/hu_HU/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hu_HU/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/hu_HU/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hu_HU/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/hu_HU/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/hu_HU/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/it_IT/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/it_IT/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/it_IT/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/it_IT/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/it_IT/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/it_IT/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/it_IT/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/it_IT/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/it_IT/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/it_IT/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ja_JP/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ja_JP/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ja_JP/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ja_JP/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ja_JP/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ja_JP/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ja_JP/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ja_JP/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ja_JP/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ja_JP/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ko/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ko_KR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko_KR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ko_KR/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko_KR/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ko_KR/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko_KR/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ko_KR/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko_KR/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ko_KR/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ko_KR/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ku_IQ/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ku_IQ/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ku_IQ/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ku_IQ/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ku_IQ/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ku_IQ/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ku_IQ/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ku_IQ/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ku_IQ/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ku_IQ/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/lv/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/lv/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/nl_NL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/nl_NL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/nl_NL/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/nl_NL/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/nl_NL/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/nl_NL/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/nl_NL/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/nl_NL/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/nl_NL/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/nl_NL/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/pl/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/pl_PL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl_PL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/pl_PL/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/pl_PL/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/pl_PL/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl_PL/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/pl_PL/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pl_PL/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_BR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_BR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_BR/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_BR/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_BR/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_BR/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_BR/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_BR/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_BR/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_BR/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_PT/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_PT/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_PT/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_PT/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_PT/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_PT/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_PT/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_PT/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/pt_PT/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/pt_PT/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ro/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ro/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ro/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ro/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ro/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpdocs/locale/ro/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ro/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/ru_RU/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ru_RU/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/ru_RU/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ru_RU/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/ru_RU/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ru_RU/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/ru_RU/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ru_RU/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/ru_RU/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/ru_RU/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/sk/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sk/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/sl_SI/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sl_SI/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/sl_SI/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sl_SI/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/sl_SI/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sl_SI/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/sl_SI/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sl_SI/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/sl_SI/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sl_SI/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/sv/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/sv_SE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv_SE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/sv_SE/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv_SE/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/sv_SE/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv_SE/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/sv_SE/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv_SE/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/sv_SE/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/sv_SE/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/th_TH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/th_TH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/th_TH/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/th_TH/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/th_TH/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/th_TH/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/th_TH/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/th_TH/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/th_TH/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/th_TH/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/tr/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/tr_TR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr_TR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/tr_TR/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr_TR/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/tr_TR/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr_TR/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/tr_TR/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr_TR/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/tr_TR/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/tr_TR/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/uk/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/uk/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/importexport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/importexport.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/invitations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/invitations.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/vi/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/vi_VN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi_VN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/vi_VN/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi_VN/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/vi_VN/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi_VN/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/vi_VN/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi_VN/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/vi_VN/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/vi_VN/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_CN/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_CN/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_CN/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_CN/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_CN/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_CN/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_CN/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_CN/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_TW/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_TW/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_TW/LC_MESSAGES/manage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_TW/LC_MESSAGES/manage.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_TW/LC_MESSAGES/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_TW/LC_MESSAGES/overview.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_TW/LC_MESSAGES/settings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_TW/LC_MESSAGES/settings.po -------------------------------------------------------------------------------- /helpdocs/locale/zh_TW/LC_MESSAGES/sharing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/locale/zh_TW/LC_MESSAGES/sharing.po -------------------------------------------------------------------------------- /helpdocs/po/importexport.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/importexport.pot -------------------------------------------------------------------------------- /helpdocs/po/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/index.pot -------------------------------------------------------------------------------- /helpdocs/po/invitations.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/invitations.pot -------------------------------------------------------------------------------- /helpdocs/po/manage.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/manage.pot -------------------------------------------------------------------------------- /helpdocs/po/overview.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/overview.pot -------------------------------------------------------------------------------- /helpdocs/po/settings.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/settings.pot -------------------------------------------------------------------------------- /helpdocs/po/sharing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/helpdocs/po/sharing.pot -------------------------------------------------------------------------------- /lib/caldav_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/caldav_client.php -------------------------------------------------------------------------------- /lib/calendar_itip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/calendar_itip.php -------------------------------------------------------------------------------- /lib/calendar_recurrence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/calendar_recurrence.php -------------------------------------------------------------------------------- /lib/calendar_ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/calendar_ui.php -------------------------------------------------------------------------------- /lib/encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/encryption.php -------------------------------------------------------------------------------- /lib/js/fullcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/js/fullcalendar.js -------------------------------------------------------------------------------- /lib/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/js/moment.js -------------------------------------------------------------------------------- /lib/oauth_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/oauth_client.php -------------------------------------------------------------------------------- /lib/oauth_token_storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/oauth_token_storage.php -------------------------------------------------------------------------------- /lib/sounds/_readme: -------------------------------------------------------------------------------- 1 | These are free ringtones from http://www.mobiles24.co. 2 | -------------------------------------------------------------------------------- /lib/sounds/aurora.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/aurora.aac -------------------------------------------------------------------------------- /lib/sounds/aurora.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/aurora.mp3 -------------------------------------------------------------------------------- /lib/sounds/aurora.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/aurora.ogg -------------------------------------------------------------------------------- /lib/sounds/aurora.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/aurora.wav -------------------------------------------------------------------------------- /lib/sounds/bamboo.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bamboo.aac -------------------------------------------------------------------------------- /lib/sounds/bamboo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bamboo.mp3 -------------------------------------------------------------------------------- /lib/sounds/bamboo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bamboo.ogg -------------------------------------------------------------------------------- /lib/sounds/bamboo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bamboo.wav -------------------------------------------------------------------------------- /lib/sounds/bells.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bells.aac -------------------------------------------------------------------------------- /lib/sounds/bells.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bells.mp3 -------------------------------------------------------------------------------- /lib/sounds/bells.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bells.ogg -------------------------------------------------------------------------------- /lib/sounds/bells.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/bells.wav -------------------------------------------------------------------------------- /lib/sounds/chord.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/chord.aac -------------------------------------------------------------------------------- /lib/sounds/chord.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/chord.mp3 -------------------------------------------------------------------------------- /lib/sounds/chord.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/chord.ogg -------------------------------------------------------------------------------- /lib/sounds/chord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/chord.wav -------------------------------------------------------------------------------- /lib/sounds/circles.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/circles.aac -------------------------------------------------------------------------------- /lib/sounds/circles.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/circles.mp3 -------------------------------------------------------------------------------- /lib/sounds/circles.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/circles.ogg -------------------------------------------------------------------------------- /lib/sounds/circles.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/circles.wav -------------------------------------------------------------------------------- /lib/sounds/glass.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/glass.aac -------------------------------------------------------------------------------- /lib/sounds/glass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/glass.mp3 -------------------------------------------------------------------------------- /lib/sounds/glass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/glass.ogg -------------------------------------------------------------------------------- /lib/sounds/glass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/glass.wav -------------------------------------------------------------------------------- /lib/sounds/maramba.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/maramba.aac -------------------------------------------------------------------------------- /lib/sounds/maramba.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/maramba.mp3 -------------------------------------------------------------------------------- /lib/sounds/maramba.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/maramba.ogg -------------------------------------------------------------------------------- /lib/sounds/maramba.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/maramba.wav -------------------------------------------------------------------------------- /lib/sounds/metal.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/metal.aac -------------------------------------------------------------------------------- /lib/sounds/metal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/metal.mp3 -------------------------------------------------------------------------------- /lib/sounds/metal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/metal.ogg -------------------------------------------------------------------------------- /lib/sounds/metal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/metal.wav -------------------------------------------------------------------------------- /lib/sounds/ripple.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/ripple.aac -------------------------------------------------------------------------------- /lib/sounds/ripple.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/ripple.mp3 -------------------------------------------------------------------------------- /lib/sounds/ripple.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/ripple.ogg -------------------------------------------------------------------------------- /lib/sounds/ripple.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/ripple.wav -------------------------------------------------------------------------------- /lib/sounds/startrek.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/startrek.aac -------------------------------------------------------------------------------- /lib/sounds/startrek.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/startrek.mp3 -------------------------------------------------------------------------------- /lib/sounds/startrek.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/startrek.ogg -------------------------------------------------------------------------------- /lib/sounds/startrek.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/startrek.wav -------------------------------------------------------------------------------- /lib/sounds/whistle.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/whistle.aac -------------------------------------------------------------------------------- /lib/sounds/whistle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/whistle.mp3 -------------------------------------------------------------------------------- /lib/sounds/whistle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/whistle.ogg -------------------------------------------------------------------------------- /lib/sounds/whistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/whistle.wav -------------------------------------------------------------------------------- /lib/sounds/yoohoo.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/yoohoo.aac -------------------------------------------------------------------------------- /lib/sounds/yoohoo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/yoohoo.mp3 -------------------------------------------------------------------------------- /lib/sounds/yoohoo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/yoohoo.ogg -------------------------------------------------------------------------------- /lib/sounds/yoohoo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/lib/sounds/yoohoo.wav -------------------------------------------------------------------------------- /localization/bg_BG.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/bg_BG.inc -------------------------------------------------------------------------------- /localization/ca_ES.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/ca_ES.inc -------------------------------------------------------------------------------- /localization/cs_CZ.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/cs_CZ.inc -------------------------------------------------------------------------------- /localization/da_DK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/da_DK.inc -------------------------------------------------------------------------------- /localization/de.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/de.inc -------------------------------------------------------------------------------- /localization/de_CH.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/de_CH.inc -------------------------------------------------------------------------------- /localization/de_DE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/de_DE.inc -------------------------------------------------------------------------------- /localization/el.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/el.inc -------------------------------------------------------------------------------- /localization/en_US.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/en_US.inc -------------------------------------------------------------------------------- /localization/es_AR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/es_AR.inc -------------------------------------------------------------------------------- /localization/es_ES.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/es_ES.inc -------------------------------------------------------------------------------- /localization/et_EE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/et_EE.inc -------------------------------------------------------------------------------- /localization/fi_FI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/fi_FI.inc -------------------------------------------------------------------------------- /localization/fr_FR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/fr_FR.inc -------------------------------------------------------------------------------- /localization/hr_HR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/hr_HR.inc -------------------------------------------------------------------------------- /localization/hu_HU.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/hu_HU.inc -------------------------------------------------------------------------------- /localization/it_IT.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/it_IT.inc -------------------------------------------------------------------------------- /localization/ja_JP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/ja_JP.inc -------------------------------------------------------------------------------- /localization/ko_KR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/ko_KR.inc -------------------------------------------------------------------------------- /localization/lv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/lv.inc -------------------------------------------------------------------------------- /localization/nl_NL.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/nl_NL.inc -------------------------------------------------------------------------------- /localization/pl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/pl.inc -------------------------------------------------------------------------------- /localization/pl_PL.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/pl_PL.inc -------------------------------------------------------------------------------- /localization/pt_BR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/pt_BR.inc -------------------------------------------------------------------------------- /localization/pt_PT.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/pt_PT.inc -------------------------------------------------------------------------------- /localization/ru_RU.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/ru_RU.inc -------------------------------------------------------------------------------- /localization/sk_SK.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/sk_SK.inc -------------------------------------------------------------------------------- /localization/sl_SI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/sl_SI.inc -------------------------------------------------------------------------------- /localization/sv.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/sv.inc -------------------------------------------------------------------------------- /localization/sv_SE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/sv_SE.inc -------------------------------------------------------------------------------- /localization/th_TH.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/th_TH.inc -------------------------------------------------------------------------------- /localization/uk_UA.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/uk_UA.inc -------------------------------------------------------------------------------- /localization/zh_CN.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/localization/zh_CN.inc -------------------------------------------------------------------------------- /print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/print.js -------------------------------------------------------------------------------- /skins/autumn-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/README -------------------------------------------------------------------------------- /skins/autumn-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/calendar.css -------------------------------------------------------------------------------- /skins/autumn-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/autumn-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/iehacks.css -------------------------------------------------------------------------------- /skins/autumn-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/autumn-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/autumn-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/autumn-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/print.css -------------------------------------------------------------------------------- /skins/autumn-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/autumn-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/autumn-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/autumn-larry/templates/print.html -------------------------------------------------------------------------------- /skins/black-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/README -------------------------------------------------------------------------------- /skins/black-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/calendar.css -------------------------------------------------------------------------------- /skins/black-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/black-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/iehacks.css -------------------------------------------------------------------------------- /skins/black-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/black-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/black-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/black-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/black-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/black-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/black-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/black-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/black-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/black-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/black-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/black-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/black-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/black-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/black-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/black-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/print.css -------------------------------------------------------------------------------- /skins/black-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/black-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/black-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/black-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/black-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/black-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/black-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/black-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/black-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/black-larry/templates/print.html -------------------------------------------------------------------------------- /skins/blue-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/README -------------------------------------------------------------------------------- /skins/blue-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/calendar.css -------------------------------------------------------------------------------- /skins/blue-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/blue-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/iehacks.css -------------------------------------------------------------------------------- /skins/blue-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/blue-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/blue-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/blue-larry/images/badge_confidential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/badge_confidential.png -------------------------------------------------------------------------------- /skins/blue-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/blue-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/blue-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/blue-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/blue-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/blue-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/blue-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/blue-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/blue-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/blue-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/blue-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/blue-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/blue-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/print.css -------------------------------------------------------------------------------- /skins/blue-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/blue-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/blue-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/blue-larry/templates/print.html -------------------------------------------------------------------------------- /skins/classic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/README -------------------------------------------------------------------------------- /skins/classic/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/calendar.css -------------------------------------------------------------------------------- /skins/classic/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/fullcalendar.css -------------------------------------------------------------------------------- /skins/classic/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/iehacks.css -------------------------------------------------------------------------------- /skins/classic/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/attendee-status.png -------------------------------------------------------------------------------- /skins/classic/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/autocomplete.png -------------------------------------------------------------------------------- /skins/classic/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/classic/images/badge_confidential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/badge_confidential.png -------------------------------------------------------------------------------- /skins/classic/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/badge_private.png -------------------------------------------------------------------------------- /skins/classic/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/calendar.png -------------------------------------------------------------------------------- /skins/classic/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/calendars.png -------------------------------------------------------------------------------- /skins/classic/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/eventicons.png -------------------------------------------------------------------------------- /skins/classic/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/focusview.png -------------------------------------------------------------------------------- /skins/classic/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/classic/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/classic/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/invitation.png -------------------------------------------------------------------------------- /skins/classic/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/classic/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/classic/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/toggle.gif -------------------------------------------------------------------------------- /skins/classic/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/images/toolbar.png -------------------------------------------------------------------------------- /skins/classic/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/print.css -------------------------------------------------------------------------------- /skins/classic/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/print.iehacks.css -------------------------------------------------------------------------------- /skins/classic/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/attachment.html -------------------------------------------------------------------------------- /skins/classic/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/calendar.html -------------------------------------------------------------------------------- /skins/classic/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/dialog.html -------------------------------------------------------------------------------- /skins/classic/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/eventedit.html -------------------------------------------------------------------------------- /skins/classic/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/classic/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/itipattend.html -------------------------------------------------------------------------------- /skins/classic/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/classic/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/kolabform.html -------------------------------------------------------------------------------- /skins/classic/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/classic/templates/print.html -------------------------------------------------------------------------------- /skins/elastic/elastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/elastic.css -------------------------------------------------------------------------------- /skins/elastic/elastic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/elastic.min.css -------------------------------------------------------------------------------- /skins/elastic/libkolab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/libkolab.min.css -------------------------------------------------------------------------------- /skins/elastic/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/calendar.html -------------------------------------------------------------------------------- /skins/elastic/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/dialog.html -------------------------------------------------------------------------------- /skins/elastic/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/eventedit.html -------------------------------------------------------------------------------- /skins/elastic/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/elastic/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/itipattend.html -------------------------------------------------------------------------------- /skins/elastic/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/kolabform.html -------------------------------------------------------------------------------- /skins/elastic/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/elastic/templates/print.html -------------------------------------------------------------------------------- /skins/green-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/README -------------------------------------------------------------------------------- /skins/green-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/calendar.css -------------------------------------------------------------------------------- /skins/green-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/green-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/iehacks.css -------------------------------------------------------------------------------- /skins/green-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/green-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/green-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/green-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/green-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/green-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/green-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/green-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/green-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/green-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/green-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/green-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/green-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/green-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/green-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/green-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/print.css -------------------------------------------------------------------------------- /skins/green-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/green-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/green-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/green-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/green-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/green-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/green-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/green-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/green-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/green-larry/templates/print.html -------------------------------------------------------------------------------- /skins/grey-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/README -------------------------------------------------------------------------------- /skins/grey-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/calendar.css -------------------------------------------------------------------------------- /skins/grey-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/grey-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/iehacks.css -------------------------------------------------------------------------------- /skins/grey-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/grey-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/grey-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/grey-larry/images/badge_confidential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/badge_confidential.png -------------------------------------------------------------------------------- /skins/grey-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/grey-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/grey-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/grey-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/grey-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/grey-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/grey-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/grey-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/grey-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/grey-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/grey-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/grey-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/grey-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/print.css -------------------------------------------------------------------------------- /skins/grey-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/grey-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/grey-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/grey-larry/templates/print.html -------------------------------------------------------------------------------- /skins/larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/README -------------------------------------------------------------------------------- /skins/larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/calendar.css -------------------------------------------------------------------------------- /skins/larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/iehacks.css -------------------------------------------------------------------------------- /skins/larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/larry/images/badge_confidential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/badge_confidential.png -------------------------------------------------------------------------------- /skins/larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/calendar.png -------------------------------------------------------------------------------- /skins/larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/calendars.png -------------------------------------------------------------------------------- /skins/larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/focusview.png -------------------------------------------------------------------------------- /skins/larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/invitation.png -------------------------------------------------------------------------------- /skins/larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/print.css -------------------------------------------------------------------------------- /skins/larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/larry/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/larry/templates/print.html -------------------------------------------------------------------------------- /skins/pink-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/README -------------------------------------------------------------------------------- /skins/pink-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/calendar.css -------------------------------------------------------------------------------- /skins/pink-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/pink-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/iehacks.css -------------------------------------------------------------------------------- /skins/pink-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/pink-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/pink-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/pink-larry/images/badge_confidential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/badge_confidential.png -------------------------------------------------------------------------------- /skins/pink-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/pink-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/pink-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/pink-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/pink-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/pink-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/pink-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/pink-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/pink-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/pink-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/pink-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/pink-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/pink-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/print.css -------------------------------------------------------------------------------- /skins/pink-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/pink-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/pink-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/pink-larry/templates/print.html -------------------------------------------------------------------------------- /skins/plata-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/README -------------------------------------------------------------------------------- /skins/plata-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/calendar.css -------------------------------------------------------------------------------- /skins/plata-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/plata-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/iehacks.css -------------------------------------------------------------------------------- /skins/plata-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/plata-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/plata-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/plata-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/plata-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/plata-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/plata-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/plata-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/plata-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/plata-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/plata-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/plata-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/plata-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/plata-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/plata-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/plata-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/print.css -------------------------------------------------------------------------------- /skins/plata-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/plata-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/plata-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/plata-larry/templates/print.html -------------------------------------------------------------------------------- /skins/summer-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/README -------------------------------------------------------------------------------- /skins/summer-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/calendar.css -------------------------------------------------------------------------------- /skins/summer-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/summer-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/iehacks.css -------------------------------------------------------------------------------- /skins/summer-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/summer-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/summer-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/summer-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/summer-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/summer-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/summer-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/summer-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/summer-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/summer-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/summer-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/summer-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/summer-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/summer-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/summer-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/summer-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/print.css -------------------------------------------------------------------------------- /skins/summer-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/summer-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/summer-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/summer-larry/templates/print.html -------------------------------------------------------------------------------- /skins/teal-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/README -------------------------------------------------------------------------------- /skins/teal-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/calendar.css -------------------------------------------------------------------------------- /skins/teal-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/teal-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/iehacks.css -------------------------------------------------------------------------------- /skins/teal-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/teal-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/teal-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/teal-larry/images/badge_confidential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/badge_confidential.png -------------------------------------------------------------------------------- /skins/teal-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/teal-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/teal-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/teal-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/teal-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/teal-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/teal-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/teal-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/teal-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/teal-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/teal-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/teal-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/teal-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/print.css -------------------------------------------------------------------------------- /skins/teal-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/teal-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/freebusylegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/freebusylegend.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/teal-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/teal-larry/templates/print.html -------------------------------------------------------------------------------- /skins/violet-larry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/README -------------------------------------------------------------------------------- /skins/violet-larry/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/calendar.css -------------------------------------------------------------------------------- /skins/violet-larry/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/fullcalendar.css -------------------------------------------------------------------------------- /skins/violet-larry/iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/iehacks.css -------------------------------------------------------------------------------- /skins/violet-larry/images/attendee-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/attendee-status.png -------------------------------------------------------------------------------- /skins/violet-larry/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/autocomplete.png -------------------------------------------------------------------------------- /skins/violet-larry/images/badge_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/badge_cancelled.png -------------------------------------------------------------------------------- /skins/violet-larry/images/badge_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/badge_private.png -------------------------------------------------------------------------------- /skins/violet-larry/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/calendar.png -------------------------------------------------------------------------------- /skins/violet-larry/images/calendars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/calendars.png -------------------------------------------------------------------------------- /skins/violet-larry/images/eventicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/eventicons.png -------------------------------------------------------------------------------- /skins/violet-larry/images/focusview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/focusview.png -------------------------------------------------------------------------------- /skins/violet-larry/images/freebusy-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/freebusy-colors.png -------------------------------------------------------------------------------- /skins/violet-larry/images/ical-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/ical-attachment.png -------------------------------------------------------------------------------- /skins/violet-larry/images/invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/invitation.png -------------------------------------------------------------------------------- /skins/violet-larry/images/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/loading_blue.gif -------------------------------------------------------------------------------- /skins/violet-larry/images/sendinvitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/sendinvitation.png -------------------------------------------------------------------------------- /skins/violet-larry/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/toggle.gif -------------------------------------------------------------------------------- /skins/violet-larry/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/images/toolbar.png -------------------------------------------------------------------------------- /skins/violet-larry/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/print.css -------------------------------------------------------------------------------- /skins/violet-larry/print.iehacks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/print.iehacks.css -------------------------------------------------------------------------------- /skins/violet-larry/templates/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/attachment.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/calendar.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/dialog.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/eventedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/eventedit.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/itipattend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/itipattend.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/kolabacl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/kolabacl.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/kolabform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/kolabform.html -------------------------------------------------------------------------------- /skins/violet-larry/templates/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/skins/violet-larry/templates/print.html -------------------------------------------------------------------------------- /vendor/sabre/vobject/lib/DateTimeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/old_calendar/HEAD/vendor/sabre/vobject/lib/DateTimeParser.php --------------------------------------------------------------------------------