Version Description
(2015-05-16) = * fixed allowed daterange for datepicker with custom date formats * added option to disable event-list.css * added option to set considered daterange for multiday event
Download this release
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.7.4 |
Comparing to | |
See all releases |
Code changes from version 0.7.3 to 0.7.4
- admin/includes/admin-about.php +1 -1
- admin/includes/admin-categories.php +1 -1
- admin/includes/admin-main.php +1 -1
- admin/includes/admin-new.php +1 -1
- admin/includes/admin-settings.php +5 -4
- admin/js/admin_new.js +4 -4
- event-list.php +6 -3
- includes/db.php +2 -1
- includes/options.php +20 -17
- includes/options_helptexts.php +112 -98
- languages/event-list-de_DE.mo +0 -0
- languages/event-list-de_DE.po +102 -61
- languages/event-list.pot +84 -51
- readme.txt +6 -1
admin/includes/admin-about.php
CHANGED
@@ -28,7 +28,7 @@ class EL_Admin_About {
|
|
28 |
|
29 |
public function show_about() {
|
30 |
if(!current_user_can('edit_posts')) {
|
31 |
-
wp_die(__('You do not have sufficient permissions to access this page.'
|
32 |
}
|
33 |
echo '<div class="wrap">
|
34 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>
|
28 |
|
29 |
public function show_about() {
|
30 |
if(!current_user_can('edit_posts')) {
|
31 |
+
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
33 |
echo '<div class="wrap">
|
34 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>
|
admin/includes/admin-categories.php
CHANGED
@@ -35,7 +35,7 @@ class EL_Admin_Categories {
|
|
35 |
|
36 |
public function show_categories () {
|
37 |
if(!current_user_can('manage_categories')) {
|
38 |
-
wp_die(__('You do not have sufficient permissions to access this page.'
|
39 |
}
|
40 |
$out = '';
|
41 |
|
35 |
|
36 |
public function show_categories () {
|
37 |
if(!current_user_can('manage_categories')) {
|
38 |
+
wp_die(__('You do not have sufficient permissions to access this page.'));
|
39 |
}
|
40 |
$out = '';
|
41 |
|
admin/includes/admin-main.php
CHANGED
@@ -66,7 +66,7 @@ class EL_Admin_Main {
|
|
66 |
public function show_main() {
|
67 |
// check permissions
|
68 |
if(!current_user_can('edit_posts')) {
|
69 |
-
wp_die(__('You do not have sufficient permissions to access this page.'
|
70 |
}
|
71 |
// TODO: add check_admin_referer to improve security (see /wp-admin/edit.php)
|
72 |
// is there POST data an event was edited must be updated
|
66 |
public function show_main() {
|
67 |
// check permissions
|
68 |
if(!current_user_can('edit_posts')) {
|
69 |
+
wp_die(__('You do not have sufficient permissions to access this page.'));
|
70 |
}
|
71 |
// TODO: add check_admin_referer to improve security (see /wp-admin/edit.php)
|
72 |
// is there POST data an event was edited must be updated
|
admin/includes/admin-new.php
CHANGED
@@ -35,7 +35,7 @@ class EL_Admin_New {
|
|
35 |
|
36 |
public function show_new() {
|
37 |
if(!current_user_can('edit_posts')) {
|
38 |
-
wp_die(__('You do not have sufficient permissions to access this page.'
|
39 |
}
|
40 |
$out = '<div class="wrap">
|
41 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Add New Event','event-list').'</h2>';
|
35 |
|
36 |
public function show_new() {
|
37 |
if(!current_user_can('edit_posts')) {
|
38 |
+
wp_die(__('You do not have sufficient permissions to access this page.'));
|
39 |
}
|
40 |
$out = '<div class="wrap">
|
41 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Add New Event','event-list').'</h2>';
|
admin/includes/admin-settings.php
CHANGED
@@ -29,7 +29,7 @@ class EL_Admin_Settings {
|
|
29 |
|
30 |
public function show_settings () {
|
31 |
if(!current_user_can('manage_options')) {
|
32 |
-
wp_die(__('You do not have sufficient permissions to access this page.'
|
33 |
}
|
34 |
$out = '';
|
35 |
if(!isset($_GET['tab'])) {
|
@@ -66,9 +66,10 @@ class EL_Admin_Settings {
|
|
66 |
}
|
67 |
*/
|
68 |
private function show_tabs($current = 'category') {
|
69 |
-
$tabs = array('general'
|
70 |
-
'
|
71 |
-
'
|
|
|
72 |
$out = '<h3 class="nav-tab-wrapper">';
|
73 |
foreach($tabs as $tab => $name){
|
74 |
$class = ($tab == $current) ? ' nav-tab-active' : '';
|
29 |
|
30 |
public function show_settings () {
|
31 |
if(!current_user_can('manage_options')) {
|
32 |
+
wp_die(__('You do not have sufficient permissions to access this page.'));
|
33 |
}
|
34 |
$out = '';
|
35 |
if(!isset($_GET['tab'])) {
|
66 |
}
|
67 |
*/
|
68 |
private function show_tabs($current = 'category') {
|
69 |
+
$tabs = array('general' => __('General','event-list'),
|
70 |
+
'frontend' => __('Frontend Settings','event-list'),
|
71 |
+
'admin' => __('Admin Page Settings','event-list'),
|
72 |
+
'feed' => __('Feed Settings','event-list'));
|
73 |
$out = '<h3 class="nav-tab-wrapper">';
|
74 |
foreach($tabs as $tab => $name){
|
75 |
$class = ($tab == $current) ? ' nav-tab-active' : '';
|
admin/js/admin_new.js
CHANGED
@@ -27,8 +27,8 @@ jQuery(document).ready(function($) {
|
|
27 |
constrainInput: true,
|
28 |
altField: "#sql_start_date",
|
29 |
altFormat: "yy-mm-dd",
|
30 |
-
minDate: "1970-01-01",
|
31 |
-
maxDate: "2999-12-31",
|
32 |
onClose: function(selectedDate) {
|
33 |
// set minDate for end_date picker
|
34 |
minDate = $.datepicker.parseDate( conf.el_date_format, selectedDate );
|
@@ -48,8 +48,8 @@ jQuery(document).ready(function($) {
|
|
48 |
constrainInput: true,
|
49 |
altField: "#sql_end_date",
|
50 |
altFormat: "yy-mm-dd",
|
51 |
-
minDate: "1970-01-01",
|
52 |
-
maxDate: "2999-12-31",
|
53 |
});
|
54 |
|
55 |
// Toogle end_date visibility and insert the correct date
|
27 |
constrainInput: true,
|
28 |
altField: "#sql_start_date",
|
29 |
altFormat: "yy-mm-dd",
|
30 |
+
minDate: $.datepicker.parseDate('yy-mm-dd', "1970-01-01"),
|
31 |
+
maxDate: $.datepicker.parseDate('yy-mm-dd', "2999-12-31"),
|
32 |
onClose: function(selectedDate) {
|
33 |
// set minDate for end_date picker
|
34 |
minDate = $.datepicker.parseDate( conf.el_date_format, selectedDate );
|
48 |
constrainInput: true,
|
49 |
altField: "#sql_end_date",
|
50 |
altFormat: "yy-mm-dd",
|
51 |
+
minDate: $.datepicker.parseDate('yy-mm-dd', "1970-01-01"),
|
52 |
+
maxDate: $.datepicker.parseDate('yy-mm-dd', "2999-12-31"),
|
53 |
});
|
54 |
|
55 |
// Toogle end_date visibility and insert the correct date
|
event-list.php
CHANGED
@@ -3,9 +3,10 @@
|
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
-
Version: 0.7.
|
7 |
Author: Michael Burtscher
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
|
|
9 |
License: GPLv2
|
10 |
|
11 |
A plugin for the blogging MySQL/PHP-based WordPress.
|
@@ -112,8 +113,10 @@ class Event_List {
|
|
112 |
}
|
113 |
|
114 |
public function enqueue_styles() {
|
115 |
-
|
116 |
-
|
|
|
|
|
117 |
$this->styles_loaded = true;
|
118 |
}
|
119 |
} // end class linkview
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
+
Version: 0.7.4
|
7 |
Author: Michael Burtscher
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
+
Text Domain: event-list
|
10 |
License: GPLv2
|
11 |
|
12 |
A plugin for the blogging MySQL/PHP-based WordPress.
|
113 |
}
|
114 |
|
115 |
public function enqueue_styles() {
|
116 |
+
if('' == $this->options->get('el_disable_css_file')) {
|
117 |
+
wp_register_style('event-list', EL_URL.'includes/css/event-list.css');
|
118 |
+
wp_enqueue_style('event-list');
|
119 |
+
}
|
120 |
$this->styles_loaded = true;
|
121 |
}
|
122 |
} // end class linkview
|
includes/db.php
CHANGED
@@ -264,7 +264,8 @@ class EL_Db {
|
|
264 |
//set to standard (upcoming)
|
265 |
$range = $this->daterange->get_date_range($element, $this->options->daterange_formats['upcoming']);
|
266 |
}
|
267 |
-
|
|
|
268 |
}
|
269 |
|
270 |
private function sql_cat_filter ($element) {
|
264 |
//set to standard (upcoming)
|
265 |
$range = $this->daterange->get_date_range($element, $this->options->daterange_formats['upcoming']);
|
266 |
}
|
267 |
+
$date_for_startrange = ('' == $this->options->get('el_multiday_filterrange')) ? 'start_date' : 'end_date';
|
268 |
+
return '('.$date_for_startrange.' >= "'.$range[0].'" AND start_date <= "'.$range[1].'")';
|
269 |
}
|
270 |
|
271 |
private function sql_cat_filter ($element) {
|
includes/options.php
CHANGED
@@ -27,27 +27,30 @@ class EL_Options {
|
|
27 |
|
28 |
public function init_options() {
|
29 |
$this->options = array(
|
30 |
-
'el_db_version'
|
31 |
|
32 |
-
'el_categories'
|
33 |
-
'el_sync_cats'
|
34 |
|
35 |
-
'el_no_event_text'
|
36 |
-
'
|
37 |
-
'
|
38 |
-
'
|
|
|
39 |
|
40 |
-
'
|
41 |
|
42 |
-
'
|
43 |
-
|
44 |
-
'
|
45 |
-
'
|
46 |
-
'
|
47 |
-
'
|
48 |
-
'
|
49 |
-
'
|
50 |
-
'
|
|
|
|
|
51 |
);
|
52 |
}
|
53 |
|
27 |
|
28 |
public function init_options() {
|
29 |
$this->options = array(
|
30 |
+
'el_db_version' => array('std_val' => '', 'section' => 'system'),
|
31 |
|
32 |
+
'el_categories' => array('std_val' => null, 'section' => 'categories'),
|
33 |
+
'el_sync_cats' => array('std_val' => '', 'section' => 'categories'),
|
34 |
|
35 |
+
'el_no_event_text' => array('std_val' => 'no event', 'section' => 'general'),
|
36 |
+
'el_multiday_filterrange' => array('std_val' => '1', 'section' => 'general'),
|
37 |
+
'el_date_once_per_day' => array('std_val' => '', 'section' => 'general'),
|
38 |
+
'el_html_tags_in_time' => array('std_val' => '', 'section' => 'general'),
|
39 |
+
'el_html_tags_in_loc' => array('std_val' => '', 'section' => 'general'),
|
40 |
|
41 |
+
'el_disable_css_file' => array('std_val' => '', 'section' => 'frontend'),
|
42 |
|
43 |
+
'el_edit_dateformat' => array('std_val' => '', 'section' => 'admin'),
|
44 |
+
|
45 |
+
'el_enable_feed' => array('std_val' => '', 'section' => 'feed'),
|
46 |
+
'el_feed_name' => array('std_val' => 'event-list', 'section' => 'feed'),
|
47 |
+
'el_feed_description' => array('std_val' => 'Eventlist Feed', 'section' => 'feed'),
|
48 |
+
'el_feed_upcoming_only' => array('std_val' => '', 'section' => 'feed'),
|
49 |
+
'el_head_feed_link' => array('std_val' => '1', 'section' => 'feed'),
|
50 |
+
'el_feed_link_pos' => array('std_val' => 'bottom', 'section' => 'feed'),
|
51 |
+
'el_feed_link_align' => array('std_val' => 'left', 'section' => 'feed'),
|
52 |
+
'el_feed_link_text' => array('std_val' => 'RSS Feed', 'section' => 'feed'),
|
53 |
+
'el_feed_link_img' => array('std_val' => '1', 'section' => 'feed'),
|
54 |
);
|
55 |
}
|
56 |
|
includes/options_helptexts.php
CHANGED
@@ -5,112 +5,126 @@ if(!defined('WPINC')) {
|
|
5 |
|
6 |
$options_helptexts = array(
|
7 |
// Section: "system"
|
8 |
-
'el_db_version'
|
9 |
|
10 |
// Section: "categories"
|
11 |
-
'el_categories'
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
|
16 |
-
'el_sync_cats'
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
|
22 |
// Section: "general"
|
23 |
-
'el_no_event_text'
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
'
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
// Section: "admin"
|
45 |
-
'el_edit_dateformat'
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
|
51 |
// Section: "feed"
|
52 |
-
'el_enable_feed'
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
'el_feed_name'
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
'el_feed_description'
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
'el_feed_upcoming_only'
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
'el_head_feed_link'
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
'el_feed_link_pos'
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
'el_feed_link_align'
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
'el_feed_link_text'
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
'el_feed_link_img'
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
);
|
116 |
?>
|
5 |
|
6 |
$options_helptexts = array(
|
7 |
// Section: "system"
|
8 |
+
'el_db_version' => array('type' => 'text'),
|
9 |
|
10 |
// Section: "categories"
|
11 |
+
'el_categories' => array('type' => 'category',
|
12 |
+
'label' => __('Event Categories','event-list'),
|
13 |
+
'caption' => '',
|
14 |
+
'desc' => __('This option specifies all event category data.','event-list')),
|
15 |
|
16 |
+
'el_sync_cats' => array('type' => 'checkbox',
|
17 |
+
'label' => __('Sync Categories','event-list'),
|
18 |
+
'caption' => __('Keep event categories in sync with post categories automatically','event-list'),
|
19 |
+
'desc' => '<table><tr style="vertical-align:top"><td><strong>'.__('Attention','event-list').':</strong></td>
|
20 |
+
<td>'.__('Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated.','event-list').'</td></tr></table>'),
|
21 |
|
22 |
// Section: "general"
|
23 |
+
'el_no_event_text' => array('type' => 'text',
|
24 |
+
'label' => __('Text for no events','event-list'),
|
25 |
+
'caption' => '',
|
26 |
+
'desc' => __('This option defines the text which is displayed if no events are available for the selected view.','event-list')),
|
27 |
+
|
28 |
+
'el_multiday_filterrange' => array('type' => 'checkbox',
|
29 |
+
'label' => __('Multiday filter range','event-list'),
|
30 |
+
'caption' => __('Use complete range in date filter'),
|
31 |
+
'desc' => __('This option defines if the complete range of a multiday event shall be considered in the date filter.<br />
|
32 |
+
If disabled only the start day of an event is considered in the filter.<br />
|
33 |
+
For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.','event-list')),
|
34 |
+
|
35 |
+
'el_date_once_per_day' => array('type' => 'checkbox',
|
36 |
+
'label' => __('Date display','event-list'),
|
37 |
+
'caption' => __('Show date only once per day','event-list'),
|
38 |
+
'desc' => __('With this option you can display the date only once per day if multiple events are available on the same day.<br />
|
39 |
+
If this option is enabled the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible.')),
|
40 |
+
|
41 |
+
'el_html_tags_in_time' => array('type' => 'checkbox',
|
42 |
+
'label' => __('HTML tags','event-list'),
|
43 |
+
'caption' => __('Allow HTML tags in event time field','event-list'),
|
44 |
+
'desc' => __('This option specifies if HTML tags are allowed in the event start time field.','event-list')),
|
45 |
+
|
46 |
+
'el_html_tags_in_loc' => array('type' => 'checkbox',
|
47 |
+
'label' => '',
|
48 |
+
'caption' => __('Allow HTML tags in event location field','event-list'),
|
49 |
+
'desc' => __('This option specifies if HTML tags are allowed in the event location field.','event-list')),
|
50 |
+
|
51 |
+
// Section: "frontend"
|
52 |
+
'el_disable_css_file' => array('type' => 'checkbox',
|
53 |
+
'label' => __('Disable CSS file'),
|
54 |
+
'caption' => __('Disable the "event-list.css" file.'),
|
55 |
+
'desc' => __('With this option you can disable the inclusion of the "event-list.css" file.<br />
|
56 |
+
This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css).')),
|
57 |
|
58 |
// Section: "admin"
|
59 |
+
'el_edit_dateformat' => array('type' => 'text',
|
60 |
+
'label' => __('Date format in edit form','event-list'),
|
61 |
+
'desc' => __('This option sets a specific date format for the event date fields in the new/edit event form.<br />
|
62 |
+
The standard is an empty string to use the wordpress standard setting.<br />
|
63 |
+
All available options to specify the format can be found <a href="http://php.net/manual/en/function.date.php" target="_blank">here</a>')),
|
64 |
|
65 |
// Section: "feed"
|
66 |
+
'el_enable_feed' => array('type' => 'checkbox',
|
67 |
+
'label' => __('Enable RSS feed','event-list'),
|
68 |
+
'caption' => __('Enable support for an event RSS feed','event-list'),
|
69 |
+
'desc' => __('This option activates a RSS feed for the events.<br />
|
70 |
+
You have to enable this option if you want to use one of the RSS feed features.')),
|
71 |
+
|
72 |
+
'el_feed_name' => array('type' => 'text',
|
73 |
+
'label' => __('Feed name','event-list'),
|
74 |
+
'desc' => __('This options sets the feed name. The standard value is "event-list".<br />
|
75 |
+
This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks')),
|
76 |
+
|
77 |
+
'el_feed_description' => array('section' => 'feed',
|
78 |
+
'type' => 'text',
|
79 |
+
'label' => __('Feed Description','event-list'),
|
80 |
+
'desc' => __('This options sets the feed description. The standard value is "Eventlist Feed".<br />
|
81 |
+
This description will be used in the title for the feed link in the html head and for the description in the feed itself.')),
|
82 |
+
|
83 |
+
'el_feed_upcoming_only' => array('section' => 'feed',
|
84 |
+
'type' => 'checkbox',
|
85 |
+
'label' => __('Listed events','event-list'),
|
86 |
+
'caption' => __('Only show upcoming events in feed','event-list'),
|
87 |
+
'desc' => __('If this option is enabled only the upcoming events are listed in the feed.<br />
|
88 |
+
If disabled all events (upcoming and past) will be listed.')),
|
89 |
+
|
90 |
+
'el_head_feed_link' => array('section' => 'feed',
|
91 |
+
'type' => 'checkbox',
|
92 |
+
'label' => __('Add RSS feed link in head','event-list'),
|
93 |
+
'caption' => __('Add RSS feed link in the html head','event-list'),
|
94 |
+
'desc' => __('This option adds a RSS feed in the html head for the events.<br />
|
95 |
+
You have 2 possibilities to include the RSS feed:<br />
|
96 |
+
The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />
|
97 |
+
The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute "add_feed_link" to "true"<br />
|
98 |
+
This option is only valid if the option "Enable RSS feed" is enabled.')),
|
99 |
+
|
100 |
+
'el_feed_link_pos' => array('section' => 'feed',
|
101 |
+
'type' => 'radio',
|
102 |
+
'label' => __('Position of the RSS feed link','event-list'),
|
103 |
+
'caption' => array('top' => 'at the top (above the navigation bar)', 'below_nav' => 'between navigation bar and events', 'bottom' => 'at the bottom'),
|
104 |
+
'desc' => __('This option specifies the position of the RSS feed link in the event list.<br />
|
105 |
+
The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />
|
106 |
+
You have to set the shortcode attribute "add_feed_link" to "true" if you want to show the feed link.')),
|
107 |
+
|
108 |
+
'el_feed_link_align' => array('section' => 'feed',
|
109 |
+
'type' => 'radio',
|
110 |
+
'label' => __('Align of the RSS feed link','event-list'),
|
111 |
+
'caption' => array('left' => 'left', 'center' => 'center', 'right' => 'right'),
|
112 |
+
'desc' => __('This option specifies the align of the RSS feed link in the event list.<br />
|
113 |
+
The link can be displayed on the left side, centered or on the right.<br />
|
114 |
+
You have to set the shortcode attribute "add_feed_link" to "true" if you want to show the feed link.')),
|
115 |
+
|
116 |
+
'el_feed_link_text' => array('section' => 'feed',
|
117 |
+
'type' => 'text',
|
118 |
+
'label' => __('Feed link text','event-list'),
|
119 |
+
'desc' => __('This option specifies the caption of the RSS feed link in the event list.<br />
|
120 |
+
Insert an empty text to hide any text if you only want to show the rss image.<br />
|
121 |
+
You have to set the shortcode attribute "add_feed_link" to "true" if you want to show the feed link.')),
|
122 |
+
|
123 |
+
'el_feed_link_img' => array('section' => 'feed',
|
124 |
+
'type' => 'checkbox',
|
125 |
+
'label' => __('Feed link image','event-list'),
|
126 |
+
'caption' => __('Show rss image in feed link','event-list'),
|
127 |
+
'desc' => __('This option specifies if the an image should be dispayed in the feed link in front of the text.<br />
|
128 |
+
You have to set the shortcode attribute "add_feed_link" to "true" if you want to show the feed link.')),
|
129 |
);
|
130 |
?>
|
languages/event-list-de_DE.mo
CHANGED
Binary file
|
languages/event-list-de_DE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date: 2015-05-
|
5 |
-
"PO-Revision-Date: 2015-05-
|
6 |
"Last-Translator: Michael Burtscher <mike@mbnet.at>\n"
|
7 |
"Language-Team: Michael Burtscher\n"
|
8 |
"Language: de\n"
|
@@ -443,198 +443,235 @@ msgid ""
|
|
443 |
msgstr ""
|
444 |
|
445 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:29
|
446 |
-
msgid "
|
447 |
msgstr ""
|
448 |
|
449 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:30
|
450 |
-
msgid "
|
451 |
msgstr ""
|
452 |
|
453 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:31
|
454 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
"With this option you can display the date only once per day if multiple "
|
456 |
"events are available on the same day.<br />\n"
|
457 |
-
"\t
|
458 |
"enabled the events are ordered in a different way (end date before start "
|
459 |
"time) to allow using the same date for as much events as possible."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
463 |
msgid "HTML tags"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
467 |
msgid "Allow HTML tags in event time field"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
471 |
msgid ""
|
472 |
"This option specifies if HTML tags are allowed in the event start time field."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
476 |
msgid "Allow HTML tags in event location field"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
480 |
msgid ""
|
481 |
"This option specifies if HTML tags are allowed in the event location field."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
msgid "Date format in edit form"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
489 |
msgid ""
|
490 |
"This option sets a specific date format for the event date fields in the new/"
|
491 |
"edit event form.<br />\n"
|
492 |
-
"\t
|
493 |
-
"string to use the wordpress standard setting.<br />\n"
|
494 |
-
"\t
|
495 |
-
"specify the format can be found <a href=\"http://php.net/manual/en/
|
496 |
-
"date.php\" target=\"_blank\">here</a>"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
500 |
msgid "Enable RSS feed"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
504 |
msgid "Enable support for an event RSS feed"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
508 |
msgid ""
|
509 |
"This option activates a RSS feed for the events.<br />\n"
|
510 |
-
"\t
|
511 |
-
"option if you want to use one of the RSS feed features."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
515 |
msgid "Feed name"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
519 |
msgid ""
|
520 |
"This options sets the feed name. The standard value is \"event-list\".<br /"
|
521 |
">\n"
|
522 |
-
"\t
|
523 |
"in the feed url (e.g. <code>domain.com/?feed=event-list</code> or "
|
524 |
"<code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
528 |
msgid "Feed Description"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
532 |
msgid ""
|
533 |
"This options sets the feed description. The standard value is \"Eventlist "
|
534 |
"Feed\".<br />\n"
|
535 |
-
"\t
|
536 |
-
"used in the title for the feed link in the html head and for the
|
537 |
-
"in the feed itself."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
541 |
msgid "Listed events"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
545 |
msgid "Only show upcoming events in feed"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
549 |
msgid ""
|
550 |
"If this option is enabled only the upcoming events are listed in the feed."
|
551 |
"<br />\n"
|
552 |
-
"\t
|
553 |
"(upcoming and past) will be listed."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
557 |
msgid "Add RSS feed link in head"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
561 |
msgid "Add RSS feed link in the html head"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
565 |
msgid ""
|
566 |
"This option adds a RSS feed in the html head for the events.<br />\n"
|
567 |
-
"\t
|
568 |
-
"to include the RSS feed:<br />\n"
|
569 |
-
"\t
|
570 |
"use this option to include a link in the html head. This link will be "
|
571 |
"recognized by browers or feed readers.<br />\n"
|
572 |
-
"\t
|
573 |
"is to include a visible feed link directly in the event list. This can be "
|
574 |
"done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
575 |
-
"\t
|
576 |
"valid if the option \"Enable RSS feed\" is enabled."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
580 |
msgid "Position of the RSS feed link"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
584 |
msgid ""
|
585 |
"This option specifies the position of the RSS feed link in the event list."
|
586 |
"<br />\n"
|
587 |
-
"\t
|
588 |
"display the link at the top, at the bottom or between the navigation bar and "
|
589 |
"the event list.<br />\n"
|
590 |
-
"\t
|
591 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
592 |
"feed link."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
596 |
msgid "Align of the RSS feed link"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
600 |
msgid ""
|
601 |
"This option specifies the align of the RSS feed link in the event list.<br /"
|
602 |
">\n"
|
603 |
-
"\t
|
604 |
"displayed on the left side, centered or on the right.<br />\n"
|
605 |
-
"\t
|
606 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
607 |
"feed link."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
611 |
msgid "Feed link text"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
615 |
msgid ""
|
616 |
"This option specifies the caption of the RSS feed link in the event list."
|
617 |
"<br />\n"
|
618 |
-
"\t
|
619 |
-
"hide any text if you only want to show the rss image.<br />\n"
|
620 |
-
"\t
|
621 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
622 |
"feed link."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
626 |
msgid "Feed link image"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
630 |
msgid "Show rss image in feed link"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
634 |
msgid ""
|
635 |
"This option specifies if the an image should be dispayed in the feed link in "
|
636 |
"front of the text.<br />\n"
|
637 |
-
"\t
|
638 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
639 |
"feed link."
|
640 |
msgstr ""
|
@@ -1085,10 +1122,14 @@ msgid "General"
|
|
1085 |
msgstr "Allgemein"
|
1086 |
|
1087 |
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
|
|
|
|
|
|
|
|
1088 |
msgid "Admin Page Settings"
|
1089 |
msgstr "Admin-Seiten Einstellungen"
|
1090 |
|
1091 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:
|
1092 |
msgid "Feed Settings"
|
1093 |
msgstr "Feed Einstellungen"
|
1094 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: event-list\n"
|
4 |
+
"POT-Creation-Date: 2015-05-16 13:12+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-05-16 13:12+0100\n"
|
6 |
"Last-Translator: Michael Burtscher <mike@mbnet.at>\n"
|
7 |
"Language-Team: Michael Burtscher\n"
|
8 |
"Language: de\n"
|
443 |
msgstr ""
|
444 |
|
445 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:29
|
446 |
+
msgid "Multiday filter range"
|
447 |
msgstr ""
|
448 |
|
449 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:30
|
450 |
+
msgid "Use complete range in date filter"
|
451 |
msgstr ""
|
452 |
|
453 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:31
|
454 |
msgid ""
|
455 |
+
"This option defines if the complete range of a multiday event shall be "
|
456 |
+
"considered in the date filter.<br />\n"
|
457 |
+
"\t If disabled only the "
|
458 |
+
"start day of an event is considered in the filter.<br />\n"
|
459 |
+
"\t For example if you "
|
460 |
+
"have a multiday event which started yesterday and ends tomorrow it is "
|
461 |
+
"displayed in umcoming dates when this option is enabled, but it is hidden "
|
462 |
+
"when the option is disabled."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:36
|
466 |
+
msgid "Date display"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
|
470 |
+
msgid "Show date only once per day"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
|
474 |
+
msgid ""
|
475 |
"With this option you can display the date only once per day if multiple "
|
476 |
"events are available on the same day.<br />\n"
|
477 |
+
"\t If this option is "
|
478 |
"enabled the events are ordered in a different way (end date before start "
|
479 |
"time) to allow using the same date for as much events as possible."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:42
|
483 |
msgid "HTML tags"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:43
|
487 |
msgid "Allow HTML tags in event time field"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
|
491 |
msgid ""
|
492 |
"This option specifies if HTML tags are allowed in the event start time field."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:48
|
496 |
msgid "Allow HTML tags in event location field"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:49
|
500 |
msgid ""
|
501 |
"This option specifies if HTML tags are allowed in the event location field."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:53
|
505 |
+
msgid "Disable CSS file"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:54
|
509 |
+
msgid "Disable the \"event-list.css\" file."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:55
|
513 |
+
msgid ""
|
514 |
+
"With this option you can disable the inclusion of the \"event-list.css\" "
|
515 |
+
"file.<br />\n"
|
516 |
+
"\t This normally only "
|
517 |
+
"make sense if you have css conflicts with your theme and want to set all "
|
518 |
+
"required css somewhere else (e.g. your theme css)."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:60
|
522 |
msgid "Date format in edit form"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
|
526 |
msgid ""
|
527 |
"This option sets a specific date format for the event date fields in the new/"
|
528 |
"edit event form.<br />\n"
|
529 |
+
"\t The standard is an "
|
530 |
+
"empty string to use the wordpress standard setting.<br />\n"
|
531 |
+
"\t All available options "
|
532 |
+
"to specify the format can be found <a href=\"http://php.net/manual/en/"
|
533 |
+
"function.date.php\" target=\"_blank\">here</a>"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:67
|
537 |
msgid "Enable RSS feed"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
|
541 |
msgid "Enable support for an event RSS feed"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
|
545 |
msgid ""
|
546 |
"This option activates a RSS feed for the events.<br />\n"
|
547 |
+
"\t You have to enable "
|
548 |
+
"this option if you want to use one of the RSS feed features."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:73
|
552 |
msgid "Feed name"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:74
|
556 |
msgid ""
|
557 |
"This options sets the feed name. The standard value is \"event-list\".<br /"
|
558 |
">\n"
|
559 |
+
"\t This name will be used "
|
560 |
"in the feed url (e.g. <code>domain.com/?feed=event-list</code> or "
|
561 |
"<code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
|
565 |
msgid "Feed Description"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:80
|
569 |
msgid ""
|
570 |
"This options sets the feed description. The standard value is \"Eventlist "
|
571 |
"Feed\".<br />\n"
|
572 |
+
"\t This description will "
|
573 |
+
"be used in the title for the feed link in the html head and for the "
|
574 |
+
"description in the feed itself."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
|
578 |
msgid "Listed events"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:86
|
582 |
msgid "Only show upcoming events in feed"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
|
586 |
msgid ""
|
587 |
"If this option is enabled only the upcoming events are listed in the feed."
|
588 |
"<br />\n"
|
589 |
+
"\t If disabled all events "
|
590 |
"(upcoming and past) will be listed."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:92
|
594 |
msgid "Add RSS feed link in head"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
|
598 |
msgid "Add RSS feed link in the html head"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
|
602 |
msgid ""
|
603 |
"This option adds a RSS feed in the html head for the events.<br />\n"
|
604 |
+
"\t You have 2 "
|
605 |
+
"possibilities to include the RSS feed:<br />\n"
|
606 |
+
"\t The first option is to "
|
607 |
"use this option to include a link in the html head. This link will be "
|
608 |
"recognized by browers or feed readers.<br />\n"
|
609 |
+
"\t The second possibility "
|
610 |
"is to include a visible feed link directly in the event list. This can be "
|
611 |
"done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
612 |
+
"\t This option is only "
|
613 |
"valid if the option \"Enable RSS feed\" is enabled."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
|
617 |
msgid "Position of the RSS feed link"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:104
|
621 |
msgid ""
|
622 |
"This option specifies the position of the RSS feed link in the event list."
|
623 |
"<br />\n"
|
624 |
+
"\t The options are to "
|
625 |
"display the link at the top, at the bottom or between the navigation bar and "
|
626 |
"the event list.<br />\n"
|
627 |
+
"\t You have to set the "
|
628 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
629 |
"feed link."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
|
633 |
msgid "Align of the RSS feed link"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
|
637 |
msgid ""
|
638 |
"This option specifies the align of the RSS feed link in the event list.<br /"
|
639 |
">\n"
|
640 |
+
"\t The link can be "
|
641 |
"displayed on the left side, centered or on the right.<br />\n"
|
642 |
+
"\t You have to set the "
|
643 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
644 |
"feed link."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
|
648 |
msgid "Feed link text"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:119
|
652 |
msgid ""
|
653 |
"This option specifies the caption of the RSS feed link in the event list."
|
654 |
"<br />\n"
|
655 |
+
"\t Insert an empty text "
|
656 |
+
"to hide any text if you only want to show the rss image.<br />\n"
|
657 |
+
"\t You have to set the "
|
658 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
659 |
"feed link."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:125
|
663 |
msgid "Feed link image"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
|
667 |
msgid "Show rss image in feed link"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
|
671 |
msgid ""
|
672 |
"This option specifies if the an image should be dispayed in the feed link in "
|
673 |
"front of the text.<br />\n"
|
674 |
+
"\t You have to set the "
|
675 |
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
676 |
"feed link."
|
677 |
msgstr ""
|
1122 |
msgstr "Allgemein"
|
1123 |
|
1124 |
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
1125 |
+
msgid "Frontend Settings"
|
1126 |
+
msgstr "Frontend Einstellungen"
|
1127 |
+
|
1128 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
|
1129 |
msgid "Admin Page Settings"
|
1130 |
msgstr "Admin-Seiten Einstellungen"
|
1131 |
|
1132 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:72
|
1133 |
msgid "Feed Settings"
|
1134 |
msgstr "Feed Einstellungen"
|
1135 |
|
languages/event-list.pot
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2015-05-
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -309,160 +309,189 @@ msgid "This option defines the text which is displayed if no events are availabl
|
|
309 |
msgstr ""
|
310 |
|
311 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:29
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:30
|
316 |
-
msgid "
|
317 |
msgstr ""
|
318 |
|
319 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:31
|
320 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
"With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
|
322 |
-
"\t
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
326 |
msgid "HTML tags"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
330 |
msgid "Allow HTML tags in event time field"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
334 |
msgid "This option specifies if HTML tags are allowed in the event start time field."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
338 |
msgid "Allow HTML tags in event location field"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
342 |
msgid "This option specifies if HTML tags are allowed in the event location field."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
msgid "Date format in edit form"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
350 |
msgid ""
|
351 |
"This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
|
352 |
-
"\t
|
353 |
-
"\t
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
357 |
msgid "Enable RSS feed"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
361 |
msgid "Enable support for an event RSS feed"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
365 |
msgid ""
|
366 |
"This option activates a RSS feed for the events.<br />\n"
|
367 |
-
"\t
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
371 |
msgid "Feed name"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
375 |
msgid ""
|
376 |
"This options sets the feed name. The standard value is \"event-list\".<br />\n"
|
377 |
-
"\t
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
381 |
msgid "Feed Description"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
385 |
msgid ""
|
386 |
"This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
|
387 |
-
"\t
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
391 |
msgid "Listed events"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
395 |
msgid "Only show upcoming events in feed"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
399 |
msgid ""
|
400 |
"If this option is enabled only the upcoming events are listed in the feed.<br />\n"
|
401 |
-
"\t
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
405 |
msgid "Add RSS feed link in head"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
409 |
msgid "Add RSS feed link in the html head"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
413 |
msgid ""
|
414 |
"This option adds a RSS feed in the html head for the events.<br />\n"
|
415 |
-
"\t
|
416 |
-
"\t
|
417 |
-
"\t
|
418 |
-
"\t
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
422 |
msgid "Position of the RSS feed link"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
426 |
msgid ""
|
427 |
"This option specifies the position of the RSS feed link in the event list.<br />\n"
|
428 |
-
"\t
|
429 |
-
"\t
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
433 |
msgid "Align of the RSS feed link"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
437 |
msgid ""
|
438 |
"This option specifies the align of the RSS feed link in the event list.<br />\n"
|
439 |
-
"\t
|
440 |
-
"\t
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
444 |
msgid "Feed link text"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
448 |
msgid ""
|
449 |
"This option specifies the caption of the RSS feed link in the event list.<br />\n"
|
450 |
-
"\t
|
451 |
-
"\t
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
455 |
msgid "Feed link image"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
459 |
msgid "Show rss image in feed link"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:
|
463 |
msgid ""
|
464 |
"This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
|
465 |
-
"\t
|
466 |
msgstr ""
|
467 |
|
468 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
|
@@ -851,10 +880,14 @@ msgid "General"
|
|
851 |
msgstr ""
|
852 |
|
853 |
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
854 |
-
msgid "
|
855 |
msgstr ""
|
856 |
|
857 |
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
|
|
|
|
|
|
|
|
|
858 |
msgid "Feed Settings"
|
859 |
msgstr ""
|
860 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2015-05-16 13:12+0200\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
309 |
msgstr ""
|
310 |
|
311 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:29
|
312 |
+
msgid "Multiday filter range"
|
313 |
msgstr ""
|
314 |
|
315 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:30
|
316 |
+
msgid "Use complete range in date filter"
|
317 |
msgstr ""
|
318 |
|
319 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:31
|
320 |
msgid ""
|
321 |
+
"This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
|
322 |
+
"\t If disabled only the start day of an event is considered in the filter.<br />\n"
|
323 |
+
"\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:36
|
327 |
+
msgid "Date display"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
|
331 |
+
msgid "Show date only once per day"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
|
335 |
+
msgid ""
|
336 |
"With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
|
337 |
+
"\t If this option is enabled the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:42
|
341 |
msgid "HTML tags"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:43
|
345 |
msgid "Allow HTML tags in event time field"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
|
349 |
msgid "This option specifies if HTML tags are allowed in the event start time field."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:48
|
353 |
msgid "Allow HTML tags in event location field"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:49
|
357 |
msgid "This option specifies if HTML tags are allowed in the event location field."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:53
|
361 |
+
msgid "Disable CSS file"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:54
|
365 |
+
msgid "Disable the \"event-list.css\" file."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:55
|
369 |
+
msgid ""
|
370 |
+
"With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
|
371 |
+
"\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:60
|
375 |
msgid "Date format in edit form"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
|
379 |
msgid ""
|
380 |
"This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
|
381 |
+
"\t The standard is an empty string to use the wordpress standard setting.<br />\n"
|
382 |
+
"\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:67
|
386 |
msgid "Enable RSS feed"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
|
390 |
msgid "Enable support for an event RSS feed"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
|
394 |
msgid ""
|
395 |
"This option activates a RSS feed for the events.<br />\n"
|
396 |
+
"\t You have to enable this option if you want to use one of the RSS feed features."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:73
|
400 |
msgid "Feed name"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:74
|
404 |
msgid ""
|
405 |
"This options sets the feed name. The standard value is \"event-list\".<br />\n"
|
406 |
+
"\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
|
410 |
msgid "Feed Description"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:80
|
414 |
msgid ""
|
415 |
"This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
|
416 |
+
"\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
|
420 |
msgid "Listed events"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:86
|
424 |
msgid "Only show upcoming events in feed"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
|
428 |
msgid ""
|
429 |
"If this option is enabled only the upcoming events are listed in the feed.<br />\n"
|
430 |
+
"\t If disabled all events (upcoming and past) will be listed."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:92
|
434 |
msgid "Add RSS feed link in head"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
|
438 |
msgid "Add RSS feed link in the html head"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
|
442 |
msgid ""
|
443 |
"This option adds a RSS feed in the html head for the events.<br />\n"
|
444 |
+
"\t You have 2 possibilities to include the RSS feed:<br />\n"
|
445 |
+
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
446 |
+
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
447 |
+
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
|
451 |
msgid "Position of the RSS feed link"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:104
|
455 |
msgid ""
|
456 |
"This option specifies the position of the RSS feed link in the event list.<br />\n"
|
457 |
+
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
458 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
|
462 |
msgid "Align of the RSS feed link"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
|
466 |
msgid ""
|
467 |
"This option specifies the align of the RSS feed link in the event list.<br />\n"
|
468 |
+
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
469 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
|
473 |
msgid "Feed link text"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:119
|
477 |
msgid ""
|
478 |
"This option specifies the caption of the RSS feed link in the event list.<br />\n"
|
479 |
+
"\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
|
480 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:125
|
484 |
msgid "Feed link image"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
|
488 |
msgid "Show rss image in feed link"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
|
492 |
msgid ""
|
493 |
"This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
|
494 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
495 |
msgstr ""
|
496 |
|
497 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
|
880 |
msgstr ""
|
881 |
|
882 |
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
883 |
+
msgid "Frontend Settings"
|
884 |
msgstr ""
|
885 |
|
886 |
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
|
887 |
+
msgid "Admin Page Settings"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:72
|
891 |
msgid "Feed Settings"
|
892 |
msgstr ""
|
893 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 0.7.
|
8 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
9 |
Licence: GPLv2
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -74,6 +74,11 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
|
|
|
|
77 |
= 0.7.3 (2015-05-15) =
|
78 |
* added csv import functionality
|
79 |
* added relative and special date selection options for date filter
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 0.7.4
|
8 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
9 |
Licence: GPLv2
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 0.7.4 (2015-05-16) =
|
78 |
+
* fixed allowed daterange for datepicker with custom date formats
|
79 |
+
* added option to disable event-list.css
|
80 |
+
* added option to set considered daterange for multiday event
|
81 |
+
|
82 |
= 0.7.3 (2015-05-15) =
|
83 |
* added csv import functionality
|
84 |
* added relative and special date selection options for date filter
|