Event Calendar WD – Responsive Event Calendar plugin - Version 1.0.45

Version Description

  • Added: Latvian translation (by Intars G.)
  • Fixed: Issue with venues dropdown in the back end
  • Fixed: CSS issue in calendar views section for 'right to left' languages (e.g. arabic)
Download this release

Release Info

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

Code changes from version 1.0.44 to 1.0.45

css/style.css CHANGED
@@ -1787,7 +1787,7 @@ div[class^="ecwd-page-"].ecwd_calendar .ecwd-week-date.resp{
1787
  min-height: 300px;
1788
  max-width:100%;
1789
  }
1790
- .ecwd_calendar_container.map .ecwd_map_div img, #ecwd_map_div img, .google_map img, .ecwd-show-map img { max-width:none !important; }
1791
  .event_dropdown_cont{
1792
  border-top: 1px solid #D5DCE2;
1793
  display:none;
@@ -2678,4 +2678,11 @@ table.ecwd_calendar_container > tbody > tr >td{
2678
  }
2679
  .ecwd_hidden{
2680
  display:none !important;
 
 
 
 
 
 
 
2681
  }
1787
  min-height: 300px;
1788
  max-width:100%;
1789
  }
1790
+ .ecwd_calendar_container.map .ecwd_map_div img, #ecwd_map_div img, .ecwd_google_map img, .ecwd-show-map img { max-width:none !important; }
1791
  .event_dropdown_cont{
1792
  border-top: 1px solid #D5DCE2;
1793
  display:none;
2678
  }
2679
  .ecwd_hidden{
2680
  display:none !important;
2681
+ }
2682
+ .ecwd_events_date{
2683
+ font-size:15px
2684
+ }
2685
+ .ecwd_calendar .filter-container{
2686
+ direction: ltr;
2687
+ float:left;
2688
  }
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.44
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.45
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.44';
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.45';
10
  protected $ecwd_page = null;
11
  protected $notices = null;
12
 
ecwd_class.php CHANGED
@@ -6,7 +6,7 @@
6
  */
