Event Calendar WD – Responsive Event Calendar plugin - Version 1.0.31

Version Description

  • Added: Day view option as default to widget
  • Added: Close popup by escape
  • Added: Finnish translation (by Hkan Mitts)
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Event Calendar WD – Responsive Event Calendar plugin
Version 1.0.31
Comparing to
See all releases

Code changes from version 1.0.30 to 1.0.31

css/style.css CHANGED
@@ -171,7 +171,7 @@ table.cal_blue.ecwd_calendar_container .day-with-date, table.cal_blue.ecwd_calen
171
 
172
  .ecwd_calendar_view_tabs .filter-container ul{
173
  list-style: outside none none !important;
174
- padding-left: 0px !important;
175
  margin: 0px !important;
176
  overflow: hidden;
177
  position: relative;
@@ -893,8 +893,9 @@ table.cal_blue.ecwd_calendar_container select {
893
  line-height: 19px;
894
  font-style: italic;
895
  }
896
- .site-footer .widget h3.event-title a, h3.event-title a {
897
  color: #585858;
 
898
  }
899
  .event-main-content a:hover, .event-details-container a:hover{
900
  text-decoration: underline !important;
171
 
172
  .ecwd_calendar_view_tabs .filter-container ul{
173
  list-style: outside none none !important;
174
+ padding: 0px !important;
175
  margin: 0px !important;
176
  overflow: hidden;
177
  position: relative;
893
  line-height: 19px;
894
  font-style: italic;
895
  }
896
+ .site-footer .widget h3.event-title a, h3.event-title a, .site-footer .widget h3.event-title a, h3.event-title span {
897
  color: #585858;
898
+ cursor: pointer;
899
  }
900
  .event-main-content a:hover, .event-details-container a:hover{
901
  text-decoration: underline !important;
ecwd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
- * Version: 1.0.30
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
+ * Version: 1.0.31
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
ecwd_admin_class.php CHANGED
@@ -6,7 +6,7 @@
6
  class ECWD_Admin {
7
 
8
  protected static $instance = null;
9
- protected $version = '1.0.30';
10
  protected $ecwd_page = null;
11
  protected $notices = null;
12
 
6
  class ECWD_Admin {
7
 
8
  protected static $instance = null;
9
+ protected $version = '1.0.31';
10
  protected $ecwd_page = null;
11
  protected $notices = null;
12
 
includes/calendar-class.php CHANGED
@@ -416,7 +416,7 @@ class Calendar {
416
  }
417
  $html .= '<div class="event-main-content">';
418
  if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
419
- $html .= '<h3 class="event-title" itemprop="name"><span class="ecwd_open_event_popup event' . $event['id'] . '">' . $event['title'] . '</span></h3>';
420
  } else if ($event['permalink'] != '') {
421
  $html .= '<h3 class="event-title" itemprop="name"><a href="' . $event['permalink'] . '" ' . $this->eventlinktarget . ' itemprop="url" style="color:' . $event['color'] . ';">' . $event['title'] . '</a></h3>';
422
  } else {
@@ -1009,7 +1009,7 @@ class Calendar {
1009
  $eventcontent .= ' <span class="event-metalabel" style="background:' . $cellevent['color'] . '"></span>
1010
  <h5 style="color:' . $cellevent['color'] . '" itemprop="name">';
1011
  if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
1012
- $eventcontent .= '<span class="ecwd_open_event_popup event' . $cellevent['id'] . '">' . $cellevent['title'] . '</span>';
1013
  } else if (isset($cellevent['permalink']) && $cellevent['permalink'] !== '') {
1014
  $eventcontent .= '<a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget . ' style="color: ' . $cellevent['color'] . '">' . $cellevent['title'] . '</a>';
1015
  } else {
@@ -1160,7 +1160,11 @@ class Calendar {
1160
  $html .= '</div></div></div>';
1161
  }
1162
  if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
1163
- $html .= '<h3 class="event-title" itemprop="name"><span class="ecwd_open_event_popup event' . $cellevent['id'] . '">' . $cellevent['title'] . '</span></h3>';
 
 
 
 
1164
  } else if ($cellevent['permalink'] != '') {
1165
  $html .= '<h3 class="event-title" itemprop="name"> <a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget;
1166
  if (isset($cellevent['color']) && $cellevent['color'] !== '') {
416
  }
417
  $html .= '<div class="event-main-content">';
418
  if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
419
+ $html .= '<h3 class="event-title" itemprop="name"><span class="ecwd_open_event_popup event' . $event['id'] . '" style="color:' . $event['color'] . ';">' . $event['title'] . '</span></h3>';
420
  } else if ($event['permalink'] != '') {
421
  $html .= '<h3 class="event-title" itemprop="name"><a href="' . $event['permalink'] . '" ' . $this->eventlinktarget . ' itemprop="url" style="color:' . $event['color'] . ';">' . $event['title'] . '</a></h3>';
422
  } else {
1009
  $eventcontent .= ' <span class="event-metalabel" style="background:' . $cellevent['color'] . '"></span>
1010
  <h5 style="color:' . $cellevent['color'] . '" itemprop="name">';
1011
  if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
1012
+ $eventcontent .= '<span class="ecwd_open_event_popup event' . $cellevent['id'] . '" style="color: ' . $cellevent['color'] . '">' . $cellevent['title'] . '</span>';
1013
  } else if (isset($cellevent['permalink']) && $cellevent['permalink'] !== '') {
1014
  $eventcontent .= '<a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget . ' style="color: ' . $cellevent['color'] . '">' . $cellevent['title'] . '</a>';
1015
  } else {
1160
  $html .= '</div></div></div>';
1161
  }
1162
  if ($this->event_popup == "yes" && get_post_meta($event['id'], '', true)) {
1163
+ $html .= '<h3 class="event-title" itemprop="name"><span class="ecwd_open_event_popup event' . $cellevent['id'] . '"';
1164
+ if (isset($cellevent['color']) && $cellevent['color'] !== '') {
1165
+ $html .= ' style="color:' . $cellevent['color'] . ';"';
1166
+ }
1167
+ $html .= '>' . $cellevent['title'] . '</span></h3>';
1168
  } else if ($cellevent['permalink'] != '') {
1169
  $html .= '<h3 class="event-title" itemprop="name"> <a href="' . $cellevent['permalink'] . '" ' . $this->eventlinktarget;
1170
  if (isset($cellevent['color']) && $cellevent['color'] !== '') {
includes/ecwd-display-class.php CHANGED
@@ -584,7 +584,7 @@ class ECWD_Display {
584
  if ( $repeat_days == 2 && $repeat_day && $repeat_when && date( 'Y-m', strtotime( $event_from ) ) !== date( 'Y-m', $date ) ) {
585
  $monthyear = date( "F Y", $date );
586
  $repeat_date = date( 'Y-m-d', strtotime( $repeat_when . ' ' . ucfirst( $repeat_day ) . ' of ' . $monthyear ) );
587
- if($repeat_date == '1970-01-01') {
588
  $repeat_date = date( 'Y-m-d', strtotime( $monthyear . ' ' . $repeat_when . ' ' . $repeat_day ) );
589
  }
590
 
@@ -594,8 +594,8 @@ class ECWD_Display {
594
  $date = date( "Y-n-j", $date );
595
  $i ++;
596
  if ( strtotime( $until ) >= strtotime( date( 'Y-m-d', strtotime( $date ) ) ) ) {
597
- $min_date = strtotime( ( date( "Y-m-1", ( strtotime( $date ) ) ) . " +" . ( ( $how ) ) . " month" ) );
598
- $from_date = strtotime( ( date( "Y-m-1", ( strtotime( $date ) ) ) . " +" . ( ( $how ) ) . " month" ) );
599
  $eventdays -= 30;
600
  $from_date = strtotime( ( date( "Y-m-d", $from_date ) . " - 1 day" ) );
601
 
@@ -667,7 +667,7 @@ class ECWD_Display {
667
  $monthyear = $monthName . ' ' . date( "Y", $date );
668
  //echo $repeat_when.' '.ucfirst( $repeat_day ).' of '.$monthyear.'<br />';
669
  $repeat_date = date( 'Y-m-d', strtotime( $repeat_when . ' ' . ucfirst( $repeat_day ) . ' of ' . $monthyear ) );
670
- if($repeat_date == '1970-01-01') {
671
  $repeat_date = date( 'Y-m-d', strtotime( $monthyear . ' ' . $repeat_when . ' ' . $repeat_day ) );
672
  }
673
  //$repeat_date = date( 'Y-m-d', strtotime($repeat_when.' '.ucfirst( $repeat_day ).' of '.$monthyear) );
584
  if ( $repeat_days == 2 && $repeat_day && $repeat_when && date( 'Y-m', strtotime( $event_from ) ) !== date( 'Y-m', $date ) ) {
585
  $monthyear = date( "F Y", $date );
586
  $repeat_date = date( 'Y-m-d', strtotime( $repeat_when . ' ' . ucfirst( $repeat_day ) . ' of ' . $monthyear ) );
587
+ if($repeat_date == '1970-01-01' || $repeat_date=='1969-12-31') {
588
  $repeat_date = date( 'Y-m-d', strtotime( $monthyear . ' ' . $repeat_when . ' ' . $repeat_day ) );
589
  }
590
 
594
  $date = date( "Y-n-j", $date );
595
  $i ++;
596
  if ( strtotime( $until ) >= strtotime( date( 'Y-m-d', strtotime( $date ) ) ) ) {
597
+ $min_date = $from_date = strtotime( ( date( "Y-m-1", ( strtotime( $date ) ) ) . " +" . ( ( $how ) ) . " month" ) );
598
+
599
  $eventdays -= 30;
600
  $from_date = strtotime( ( date( "Y-m-d", $from_date ) . " - 1 day" ) );
601
 
667
  $monthyear = $monthName . ' ' . date( "Y", $date );
668
  //echo $repeat_when.' '.ucfirst( $repeat_day ).' of '.$monthyear.'<br />';
669
  $repeat_date = date( 'Y-m-d', strtotime( $repeat_when . ' ' . ucfirst( $repeat_day ) . ' of ' . $monthyear ) );
670
+ if($repeat_date == '1970-01-01' || $repeat_date=='1969-12-31') {
671
  $repeat_date = date( 'Y-m-d', strtotime( $monthyear . ' ' . $repeat_when . ' ' . $repeat_day ) );
672
  }
673
  //$repeat_date = date( 'Y-m-d', strtotime($repeat_when.' '.ucfirst( $repeat_day ).' of '.$monthyear) );
js/ecwd_popup.js CHANGED
@@ -47,6 +47,12 @@
47
  el.hide();
48
  params.popup_close(el);
49
  });
 
 
 
 
 
 
50
  });
51
 
52
  function open_popup(html) {
47
  el.hide();
48
  params.popup_close(el);
49
  });
50
+ $(document).keyup(function(e) {
51
+ if (e.keyCode == 27) { // escape key maps to keycode `27`
52
+ el.hide();
53
+ params.popup_close(el);
54
+ }
55
+ });
56
  });
57
 
58
  function open_popup(html) {
languages/ecwd-fi_FI.mo ADDED
Binary file
languages/ecwd-fi_FI.po ADDED
@@ -0,0 +1,379 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: event_calendar_wd\n"
4
+ "POT-Creation-Date: 2015-07-23 13:04+0400\n"
5
+ "PO-Revision-Date: 2015-10-26 19:00+0400\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: fi\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPathExcluded-0: views/admin\n"
17
+ "X-Poedit-SearchPathExcluded-1: js\n"
18
+ "X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
19
+ "X-Poedit-SearchPathExcluded-3: includes/register-settings.php\n"
20
+ "X-Poedit-SearchPathExcluded-4: includes/ecwd-ical-events-class.php\n"
21
+ "X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
22
+ "X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
23
+ "X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: includes/calendar-class.php:175 includes/calendar-class.php:176
27
+ #: views/widgets.php:168
28
+ msgid "Month"
29
+ msgstr "Kuukausi"
30
+
31
+ #: includes/calendar-class.php:177 views/widgets.php:169
32
+ msgid "List"
33
+ msgstr "Lista"
34
+
35
+ #: includes/calendar-class.php:179
36
+ msgid "Week"
37
+ msgstr "Viikko"
38
+
39
+ #: includes/calendar-class.php:183
40
+ msgid "Day"
41
+ msgstr "Päivä"
42
+
43
+ #: includes/calendar-class.php:186
44
+ msgid "Map"
45
+ msgstr "Kartta"
46
+
47
+ #: includes/calendar-class.php:188
48
+ msgid "4 Days"
49
+ msgstr "4 päivää"
50
+
51
+ #: includes/calendar-class.php:191
52
+ msgid "Posterboard"
53
+ msgstr "Posterboard"
54
+
55
+ #: includes/calendar-class.php:383 includes/calendar-class.php:417
56
+ #: includes/calendar-class.php:572 includes/calendar-class.php:1181
57
+ #: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
58
+ #: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
59
+ #: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
60
+ #: views/single-event.php:151 views/single-event.php:247
61
+ #: views/single-event.php:487
62
+ msgid "All day"
63
+ msgstr "Koko päivän varaus"
64
+
65
+ #: includes/calendar-class.php:440 includes/calendar-class.php:520
66
+ #: includes/calendar-class.php:1386
67
+ msgid "No events"
68
+ msgstr "Ei tapahtumia"
69
+
70
+ #: includes/calendar-class.php:644
71
+ msgid "No Events"
72
+ msgstr "Ei tapahtumia"
73
+
74
+ #: includes/calendar-class.php:1256
75
+ msgid "More events"
76
+ msgstr "Lisää tapahtumia"
77
+
78
+ #: includes/ecwd-cpt-filter.php:67
79
+ msgid "From"
80
+ msgstr "Alkaa"
81
+
82
+ #: includes/ecwd-cpt-filter.php:74
83
+ msgid "To"
84
+ msgstr "Päättyy"
85
+
86
+ #: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
87
+ #: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
88
+ #: includes/texts.php:60
89
+ msgid "Repeat every"
90
+ msgstr "Toista joka"
91
+
92
+ #: includes/ecwd-display-class.php:876 includes/texts.php:66
93
+ msgid "days"
94
+ msgstr "päivää"
95
+
96
+ #: includes/ecwd-display-class.php:878 includes/texts.php:61
97
+ msgid "Repeat every day"
98
+ msgstr "Joka päivä"
99
+
100
+ #: includes/ecwd-display-class.php:882 includes/texts.php:67
101
+ msgid "weeks"
102
+ msgstr "viikot"
103
+
104
+ #: includes/ecwd-display-class.php:884 includes/texts.php:62
105
+ msgid "Repeat every week"
106
+ msgstr "Toista joka viikko"
107
+
108
+ #: includes/ecwd-display-class.php:889
109
+ msgid "on"
110
+ msgstr "pvm."
111
+
112
+ #: includes/ecwd-display-class.php:900 includes/texts.php:68
113
+ msgid "months"
114
+ msgstr "kuukaudet"
115
+
116
+ #: includes/ecwd-display-class.php:902 includes/texts.php:63
117
+ msgid "Repeat every month"
118
+ msgstr "Toista joka kuukausi"
119
+
120
+ #: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
121
+ msgid "on the same day"
122
+ msgstr "samana päivänä"
123
+
124
+ #: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
125
+ msgid "on the"
126
+ msgstr "pvm."
127
+
128
+ #: includes/ecwd-display-class.php:917 includes/texts.php:69
129
+ msgid "years"
130
+ msgstr "vuodet"
131
+
132
+ #: includes/ecwd-display-class.php:919 includes/texts.php:64
133
+ msgid "Repeat every year"
134
+ msgstr "Toista joka vuosi"
135
+
136
+ #: includes/ecwd-display-class.php:940 includes/texts.php:70
137
+ msgid "until"
138
+ msgstr "loppuen"
139
+
140
+ #: includes/ecwd-functions.php:8
141
+ msgid "Loading..."
142
+ msgstr "Ladataan..."
143
+
144
+ #: includes/ecwd-functions.php:439 includes/texts.php:53
145
+ msgid "DAYS"
146
+ msgstr "Päivät"
147
+
148
+ #: includes/ecwd-functions.php:440 includes/texts.php:54
149
+ msgid "HOURS"
150
+ msgstr "Tunnit"
151
+
152
+ #: includes/ecwd-functions.php:441 includes/texts.php:55
153
+ msgid "MINUTES"
154
+ msgstr "Minuutit"
155
+
156
+ #: includes/ecwd-functions.php:442 includes/texts.php:56
157
+ msgid "SECONDS"
158
+ msgstr "Sekuntia"
159
+
160
+ #: includes/texts.php:2
161
+ msgid "January"
162
+ msgstr "Tammikuu"
163
+
164
+ #: includes/texts.php:3
165
+ msgid "February"
166
+ msgstr "Helmikuu"
167
+
168
+ #: includes/texts.php:4
169
+ msgid "March"
170
+ msgstr "Maaliskuu"
171
+
172
+ #: includes/texts.php:5
173
+ msgid "April"
174
+ msgstr "Huhtikuu"
175
+
176
+ #: includes/texts.php:6
177
+ msgid "May"
178
+ msgstr "Toukokuu"
179
+
180
+ #: includes/texts.php:7
181
+ msgid "June"
182
+ msgstr "Kesäkuu"
183
+
184
+ #: includes/texts.php:8
185
+ msgid "July"
186
+ msgstr "Heinäkuu"
187
+
188
+ #: includes/texts.php:9
189
+ msgid "August"
190
+ msgstr "Elokuu"
191
+
192
+ #: includes/texts.php:10
193
+ msgid "September"
194
+ msgstr "Syyskuu"
195
+
196
+ #: includes/texts.php:11
197
+ msgid "October"
198
+ msgstr "Lokakuu"
199
+
200
+ #: includes/texts.php:12
201
+ msgid "November"
202
+ msgstr "Marraskuu"
203
+
204
+ #: includes/texts.php:13
205
+ msgid "December"
206
+ msgstr "Joulukuu"
207
+
208
+ #: includes/texts.php:15
209
+ msgid "Sunday"
210
+ msgstr "Sunnuntai"
211
+
212
+ #: includes/texts.php:16
213
+ msgid "Monday"
214
+ msgstr "Maanantai"
215
+
216
+ #: includes/texts.php:17
217
+ msgid "Tuesday"
218
+ msgstr "Tiistai"
219
+
220
+ #: includes/texts.php:18
221
+ msgid "Wednesday"
222
+ msgstr "Keskiviikko"
223
+
224
+ #: includes/texts.php:19
225
+ msgid "Thursday"
226
+ msgstr "Torstai"
227
+
228
+ #: includes/texts.php:20
229
+ msgid "Friday"
230
+ msgstr "Perjantai"
231
+
232
+ #: includes/texts.php:21
233
+ msgid "Saturday"
234
+ msgstr "Lauantai"
235
+
236
+ #: includes/texts.php:25
237
+ msgid "Sun"
238
+ msgstr "Su"
239
+
240
+ #: includes/texts.php:26
241
+ msgid "Mon"
242
+ msgstr "Ma"
243
+
244
+ #: includes/texts.php:27
245
+ msgid "Tue"
246
+ msgstr "Ti"
247
+
248
+ #: includes/texts.php:28
249
+ msgid "Wed"
250
+ msgstr "Ke"
251
+
252
+ #: includes/texts.php:29
253
+ msgid "Thu"
254
+ msgstr "To"
255
+
256
+ #: includes/texts.php:30
257
+ msgid "Fri"
258
+ msgstr "Pe"
259
+
260
+ #: includes/texts.php:31
261
+ msgid "Sat"
262
+ msgstr "La"
263
+
264
+ #: includes/texts.php:34
265
+ msgid "Su"
266
+ msgstr "Su"
267
+
268
+ #: includes/texts.php:35
269
+ msgid "Mo"
270
+ msgstr "Ma"
271
+
272
+ #: includes/texts.php:36
273
+ msgid "Tu"
274
+ msgstr "Ti"
275
+
276
+ #: includes/texts.php:37
277
+ msgid "We"
278
+ msgstr "Ke"
279
+
280
+ #: includes/texts.php:38
281
+ msgid "Th"
282
+ msgstr "To"
283
+
284
+ #: includes/texts.php:39
285
+ msgid "Fr"
286
+ msgstr "Pe"
287
+
288
+ #: includes/texts.php:40
289
+ msgid "Sa"
290
+ msgstr "La"
291
+
292
+ #: includes/texts.php:44
293
+ msgid "Show Filters"
294
+ msgstr "Suodattimet"
295
+
296
+ #: includes/texts.php:45
297
+ msgid "Collapse Filters"
298
+ msgstr "Piilota suodattimet"
299
+
300
+ #: includes/texts.php:46
301
+ msgid "Reset Filters"
302
+ msgstr "Nollaa suodattimet"
303
+
304
+ #: includes/texts.php:48
305
+ msgid "Days"
306
+ msgstr "Päivää"
307
+
308
+ #: includes/texts.php:49
309
+ msgid "Categories"
310
+ msgstr "Luokat"
311
+
312
+ #: includes/texts.php:50
313
+ msgid "Venues"
314
+ msgstr "Tapahtumapaikat"
315
+
316
+ #: includes/texts.php:57
317
+ msgid "The event has just started"
318
+ msgstr "Tapahtuma on juuri alkanut"
319
+
320
+ #: includes/texts.php:72
321
+ msgid "Sundays"
322
+ msgstr "Sunnuntaisin"
323
+
324
+ #: includes/texts.php:73
325
+ msgid "Mondays"
326
+ msgstr "Maanantaisin"
327
+
328
+ #: includes/texts.php:74
329
+ msgid "Tuesdays"
330
+ msgstr "Tiistaisin"
331
+
332
+ #: includes/texts.php:75
333
+ msgid "Wednesdays"
334
+ msgstr "Keskiviikkoisin"
335
+
336
+ #: includes/texts.php:76
337
+ msgid "Thursdays"
338
+ msgstr "Torstaisin"
339
+
340
+ #: includes/texts.php:77
341
+ msgid "Fridays"
342
+ msgstr "Perjantaisin"
343
+
344
+ #: includes/texts.php:78
345
+ msgid "Saturdays"
346
+ msgstr "Lauantaisin"
347
+
348
+ #: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
349
+ #: views/single-event.php:142 views/single-event.php:242
350
+ msgid "Date"
351
+ msgstr "Päivämäärä"
352
+
353
+ #: views/ecwd-event-content.php:91 views/single-event.php:170
354
+ msgid "Url"
355
+ msgstr "Url"
356
+
357
+ #: views/ecwd-event-content.php:97 views/single-event.php:177
358
+ msgid "Organizers"
359
+ msgstr "Järjestäjät"
360
+
361
+ #: views/ecwd-organizer-content.php:109
362
+ msgid "upcoming events"
363
+ msgstr "tulevia tapahtumia"
364
+
365
+ #: views/ecwd-venue-content.php:141
366
+ msgid "events"
367
+ msgstr "tapahtumat"
368
+
369
+ #: views/single-event.php:190
370
+ msgid "Venue"
371
+ msgstr "Tapahtumapaikka"
372
+
373
+ #: views/single-event.php:200
374
+ msgid "Location"
375
+ msgstr "Sijainti"
376
+
377
+ #: views/single-event.php:449
378
+ msgid "Related events"
379
+ msgstr "Tutustu myös"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-event-calendar-wd.html
4
  Tags: calendar, calendars, event, event calendar, event manager, events calendar, calendar widget, event registration, event management,events, agenda, holiday calendar , scheduling, free calendar, Calender, upcoming events , event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting , appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit, facebook integration
5
  Requires at least: 3.9
6
  Tested up to: 4.3
7
- Stable tag: 1.0.30
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -89,18 +89,19 @@ If you think you found a bug in Event Calendar WD or have any problem/question
89
 
90
  *If you need language which is not included in this list, please contact us and we will do the translation within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
91
 
92
- Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
93
- German (de_DE) by Ogi Djuraskovic
94
- Hungarian (hu_HU) by Szabolcs Egerhazi
95
- Norwegian (Bokmål) (nb_NO) by Vegard Innerdal
96
- Norwegian (Nynorsk) (nn_NO) by Vegard Innerdal
97
- Serbian (sr_RS)
98
- Spanish (es_ES)
 
99
  French (fr_FR)
100
- Italian (it_IT)
101
  Russian (ru_RU)
102
- Turkish (tr_TR)
103
- Portuguese (pt_PT)
104
 
105
 
106
 
@@ -139,127 +140,132 @@ After downloading the ZIP file of the Event Calendar WD plugin,
139
 
140
  == Changelog ==
141
 
 
 
 
 
 
142
  = 1.0.30 =
143
- Added: Mini calendar view for page
144
 
145
  = 1.0.29 =
146
- Fixed: Norwegian language files name
147
 
148
  = 1.0.28 =
149
- Added: ECWD Views add-on
150
- Added: Norwegian (Bokmål) and Norwegian (Nynorsk) languages support(by Vegard Innerdal)
151
 
152
  = 1.0.27 =
153
- Changed: Added padding to event details for screens < 768
154
- Changed: Hide next/prev month names for screen < 768
155
- Fixed: More events popup bug
156
 
157
  = 1.0.26 =
158
- New: Display Events in popup option
159
 
160
  = 1.0.25 =
161
- Fixed: Sidebar css in event page for twentyfourteen theme
162
- Fixed: Calendar widget center css
163
- Changed: Notices show order
164
 
165
  = 1.0.24 =
166
- Fixed: Events monthly repeat rate issue
167
- Added: Week view option to widget
168
- Added: Custom Fields add-on
169
 
170
  = 1.0.23 =
171
- Added: Frontend events management add-on
172
- Fixed: Rewrite rules for custom permalinks structure
173
- Fixed: JS error in related events slider
174
- Added: Hungarian language support
175
- Added: Serbian language support
176
- Fixed: Translations for Dutch
177
 
178
  = 1.0.22 =
179
- Added: Ajaxed themes support
180
- Fixed: Next month link issue
181
- Changed: More events dialog
182
- Added: Support/rate us messages
183
 
184
  = 1.0.21 =
185
- Fixed: JS error in widgets page
186
 
187
  = 1.0.20 =
188
- Fixed: Show event url issue
189
- Added: "noindex, nofollow" to calendar links
190
- Added: Open pop in new tab option
191
- Added: Japanese support
192
 
193
  = 1.0.19 =
194
- Minor bug fixed
195
 
196
  = 1.0.18 =
197
- Added: Themes folder
198
- Changed: Related events title style
199
- Added: Apply category color to event title in event page option
200
 
201
  = 1.0.17 =
202
- Fixed: Time format issue
203
 
204
  = 1.0.16 =
205
- Added: Show the repeat rate in event page option
206
 
207
  = 1.0.15 =
208
- Added: Show AM/PM option
209
 
210
  = 1.0.14 =
211
- Fixed: Conflict with Avada theme
212
- Added: Date to events link
213
 
214
  = 1.0.13 =
215
- Changed: Calendar Add-ons page
216
 
217
  = 1.0.11 =
218
- Changed: Calendar Add-ons page
219
 
220
  = 1.0.10 =
221
- Added: Organizers and venues archive page order option
222
- Added: Show categories and tags in event page option
223
- Fixed: Featured image sizes in widget
224
 
225
  = 1.0.9 =
226
- Fixed: Show google maps conflict with other plugins
227
- Fixed: Geolocation bug
228
- Fixed: Save organizer featured image issue
229
 
230
  = 1.0.8 =
231
- Changed: Event page
232
- Added: Portuguese language
233
 
234
  = 1.0.7 =
235
- New: Related events slider
236
- New: Enable/disable rewrite rule option
237
 
238
  = 1.0.6 =
239
- Changed: Removed Add Venue link
240
- Fixed: Delete event from calendar page issue
241
 
242
  = 1.0.5 =
243
- New: Events Filters in backend
244
- Fixed: Bug in shortcode
245
 
246
  = 1.0.4 =
247
- Fixed: Bug in add/edit calendar
248
 
249
  = 1.0.3 =
250
- New: Event template
251
- New: "Show map in event page" option
252
- Changed: "Repeat until" field is required
253
 
254
  = 1.0.2 =
255
- Fixed: Minor bugs
256
 
257
  = 1.0.1 =
258
- Fixed: Bug in Week view
259
- Fixed: Permalink bug
260
 
261
  = 1.0.0 =
262
- Initial version
263
 
264
  == Event Calendar WD User Manual ==
265
 
4
  Tags: calendar, calendars, event, event calendar, event manager, events calendar, calendar widget, event registration, event management,events, agenda, holiday calendar , scheduling, free calendar, Calender, upcoming events , event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting , appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit, facebook integration
5
  Requires at least: 3.9
6
  Tested up to: 4.3
7
+ Stable tag: 1.0.31
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
89
 
90
  *If you need language which is not included in this list, please contact us and we will do the translation within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
91
 
92
+ Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
93
+ Finnish (fi) by Håkan Mitts
94
+ German (de_DE) by Ogi Djuraskovic
95
+ Hungarian (hu_HU) by Szabolcs Egerhazi
96
+ Norwegian (Bokmål) (nb_NO) by Vegard Innerdal
97
+ Norwegian (Nynorsk) (nn_NO) by Vegard Innerdal
98
+ Serbian (sr_RS)
99
+ Spanish (es_ES)
100
  French (fr_FR)
101
+ Italian (it_IT)
102
  Russian (ru_RU)
103
+ Turkish (tr_TR)
104
+ Portuguese (pt_PT)
105
 
106
 
107
 
140
 
141
  == Changelog ==
142
 
143
+ = 1.0.31 =
144
+ * Added: Day view option as default to widget
145
+ * Added: Close popup by escape
146
+ * Added: Finnish translation (by Håkan Mitts)
147
+
148
  = 1.0.30 =
149
+ * Added: Mini calendar view for page
150
 
151
  = 1.0.29 =
152
+ * Fixed: Norwegian language files name
153
 
154
  = 1.0.28 =
155
+ * Added: ECWD Views add-on
156
+ * Added: Norwegian (Bokmål) and Norwegian (Nynorsk) languages support(by Vegard Innerdal)
157
 
158
  = 1.0.27 =
159
+ * Changed: Added padding to event details for screens < 768
160
+ * Changed: Hide next/prev month names for screen < 768
161
+ * Fixed: More events popup bug
162
 
163
  = 1.0.26 =
164
+ * New: Display Events in popup option
165
 
166
  = 1.0.25 =
167
+ * Fixed: Sidebar css in event page for twentyfourteen theme
168
+ * Fixed: Calendar widget center css
169
+ * Changed: Notices show order
170
 
171
  = 1.0.24 =
172
+ * Fixed: Events monthly repeat rate issue
173
+ * Added: Week view option to widget
174
+ * Added: Custom Fields add-on
175
 
176
  = 1.0.23 =
177
+ * Added: Frontend events management add-on
178
+ * Fixed: Rewrite rules for custom permalinks structure
179
+ * Fixed: JS error in related events slider
180
+ * Added: Hungarian language support
181
+ * Added: Serbian language support
182
+ * Fixed: Translations for Dutch
183
 
184
  = 1.0.22 =
185
+ * Added: Ajaxed themes support
186
+ * Fixed: Next month link issue
187
+ * Changed: More events dialog
188
+ * Added: Support/rate us messages
189
 
190
  = 1.0.21 =
191
+ * Fixed: JS error in widgets page
192
 
193
  = 1.0.20 =
194
+ * Fixed: Show event url issue
195
+ * Added: "noindex, nofollow" to calendar links
196
+ * Added: Open pop in new tab option
197
+ * Added: Japanese support
198
 
199
  = 1.0.19 =
200
+ * Minor bug fixed
201
 
202
  = 1.0.18 =
203
+ * Added: Themes folder
204
+ * Changed: Related events title style
205
+ * Added: Apply category color to event title in event page option
206
 
207
  = 1.0.17 =
208
+ * Fixed: Time format issue
209
 
210
  = 1.0.16 =
211
+ * Added: Show the repeat rate in event page option
212
 
213
  = 1.0.15 =
214
+ * Added: Show AM/PM option
215
 
216
  = 1.0.14 =
217
+ * Fixed: Conflict with Avada theme
218
+ * Added: Date to events link
219
 
220
  = 1.0.13 =
221
+ * Changed: Calendar Add-ons page
222
 
223
  = 1.0.11 =
224
+ * Changed: Calendar Add-ons page
225
 
226
  = 1.0.10 =
227
+ * Added: Organizers and venues archive page order option
228
+ * Added: Show categories and tags in event page option
229
+ * Fixed: Featured image sizes in widget
230
 
231
  = 1.0.9 =
232
+ * Fixed: Show google maps conflict with other plugins
233
+ * Fixed: Geolocation bug
234
+ * Fixed: Save organizer featured image issue
235
 
236
  = 1.0.8 =
237
+ * Changed: Event page
238
+ * Added: Portuguese language
239
 
240
  = 1.0.7 =
241
+ * New: Related events slider
242
+ * New: Enable/disable rewrite rule option
243
 
244
  = 1.0.6 =
245
+ * Changed: Removed Add Venue link
246
+ * Fixed: Delete event from calendar page issue
247
 
248
  = 1.0.5 =
249
+ * New: Events Filters in backend
250
+ * Fixed: Bug in shortcode
251
 
252
  = 1.0.4 =
253
+ * Fixed: Bug in add/edit calendar
254
 
255
  = 1.0.3 =
256
+ * New: Event template
257
+ * New: "Show map in event page" option
258
+ * Changed: "Repeat until" field is required
259
 
260
  = 1.0.2 =
261
+ * Fixed: Minor bugs
262
 
263
  = 1.0.1 =
264
+ * Fixed: Bug in Week view
265
+ * Fixed: Permalink bug
266
 
267
  = 1.0.0 =
268
+ * Initial version
269
 
270
  == Event Calendar WD User Manual ==
271
 
views/widgets.php CHANGED
@@ -168,6 +168,7 @@ class ECWD_Widget extends WP_Widget {
168
  <option value="mini"<?php selected($display_type, 'mini'); ?>><?php _e('Month', 'ecwd'); ?></option>
169
  <option value="list"<?php selected($display_type, 'list'); ?>><?php _e('List', 'ecwd'); ?></option>
170
  <option value="week" <?php selected($display_type, 'week'); ?>><?php _e('Week', 'ecwd'); ?></option>
 
171
  </select>
172
  </p>
173
  <p>
168
  <option value="mini"<?php selected($display_type, 'mini'); ?>><?php _e('Month', 'ecwd'); ?></option>
169
  <option value="list"<?php selected($display_type, 'list'); ?>><?php _e('List', 'ecwd'); ?></option>
170
  <option value="week" <?php selected($display_type, 'week'); ?>><?php _e('Week', 'ecwd'); ?></option>
171
+ <option value="day" <?php selected($display_type, 'day'); ?>><?php _e('Day', 'ecwd'); ?></option>
172
  </select>
173
  </p>
174
  <p>