Event Calendar WD – Responsive Event Calendar plugin - Version 1.0.37

Version Description

  • Added: Catalan language support(by Vicenc Huguet)
  • Fixed: Views slider js issue
Download this release

Release Info

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

Code changes from version 1.0.36 to 1.0.37

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.36
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.37
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.36';
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.37';
10
  protected $ecwd_page = null;
11
  protected $notices = null;
12
 
js/scripts.js CHANGED
@@ -307,88 +307,83 @@ ecwd_js_init = function () {
307
 
308
  }
309
 
310
- function showFilterSliderArrow() {
311
- var li_position, li_width, last_child;
312
- jQuery(".calendar_main:not([class^='ecwd_widget'] .calendar_main) .ecwd_calendar_view_tabs").each(function (key, element) {
313
- var cwidth = jQuery(element).closest('.ecwd_calendar').width();
314
- //console.log(cwidth);
315
- if (cwidth == 0)
316
- cwidth = 600;
317
- if (jQuery(this).find('.ecwd-search').length != 0)
318
- var ecwd_calendar_view_tabs_width = parseInt(cwidth) - 50;
319
- else
320
- var ecwd_calendar_view_tabs_width = parseInt(cwidth);
321
- if (parseInt(jQuery('body').width()) <= 768 || jQuery(".calendar_full_content .ecwd_calendar").width() < 600) {
322
- var ecwd_calendar_view_visible_count = parseInt(ecwd_calendar_view_tabs_width / 110);
323
- } else if (parseInt(jQuery('body').width()) <= 500 || jQuery(".calendar_full_content .ecwd_calendar").width() < 400) {
324
- var ecwd_calendar_view_visible_count = parseInt(ecwd_calendar_view_tabs_width / 90);
325
- } else {
326
- var ecwd_calendar_view_visible_count = parseInt(ecwd_calendar_view_tabs_width / 150);
327
- }
328
- jQuery(element).find('.filter-container').width(ecwd_calendar_view_tabs_width);
329
- //var ecwd_view_item_width = jQuery(element).find('.filter-container ul li').eq(0).width();
330
- var ecwd_view_item_width = ecwd_calendar_view_tabs_width/ecwd_calendar_view_visible_count;
331
-
332
- jQuery(element).find('ul li').each(function (keyli, elementli) {
333
- if (jQuery(elementli).hasClass('ecwd-selected-mode')) {
334
- li_position = keyli;
335
- li_width = jQuery(elementli).width();
336
  }
337
- });
338
-
339
- if (!(jQuery(element).find('.filter-container').width() + (ecwd_view_item_width / 2.5) < ecwd_view_item_width * parseInt(jQuery(element).find('.filter-container ul li').length) && !(jQuery(element).find("ul li:nth-child(" + (jQuery(element).find('.filter-container ul li').length) + ")").hasClass("ecwd-selected-mode"))))
340
- jQuery(element).find('.filter-arrow-right').hide();
341
- else {
342
- jQuery(element).find('.filter-arrow-right').show();
343
- }
344
- if(jQuery(element).find("ul li:last-child").hasClass("ecwd-selected-mode")) {
345
- last_child = 1;
346
- }
347
-
348
- if (jQuery(element).find(".filter-arrow-right").css("display") == "block" || last_child == 1)
349
- jQuery(element).find('.filter-container ul li').width((ecwd_calendar_view_tabs_width - 30) / ecwd_calendar_view_visible_count);
350
- else
351
- jQuery(element).find('.filter-container ul li').width((ecwd_calendar_view_tabs_width) / ecwd_calendar_view_visible_count);
352
- if (ecwd_calendar_view_visible_count <= li_position && li_position!=0) {
353
- jQuery(element).find('ul li').css({left: "-" + ((li_position + 1 - ecwd_calendar_view_visible_count) * jQuery(element).find('.filter-container ul li').eq(0).width()) + "px"});
354
- jQuery(element).find('.filter-arrow-left').show();
355
- }else
356
- jQuery(element).find('ul li').css({left: "0px"});
357
- });
358
-
359
-
360
- jQuery('.ecwd_calendar_view_tabs .filter-arrow-right').click(function () {
361
- var view_filter_width = jQuery(this).parent().find('ul li').eq(0).width();
362
- var view_filter_container_width = jQuery(this).parent().width();
363
- var view_filter_count = parseInt(jQuery(this).parent().find('ul li').length);
364
- var events_item_width = jQuery(this).parent().find('ul li').eq(0).width();
365
- if (jQuery(this).parent().find('.filter-arrow-left').css('display') == 'none')
366
- jQuery(this).parent().find('.filter-arrow-left').show();
367
- if (parseInt(jQuery(this).parent().find('ul li').css('left')) <= -(view_filter_width * (view_filter_count) - view_filter_container_width) + view_filter_width)
368
- jQuery(this).hide();
369
- if (click && view_filter_container_width < view_filter_width * view_filter_count && parseInt(jQuery(this).parent().find('ul li').css('left')) >= -(view_filter_width * (view_filter_count) - view_filter_container_width)) {
370
- click = 0;
371
- jQuery(this).parent().find('ul li').animate({left: "-=" + view_filter_width}, 400, function () {
372
- click = 1
373
- });
374
- }
375
-
376
- });
377
- jQuery('.ecwd_calendar_view_tabs .filter-arrow-left').click(function () {
378
- var view_filter_width = jQuery(this).parent().find('ul li').eq(0).width();
379
- if (jQuery(this).parent().find('.filter-arrow-right').css('display') == 'none')
380
- jQuery(this).parent().find('.filter-arrow-right').show();
381
- if (parseInt(jQuery(this).parent().find('ul li').css('left')) == -view_filter_width)
382
- jQuery(this).hide();
383
- if (click && parseInt(jQuery(this).parent().find('ul li').css('left')) < 0) {
384
- click = 0;
385
- jQuery(this).parent().find('ul li').animate({left: "+=" + view_filter_width}, 400, function () {
386
- click = 1
387
  });
388
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
- });
391
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
 
393
  function upcomingEventsSlider() {
394
  var current_date = Date.parse(Date());
307
 
308
  }
309
 
310
+ function showFilterSliderArrow() {
311
+ var li_position, li_width, last_child;
312
+ $(".calendar_main:not([class^='ecwd_widget'] .calendar_main) .ecwd_calendar_view_tabs").each(function (key, element) {
313
+ var cwidth = $(element).closest('.ecwd_calendar').outerWidth();
314
+ if (cwidth == 0)
315
+ cwidth = 600;
316
+ if ($(this).find('.ecwd-search').length != 0)
317
+ var ecwd_calendar_view_tabs_width = parseInt(cwidth) - 50;
318
+ else
319
+ var ecwd_calendar_view_tabs_width = parseInt(cwidth);
320
+ if (parseInt(jQuery('body').width()) <= 768 || $(".calendar_full_content .ecwd_calendar").width() < 600) {
321
+ var ecwd_calendar_view_visible_count = parseInt(ecwd_calendar_view_tabs_width / 110);
322
+ } else if (parseInt(jQuery('body').width()) <= 500 || $(".calendar_full_content .ecwd_calendar").width() < 400) {
323
+ var ecwd_calendar_view_visible_count = parseInt(ecwd_calendar_view_tabs_width / 90);
324
+ } else {
325
+ var ecwd_calendar_view_visible_count = parseInt(ecwd_calendar_view_tabs_width / 150);
 
 
 
 
 
 
 
 
 
 
326
  }
327
+ $(element).find('.filter-container').width(ecwd_calendar_view_tabs_width);
328
+ $(element).find('ul li').each(function (keyli, elementli) {
329
+ if ($(elementli).hasClass('ecwd-selected-mode')) {
330
+ li_position = keyli;
331
+ li_width = $(elementli).outerWidth();
332
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  });
334
+ if ($(element).find(".filter-arrow-right").css("display") == "block" || last_child == 1)
335
+ $(element).find('.filter-container ul li').width((ecwd_calendar_view_tabs_width - 30) / ecwd_calendar_view_visible_count);
336
+ else
337
+ $(element).find('.filter-container ul li').width((ecwd_calendar_view_tabs_width) / ecwd_calendar_view_visible_count);
338
+ var ecwd_view_item_width = $(element).find('.filter-container ul li').eq(0).innerWidth() - 1;
339
+ if (!(ecwd_calendar_view_tabs_width < ecwd_view_item_width * parseInt($(element).find('.filter-container ul li').length) && !($(element).find("ul li:last-child").hasClass("ecwd-selected-mode"))))
340
+ $(element).find('.filter-arrow-right').hide();
341
+ if (ecwd_calendar_view_tabs_width < ecwd_view_item_width * parseInt($(element).find('.filter-container ul li').length) && !($(element).find("ul li:last-child").hasClass("ecwd-selected-mode"))) {
342
+ $(element).find('.filter-arrow-right').show();
343
+ } else if ($(element).find("ul li:last-child").hasClass("ecwd-selected-mode")) {
344
+ last_child = 1;
345
+ }
346
+ if (ecwd_calendar_view_visible_count <= li_position && li_position != 0) {
347
+ $(element).find('ul li').css({left: "-" + ((li_position + 1 - ecwd_calendar_view_visible_count) * ecwd_view_item_width) + "px"});
348
+ $(element).find('.filter-arrow-left').show();
349
+ } else
350
+ $(element).find('ul li').css({left: "0px"});
351
+ });
352
 
353
+ $('.ecwd_calendar_view_tabs .filter-arrow-right').click(function () {
354
+ var view_filter_width = $(this).parent().find('ul li').eq(0).outerWidth();
355
+ var cwidth = $(this).closest('.ecwd_calendar').outerWidth();
356
+ if (cwidth == 0)
357
+ cwidth = 600;
358
+ if ($(this).find('.ecwd-search').length != 0)
359
+ var view_filter_container_width = parseInt(cwidth) - 50;
360
+ else
361
+ var view_filter_container_width = parseInt(cwidth);
362
+ var view_filter_count = parseInt($(this).parent().find('ul li').length);
363
+ $(this).parent().find('.filter-arrow-left').show();
364
+ if (parseInt($(this).parent().find('ul li').css('left')) <= -((view_filter_width * view_filter_count) - view_filter_container_width) + view_filter_width)
365
+ $(this).hide();
366
+ if (click && view_filter_container_width < view_filter_width * view_filter_count && parseInt($(this).parent().find('ul li').css('left')) >= -(view_filter_width * (view_filter_count) - view_filter_container_width)) {
367
+ click = 0;
368
+ $(this).parent().find('ul li').animate({left: "-=" + view_filter_width}, 400, function () {
369
+ click = 1
370
+ });
371
+ }
372
+ });
373
+ $('.ecwd_calendar_view_tabs .filter-arrow-left').click(function () {
374
+ var view_filter_width = $(this).parent().find('ul li').eq(0).outerWidth();
375
+ if ($(this).parent().find('.filter-arrow-right').css('display') == 'none')
376
+ $(this).parent().find('.filter-arrow-right').show();
377
+ if (parseInt($(this).parent().find('ul li').css('left')) == -view_filter_width)
378
+ $(this).hide();
379
+ if (click && parseInt($(this).parent().find('ul li').css('left')) < 0) {
380
+ click = 0;
381
+ $(this).parent().find('ul li').animate({left: "+=" + view_filter_width}, 400, function () {
382
+ click = 1
383
+ });
384
+ }
385
+ });
386
+ }
387
 
388
  function upcomingEventsSlider() {
389
  var current_date = Date.parse(Date());
languages/ecwd-ca_ES.mo ADDED
Binary file
languages/ecwd-ca_ES.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-11-11 17:33+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.7.5\n"
12
+ "X-Poedit-Basepath: ../\n"
13
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Poedit-KeywordsList: _e;__\n"
15
+ "Language: ca_ES\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "X-Poedit-SearchPathExcluded-0: views/admin\n"
18
+ "X-Poedit-SearchPathExcluded-1: js\n"
19
+ "X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
20
+ "X-Poedit-SearchPathExcluded-3: includes/register-settings.php\n"
21
+ "X-Poedit-SearchPathExcluded-4: includes/ecwd-ical-events-class.php\n"
22
+ "X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
23
+ "X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
24
+ "X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
25
+
26
+ #: includes/calendar-class.php:175 includes/calendar-class.php:176
27
+ #: views/widgets.php:168
28
+ msgid "Month"
29
+ msgstr "Mes"
30
+
31
+ #: includes/calendar-class.php:177 views/widgets.php:169
32
+ msgid "List"
33
+ msgstr "Llista"
34
+
35
+ #: includes/calendar-class.php:179
36
+ msgid "Week"
37
+ msgstr "Setmana"
38
+
39
+ #: includes/calendar-class.php:183
40
+ msgid "Day"
41
+ msgstr "Dia"
42
+
43
+ #: includes/calendar-class.php:186
44
+ msgid "Map"
45
+ msgstr "Mapa"
46
+
47
+ #: includes/calendar-class.php:188
48
+ msgid "4 Days"
49
+ msgstr "4 dies"
50
+
51
+ #: includes/calendar-class.php:191
52
+ msgid "Posterboard"
53
+ msgstr "Poster"
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 "Tot el dia"
64
+
65
+ #: includes/calendar-class.php:440 includes/calendar-class.php:520
66
+ #: includes/calendar-class.php:1386
67
+ msgid "No events"
68
+ msgstr "Sense esdeveniments"
69
+
70
+ #: includes/calendar-class.php:644
71
+ msgid "No Events"
72
+ msgstr "Sense esdeveniments"
73
+
74
+ #: includes/calendar-class.php:1256
75
+ msgid "More events"
76
+ msgstr "Més esdeveniments"
77
+
78
+ #: includes/ecwd-cpt-filter.php:67
79
+ msgid "From"
80
+ msgstr "Des de"
81
+
82
+ #: includes/ecwd-cpt-filter.php:74
83
+ msgid "To"
84
+ msgstr "Fins"
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 "Repetir cada"
91
+
92
+ #: includes/ecwd-display-class.php:876 includes/texts.php:66
93
+ msgid "days"
94
+ msgstr "dies"
95
+
96
+ #: includes/ecwd-display-class.php:878 includes/texts.php:61
97
+ msgid "Repeat every day"
98
+ msgstr "Repetir cada dia"
99
+
100
+ #: includes/ecwd-display-class.php:882 includes/texts.php:67
101
+ msgid "weeks"
102
+ msgstr "setmanes"
103
+
104
+ #: includes/ecwd-display-class.php:884 includes/texts.php:62
105
+ msgid "Repeat every week"
106
+ msgstr "Repetir cada setmana"
107
+
108
+ #: includes/ecwd-display-class.php:889
109
+ msgid "on"
110
+ msgstr "de"
111
+
112
+ #: includes/ecwd-display-class.php:900 includes/texts.php:68
113
+ msgid "months"
114
+ msgstr "mesos"
115
+
116
+ #: includes/ecwd-display-class.php:902 includes/texts.php:63
117
+ msgid "Repeat every month"
118
+ msgstr "Repetir cada mes"
119
+
120
+ #: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
121
+ msgid "on the same day"
122
+ msgstr "el mateix dia"
123
+
124
+ #: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
125
+ msgid "on the"
126
+ msgstr "el"
127
+
128
+ #: includes/ecwd-display-class.php:917 includes/texts.php:69
129
+ msgid "years"
130
+ msgstr "anys"
131
+
132
+ #: includes/ecwd-display-class.php:919 includes/texts.php:64
133
+ msgid "Repeat every year"
134
+ msgstr "Repetir cada any"
135
+
136
+ #: includes/ecwd-display-class.php:940 includes/texts.php:70
137
+ msgid "until"
138
+ msgstr "fins"
139
+
140
+ #: includes/ecwd-functions.php:8
141
+ msgid "Loading..."
142
+ msgstr "Carregant..."
143
+
144
+ #: includes/ecwd-functions.php:439 includes/texts.php:53
145
+ msgid "DAYS"
146
+ msgstr "DIES"
147
+
148
+ #: includes/ecwd-functions.php:440 includes/texts.php:54
149
+ msgid "HOURS"
150
+ msgstr "HORES"
151
+
152
+ #: includes/ecwd-functions.php:441 includes/texts.php:55
153
+ msgid "MINUTES"
154
+ msgstr "MINUTS"
155
+
156
+ #: includes/ecwd-functions.php:442 includes/texts.php:56
157
+ msgid "SECONDS"
158
+ msgstr "SEGONS"
159
+
160
+ #: includes/texts.php:2
161
+ msgid "January"
162
+ msgstr "Gener"
163
+
164
+ #: includes/texts.php:3
165
+ msgid "February"
166
+ msgstr "Febrer"
167
+
168
+ #: includes/texts.php:4
169
+ msgid "March"
170
+ msgstr "Març"
171
+
172
+ #: includes/texts.php:5
173
+ msgid "April"
174
+ msgstr "Abril"
175
+
176
+ #: includes/texts.php:6
177
+ msgid "May"
178
+ msgstr "Maig"
179
+
180
+ #: includes/texts.php:7
181
+ msgid "June"
182
+ msgstr "Juny"
183
+
184
+ #: includes/texts.php:8
185
+ msgid "July"
186
+ msgstr "Juliol"
187
+
188
+ #: includes/texts.php:9
189
+ msgid "August"
190
+ msgstr "Agost"
191
+
192
+ #: includes/texts.php:10
193
+ msgid "September"
194
+ msgstr "Setembre"
195
+
196
+ #: includes/texts.php:11
197
+ msgid "October"
198
+ msgstr "Octubre"
199
+
200
+ #: includes/texts.php:12
201
+ msgid "November"
202
+ msgstr "Novembre"
203
+
204
+ #: includes/texts.php:13
205
+ msgid "December"
206
+ msgstr "Desembre"
207
+
208
+ #: includes/texts.php:15
209
+ msgid "Sunday"
210
+ msgstr "Diumenge"
211
+
212
+ #: includes/texts.php:16
213
+ msgid "Monday"
214
+ msgstr "Dilluns"
215
+
216
+ #: includes/texts.php:17
217
+ msgid "Tuesday"
218
+ msgstr "Dimarts"
219
+
220
+ #: includes/texts.php:18
221
+ msgid "Wednesday"
222
+ msgstr "Dimecres"
223
+
224
+ #: includes/texts.php:19
225
+ msgid "Thursday"
226
+ msgstr "Dijous"
227
+
228
+ #: includes/texts.php:20
229
+ msgid "Friday"
230
+ msgstr "Divendres"
231
+
232
+ #: includes/texts.php:21
233
+ msgid "Saturday"
234
+ msgstr "Dissabte"
235
+
236
+ #: includes/texts.php:25
237
+ msgid "Sun"
238
+ msgstr "Dg"
239
+
240
+ #: includes/texts.php:26
241
+ msgid "Mon"
242
+ msgstr "Dl"
243
+
244
+ #: includes/texts.php:27
245
+ msgid "Tue"
246
+ msgstr "Dm"
247
+
248
+ #: includes/texts.php:28
249
+ msgid "Wed"
250
+ msgstr "Dc"
251
+
252
+ #: includes/texts.php:29
253
+ msgid "Thu"
254
+ msgstr "Dj"
255
+
256
+ #: includes/texts.php:30
257
+ msgid "Fri"
258
+ msgstr "Dv"
259
+
260
+ #: includes/texts.php:31
261
+ msgid "Sat"
262
+ msgstr "Ds"
263
+
264
+ #: includes/texts.php:34
265
+ msgid "Su"
266
+ msgstr "Dg"
267
+
268
+ #: includes/texts.php:35
269
+ msgid "Mo"
270
+ msgstr "Dl"
271
+
272
+ #: includes/texts.php:36
273
+ msgid "Tu"
274
+ msgstr "Dm"
275
+
276
+ #: includes/texts.php:37
277
+ msgid "We"
278
+ msgstr "Dc"
279
+
280
+ #: includes/texts.php:38
281
+ msgid "Th"
282
+ msgstr "Dj"
283
+
284
+ #: includes/texts.php:39
285
+ msgid "Fr"
286
+ msgstr "Dv"
287
+
288
+ #: includes/texts.php:40
289
+ msgid "Sa"
290
+ msgstr "Ds"
291
+
292
+ #: includes/texts.php:44
293
+ msgid "Show Filters"
294
+ msgstr "Mostrar filtres"
295
+
296
+ #: includes/texts.php:45
297
+ msgid "Collapse Filters"
298
+ msgstr "Amagar filtres"
299
+
300
+ #: includes/texts.php:46
301
+ msgid "Reset Filters"
302
+ msgstr "Resetejar filtres"
303
+
304
+ #: includes/texts.php:48
305
+ msgid "Days"
306
+ msgstr "Dies"
307
+
308
+ #: includes/texts.php:49
309
+ msgid "Categories"
310
+ msgstr "Categories"
311
+
312
+ #: includes/texts.php:50
313
+ msgid "Venues"
314
+ msgstr "Llocs"
315
+
316
+ #: includes/texts.php:57
317
+ msgid "The event has just started"
318
+ msgstr "L'esdeveniment ha començat"
319
+
320
+ #: includes/texts.php:72
321
+ msgid "Sundays"
322
+ msgstr "Diumenges"
323
+
324
+ #: includes/texts.php:73
325
+ msgid "Mondays"
326
+ msgstr "Dilluns"
327
+
328
+ #: includes/texts.php:74
329
+ msgid "Tuesdays"
330
+ msgstr "Dimarts"
331
+
332
+ #: includes/texts.php:75
333
+ msgid "Wednesdays"
334
+ msgstr "Dimecres"
335
+
336
+ #: includes/texts.php:76
337
+ msgid "Thursdays"
338
+ msgstr "Dijous"
339
+
340
+ #: includes/texts.php:77
341
+ msgid "Fridays"
342
+ msgstr "Divendres"
343
+
344
+ #: includes/texts.php:78
345
+ msgid "Saturdays"
346
+ msgstr "Dissabtes"
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 "Dada"
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 "Organitzadors"
360
+
361
+ #: views/ecwd-organizer-content.php:109
362
+ msgid "upcoming events"
363
+ msgstr "propers esdeveniments"
364
+
365
+ #: views/ecwd-venue-content.php:141
366
+ msgid "events"
367
+ msgstr "esdeveniments"
368
+
369
+ #: views/single-event.php:190
370
+ msgid "Venue"
371
+ msgstr "Lloc"
372
+
373
+ #: views/single-event.php:200
374
+ msgid "Location"
375
+ msgstr "Localització"
376
+
377
+ #: views/single-event.php:449
378
+ msgid "Related events"
379
+ msgstr "Esdeveniments relacionats"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado
3
  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, widget
5
  Requires at least: 3.9
6
- Tested up to: 4.3
7
- Stable tag: 1.0.36
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -90,6 +90,7 @@ If you think you found a bug in Event Calendar WD or have any problem/question
90
 
91
  *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. *
92
 
 
93
  Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
94
  Finnish (fi) by Håkan Mitts
95
  German (de_DE) by Ogi Djuraskovic
@@ -142,6 +143,10 @@ After downloading the ZIP file of the Event Calendar WD plugin,
142
 
143
  == Changelog ==
144
 
 
 
 
 
145
  = 1.0.36 =
146
  * Changed: Responsive pop-up styles
147
  * Changed: Featured plugins
3
  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, widget
5
  Requires at least: 3.9
6
+ Tested up to: 4.4
7
+ Stable tag: 1.0.37
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
90
 
91
  *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. *
92
 
93
+ Catalan (ca) by Vicenc Huguet
94
  Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
95
  Finnish (fi) by Håkan Mitts
96
  German (de_DE) by Ogi Djuraskovic
143
 
144
  == Changelog ==
145
 
146
+ = 1.0.37 =
147
+ * Added: Catalan language support(by Vicenc Huguet)
148
+ * Fixed: Views slider js issue
149
+
150
  = 1.0.36 =
151
  * Changed: Responsive pop-up styles
152
  * Changed: Featured plugins
views/ecwd-event-popup.php CHANGED
@@ -204,8 +204,7 @@ $event_categories = wp_get_post_terms($post->ID, 'ecwd_event_category', $args);
204
  <?php echo $ecwd_event_location; ?>
205
  </span>
206
  <?php } ?>
207
- </div>
208
- <?php do_action('ecwd_view_ext'); ?>
209
  </div>
210
  </div>
211
  <?php if ($ecwd_social_icons) {
204
  <?php echo $ecwd_event_location; ?>
205
  </span>
206
  <?php } ?>
207
+ </div>
 
208
  </div>
209
  </div>
210
  <?php if ($ecwd_social_icons) {