7
  class ECWD {
8
 
9
- protected $version = '1.0.44';
10
  protected $plugin_name = 'event-calendar-wd';
11
  protected $prefix = 'ecwd';
12
  protected static $instance = null;
6
  */
7
  class ECWD {
8
 
9
+ protected $version = '1.0.45';
10
  protected $plugin_name = 'event-calendar-wd';
11
  protected $prefix = 'ecwd';
12
  protected static $instance = null;
includes/calendar-class.php CHANGED
@@ -400,8 +400,18 @@ class Calendar {
400
  }
401
  $html .= '<li class="' . $image_class . '" itemscope itemtype="http://schema.org/Event">';
402
  if ( ! $this->widget ) {
 
 
403
  $html .= '<div class="ecwd-list-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $event['from'] ) ) . 'T' . date( 'H:i', strtotime( $event['starttime'] ) ) . '">' . __( date( 'd', strtotime( $event['from'] ) ), 'ecwd' ) . '</div>';
404
- $html .= '<div class="ecwd-list-img"><div class="ecwd-list-img-container"><div class="ecwd-list-date web">' . (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($event['from'])):(date('d', strtotime($event['from'])) . '.' . __(date('F', strtotime($event['from'])), 'ecwd') . '.' . __(date('l', strtotime($event['from'])), 'ecwd'))) . '</div>';
 
 
 
 
 
 
 
 
405
 
406
  $html .= '<div class="ecwd-img">';
407
  if ( get_the_post_thumbnail( $event['id'] ) || $event['image'] ) {
@@ -961,9 +971,17 @@ class Calendar {
961
  if ( $this->displaytype == 'mini' ) {
962
  $content = $day;
963
  } elseif ( $this->widget && $this->displaytype != 'mini' ) {
964
- $content = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
965
  } elseif ( ( $this->displaytype == 'week' || $this->displaytype == 'day' || $this->displaytype == '4day' ) && ! $this->widget ) {
966
- $content = '<div class="ecwd-week-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $date ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($date)):(date('d', strtotime($date)) . '.' . __(date('F', strtotime($date)), 'ecwd') . '.' . __(date('l', strtotime($date)), 'ecwd'))). '</div>';
 
 
 
 
 
 
 
 
967
  } else {
968
  $content = '<div class="day-number">' . $day . '</div>'; // day number or prev/next month cell content
969
  }
@@ -1139,10 +1157,22 @@ class Calendar {
1139
 
1140
 
1141
  if ( $this->displaytype == 'week' || $this->displaytype == 'day' || $this->displaytype == '4day' ) {
 
1142
  if ( count( $cellevents ) > 0 ) {
 
1143
  $html = '';
 
1144
  if ( ! $this->widget ) {
1145
- $html = '<div class="ecwd-week-date resp" style="background:#' . $this->eventlistbg . '" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $date ) ) . 'T' . date( 'H:i', strtotime( $date ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($date)):(date('d', strtotime($date)) . '.' . __(date('F', strtotime($date)), 'ecwd') . '.' . __(date('l', strtotime($date)), 'ecwd'))) . '</div>';
 
 
 
 
 
 
 
 
 
1146
  } else {
1147
  $html = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
1148
  }
400
  }
401
  $html .= '<li class="' . $image_class . '" itemscope itemtype="http://schema.org/Event">';
402
  if ( ! $this->widget ) {
403
+
404
+
405
  $html .= '<div class="ecwd-list-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $event['from'] ) ) . 'T' . date( 'H:i', strtotime( $event['starttime'] ) ) . '">' . __( date( 'd', strtotime( $event['from'] ) ), 'ecwd' ) . '</div>';
406
+ $event_date = (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($event['from'])):(date('d', strtotime($event['from'])) . '.' . __(date('F', strtotime($event['from'])), 'ecwd') . '.' . __(date('l', strtotime($event['from'])), 'ecwd')));
407
+ if($this->list_date_format!=='d.F.l'){
408
+ $month_name = date('F', strtotime($event['from']));
409
+ $event_date = str_replace($month_name, __($month_name, 'ecwd'), $event_date);
410
+
411
+ }
412
+
413
+
414
+ $html .= '<div class="ecwd-list-img"><div class="ecwd-list-img-container"><div class="ecwd-list-date web">' . $event_date . '</div>';
415
 
416
  $html .= '<div class="ecwd-img">';
417
  if ( get_the_post_thumbnail( $event['id'] ) || $event['image'] ) {
971
  if ( $this->displaytype == 'mini' ) {
972
  $content = $day;
973
  } elseif ( $this->widget && $this->displaytype != 'mini' ) {
974
+ $content = '<div class="ecwd-week-date">' . __(date( 'd', strtotime( $date ) ),'ecwd') . '</div>';
975
  } elseif ( ( $this->displaytype == 'week' || $this->displaytype == 'day' || $this->displaytype == '4day' ) && ! $this->widget ) {
976
+
977
+ //here
978
+ $event_date = (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($date)):(date('d', strtotime($date)) . '.' . __(date('F', strtotime($date)), 'ecwd') . '.' . __(date('l', strtotime($date)), 'ecwd')));
979
+ if($this->list_date_format!=='d.F.l'){
980
+ $month_name = date('F', strtotime($date));
981
+ $event_date = str_replace($month_name, __($month_name, 'ecwd'), $event_date);
982
+
983
+ }
984
+ $content = '<div class="ecwd-week-date resp" itemprop="startDate" content="' . date('Y-m-d', strtotime($date)) . '">' . __(date('d', strtotime($date)) ,'ecwd'). '</div><div class="ecwd-week-date web"">' . $event_date . '</div>';
985
  } else {
986
  $content = '<div class="day-number">' . $day . '</div>'; // day number or prev/next month cell content
987
  }
1157
 
1158
 
1159
  if ( $this->displaytype == 'week' || $this->displaytype == 'day' || $this->displaytype == '4day' ) {
1160
+
1161
  if ( count( $cellevents ) > 0 ) {
1162
+
1163
  $html = '';
1164
+
1165
  if ( ! $this->widget ) {
1166
+ $event_date = (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($date)):(date('d', strtotime($date)) . '.' . __(date('F', strtotime($date)), 'ecwd') . '.' . __(date('l', strtotime($date)), 'ecwd')));
1167
+ if($this->list_date_format!=='d.F.l'){
1168
+ $month_name = date('F', strtotime($date));
1169
+ $event_date = str_replace($month_name, __($month_name, 'ecwd'), $event_date);
1170
+
1171
+ }
1172
+
1173
+
1174
+
1175
+ $html = '<div class="ecwd-week-date resp" style="background:#' . $this->eventlistbg . '" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $date ) ) . 'T' . date( 'H:i', strtotime( $date ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . $event_date . '</div>';
1176
  } else {
1177
  $html = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
1178
  }
includes/ecwd-cpt-class.php CHANGED
@@ -87,10 +87,23 @@ class ECWD_Cpt {
87
 
88
  //category filter
89
  add_filter( 'init', array( $this, 'event_restrict_manage' ) );
90
-
91
- }
92
-
93
-
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  public function duplicate_event_link( $actions, $post ) {
95
  if ( current_user_can( 'edit_posts' ) ) {
96
  if ( $post->post_type == self::EVENT_POST_TYPE ) {
87
 
88
  //category filter
89
  add_filter( 'init', array( $this, 'event_restrict_manage' ) );
90
+ add_action('the_title', array($this, 'is_events_list_page_title'),11,2);
91
+
92
+ }
93
+
94
+
95
+ public function is_events_list_page_title($title,$id){
96
+ if(!is_admin() && in_the_loop() && is_archive() && get_post_type() == 'ecwd_event'){
97
+ if(isset(get_option('ecwd_settings_general')['events_date']) && get_option('ecwd_settings_general')['events_date'] == '1'){
98
+ $post_metas = get_post_meta($id);
99
+ $ecwd_event_date_from = isset($post_metas['ecwd_event_date_from'][0]) ? $post_metas['ecwd_event_date_from'][0] : '';
100
+ $ecwd_event_date_to = isset($post_metas['ecwd_event_date_to'][0]) ? $post_metas['ecwd_event_date_to'][0] : '';
101
+ return $title."<p class='ecwd_events_date'>".$ecwd_event_date_from." - ". $ecwd_event_date_to."<p>";
102
+ }
103
+ }
104
+ return $title;
105
+ }
106
+
107
  public function duplicate_event_link( $actions, $post ) {
108
  if ( current_user_can( 'edit_posts' ) ) {
109
  if ( $post->post_type == self::EVENT_POST_TYPE ) {
includes/register-settings.php CHANGED
@@ -75,7 +75,7 @@ function ecwd_register_settings() {
75
  'time_zone' => array(
76
  'id' => 'time_zone',
77
  'name' => __('TimeZone', 'ecwd'),
78
- 'desc' => __('If the timezone is not set, the server timezone will be used (if set in php settings), otherwise the Europe/Berlin timezone will be used', 'ecwd'),
79
  'size' => 'medium-text',
80
  'type' => 'text'
81
  ),
@@ -203,6 +203,13 @@ function ecwd_register_settings() {
203
  'desc' => __('Define the default text for empty events description.', 'ecwd'),
204
  'size' => 'medium-text',
205
  'type' => 'text'
 
 
 
 
 
 
 
206
  ),
207
  ),
208
  'category_archive' => array(
75
  'time_zone' => array(
76
  'id' => 'time_zone',
77
  'name' => __('TimeZone', 'ecwd'),
78
+ 'desc' => __('Use Continent/City format, e.g. Europe/Berlin. If left empty, the server timezone will be used (if set in php settings), otherwise default Europe/Berlin', 'ecwd'),
79
  'size' => 'medium-text',
80
  'type' => 'text'
81
  ),
203
  'desc' => __('Define the default text for empty events description.', 'ecwd'),
204
  'size' => 'medium-text',
205
  'type' => 'text'
206
+ ),
207
+ 'events_date' => array(
208
+ 'id' => 'events_date',
209
+ 'name' => __('Show event date in the events list page', 'ecwd'),
210
+ 'desc' => '',
211
+ 'type' => 'radio',
212
+ 'default' => 0
213
  ),
214
  ),
215
  'category_archive' => array(
languages/ecwd-lv.mo ADDED
Binary file
languages/ecwd-lv.po ADDED
@@ -0,0 +1,388 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2016-01-25 11:29+0400\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: lv\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 "Mēneša"
30
+
31
+ #: includes/calendar-class.php:177 views/widgets.php:169
32
+ msgid "List"
33
+ msgstr "Secībā"
34
+
35
+ #: includes/calendar-class.php:179
36
+ msgid "Week"
37
+ msgstr "Nedēļas"
38
+
39
+ #: includes/calendar-class.php:183
40
+ msgid "Day"
41
+ msgstr "Dienas"
42
+
43
+ #: includes/calendar-class.php:186
44
+ msgid "Map"
45
+ msgstr "Karte"
46
+
47
+ #: includes/calendar-class.php:188
48
+ msgid "4 Days"
49
+ msgstr "4 Dienu"
50
+
51
+ #: includes/calendar-class.php:191
52
+ msgid "Posterboard"
53
+ msgstr "Afiša"
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 "Visu dienu"
64
+
65
+ #: includes/calendar-class.php:440 includes/calendar-class.php:520
66
+ #: includes/calendar-class.php:1386
67
+ msgid "No events"
68
+ msgstr "Nav notikumu"
69
+
70
+ #: includes/calendar-class.php:644
71
+ msgid "No Events"
72
+ msgstr "Nav Notikumu"
73
+
74
+ #: includes/calendar-class.php:1256
75
+ msgid "More events"
76
+ msgstr "Vairāk notikumu"
77
+
78
+ #: includes/ecwd-cpt-filter.php:67
79
+ msgid "From"
80
+ msgstr "No"
81
+
82
+ #: includes/ecwd-cpt-filter.php:74
83
+ msgid "To"
84
+ msgstr "līdz"
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 "Atkārtot katru"
91
+
92
+ #: includes/ecwd-display-class.php:876 includes/texts.php:66
93
+ msgid "days"
94
+ msgstr "Dienu"
95
+
96
+ #: includes/ecwd-display-class.php:878 includes/texts.php:61
97
+ msgid "Repeat every day"
98
+ msgstr "Atkārtot katru dienu"
99
+
100
+ #: includes/ecwd-display-class.php:882 includes/texts.php:67
101
+ msgid "weeks"
102
+ msgstr "nedēļā"
103
+
104
+ # Repeat every week on month-Atkārtot katra mēneša nedēļu
105
+ # or
106
+ # Atkārtot katru nedēļu mēnesī
107
+ #: includes/ecwd-display-class.php:884 includes/texts.php:62
108
+ msgid "Repeat every week"
109
+ msgstr "Atkārtot katru nedēļu"
110
+
111
+ #: includes/ecwd-display-class.php:889
112
+ msgid "on"
113
+ msgstr "ik"
114
+
115
+ #: includes/ecwd-display-class.php:900 includes/texts.php:68
116
+ msgid "months"
117
+ msgstr "Mēnesi"
118
+
119
+ #: includes/ecwd-display-class.php:902 includes/texts.php:63
120
+ msgid "Repeat every month"
121
+ msgstr "Atkārtot katru mēnesi"
122
+
123
+ #: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
124
+ msgid "on the same day"
125
+ msgstr "vienā un tajā pašā dienā"
126
+
127
+ #: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
128
+ msgid "on the"
129
+ msgstr "uz"
130
+
131
+ #: includes/ecwd-display-class.php:917 includes/texts.php:69
132
+ msgid "years"
133
+ msgstr "gadi"
134
+
135
+ #: includes/ecwd-display-class.php:919 includes/texts.php:64
136
+ msgid "Repeat every year"
137
+ msgstr "Atkārtot katru gadu"
138
+
139
+ #: includes/ecwd-display-class.php:940 includes/texts.php:70
140
+ msgid "until"
141
+ msgstr "līdz"
142
+
143
+ #: includes/ecwd-functions.php:8
144
+ msgid "Loading..."
145
+ msgstr "Ielādējas..."
146
+
147
+ #: includes/ecwd-functions.php:439 includes/texts.php:53
148
+ msgid "DAYS"
149
+ msgstr "DIENAS"
150
+
151
+ #: includes/ecwd-functions.php:440 includes/texts.php:54
152
+ msgid "HOURS"
153
+ msgstr "STUNDAS"
154
+
155
+ #: includes/ecwd-functions.php:441 includes/texts.php:55
156
+ msgid "MINUTES"
157
+ msgstr "MINŪTES"
158
+
159
+ #: includes/ecwd-functions.php:442 includes/texts.php:56
160
+ msgid "SECONDS"
161
+ msgstr "SEKUNDES"
162
+
163
+ #: includes/texts.php:2
164
+ msgid "January"
165
+ msgstr "Janvāris"
166
+
167
+ #: includes/texts.php:3
168
+ msgid "February"
169
+ msgstr "Februāris"
170
+
171
+ #: includes/texts.php:4
172
+ msgid "March"
173
+ msgstr "Marts"
174
+
175
+ #: includes/texts.php:5
176
+ msgid "April"
177
+ msgstr "Aprīlis"
178
+
179
+ #: includes/texts.php:6
180
+ msgid "May"
181
+ msgstr "Maijs"
182
+
183
+ #: includes/texts.php:7
184
+ msgid "June"
185
+ msgstr "Jūnijs"
186
+
187
+ #: includes/texts.php:8
188
+ msgid "July"
189
+ msgstr "Jūlijs"
190
+
191
+ #: includes/texts.php:9
192
+ msgid "August"
193
+ msgstr "Augusts"
194
+
195
+ #: includes/texts.php:10
196
+ msgid "September"
197
+ msgstr "Septembris"
198
+
199
+ #: includes/texts.php:11
200
+ msgid "October"
201
+ msgstr "Oktobris"
202
+
203
+ #: includes/texts.php:12
204
+ msgid "November"
205
+ msgstr "Novembris"
206
+
207
+ #: includes/texts.php:13
208
+ msgid "December"
209
+ msgstr "Decembris"
210
+
211
+ #: includes/texts.php:15
212
+ msgid "Sunday"
213
+ msgstr "Sestdiena"
214
+
215
+ #: includes/texts.php:16
216
+ msgid "Monday"
217
+ msgstr "Pirmdiena"
218
+
219
+ #: includes/texts.php:17
220
+ msgid "Tuesday"
221
+ msgstr "Otrdiena"
222
+
223
+ #: includes/texts.php:18
224
+ msgid "Wednesday"
225
+ msgstr "Trešdiena"
226
+
227
+ #: includes/texts.php:19
228
+ msgid "Thursday"
229
+ msgstr "Ceturtdiena"
230
+
231
+ #: includes/texts.php:20
232
+ msgid "Friday"
233
+ msgstr "Piektdiena"
234
+
235
+ #: includes/texts.php:21
236
+ msgid "Saturday"
237
+ msgstr "Sestdiena"
238
+
239
+ #: includes/texts.php:25
240
+ msgid "Sun"
241
+ msgstr "Sv."
242
+
243
+ #: includes/texts.php:26
244
+ msgid "Mon"
245
+ msgstr "Pr."
246
+
247
+ #: includes/texts.php:27
248
+ msgid "Tue"
249
+ msgstr "Ot."
250
+
251
+ #: includes/texts.php:28
252
+ msgid "Wed"
253
+ msgstr "Tr."
254
+
255
+ #: includes/texts.php:29
256
+ msgid "Thu"
257
+ msgstr "Ce."
258
+
259
+ #: includes/texts.php:30
260
+ msgid "Fri"
261
+ msgstr "Pk."
262
+
263
+ #: includes/texts.php:31
264
+ msgid "Sat"
265
+ msgstr "Se."
266
+
267
+ #: includes/texts.php:34
268
+ msgid "Su"
269
+ msgstr "Sv."
270
+
271
+ #: includes/texts.php:35
272
+ msgid "Mo"
273
+ msgstr "Pr."
274
+
275
+ #: includes/texts.php:36
276
+ msgid "Tu"
277
+ msgstr "Ot."
278
+
279
+ #: includes/texts.php:37
280
+ msgid "We"
281
+ msgstr "Tr."
282
+
283
+ #: includes/texts.php:38
284
+ msgid "Th"
285
+ msgstr "Ce."
286
+
287
+ #: includes/texts.php:39
288
+ msgid "Fr"
289
+ msgstr "Pk."
290
+
291
+ #: includes/texts.php:40
292
+ msgid "Sa"
293
+ msgstr "Se."
294
+
295
+ #: includes/texts.php:44
296
+ msgid "Show Filters"
297
+ msgstr "Rādīt Filtrus"
298
+
299
+ #: includes/texts.php:45
300
+ msgid "Collapse Filters"
301
+ msgstr "Savākt filtrus"
302
+
303
+ #: includes/texts.php:46
304
+ msgid "Reset Filters"
305
+ msgstr "Ielikt filtru"
306
+
307
+ #: includes/texts.php:48
308
+ msgid "Days"
309
+ msgstr "Dienas"
310
+
311
+ #: includes/texts.php:49
312
+ msgid "Categories"
313
+ msgstr "Kategorijas"
314
+
315
+ #: includes/texts.php:50
316
+ msgid "Venues"
317
+ msgstr "Vietas"
318
+
319
+ #: includes/texts.php:57
320
+ msgid "The event has just started"
321
+ msgstr "Notikums ir tikko sācies"
322
+
323
+ #: includes/texts.php:72
324
+ msgid "Sundays"
325
+ msgstr "Svētdiena"
326
+
327
+ #: includes/texts.php:73
328
+ msgid "Mondays"
329
+ msgstr "Pirmdiena"
330
+
331
+ #: includes/texts.php:74
332
+ msgid "Tuesdays"
333
+ msgstr "Otrdiena"
334
+
335
+ #: includes/texts.php:75
336
+ msgid "Wednesdays"
337
+ msgstr "Trešdiena"
338
+
339
+ #: includes/texts.php:76
340
+ msgid "Thursdays"
341
+ msgstr "Ceturtdiena"
342
+
343
+ #: includes/texts.php:77
344
+ msgid "Fridays"
345
+ msgstr "Piektdiena"
346
+
347
+ #: includes/texts.php:78
348
+ msgid "Saturdays"
349
+ msgstr "Sestdiena"
350
+
351
+ #: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
352
+ #: views/single-event.php:142 views/single-event.php:242
353
+ msgid "Date"
354
+ msgstr "Datums"
355
+
356
+ #: views/ecwd-event-content.php:91 views/single-event.php:170
357
+ msgid "Url"
358
+ msgstr "Url"
359
+
360
+ #: views/ecwd-event-content.php:97 views/single-event.php:177
361
+ msgid "Organizers"
362
+ msgstr "Organizātors"
363
+
364
+ #: views/ecwd-organizer-content.php:109
365
+ msgid "upcoming events"
366
+ msgstr "Gaidāmie notikumi"
367
+
368
+ #: views/ecwd-venue-content.php:141
369
+ msgid "events"
370
+ msgstr "notikumi"
371
+
372
+ #: views/single-event.php:190
373
+ msgid "Venue"
374
+ msgstr "Vieta"
375
+
376
+ #: views/single-event.php:200
377
+ msgid "Location"
378
+ msgstr "Atrašanās vieta"
379
+
380
+ #: views/single-event.php:449
381
+ msgid "Related events"
382
+ msgstr "Saistītie notikumi"
383
+
384
+ #~ msgid "What're we looking for ?"
385
+ #~ msgstr "O que vocę estamos procurando?"
386
+
387
+ #~ msgid "No additional details for this event."
388
+ #~ msgstr "Não há detalhes adicionais para este evento."
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, widget
5
  Requires at least: 3.9
6
  Tested up to: 4.4
7
- Stable tag: 1.0.44
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -95,7 +95,8 @@ Croatian (hr) by Igor Weidlich
95
  Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
96
  Finnish (fi) by Håkan Mitts
97
  German (de_DE) by Ogi Djuraskovic
98
- Hungarian (hu_HU) by Szabolcs Egerhazi
 
99
  Norwegian (Bokmål) (nb_NO) by Vegard Innerdal
100
  Norwegian (Nynorsk) (nn_NO) by Vegard Innerdal
101
  Serbian (sr_RS)
@@ -145,6 +146,11 @@ After downloading the ZIP file of the Event Calendar WD plugin,
145
 
146
  == Changelog ==
147
 
 
 
 
 
 
148
  = 1.0.44 =
149
  * Added: Croatian translation
150
  * Added: Sample data
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.45
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
95
  Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
96
  Finnish (fi) by Håkan Mitts
97
  German (de_DE) by Ogi Djuraskovic
98
+ Hungarian (hu_HU) by Szabolcs Egerhazi
99
+ Latvian (lv) by Intars G.
100
  Norwegian (Bokmål) (nb_NO) by Vegard Innerdal
101
  Norwegian (Nynorsk) (nn_NO) by Vegard Innerdal
102
  Serbian (sr_RS)
146
 
147
  == Changelog ==
148
 
149
+ = 1.0.45 =
150
+ * Added: Latvian translation (by Intars G.)
151
+ * Fixed: Issue with venues dropdown in the back end
152
+ * Fixed: CSS issue in calendar views section for 'right to left' languages (e.g. arabic)
153
+
154
  = 1.0.44 =
155
  * Added: Croatian translation
156
  * Added: Sample data
views/admin/ecwd-event-meta.php CHANGED
@@ -75,7 +75,7 @@ $ecwd_event_video = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_eve
75
  name='ecwd_all_day_event' value="1" <?php checked( $ecwd_all_day_event, '1' ); ?>/>
76
  <label for="ecwd_all_day_event"></label>
77
  </div>
78
- <label for="ecwd_all_day_event">All day</label>
79
  <!--<p class="description">
80
  </p>-->
81
 
@@ -439,7 +439,17 @@ $ecwd_event_video = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_eve
439
  </p>
440
  </td>
441
  </tr>
442
- <tr>
 
 
 
 
 
 
 
 
 
 
443
  <th scope="row"><?php _e( 'Event Venue', 'ecwd' ); ?></th>
444
  <td>
445
  <?php if ( ! empty( $venues ) ) { ?>
@@ -475,7 +485,7 @@ $ecwd_event_video = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_eve
475
  id="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_location"
476
  value="<?php echo $ecwd_event_location; ?>" size="70"/>
477
 
478
- <div class="google_map">
479
  <?php
480
  if ( ! $ecwd_map_zoom ) {
481
  $ecwd_map_zoom = 17;
@@ -515,15 +525,6 @@ $ecwd_event_video = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_eve
515
  </div>
516
  </td>
517
  </tr>
518
-
519
- <?php }else{?>
520
- <tr>
521
- <th scope="row"><label class="repeat_format"><?php _e( 'Repeat rate', 'ecwd' ); ?></label></th>
522
- <td >
523
- <a href="https://web-dorado.com/files/fromEventCalendarWD.php" target="_blank" ><?php _e('Upgrade to Pro version', 'ecwd');?></a>
524
- </td>
525
- </tr>
526
- <?php } ?>
527
  <tr>
528
  <th scope="row"><?php _e( 'Event URL', 'ecwd' ); ?></th>
529
  <td>
75
  name='ecwd_all_day_event' value="1" <?php checked( $ecwd_all_day_event, '1' ); ?>/>
76
  <label for="ecwd_all_day_event"></label>
77
  </div>
78
+ <label for="ecwd_all_day_event"><?php _e('All day','ecwd'); ?></label>
79
  <!--<p class="description">
80
  </p>-->
81
 
439
  </p>
440
  </td>
441
  </tr>
442
+
443
+
444
+ <?php }else{?>
445
+ <tr>
446
+ <th scope="row"><label class="repeat_format"><?php _e( 'Repeat rate', 'ecwd' ); ?></label></th>
447
+ <td >
448
+ <a href="https://web-dorado.com/files/fromEventCalendarWD.php" target="_blank" ><?php _e('Upgrade to Pro version', 'ecwd');?></a>
449
+ </td>
450
+ </tr>
451
+ <?php } ?>
452
+ <tr>
453
  <th scope="row"><?php _e( 'Event Venue', 'ecwd' ); ?></th>
454
  <td>
455
  <?php if ( ! empty( $venues ) ) { ?>
485
  id="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_location"
486
  value="<?php echo $ecwd_event_location; ?>" size="70"/>
487
 
488
+ <div class="ecwd_google_map">
489
  <?php
490
  if ( ! $ecwd_map_zoom ) {
491
  $ecwd_map_zoom = 17;
525
  </div>
526
  </td>
527
  </tr>
 
 
 
 
 
 
 
 
 
528
  <tr>
529
  <th scope="row"><?php _e( 'Event URL', 'ecwd' ); ?></th>
530
  <td>
views/admin/ecwd-venue-meta.php CHANGED
@@ -22,7 +22,7 @@ if(!$ecwd_map_zoom){
22
  <input type="text" name="<?php echo ECWD_PLUGIN_PREFIX;?>_venue_location" id="<?php echo ECWD_PLUGIN_PREFIX;?>_event_location"
23
  value="<?php echo $ecwd_venue_location; ?>" size="70"/>
24
 
25
- <div class="google_map">
26
  <?php
27
  $ecwd_marker = 1;
28
  if (!$ecwd_venue_lat_long) {
22
  <input type="text" name="<?php echo ECWD_PLUGIN_PREFIX;?>_venue_location" id="<?php echo ECWD_PLUGIN_PREFIX;?>_event_location"
23
  value="<?php echo $ecwd_venue_location; ?>" size="70"/>
24
 
25
+ <div class="ecwd_google_map">
26
  <?php
27
  $ecwd_marker = 1;
28
  if (!$ecwd_venue_lat_long) {