Event List - Version 0.8.2

Version Description

(2018-04-22) = * fixed category view in front page * fixed "past" filter option * fixed category filter in admin view, if a seperate taxonomy is used * many improvements and fixes in upgrade process * add upgrade log file

Download this release

Release Info

Developer mibuthu
Plugin Icon 128x128 Event List
Version 0.8.2
Comparing to
See all releases

Code changes from version 0.8.1 to 0.8.2

admin/admin.php CHANGED
@@ -11,7 +11,7 @@ class EL_Admin {
11
  private static $instance;
12
  private $options;
13
  private $events_post_type;
14
- private $upgrade_req = false;
15
 
16
  public static function &get_instance() {
17
  // Create class instance if required
@@ -32,31 +32,42 @@ class EL_Admin {
32
  add_action('current_screen', array(&$this, 'register_events_post_type_mods'));
33
  add_action('admin_head', array(&$this, 'add_dashboard_styles'));
34
  add_action('admin_menu', array(&$this, 'register_pages'));
35
- add_filter('dashboard_glance_items', array($this, 'add_events_to_glance'));
 
36
  }
37
 
38
  public function plugin_upgrade_check() {
39
  // Upgrade check
40
  $file_data = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
41
  $last_upgr_version = get_option('el_last_upgr_version', '');
42
- if($file_data['version'] != $last_upgr_version) {
43
  // load upgrade class
44
  require_once(EL_PATH.'admin/includes/upgrade.php');
45
- EL_Upgrade::get_instance();
46
- $this->upgrade_req = true;
47
  }
48
  }
49
 
50
  public function show_plugin_upgrade_message() {
51
- if($this->upgrade_req) {
52
- $upgr = EL_Upgrade::get_instance();
53
- $class = $upgr->error ? 'error' : 'updated fade';
54
- $title = sprintf($upgr->error ? __('Errors during upgrade of plugin %1$s','event-list') : __('Upgrade of plugin %1$s successful','event-list'), '"Event List"');
55
- $msg = empty($upgr->msg) ? __('no additional information available','event-list') : '<li>'.implode('</li><li>', $upgr->msg).'</li>';
56
- echo '<div id="message" class="'.$class.'"><p><strong>'.$title.':</strong></p><ul style="list-style:inside">'.$msg.'</ul></div>';
 
 
 
57
  }
58
  }
59
 
 
 
 
 
 
 
 
 
60
  public function register_events_post_type_mods($current_screen) {
61
  // load file depending on current screen
62
  if(current_user_can('edit_posts')) {
11
  private static $instance;
12
  private $options;
13
  private $events_post_type;
14
+ private $show_upgr_message = false;
15
 
16
  public static function &get_instance() {
17
  // Create class instance if required
32
  add_action('current_screen', array(&$this, 'register_events_post_type_mods'));
33
  add_action('admin_head', array(&$this, 'add_dashboard_styles'));
34
  add_action('admin_menu', array(&$this, 'register_pages'));
35
+ add_filter('dashboard_glance_items', array(&$this, 'add_events_to_glance'));
36
+ add_filter('removable_query_args', array(&$this, 'remove_upgrade_args'));
37
  }
38
 
39
  public function plugin_upgrade_check() {
40
  // Upgrade check
41
  $file_data = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
42
  $last_upgr_version = get_option('el_last_upgr_version', '');
43
+ if($file_data['version'] != $last_upgr_version || isset($_GET['resume-el-upgr'])) {
44
  // load upgrade class
45
  require_once(EL_PATH.'admin/includes/upgrade.php');
46
+ EL_Upgrade::get_instance()->upgrade();
 
47
  }
48
  }
49
 
50
  public function show_plugin_upgrade_message() {
51
+ if($this->show_upgr_message) {
52
+ // load upgrade class
53
+ require_once(EL_PATH.'admin/includes/upgrade.php');
54
+ $logfile = str_replace(EL_PATH, EL_URL, EL_Upgrade::get_instance()->logfile);
55
+ $error = 2 == $this->show_upgr_message;
56
+ $class = $error ? 'error' : 'updated fade';
57
+ $title = sprintf($error ? __('Errors during upgrade of plugin %1$s','event-list') : __('Upgrade of plugin %1$s successful','event-list'), '"Event List"');
58
+ $logfile = ' (<a href="'.$logfile.'">upgrade log</a>)';
59
+ echo '<div id="message" class="'.$class.'"><p><strong>'.$title.'</strong>'.$logfile.'</p></div>';
60
  }
61
  }
62
 
63
+ public function remove_upgrade_args($args) {
64
+ // check required get parameters
65
+ $this->show_upgr_message = isset($_GET['el-upgr-finished']) ? intval($_GET['el-upgr-finished']) : false;
66
+
67
+ array_push($args, 'el-upgr-finished', 'resume-el-upgr');
68
+ return $args;
69
+ }
70
+
71
  public function register_events_post_type_mods($current_screen) {
72
  // load file depending on current screen
73
  if(current_user_can('edit_posts')) {
admin/includes/admin-main.php CHANGED
@@ -134,15 +134,26 @@ class EL_Admin_Main {
134
  $default_date = 'publish' === $selected_status ? 'upcoming' : 'all';
135
  $args['selected_date'] = isset($_GET['date']) ? sanitize_key($_GET['date']) : $default_date;
136
 
 
137
  // date filter
138
  echo($this->filterbar->show_years(admin_url('edit.php?post_type=el_events'), $args, 'dropdown', array('show_past' => true)));
139
  // cat filter
140
- wp_dropdown_categories(array(
141
  'show_option_all' => __('All Categories'),
142
  'taxonomy' => $this->events_post_type->taxonomy,
143
  'orderby' => 'name',
144
  'hierarchical' => true,
145
- ));
 
 
 
 
 
 
 
 
 
 
146
  }
147
 
148
  public function filter_request($query) {
@@ -170,6 +181,14 @@ class EL_Admin_Main {
170
  )
171
  );
172
  $query->query_vars['meta_query'] = $meta_query;
 
 
 
 
 
 
 
 
173
  }
174
 
175
  public function set_default_posts_list_mode() {
134
  $default_date = 'publish' === $selected_status ? 'upcoming' : 'all';
135
  $args['selected_date'] = isset($_GET['date']) ? sanitize_key($_GET['date']) : $default_date;
136
 
137
+
138
  // date filter
139
  echo($this->filterbar->show_years(admin_url('edit.php?post_type=el_events'), $args, 'dropdown', array('show_past' => true)));
140
  // cat filter
141
+ $cat_args = array(
142
  'show_option_all' => __('All Categories'),
143
  'taxonomy' => $this->events_post_type->taxonomy,
144
  'orderby' => 'name',
145
  'hierarchical' => true,
146
+ );
147
+ // additional parameters required if a seperate taxonomy is used
148
+ if(!$this->events_post_type->use_post_categories) {
149
+ // check used get parameters
150
+ $selected_cat = isset($_GET['cat']) ? sanitize_key($_GET['cat']) : '';
151
+
152
+ $cat_args['value_field'] = 'slug';
153
+ $cat_args['selected'] = $selected_cat;
154
+
155
+ }
156
+ wp_dropdown_categories($cat_args);
157
  }
158
 
159
  public function filter_request($query) {
181
  )
182
  );
183
  $query->query_vars['meta_query'] = $meta_query;
184
+ // adaptions for taxonomy filter if a seperate taxonomy is used (no adaptions required if post categories are used)
185
+ if(!$this->events_post_type->use_post_categories) {
186
+ // check used get parameters
187
+ $selected_cat = isset($_GET['cat']) ? sanitize_key($_GET['cat']) : '';
188
+
189
+ $query->query_vars['cat'] = false;
190
+ $query->query_vars[$this->events_post_type->taxonomy] = $selected_cat;
191
+ }
192
  }
193
 
194
  public function set_default_posts_list_mode() {
admin/includes/upgrade.php CHANGED
@@ -10,8 +10,13 @@ class EL_Upgrade {
10
  private static $instance;
11
  private $actual_version;
12
  private $last_upgr_version;
13
- public $error = false;
14
- public $msg = array();
 
 
 
 
 
15
 
16
  public static function &get_instance() {
17
  // Create class instance if required
@@ -23,24 +28,45 @@ class EL_Upgrade {
23
  }
24
 
25
  private function __construct() {
 
 
 
 
 
 
 
 
26
  // check upgrade trigger to avoid duplicate updates
27
- if('1' == $this->get_db_option('el_upgrade_in_progress')) {
28
- $this->log('Upgrade is already running');
29
  return false;
30
  }
31
  // set upgrade trigger
32
- $this->insert_db_option('el_upgrade_in_progress', '1');
33
  // do upgrade
34
- $this->init();
 
 
35
  $this->upgrade_check();
 
 
36
  // delete upgrade trigger
37
- $this->delete_db_option('el_upgrade_in_progress');
 
 
 
 
38
  }
39
 
40
  /**
41
  * Preparations for the upgrade check
42
  */
43
  private function init() {
 
 
 
 
 
44
  // get actual plugin version
45
  $filedata = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
46
  $this->actual_version = $filedata['version'];
@@ -50,22 +76,26 @@ class EL_Upgrade {
50
  if(empty($this->last_upgr_version) && (bool)$this->get_db_option('el_db_version')) {
51
  $this->last_upgr_version = '0.7.0';
52
  $this->insert_db_option('el_last_upgr_version', $this->last_upgr_version, false);
53
- $this->log('Applied fix for versions < 0.8.0');
54
  }
55
  // return if last_upgr_version is empty (new install --> no upgrade required)
56
  if(empty($this->last_upgr_version)) {
57
- $this->insert_db_option('el_last_upgr_version', $this->actual_version);
58
  flush_rewrite_rules();
59
- $this->log('New install -> no upgrade required');
60
  return false;
61
  }
 
 
 
 
62
  }
63
 
64
  /**
65
  * Do the upgrade check and start the required upgrades
66
  */
67
  private function upgrade_check() {
68
- $this->log('Start upgrade check');
69
  if($this->upgrade_required('0.8.0')) {
70
  $this->upgrade_to_0_8_0();
71
  }
@@ -88,6 +118,7 @@ class EL_Upgrade {
88
  require_once(EL_PATH.'includes/events.php');
89
  require_once(EL_PATH.'includes/event.php');
90
 
 
91
  // Correct events post type
92
  require_once(EL_PATH.'includes/events_post_type.php');
93
  $events_post_type = EL_Events_Post_Type::get_instance();
@@ -107,8 +138,19 @@ class EL_Upgrade {
107
  if(!$events_post_type->use_post_categories) {
108
  $cats_array = $this->get_db_option('el_categories');
109
  if(!empty($cats_array)) {
110
- foreach($cats_array as $cat) {
111
- if(!EL_Events::get_instance()->cat_exists($cat['slug'])) {
 
 
 
 
 
 
 
 
 
 
 
112
  $args['slug'] = $cat['slug'];
113
  $args['description'] = $cat['desc'];
114
  if(isset($cat['parent'])) {
@@ -124,7 +166,9 @@ class EL_Upgrade {
124
  else {
125
  $this->log('Event category "'.$cat['name'].'" successfully imported');
126
  }
 
127
  }
 
128
  }
129
  }
130
  else {
@@ -140,38 +184,52 @@ class EL_Upgrade {
140
  $sql = 'SELECT * FROM '.$wpdb->prefix.'event_list ORDER BY start_date ASC, time ASC, end_date ASC';
141
  $events = $wpdb->get_results($sql, 'ARRAY_A');
142
  if(!empty($events)) {
143
- foreach($events as $event) {
144
- // check if the event is already available (to avoid duplicates)
145
- $sql = 'SELECT ID FROM (SELECT * FROM (SELECT DISTINCT ID, post_title, post_date, '.
146
- '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "startdate" AND wp_postmeta.post_id = wp_posts.ID) AS startdate, '.
147
- '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "enddate" AND wp_postmeta.post_id = wp_posts.ID) AS enddate, '.
148
- '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "starttime" AND wp_postmeta.post_id = wp_posts.ID) AS starttime, '.
149
- '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "location" AND wp_postmeta.post_id = wp_posts.ID) AS location '.
150
- 'FROM wp_posts WHERE post_type = "el_events") AS events) AS events '.
151
- 'WHERE (post_title="'.$event['title'].'" AND post_date="'.$event['pub_date'].'"'.
152
- 'AND startdate="'.$event['start_date'].'" AND enddate="'.$event['end_date'].'" AND starttime = "'.$event['time'].'" AND location = "'.$event['location'].'")';
153
- $ret = $wpdb->get_row($sql, ARRAY_N);
154
- if(is_array($ret)) {
155
- $this->log('Event "'.$event['title'].'" is already available, import skipped!');
156
- continue;
157
- }
158
- // import event
159
- $eventdata['title'] = $event['title'];
160
- $eventdata['startdate'] = $event['start_date'];
161
- $eventdata['enddate'] = $event['end_date'];
162
- $eventdata['starttime'] = $event['time'];
163
- $eventdata['location'] = $event['location'];
164
- $eventdata['content'] = $event['details'];
165
- $eventdata['post_date'] = $event['pub_date'];
166
- $eventdata['post_user'] = $event['pub_user'];
167
- $eventdata['categories'] = explode('|', substr($event['categories'], 1, -1));
168
- $ret = EL_Event::safe($eventdata);
169
- if(empty($ret)) {
170
- $this->log('Import of event "'.$eventdata['title'].'" failed!', true, true);
171
- }
172
- else {
173
- $this->log('Event "'.$eventdata['title'].'" successfully imported');
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  }
 
175
  }
176
  }
177
  else {
@@ -191,9 +249,8 @@ class EL_Upgrade {
191
  $this->rename_db_option('el_sync_cats', 'el_use_post_cats');
192
  }
193
 
194
-
195
  private function upgrade_required($version) {
196
- if(version_compare($this->last_upgr_version, $version) < 0) {
197
  return true;
198
  }
199
  else {
@@ -201,6 +258,65 @@ class EL_Upgrade {
201
  }
202
  }
203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  /**
205
  * Get a WordPress option directly from database with $wpdb
206
  * @param string $option Option name
@@ -222,12 +338,18 @@ class EL_Upgrade {
222
  * @param string $option Option name
223
  * @param mixed $value Option value
224
  * @param bool $msg Print logging messages?
225
- * @return int|false 1.. if option was updated successfully
 
226
  * 0.. if option was available but value was already correct
227
  * false.. on error
228
  */
229
  private function update_db_option($option, $value, $msg=true) {
230
  global $wpdb;
 
 
 
 
 
231
  $ret = $wpdb->update(
232
  $wpdb->options,
233
  array('option_value' => $value),
@@ -238,7 +360,7 @@ class EL_Upgrade {
238
  $this->log('Updated option "'.$option.'" to value "'.$value.'"', $msg);
239
  }
240
  elseif(0 === $ret) {
241
- $this->log('Update of option "'.$option.'" is not required -> correct value "'.$value.'" is already set', $msg);
242
  }
243
  else { // false === $ret
244
  $this->log('Updating option "'.$option.'" to value "'.$value.'" failed!', $msg, true);
@@ -280,11 +402,16 @@ class EL_Upgrade {
280
  * Delete a WordPress option directly in the database with $wpdb
281
  * @param string $option Option name
282
  * @param bool $msg Print logging messages?
283
- * @return int|false 1.. if option was deleted successfully
 
284
  * false.. on error
285
  */
286
  private function delete_db_option($option, $msg=true) {
287
  global $wpdb;
 
 
 
 
288
  $ret = $wpdb->delete(
289
  $wpdb->options,
290
  array('option_name' => $option),
@@ -354,19 +481,75 @@ class EL_Upgrade {
354
  return $ret;
355
  }
356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
  private function log($text, $msg=true, $error=false) {
358
- if($msg) {
359
- $error_text = $error ? 'ERROR: ' : '';
 
 
 
 
360
  error_log('EL_UPGRADE: '.$error_text.$text);
361
- $this->msg[] = $error_text.$text;
362
  }
363
- if($error) {
364
- $this->error = true;
 
365
  }
366
  }
367
  }
368
 
369
- /** Function to unregister posttype before version 4.5
370
  **/
371
  if(!function_exists('unregister_post_type')) {
372
  function unregister_post_type( $post_type ) {
10
  private static $instance;
11
  private $actual_version;
12
  private $last_upgr_version;
13
+ private $max_exec_time;
14
+ private $upgrade_starttime;
15
+ private $resume_version;
16
+ private $upgr_action_status = array();
17
+ private $error = false;
18
+ private $logfile_handle = false;
19
+ public $logfile = '';
20
 
21
  public static function &get_instance() {
22
  // Create class instance if required
28
  }
29
 
30
  private function __construct() {
31
+ $this->logfile = EL_PATH.'upgrade.log';
32
+ }
33
+
34
+ public function upgrade() {
35
+ // check required get parameters
36
+ $this->resume_version = isset($_GET['resume-el-upgr']) ? str_replace('-', '.', sanitize_title($_GET['resume-el-upgr'])) : false;
37
+ $this->set_max_exec_time();
38
+ $this->upgrade_starttime = time();
39
  // check upgrade trigger to avoid duplicate updates
40
+ if(empty($this->resume_version) && $this->upgrade_starttime <= $this->get_db_option('el_upgr_in_progress') + $this->max_exec_time + 5) {
41
+ $this->log('Upgrade is already running', false);
42
  return false;
43
  }
44
  // set upgrade trigger
45
+ $this->update_db_option('el_upgr_in_progress', $this->upgrade_starttime, false);
46
  // do upgrade
47
+ if(!$this->init()) {
48
+ return false;
49
+ }
50
  $this->upgrade_check();
51
+ // delete upgrade action status
52
+ $this->delete_upgr_action_status();
53
  // delete upgrade trigger
54
+ $this->delete_db_option('el_upgr_in_progress', false);
55
+ // close logfile
56
+ $this->logfile_close();
57
+ // redirect
58
+ $this->redirect(array('el-upgr-finished'=>($this->error ? 2 : 1)), array('resume-el-upgr'));
59
  }
60
 
61
  /**
62
  * Preparations for the upgrade check
63
  */
64
  private function init() {
65
+ // enable wbdb error logging
66
+ global $wpdb;
67
+ $wpdb->show_errors();
68
+ // init logfile
69
+ $this->logfile_init();
70
  // get actual plugin version
71
  $filedata = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
72
  $this->actual_version = $filedata['version'];
76
  if(empty($this->last_upgr_version) && (bool)$this->get_db_option('el_db_version')) {
77
  $this->last_upgr_version = '0.7.0';
78
  $this->insert_db_option('el_last_upgr_version', $this->last_upgr_version, false);
79
+ $this->log('Applied fix for versions < 0.8.0', false);
80
  }
81
  // return if last_upgr_version is empty (new install --> no upgrade required)
82
  if(empty($this->last_upgr_version)) {
83
+ $this->insert_db_option('el_last_upgr_version', $this->actual_version, false);
84
  flush_rewrite_rules();
85
+ $this->log('New install -> no upgrade required', false);
86
  return false;
87
  }
88
+ // show upgrade message
89
+ echo 'Event list plugin upgrade in progress &hellip;<br />Please be patience until this process is finished.<br />'.
90
+ flush();
91
+ return true;
92
  }
93
 
94
  /**
95
  * Do the upgrade check and start the required upgrades
96
  */
97
  private function upgrade_check() {
98
+ $this->log('Start upgrade check', false);
99
  if($this->upgrade_required('0.8.0')) {
100
  $this->upgrade_to_0_8_0();
101
  }
118
  require_once(EL_PATH.'includes/events.php');
119
  require_once(EL_PATH.'includes/event.php');
120
 
121
+ $version = '0.8.0';
122
  // Correct events post type
123
  require_once(EL_PATH.'includes/events_post_type.php');
124
  $events_post_type = EL_Events_Post_Type::get_instance();
138
  if(!$events_post_type->use_post_categories) {
139
  $cats_array = $this->get_db_option('el_categories');
140
  if(!empty($cats_array)) {
141
+ $action = 'el_category_upgr_0_8_0';
142
+ if(!$this->is_action_completed($action)) {
143
+ foreach($cats_array as $cat) {
144
+ if($this->is_action_item_completed($action, $cat['slug'])) {
145
+ continue;
146
+ }
147
+ // check if the event category is already available
148
+ if(EL_Events::get_instance()->cat_exists($cat['slug'])) {
149
+ $this->log('Event category "'.$cat['name'].'" is already available, import skipped!');
150
+ $this->complete_action_item($version, $action, $cat['slug']);
151
+ continue;
152
+ }
153
+ // import event category
154
  $args['slug'] = $cat['slug'];
155
  $args['description'] = $cat['desc'];
156
  if(isset($cat['parent'])) {
166
  else {
167
  $this->log('Event category "'.$cat['name'].'" successfully imported');
168
  }
169
+ $this->complete_action_item($version, $action, $cat['slug']);
170
  }
171
+ $this->complete_action($action);
172
  }
173
  }
174
  else {
184
  $sql = 'SELECT * FROM '.$wpdb->prefix.'event_list ORDER BY start_date ASC, time ASC, end_date ASC';
185
  $events = $wpdb->get_results($sql, 'ARRAY_A');
186
  if(!empty($events)) {
187
+ $action = 'el_events_upgr_0_8_0';
188
+ if(!$this->is_action_completed($action)) {
189
+ foreach($events as $event) {
190
+ if($this->is_action_item_completed($action, $event['id'])) {
191
+ continue;
192
+ }
193
+ // check if the event is already available
194
+ $sql = 'SELECT ID FROM (SELECT * FROM (SELECT DISTINCT ID, post_title, post_date, '.
195
+ '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "startdate" AND wp_postmeta.post_id = wp_posts.ID) AS startdate, '.
196
+ '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "enddate" AND wp_postmeta.post_id = wp_posts.ID) AS enddate, '.
197
+ '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "starttime" AND wp_postmeta.post_id = wp_posts.ID) AS starttime, '.
198
+ '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "location" AND wp_postmeta.post_id = wp_posts.ID) AS location '.
199
+ 'FROM wp_posts WHERE post_type = "el_events") AS events) AS events '.
200
+ 'WHERE ('.
201
+ 'post_title="'.wp_kses_post($event['title']).'" AND '.
202
+ 'post_date="'.$event['pub_date'].'" AND '.
203
+ 'startdate="'.$event['start_date'].'" AND '.
204
+ 'enddate="'.$event['end_date'].'" AND '.
205
+ 'starttime = "'.wp_kses_post(EL_Event::validate_time($event['time'])).'" AND '.
206
+ 'location = "'.wp_kses_post($event['location']).'")';
207
+ $ret = $wpdb->get_row($sql, ARRAY_N);
208
+ if(is_array($ret)) {
209
+ $this->log('Event "'.$event['title'].'" is already available, import skipped!');
210
+ $this->complete_action_item($version, $action, $event['id']);
211
+ continue;
212
+ }
213
+ // import event
214
+ $eventdata['title'] = $event['title'];
215
+ $eventdata['startdate'] = $event['start_date'];
216
+ $eventdata['enddate'] = $event['end_date'];
217
+ $eventdata['starttime'] = $event['time'];
218
+ $eventdata['location'] = $event['location'];
219
+ $eventdata['content'] = $event['details'];
220
+ $eventdata['post_date'] = $event['pub_date'];
221
+ $eventdata['post_user'] = $event['pub_user'];
222
+ $eventdata['categories'] = explode('|', substr($event['categories'], 1, -1));
223
+ $ret = EL_Event::safe($eventdata);
224
+ if(empty($ret)) {
225
+ $this->log('Import of event "'.$eventdata['title'].'" failed!', true, true);
226
+ }
227
+ else {
228
+ $this->log('Event "'.$eventdata['title'].'" successfully imported');
229
+ }
230
+ $this->complete_action_item($version, $action, $event['id']);
231
  }
232
+ $this->complete_action($action);
233
  }
234
  }
235
  else {
249
  $this->rename_db_option('el_sync_cats', 'el_use_post_cats');
250
  }
251
 
 
252
  private function upgrade_required($version) {
253
+ if(version_compare($this->last_upgr_version, $version) < 0 || $this->resume_version === $version) {
254
  return true;
255
  }
256
  else {
258
  }
259
  }
260
 
261
+ private function set_max_exec_time() {
262
+ $this->max_exec_time = ini_get('max_execution_time');
263
+ if(empty($this->max_exec_time)) {
264
+ $this->max_exec_time = 25;
265
+ }
266
+ $this->log('Maximum script execution time: '.$this->max_exec_time.' seconds', false);
267
+ }
268
+
269
+ private function is_action_completed($action) {
270
+ $this->upgr_action_status[$action] = array();
271
+ $status = $this->get_db_option($action);
272
+ if('completed' === $status) {
273
+ return true;
274
+ }
275
+ if(!empty($status)) {
276
+ $this->upgr_action_status[$action] = explode(',', $status);
277
+ }
278
+ return false;
279
+ }
280
+
281
+ private function is_action_item_completed($action, $id) {
282
+ return in_array($id, $this->upgr_action_status[$action]);
283
+ }
284
+
285
+ private function complete_action($action) {
286
+ $this->update_db_option($action, 'completed', false);
287
+ $this->upgr_action_status[$action] = array();
288
+ }
289
+
290
+ private function complete_action_item($upgr_version, $action, $id) {
291
+ $this->upgr_action_status[$action][] = $id;
292
+ // safe status to db from time to time
293
+ if(0 === count($this->upgr_action_status[$action]) % 25) {
294
+ $this->update_db_option($action, implode(',', $this->upgr_action_status[$action]), null);
295
+ }
296
+ // if max execution time is nearly reached, safe the actual status to db and redirect
297
+ // the upgrade will be resumed after the reload with a new set of execution time
298
+ if($this->max_exec_time - 5 <= time() - $this->upgrade_starttime) {
299
+ $this->update_db_option($action, implode(',', $this->upgr_action_status[$action]), false);
300
+ $this->log('The maximum execution time is already consumed, script will redirect and continue upgrade afterwards with a new set of time.');
301
+ // close logfile
302
+ $this->logfile_close();
303
+ // redirect
304
+ $this->redirect(array('resume-el-upgr' => $upgr_version));
305
+ }
306
+ }
307
+
308
+ private function delete_upgr_action_status() {
309
+ foreach($this->upgr_action_status as $action=>$status) {
310
+ $this->delete_db_option($action, false);
311
+ }
312
+ }
313
+
314
+ private function redirect($args_to_add=array(), $args_to_remove=array()) {
315
+ $url = add_query_arg($args_to_add, remove_query_arg($args_to_remove));
316
+ echo '<meta http-equiv="refresh" content="0; url='.$url.'">';
317
+ die();
318
+ }
319
+
320
  /**
321
  * Get a WordPress option directly from database with $wpdb
322
  * @param string $option Option name
338
  * @param string $option Option name
339
  * @param mixed $value Option value
340
  * @param bool $msg Print logging messages?
341
+ * @return int|false 2.. if option was not available and added successfully
342
+ * 1.. if option was updated successfully
343
  * 0.. if option was available but value was already correct
344
  * false.. on error
345
  */
346
  private function update_db_option($option, $value, $msg=true) {
347
  global $wpdb;
348
+ // if option is not existing, the option will be added
349
+ if($this->insert_db_option($option, $value, null)) {
350
+ $this->log('Option "'.$option.'" added with value "'.$value.'"', $msg);
351
+ return 2;
352
+ }
353
  $ret = $wpdb->update(
354
  $wpdb->options,
355
  array('option_value' => $value),
360
  $this->log('Updated option "'.$option.'" to value "'.$value.'"', $msg);
361
  }
362
  elseif(0 === $ret) {
363
+ $this->log('Update of option "'.$option.'" is not required: correct value "'.$value.'" already set', $msg);
364
  }
365
  else { // false === $ret
366
  $this->log('Updating option "'.$option.'" to value "'.$value.'" failed!', $msg, true);
402
  * Delete a WordPress option directly in the database with $wpdb
403
  * @param string $option Option name
404
  * @param bool $msg Print logging messages?
405
+ * @return int|null|false 1.. if option was deleted successfully
406
+ * null.. if option is already not set
407
  * false.. on error
408
  */
409
  private function delete_db_option($option, $msg=true) {
410
  global $wpdb;
411
+ if(is_null($this->get_db_option($option))) {
412
+ $this->log('Deleting option "'.$option.'" is not required: option is not set', $msg);
413
+ return null;
414
+ }
415
  $ret = $wpdb->delete(
416
  $wpdb->options,
417
  array('option_name' => $option),
481
  return $ret;
482
  }
483
 
484
+ private function logfile_init() {
485
+ // rename all existing log files and remove files older than 90 days
486
+ if(file_exists($this->logfile) && empty($this->resume_version)) {
487
+ $num_log_files = 0;
488
+ while(file_exists($this->logfile.'.'.($num_log_files+1))) {
489
+ $num_log_files += 1;
490
+ }
491
+ for($i=$num_log_files; $i>=0; $i--) {
492
+ $old = 0 < $i ? $this->logfile.'.'.$i : $this->logfile;
493
+ // delete file if it is too old
494
+ if(filemtime($old) < time() - 90*24*60*60) {
495
+ if(!@unlink($old)) {
496
+ error_log('"'.$old.'" cannot be deleted! No upgrade log file will be written!');
497
+ return false;
498
+ }
499
+ }
500
+ // else rename file
501
+ else {
502
+ $new = $this->logfile.'.'.($i+1);
503
+ if(!@rename($old, $new)) {
504
+ error_log('"'.$old.'" cannot be renamed! No upgrade log file will be written!');
505
+ return false;
506
+ }
507
+ }
508
+ }
509
+ }
510
+ // open logfile for writing
511
+ $this->logfile_handle = @fopen($this->logfile, 'a');
512
+ if(empty($this->logfile_handle)) {
513
+ error_log('"'.$this->logfile.'" cannot be opened for writing! No upgrade log file will be written!');
514
+ return false;
515
+ }
516
+ return true;
517
+ }
518
+
519
+ private function logfile_close() {
520
+ if(!empty($this->logfile_handle)) {
521
+ fclose($this->logfile_handle);
522
+ }
523
+ }
524
+
525
+ /** Log function
526
+ * This function prints the error messages to the log file, prepares the text for the admin ui message
527
+ * and sets the error flag (required for the admin ui message)
528
+ *
529
+ * @param string $text Message text
530
+ * @param bool|null $msg Print error message:
531
+ * null: don't print message to debug log or upgrade log file
532
+ * false: only print message to debug log
533
+ * true: print message to log and upgrade log file
534
+ * @return null
535
+ */
536
  private function log($text, $msg=true, $error=false) {
537
+ $error_text = '';
538
+ if(!is_null($msg)) {
539
+ if($error) {
540
+ $this->error = true;
541
+ $error_text = 'ERROR: ';
542
+ }
543
  error_log('EL_UPGRADE: '.$error_text.$text);
 
544
  }
545
+ if($this->logfile_handle && $msg) {
546
+ $time = date('[Y-m-d H:i:s] ', time());
547
+ fwrite($this->logfile_handle, $time.$error_text.$text.PHP_EOL);
548
  }
549
  }
550
  }
551
 
552
+ /** Function to unregister posttype before WordPress version 4.5
553
  **/
554
  if(!function_exists('unregister_post_type')) {
555
  function unregister_post_type( $post_type ) {
event-list.php CHANGED
@@ -3,7 +3,7 @@
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.8.1
7
  Author: mibuthu
8
  Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
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.8.2
7
  Author: mibuthu
8
  Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
includes/daterange.php CHANGED
@@ -125,21 +125,21 @@ class EL_Daterange {
125
  */
126
  if(!function_exists('date_create_from_format')) {
127
  function date_create_from_format($dformat, $dvalue) {
128
- $schedule = $dvalue;
129
- $schedule_format = str_replace(array('Y','m','d', 'H', 'i','a'), array('%Y','%m','%d', '%I', '%M', '%p'), $dformat);
130
- $ugly = strptime($schedule, $schedule_format);
131
- $ymd = sprintf(
132
- // This is a format string that takes six total decimal arguments, then left-pads
133
- // them with zeros to either 4 or 2 characters, as needed
134
- '%04d-%02d-%02d %02d:%02d:%02d',
135
- $ugly['tm_year'] + 1900, // This will be "111", so we need to add 1900.
136
- $ugly['tm_mon'] + 1, // This will be the month minus one, so we add one.
137
- $ugly['tm_mday'],
138
- $ugly['tm_hour'],
139
- $ugly['tm_min'],
140
- $ugly['tm_sec']
141
- );
142
- return new DateTime($ymd);
143
  }
144
  }
145
  ?>
125
  */
126
  if(!function_exists('date_create_from_format')) {
127
  function date_create_from_format($dformat, $dvalue) {
128
+ $schedule = $dvalue;
129
+ $schedule_format = str_replace(array('Y','m','d', 'H', 'i','a'), array('%Y','%m','%d', '%I', '%M', '%p'), $dformat);
130
+ $ugly = strptime($schedule, $schedule_format);
131
+ $ymd = sprintf(
132
+ // This is a format string that takes six total decimal arguments, then left-pads
133
+ // them with zeros to either 4 or 2 characters, as needed
134
+ '%04d-%02d-%02d %02d:%02d:%02d',
135
+ $ugly['tm_year'] + 1900, // This will be "111", so we need to add 1900.
136
+ $ugly['tm_mon'] + 1, // This will be the month minus one, so we add one.
137
+ $ugly['tm_mday'],
138
+ $ugly['tm_hour'],
139
+ $ugly['tm_min'],
140
+ $ugly['tm_sec']
141
+ );
142
+ return new DateTime($ymd);
143
  }
144
  }
145
  ?>
includes/event.php CHANGED
@@ -154,7 +154,7 @@ class EL_Event {
154
  return false;
155
  }
156
 
157
- private function validate_time($timestring) {
158
  // Try to extract a correct time from the provided text
159
  $timestamp = strtotime(stripslashes($timestring));
160
  // Return a standard time format if the conversion was successful
@@ -178,12 +178,10 @@ class EL_Event {
178
  }
179
 
180
  private function get_category_fields($field) {
181
- //error_log('categories: '.print_r($this->categories, true));
182
  $list = wp_list_pluck($this->categories, $field);
183
  if(!is_array($list)) {
184
  $list = array();
185
  }
186
- //error_log('cat_fields: '.print_r($list, true));
187
  return $list;
188
  }
189
 
154
  return false;
155
  }
156
 
157
+ public static function validate_time($timestring) {
158
  // Try to extract a correct time from the provided text
159
  $timestamp = strtotime(stripslashes($timestring));
160
  // Return a standard time format if the conversion was successful
178
  }
179
 
180
  private function get_category_fields($field) {
 
181
  $list = wp_list_pluck($this->categories, $field);
182
  if(!is_array($list)) {
183
  $list = array();
184
  }
 
185
  return $list;
186
  }
187
 
includes/sc_event-list.php CHANGED
@@ -229,7 +229,7 @@ class SC_Event_List {
229
  }
230
  // event categories
231
  if( $this->is_visible( $a['show_cat'] ) ) {
232
- $out .= '<div class="event-cat">'.esc_attr($this->categories->convert_db_string($event->categories)).'</div>';
233
  }
234
  // event content
235
  if( $this->is_visible( $a['show_content'] ) ) {
@@ -317,8 +317,7 @@ class SC_Event_List {
317
  private function get_selected_date(&$a) {
318
  // check used get parameters
319
  $date = isset($_GET['date'.$a['sc_id']]) ? sanitize_key($_GET['date'.$a['sc_id']]) : null;
320
-
321
- if('all' === $date || 'upcoming' === $date) {
322
  return $date;
323
  }
324
  else if(preg_match('/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date)) {
229
  }
230
  // event categories
231
  if( $this->is_visible( $a['show_cat'] ) ) {
232
+ $out .= '<div class="event-cat">'.esc_attr(implode(', ', $event->get_category_names())).'</div>';
233
  }
234
  // event content
235
  if( $this->is_visible( $a['show_content'] ) ) {
317
  private function get_selected_date(&$a) {
318
  // check used get parameters
319
  $date = isset($_GET['date'.$a['sc_id']]) ? sanitize_key($_GET['date'.$a['sc_id']]) : null;
320
+ if('all' === $date || 'upcoming' === $date || 'past' === $date) {
 
321
  return $date;
322
  }
323
  else if(preg_match('/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date)) {
languages/event-list-da_DK.mo CHANGED
Binary file
languages/event-list-da_DK.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: da_DK\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Event List indstillinger"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Indstillinger"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Om Event List"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "Om"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -561,7 +557,7 @@ msgstr ""
561
  msgid "Add additional categories"
562
  msgstr ""
563
 
564
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
565
  msgid "Import"
566
  msgstr "Importér"
567
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: da_DK\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Event List indstillinger"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Indstillinger"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Om Event List"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Om"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
557
  msgid "Add additional categories"
558
  msgstr ""
559
 
560
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
561
  msgid "Import"
562
  msgstr "Importér"
563
 
languages/event-list-de_DE.mo CHANGED
Binary file
languages/event-list-de_DE.po CHANGED
@@ -12,8 +12,8 @@ msgid ""
12
  msgstr ""
13
  "Project-Id-Version: wp-event-list\n"
14
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
15
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
16
- "PO-Revision-Date: 2018-02-04 11:48+0000\n"
17
  "Last-Translator: mibuthu\n"
18
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
19
  "MIME-Version: 1.0\n"
@@ -22,37 +22,33 @@ msgstr ""
22
  "Language: de_DE\n"
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
 
25
- #: admin/admin.php:54
26
  #, php-format
27
  msgid "Errors during upgrade of plugin %1$s"
28
  msgstr "Fehler während des %1$s Plugin Upgrades"
29
 
30
- #: admin/admin.php:54
31
  #, php-format
32
  msgid "Upgrade of plugin %1$s successful"
33
  msgstr "Upgrade des Plugins %1$s erfolgreich"
34
 
35
- #: admin/admin.php:55
36
- msgid "no additional information available"
37
- msgstr "keine zusätzlichen Informationen verfügbar"
38
-
39
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
40
  msgid "Event List Settings"
41
  msgstr "Event List Einstellungen"
42
 
43
- #: admin/admin.php:95
44
  msgid "Settings"
45
  msgstr "Einstellungen"
46
 
47
- #: admin/admin.php:99 admin/includes/admin-about.php:37
48
  msgid "About Event List"
49
  msgstr "Informationen zu Event List"
50
 
51
- #: admin/admin.php:99
52
  msgid "About"
53
  msgstr "Informationen"
54
 
55
- #: admin/admin.php:121
56
  #, php-format
57
  msgid "%s Event"
58
  msgid_plural "%s Events"
@@ -565,7 +561,7 @@ msgstr "Importiere die Termine"
565
  msgid "Add additional categories"
566
  msgstr "Kategorien ergänzen"
567
 
568
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
569
  msgid "Import"
570
  msgstr "Importieren"
571
 
12
  msgstr ""
13
  "Project-Id-Version: wp-event-list\n"
14
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
15
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
16
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
17
  "Last-Translator: mibuthu\n"
18
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
19
  "MIME-Version: 1.0\n"
22
  "Language: de_DE\n"
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
 
25
+ #: admin/admin.php:57
26
  #, php-format
27
  msgid "Errors during upgrade of plugin %1$s"
28
  msgstr "Fehler während des %1$s Plugin Upgrades"
29
 
30
+ #: admin/admin.php:57
31
  #, php-format
32
  msgid "Upgrade of plugin %1$s successful"
33
  msgstr "Upgrade des Plugins %1$s erfolgreich"
34
 
35
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
36
  msgid "Event List Settings"
37
  msgstr "Event List Einstellungen"
38
 
39
+ #: admin/admin.php:106
40
  msgid "Settings"
41
  msgstr "Einstellungen"
42
 
43
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Informationen zu Event List"
46
 
47
+ #: admin/admin.php:110
48
  msgid "About"
49
  msgstr "Informationen"
50
 
51
+ #: admin/admin.php:132
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
561
  msgid "Add additional categories"
562
  msgstr "Kategorien ergänzen"
563
 
564
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
565
  msgid "Import"
566
  msgstr "Importieren"
567
 
languages/event-list-es_AR.mo CHANGED
Binary file
languages/event-list-es_AR.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Configuraciones del Listado de Eventos"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Configuraciones"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Sobre Listado de Eventos"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "Sobre"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -561,7 +557,7 @@ msgstr ""
561
  msgid "Add additional categories"
562
  msgstr ""
563
 
564
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
565
  msgid "Import"
566
  msgstr "Importar"
567
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Configuraciones del Listado de Eventos"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Configuraciones"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Sobre Listado de Eventos"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Sobre"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
557
  msgid "Add additional categories"
558
  msgstr ""
559
 
560
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
561
  msgid "Import"
562
  msgstr "Importar"
563
 
languages/event-list-es_ES.mo CHANGED
Binary file
languages/event-list-es_ES.po CHANGED
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
11
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
12
  "Last-Translator: mibuthu\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
@@ -17,37 +17,33 @@ msgstr ""
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: admin/admin.php:54
21
  #, php-format
22
  msgid "Errors during upgrade of plugin %1$s"
23
  msgstr ""
24
 
25
- #: admin/admin.php:54
26
  #, php-format
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
- #: admin/admin.php:55
31
- msgid "no additional information available"
32
- msgstr ""
33
-
34
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
35
  msgid "Event List Settings"
36
  msgstr "Ajustes de eventos"
37
 
38
- #: admin/admin.php:95
39
  msgid "Settings"
40
  msgstr "Ajustes"
41
 
42
- #: admin/admin.php:99 admin/includes/admin-about.php:37
43
  msgid "About Event List"
44
  msgstr "Acerca de la lista de eventos"
45
 
46
- #: admin/admin.php:99
47
  msgid "About"
48
  msgstr "Sobre"
49
 
50
- #: admin/admin.php:121
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
@@ -560,7 +556,7 @@ msgstr ""
560
  msgid "Add additional categories"
561
  msgstr ""
562
 
563
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
564
  msgid "Import"
565
  msgstr "Importar"
566
 
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
11
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
12
  "Last-Translator: mibuthu\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
+ #: admin/admin.php:57
21
  #, php-format
22
  msgid "Errors during upgrade of plugin %1$s"
23
  msgstr ""
24
 
25
+ #: admin/admin.php:57
26
  #, php-format
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
31
  msgid "Event List Settings"
32
  msgstr "Ajustes de eventos"
33
 
34
+ #: admin/admin.php:106
35
  msgid "Settings"
36
  msgstr "Ajustes"
37
 
38
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
39
  msgid "About Event List"
40
  msgstr "Acerca de la lista de eventos"
41
 
42
+ #: admin/admin.php:110
43
  msgid "About"
44
  msgstr "Sobre"
45
 
46
+ #: admin/admin.php:132
47
  #, php-format
48
  msgid "%s Event"
49
  msgid_plural "%s Events"
556
  msgid "Add additional categories"
557
  msgstr ""
558
 
559
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
560
  msgid "Import"
561
  msgstr "Importar"
562
 
languages/event-list-et_EE.mo CHANGED
Binary file
languages/event-list-et_EE.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: et_EE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr "täiendavat teavet ei ole"
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Sündmuste loendi seaded"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Seaded"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Sündmuste loendist"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr ""
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -561,7 +557,7 @@ msgstr "Impordi sündmused"
561
  msgid "Add additional categories"
562
  msgstr "Lisage täiendavaid kategooriaid"
563
 
564
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
565
  msgid "Import"
566
  msgstr "Impordi"
567
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: et_EE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Sündmuste loendi seaded"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Seaded"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Sündmuste loendist"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr ""
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
557
  msgid "Add additional categories"
558
  msgstr "Lisage täiendavaid kategooriaid"
559
 
560
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
561
  msgid "Import"
562
  msgstr "Impordi"
563
 
languages/event-list-fi_FI.mo CHANGED
Binary file
languages/event-list-fi_FI.po CHANGED
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
14
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,37 +20,33 @@ msgstr ""
20
  "Language: fi_FI\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
- #: admin/admin.php:54
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:54
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:55
34
- msgid "no additional information available"
35
- msgstr ""
36
-
37
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
38
  msgid "Event List Settings"
39
  msgstr "Tapahtuma listan asetukset"
40
 
41
- #: admin/admin.php:95
42
  msgid "Settings"
43
  msgstr "Asetukset"
44
 
45
- #: admin/admin.php:99 admin/includes/admin-about.php:37
46
  msgid "About Event List"
47
  msgstr "Lisätietoa Tapahtumalistasta"
48
 
49
- #: admin/admin.php:99
50
  msgid "About"
51
  msgstr "Lisätietoa"
52
 
53
- #: admin/admin.php:121
54
  #, php-format
55
  msgid "%s Event"
56
  msgid_plural "%s Events"
@@ -563,7 +559,7 @@ msgstr "Tuo tapahtumia"
563
  msgid "Add additional categories"
564
  msgstr "Lisää kategorioita"
565
 
566
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
567
  msgid "Import"
568
  msgstr "Tuo"
569
 
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
14
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: fi_FI\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
34
  msgid "Event List Settings"
35
  msgstr "Tapahtuma listan asetukset"
36
 
37
+ #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Asetukset"
40
 
41
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Lisätietoa Tapahtumalistasta"
44
 
45
+ #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "Lisätietoa"
48
 
49
+ #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
559
  msgid "Add additional categories"
560
  msgstr "Lisää kategorioita"
561
 
562
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
563
  msgid "Import"
564
  msgstr "Tuo"
565
 
languages/event-list-fr_FR.mo CHANGED
Binary file
languages/event-list-fr_FR.po CHANGED
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
14
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,37 +20,33 @@ msgstr ""
20
  "Language: fr_FR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
- #: admin/admin.php:54
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:54
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:55
34
- msgid "no additional information available"
35
- msgstr ""
36
-
37
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
38
  msgid "Event List Settings"
39
  msgstr "Préférences"
40
 
41
- #: admin/admin.php:95
42
  msgid "Settings"
43
  msgstr "Préférences"
44
 
45
- #: admin/admin.php:99 admin/includes/admin-about.php:37
46
  msgid "About Event List"
47
  msgstr "A propos de la liste d'évènement"
48
 
49
- #: admin/admin.php:99
50
  msgid "About"
51
  msgstr "A propos"
52
 
53
- #: admin/admin.php:121
54
  #, php-format
55
  msgid "%s Event"
56
  msgid_plural "%s Events"
@@ -563,7 +559,7 @@ msgstr "Importer des événements"
563
  msgid "Add additional categories"
564
  msgstr "Ajouter plus de catégories"
565
 
566
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
567
  msgid "Import"
568
  msgstr "Importer"
569
 
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
14
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: fr_FR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
+ #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
34
  msgid "Event List Settings"
35
  msgstr "Préférences"
36
 
37
+ #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Préférences"
40
 
41
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "A propos de la liste d'évènement"
44
 
45
+ #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "A propos"
48
 
49
+ #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
559
  msgid "Add additional categories"
560
  msgstr "Ajouter plus de catégories"
561
 
562
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
563
  msgid "Import"
564
  msgstr "Importer"
565
 
languages/event-list-id_ID.mo CHANGED
Binary file
languages/event-list-id_ID.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: id_ID\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Pengaturan Daftar Acara"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Pengaturan"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Tentang Daftar Acara"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "Tentang"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -560,7 +556,7 @@ msgstr ""
560
  msgid "Add additional categories"
561
  msgstr ""
562
 
563
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
564
  msgid "Import"
565
  msgstr ""
566
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: id_ID\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Pengaturan Daftar Acara"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Pengaturan"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Tentang Daftar Acara"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Tentang"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
556
  msgid "Add additional categories"
557
  msgstr ""
558
 
559
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
560
  msgid "Import"
561
  msgstr ""
562
 
languages/event-list-it_IT.mo CHANGED
Binary file
languages/event-list-it_IT.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Impostazioni Eventi Lista"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Impostazioni"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Informazioni su Lista Eventi"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "Informazioni su"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -561,7 +557,7 @@ msgstr ""
561
  msgid "Add additional categories"
562
  msgstr ""
563
 
564
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
565
  msgid "Import"
566
  msgstr "Importazione"
567
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Impostazioni Eventi Lista"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Impostazioni"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Informazioni su Lista Eventi"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Informazioni su"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
557
  msgid "Add additional categories"
558
  msgstr ""
559
 
560
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
561
  msgid "Import"
562
  msgstr "Importazione"
563
 
languages/event-list-nl_NL.mo CHANGED
Binary file
languages/event-list-nl_NL.po CHANGED
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
15
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
18
  "MIME-Version: 1.0\n"
@@ -21,37 +21,33 @@ msgstr ""
21
  "Language: nl_NL\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
 
24
- #: admin/admin.php:54
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr ""
28
 
29
- #: admin/admin.php:54
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
- #: admin/admin.php:55
35
- msgid "no additional information available"
36
- msgstr ""
37
-
38
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
39
  msgid "Event List Settings"
40
  msgstr "Gebeurtenislijst Instellingen"
41
 
42
- #: admin/admin.php:95
43
  msgid "Settings"
44
  msgstr "Instellingen"
45
 
46
- #: admin/admin.php:99 admin/includes/admin-about.php:37
47
  msgid "About Event List"
48
  msgstr "Over Gebeurtenislijst"
49
 
50
- #: admin/admin.php:99
51
  msgid "About"
52
  msgstr "Over"
53
 
54
- #: admin/admin.php:121
55
  #, php-format
56
  msgid "%s Event"
57
  msgid_plural "%s Events"
@@ -564,7 +560,7 @@ msgstr "Importeer gebeurtenis"
564
  msgid "Add additional categories"
565
  msgstr "Voeg extra categorieën toe"
566
 
567
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
568
  msgid "Import"
569
  msgstr "Importeer"
570
 
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
15
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: nl_NL\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
 
24
+ #: admin/admin.php:57
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr ""
28
 
29
+ #: admin/admin.php:57
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
35
  msgid "Event List Settings"
36
  msgstr "Gebeurtenislijst Instellingen"
37
 
38
+ #: admin/admin.php:106
39
  msgid "Settings"
40
  msgstr "Instellingen"
41
 
42
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
43
  msgid "About Event List"
44
  msgstr "Over Gebeurtenislijst"
45
 
46
+ #: admin/admin.php:110
47
  msgid "About"
48
  msgstr "Over"
49
 
50
+ #: admin/admin.php:132
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
560
  msgid "Add additional categories"
561
  msgstr "Voeg extra categorieën toe"
562
 
563
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
564
  msgid "Import"
565
  msgstr "Importeer"
566
 
languages/event-list-pl_PL.mo CHANGED
Binary file
languages/event-list-pl_PL.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: pl_PL\n"
19
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Ustawienia Listy Wydarzeń"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Ustawienia"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "O Liście Wydarzeń"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "O"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -563,7 +559,7 @@ msgstr "Importuj wydarzenia"
563
  msgid "Add additional categories"
564
  msgstr "Dodaj dodatkowe kategorie"
565
 
566
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
567
  msgid "Import"
568
  msgstr "Import"
569
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: pl_PL\n"
19
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Ustawienia Listy Wydarzeń"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Ustawienia"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "O Liście Wydarzeń"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "O"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
559
  msgid "Add additional categories"
560
  msgstr "Dodaj dodatkowe kategorie"
561
 
562
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
563
  msgid "Import"
564
  msgstr "Import"
565
 
languages/event-list-pt_BR.mo CHANGED
Binary file
languages/event-list-pt_BR.po CHANGED
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
14
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,37 +20,33 @@ msgstr ""
20
  "Language: pt_BR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
- #: admin/admin.php:54
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:54
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:55
34
- msgid "no additional information available"
35
- msgstr ""
36
-
37
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
38
  msgid "Event List Settings"
39
  msgstr "Configurações da Lista de Eventos"
40
 
41
- #: admin/admin.php:95
42
  msgid "Settings"
43
  msgstr "Configurações"
44
 
45
- #: admin/admin.php:99 admin/includes/admin-about.php:37
46
  msgid "About Event List"
47
  msgstr "Sobre o Lista de Eventos"
48
 
49
- #: admin/admin.php:99
50
  msgid "About"
51
  msgstr "Sobre"
52
 
53
- #: admin/admin.php:121
54
  #, php-format
55
  msgid "%s Event"
56
  msgid_plural "%s Events"
@@ -563,7 +559,7 @@ msgstr ""
563
  msgid "Add additional categories"
564
  msgstr ""
565
 
566
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
567
  msgid "Import"
568
  msgstr "Importar"
569
 
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
14
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: pt_BR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
+ #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
34
  msgid "Event List Settings"
35
  msgstr "Configurações da Lista de Eventos"
36
 
37
+ #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Configurações"
40
 
41
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Sobre o Lista de Eventos"
44
 
45
+ #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "Sobre"
48
 
49
+ #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
559
  msgid "Add additional categories"
560
  msgstr ""
561
 
562
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
563
  msgid "Import"
564
  msgstr "Importar"
565
 
languages/event-list-sk_SK.mo CHANGED
Binary file
languages/event-list-sk_SK.po CHANGED
@@ -4,13 +4,14 @@
4
  #
5
  # Translators:
6
  # Dominik Molčanyi <frinkjeee@gmail.com>, 2017
 
7
  # Pavol Kubosko <palisanderb1@gmail.com>, 2017
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
12
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
13
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
16
  "MIME-Version: 1.0\n"
@@ -19,37 +20,33 @@ msgstr ""
19
  "Language: sk_SK\n"
20
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
21
 
22
- #: admin/admin.php:54
23
  #, php-format
24
  msgid "Errors during upgrade of plugin %1$s"
25
  msgstr ""
26
 
27
- #: admin/admin.php:54
28
  #, php-format
29
  msgid "Upgrade of plugin %1$s successful"
30
  msgstr ""
31
 
32
- #: admin/admin.php:55
33
- msgid "no additional information available"
34
- msgstr ""
35
-
36
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
37
  msgid "Event List Settings"
38
  msgstr "Nastavenia zoznamu udalostí"
39
 
40
- #: admin/admin.php:95
41
  msgid "Settings"
42
  msgstr "Nastavenia"
43
 
44
- #: admin/admin.php:99 admin/includes/admin-about.php:37
45
  msgid "About Event List"
46
  msgstr "O plugine Zoznam udalostí"
47
 
48
- #: admin/admin.php:99
49
  msgid "About"
50
  msgstr "O plugine"
51
 
52
- #: admin/admin.php:121
53
  #, php-format
54
  msgid "%s Event"
55
  msgid_plural "%s Events"
@@ -115,11 +112,11 @@ msgstr ""
115
 
116
  #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
117
  msgid "Add links to the single events"
118
- msgstr ""
119
 
120
  #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
121
  msgid "Add a link to the Event List page"
122
- msgstr ""
123
 
124
  #: admin/includes/admin-about.php:81
125
  msgid ""
@@ -156,7 +153,7 @@ msgstr ""
156
 
157
  #: admin/includes/admin-about.php:86
158
  msgid "Settings page"
159
- msgstr ""
160
 
161
  #: admin/includes/admin-about.php:92
162
  msgid "About the plugin author"
@@ -214,24 +211,24 @@ msgstr ""
214
 
215
  #: admin/includes/admin-about.php:124
216
  msgid "Attribute name"
217
- msgstr ""
218
 
219
  #: admin/includes/admin-about.php:125
220
  msgid "Value options"
221
- msgstr ""
222
 
223
  #: admin/includes/admin-about.php:126
224
  msgid "Default value"
225
- msgstr ""
226
 
227
  #: admin/includes/admin-about.php:127
228
  msgid "Description"
229
- msgstr ""
230
 
231
  #: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26
232
  #: includes/sc_event-list_helptexts.php:31
233
  msgid "Filter Syntax"
234
- msgstr ""
235
 
236
  #: admin/includes/admin-about.php:146
237
  msgid ""
@@ -248,19 +245,19 @@ msgstr ""
248
 
249
  #: admin/includes/admin-about.php:147
250
  msgid "AND"
251
- msgstr ""
252
 
253
  #: admin/includes/admin-about.php:147
254
  msgid "OR"
255
- msgstr ""
256
 
257
  #: admin/includes/admin-about.php:147
258
  msgid "or"
259
- msgstr ""
260
 
261
  #: admin/includes/admin-about.php:147
262
  msgid "and"
263
- msgstr ""
264
 
265
  #: admin/includes/admin-about.php:148
266
  msgid "Examples for cat filters:"
@@ -285,7 +282,7 @@ msgstr ""
285
 
286
  #: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25
287
  msgid "Available Date Formats"
288
- msgstr ""
289
 
290
  #: admin/includes/admin-about.php:157
291
  msgid "For date filters you can use the following date formats:"
@@ -293,53 +290,53 @@ msgstr ""
293
 
294
  #: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25
295
  msgid "Available Date Range Formats"
296
- msgstr ""
297
 
298
  #: admin/includes/admin-about.php:166
299
  msgid "For date filters you can use the following daterange formats:"
300
- msgstr ""
301
 
302
  #: admin/includes/admin-about.php:178
303
  msgid "Value"
304
- msgstr ""
305
 
306
  #: admin/includes/admin-about.php:182
307
  msgid "Example"
308
- msgstr ""
309
 
310
  #: admin/includes/admin-categories.php:38
311
  msgid "Synchronize with post categories"
312
- msgstr ""
313
 
314
  #: admin/includes/admin-categories.php:46
315
  #, php-format
316
  msgid "%1$s categories modified (%2$s)"
317
- msgstr ""
318
 
319
  #: admin/includes/admin-categories.php:47
320
  #, php-format
321
  msgid "%1$s categories added (%2$s)"
322
- msgstr ""
323
 
324
  #: admin/includes/admin-categories.php:48
325
  #, php-format
326
  msgid "%1$s categories deleted (%2$s)"
327
- msgstr ""
328
 
329
  #: admin/includes/admin-categories.php:50
330
  #, php-format
331
  msgid "%1$s categories not modified (%2$s)"
332
- msgstr ""
333
 
334
  #: admin/includes/admin-categories.php:51
335
  #, php-format
336
  msgid "%1$s categories not added (%2$s)"
337
- msgstr ""
338
 
339
  #: admin/includes/admin-categories.php:52
340
  #, php-format
341
  msgid "%1$s categories not deleted (%2$s)"
342
- msgstr ""
343
 
344
  #: admin/includes/admin-categories.php:55
345
  msgid "An Error occured during the category sync"
@@ -351,7 +348,7 @@ msgstr ""
351
 
352
  #: admin/includes/admin-category-sync.php:45
353
  msgid "Error: You are not allowed to view this page!"
354
- msgstr ""
355
 
356
  #: admin/includes/admin-category-sync.php:62
357
  msgid "Affected Categories when switching to seperate Event Categories"
@@ -392,7 +389,7 @@ msgstr ""
392
 
393
  #: admin/includes/admin-category-sync.php:74
394
  msgid "Start synchronisation"
395
- msgstr ""
396
 
397
  #: admin/includes/admin-category-sync.php:75
398
  msgid ""
@@ -402,15 +399,15 @@ msgstr ""
402
 
403
  #: admin/includes/admin-category-sync.php:90
404
  msgid "Categories to modify"
405
- msgstr ""
406
 
407
  #: admin/includes/admin-category-sync.php:91
408
  msgid "Categories to add"
409
- msgstr ""
410
 
411
  #: admin/includes/admin-category-sync.php:92
412
  msgid "Categories to delete (optional)"
413
- msgstr ""
414
 
415
  #: admin/includes/admin-category-sync.php:93
416
  msgid "Delete not available post categories"
@@ -418,11 +415,11 @@ msgstr ""
418
 
419
  #: admin/includes/admin-category-sync.php:97
420
  msgid "Categories with differences"
421
- msgstr ""
422
 
423
  #: admin/includes/admin-category-sync.php:98
424
  msgid "Categories to add (optional)"
425
- msgstr ""
426
 
427
  #: admin/includes/admin-category-sync.php:99
428
  msgid "Add not available post categories"
@@ -430,15 +427,15 @@ msgstr ""
430
 
431
  #: admin/includes/admin-category-sync.php:117
432
  msgid "none"
433
- msgstr ""
434
 
435
  #: admin/includes/admin-import.php:50
436
  msgid "Import Events"
437
- msgstr ""
438
 
439
  #: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
440
  msgid "Step"
441
- msgstr ""
442
 
443
  #: admin/includes/admin-import.php:70
444
  msgid "Set import file and options"
@@ -447,11 +444,11 @@ msgstr ""
447
  #: admin/includes/admin-import.php:73
448
  #, php-format
449
  msgid "Proceed with Step %1$s"
450
- msgstr ""
451
 
452
  #: admin/includes/admin-import.php:76
453
  msgid "Example file"
454
- msgstr ""
455
 
456
  #: admin/includes/admin-import.php:77
457
  #, php-format
@@ -461,7 +458,7 @@ msgstr ""
461
 
462
  #: admin/includes/admin-import.php:78
463
  msgid "Note"
464
- msgstr ""
465
 
466
  #: admin/includes/admin-import.php:78
467
  msgid ""
@@ -472,7 +469,7 @@ msgstr ""
472
  #: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
473
  #: admin/includes/admin-import.php:106
474
  msgid "Sorry, there has been an error."
475
- msgstr ""
476
 
477
  #: admin/includes/admin-import.php:86
478
  msgid "The file does not exist, please try again."
@@ -504,7 +501,7 @@ msgstr ""
504
 
505
  #: admin/includes/admin-import.php:162
506
  msgid "Go back to All Events"
507
- msgstr ""
508
 
509
  #: admin/includes/admin-import.php:166
510
  msgid "Import with errors!"
@@ -519,34 +516,34 @@ msgstr ""
519
  #: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
520
  #: includes/widget_helptexts.php:8
521
  msgid "Title"
522
- msgstr ""
523
 
524
  #: admin/includes/admin-import.php:175
525
  msgid "Start Date"
526
- msgstr ""
527
 
528
  #: admin/includes/admin-import.php:176
529
  msgid "End Date"
530
- msgstr ""
531
 
532
  #: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
533
  #: includes/options_helptexts.php:40 includes/options_helptexts.php:41
534
  msgid "Time"
535
- msgstr ""
536
 
537
  #: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
538
  #: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
539
  #: includes/options_helptexts.php:46
540
  msgid "Location"
541
- msgstr ""
542
 
543
  #: admin/includes/admin-import.php:179
544
  msgid "Content"
545
- msgstr ""
546
 
547
  #: admin/includes/admin-import.php:180
548
  msgid "Category slugs"
549
- msgstr ""
550
 
551
  #: admin/includes/admin-import.php:219
552
  #, php-format
@@ -557,68 +554,68 @@ msgstr ""
557
 
558
  #: admin/includes/admin-import.php:251
559
  msgid "Import events"
560
- msgstr ""
561
 
562
  #: admin/includes/admin-import.php:252
563
  msgid "Add additional categories"
564
- msgstr ""
565
 
566
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
567
  msgid "Import"
568
- msgstr ""
569
 
570
  #: admin/includes/admin-main.php:59
571
  msgid "Event Date"
572
- msgstr ""
573
 
574
  #: admin/includes/admin-main.php:63
575
  msgid "Author"
576
- msgstr ""
577
 
578
  #: admin/includes/admin-main.php:125
579
  #, php-format
580
  msgid "Add a copy of %1$s"
581
- msgstr ""
582
 
583
  #: admin/includes/admin-main.php:125
584
  msgid "Copy"
585
- msgstr ""
586
 
587
  #: admin/includes/admin-new.php:51
588
  msgid "Event data"
589
- msgstr ""
590
 
591
  #: admin/includes/admin-new.php:80
592
  msgid "Add Copy"
593
- msgstr ""
594
 
595
  #: admin/includes/admin-new.php:84
596
  msgid "Date"
597
- msgstr ""
598
 
599
  #: admin/includes/admin-new.php:84
600
  msgid "required"
601
- msgstr ""
602
 
603
  #: admin/includes/admin-new.php:87
604
  msgid "Multi-Day Event"
605
- msgstr ""
606
 
607
  #: admin/includes/admin-new.php:106
608
  msgid "Event Title"
609
- msgstr ""
610
 
611
  #: admin/includes/admin-new.php:121
612
  msgid "Event Content"
613
- msgstr ""
614
 
615
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
616
  msgid "Event updated."
617
- msgstr ""
618
 
619
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
620
  msgid "View event"
621
- msgstr ""
622
 
623
  #: admin/includes/admin-new.php:184
624
  #, php-format
@@ -627,41 +624,41 @@ msgstr ""
627
 
628
  #: admin/includes/admin-new.php:185
629
  msgid "Event published."
630
- msgstr ""
631
 
632
  #: admin/includes/admin-new.php:187
633
  msgid "Event submitted."
634
- msgstr ""
635
 
636
  #: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
637
  #: admin/includes/admin-new.php:190
638
  msgid "Preview event"
639
- msgstr ""
640
 
641
  #: admin/includes/admin-new.php:188
642
  #, php-format
643
  msgid "Event scheduled for: %1$s>"
644
- msgstr ""
645
 
646
  #: admin/includes/admin-new.php:190
647
  msgid "Event draft updated."
648
- msgstr ""
649
 
650
  #: admin/includes/admin-settings.php:71
651
  msgid "Go to Event Category switching page"
652
- msgstr ""
653
 
654
  #: admin/includes/admin-settings.php:83
655
  msgid "Frontend Settings"
656
- msgstr ""
657
 
658
  #: admin/includes/admin-settings.php:84
659
  msgid "Admin Page Settings"
660
- msgstr ""
661
 
662
  #: admin/includes/admin-settings.php:85
663
  msgid "Feed Settings"
664
- msgstr ""
665
 
666
  #: admin/includes/admin-settings.php:86
667
  msgid "Category Taxonomy"
@@ -669,11 +666,11 @@ msgstr ""
669
 
670
  #: includes/daterange_helptexts.php:7
671
  msgid "Year"
672
- msgstr ""
673
 
674
  #: includes/daterange_helptexts.php:8
675
  msgid "A year can be specified in 4 digit format."
676
- msgstr ""
677
 
678
  #: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
679
  #: includes/daterange_helptexts.php:36
@@ -689,7 +686,7 @@ msgstr ""
689
 
690
  #: includes/daterange_helptexts.php:12
691
  msgid "Month"
692
- msgstr ""
693
 
694
  #: includes/daterange_helptexts.php:13
695
  msgid ""
@@ -703,17 +700,17 @@ msgstr ""
703
 
704
  #: includes/daterange_helptexts.php:17
705
  msgid "Day"
706
- msgstr ""
707
 
708
  #: includes/daterange_helptexts.php:18
709
  msgid ""
710
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
711
  " month and 2 digets for the day, seperated by hyphens (-)."
712
- msgstr ""
713
 
714
  #: includes/daterange_helptexts.php:21
715
  msgid "Relative Year"
716
- msgstr ""
717
 
718
  #: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
719
  #: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
@@ -723,7 +720,7 @@ msgstr ""
723
 
724
  #: includes/daterange_helptexts.php:22
725
  msgid "A relative year"
726
- msgstr ""
727
 
728
  #: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
729
  #: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
@@ -735,37 +732,37 @@ msgstr ""
735
 
736
  #: includes/daterange_helptexts.php:23
737
  msgid "number of years"
738
- msgstr ""
739
 
740
  #: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
741
  #: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
742
  #, php-format
743
  msgid "Additionally the following values are available: %1$s"
744
- msgstr ""
745
 
746
  #: includes/daterange_helptexts.php:27
747
  msgid "Relative Month"
748
- msgstr ""
749
 
750
  #: includes/daterange_helptexts.php:28
751
  msgid "A relative month"
752
- msgstr ""
753
 
754
  #: includes/daterange_helptexts.php:29
755
  msgid "number of months"
756
- msgstr ""
757
 
758
  #: includes/daterange_helptexts.php:33
759
  msgid "Relative Week"
760
- msgstr ""
761
 
762
  #: includes/daterange_helptexts.php:34
763
  msgid "A relative week"
764
- msgstr ""
765
 
766
  #: includes/daterange_helptexts.php:35
767
  msgid "number of weeks"
768
- msgstr ""
769
 
770
  #: includes/daterange_helptexts.php:36
771
  msgid "the resulting week"
@@ -780,19 +777,19 @@ msgstr ""
780
 
781
  #: includes/daterange_helptexts.php:41
782
  msgid "Relative Day"
783
- msgstr ""
784
 
785
  #: includes/daterange_helptexts.php:42
786
  msgid "A relative day"
787
- msgstr ""
788
 
789
  #: includes/daterange_helptexts.php:43
790
  msgid "number of days"
791
- msgstr ""
792
 
793
  #: includes/daterange_helptexts.php:49
794
  msgid "Date range"
795
- msgstr ""
796
 
797
  #: includes/daterange_helptexts.php:50
798
  msgid ""
@@ -802,7 +799,7 @@ msgstr ""
802
 
803
  #: includes/daterange_helptexts.php:55
804
  msgid "This value defines a range without any limits."
805
- msgstr ""
806
 
807
  #: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
808
  #: includes/daterange_helptexts.php:66
@@ -812,23 +809,23 @@ msgstr ""
812
 
813
  #: includes/daterange_helptexts.php:59 includes/filterbar.php:287
814
  msgid "Upcoming"
815
- msgstr ""
816
 
817
  #: includes/daterange_helptexts.php:60
818
  msgid "This value defines a range from the actual day to the future."
819
- msgstr ""
820
 
821
  #: includes/daterange_helptexts.php:64 includes/filterbar.php:291
822
  msgid "Past"
823
- msgstr ""
824
 
825
  #: includes/daterange_helptexts.php:65
826
  msgid "This value defines a range from the past to the previous day."
827
- msgstr ""
828
 
829
  #: includes/event.php:107
830
  msgid "No valid start date provided"
831
- msgstr ""
832
 
833
  #: includes/events_post_type.php:60
834
  msgid "Events"
@@ -836,7 +833,7 @@ msgstr "Udalosti"
836
 
837
  #: includes/events_post_type.php:61
838
  msgid "Event"
839
- msgstr ""
840
 
841
  #: includes/events_post_type.php:62
842
  msgid "Add New"
@@ -848,31 +845,31 @@ msgstr "pridať udalosť"
848
 
849
  #: includes/events_post_type.php:64
850
  msgid "Edit Event"
851
- msgstr ""
852
 
853
  #: includes/events_post_type.php:65
854
  msgid "New Event"
855
- msgstr ""
856
 
857
  #: includes/events_post_type.php:66
858
  msgid "View Event"
859
- msgstr ""
860
 
861
  #: includes/events_post_type.php:67
862
  msgid "View Events"
863
- msgstr ""
864
 
865
  #: includes/events_post_type.php:68
866
  msgid "Search Events"
867
- msgstr ""
868
 
869
  #: includes/events_post_type.php:69
870
  msgid "No events found"
871
- msgstr ""
872
 
873
  #: includes/events_post_type.php:70
874
  msgid "No events found in Trash"
875
- msgstr ""
876
 
877
  #: includes/events_post_type.php:72
878
  msgid "All Events"
@@ -880,19 +877,19 @@ msgstr "Všetky udalosti"
880
 
881
  #: includes/events_post_type.php:73
882
  msgid "Event Archives"
883
- msgstr ""
884
 
885
  #: includes/events_post_type.php:74
886
  msgid "Event Attributes"
887
- msgstr ""
888
 
889
  #: includes/events_post_type.php:75
890
  msgid "Insert into event"
891
- msgstr ""
892
 
893
  #: includes/events_post_type.php:76
894
  msgid "Uploaded to this event"
895
- msgstr ""
896
 
897
  #: includes/events_post_type.php:77
898
  msgid "Event List"
@@ -900,27 +897,27 @@ msgstr "Zoznam udalostí"
900
 
901
  #: includes/events_post_type.php:78
902
  msgid "Filter events list"
903
- msgstr ""
904
 
905
  #: includes/events_post_type.php:79
906
  msgid "Events list navigation"
907
- msgstr ""
908
 
909
  #: includes/events_post_type.php:80
910
  msgid "Events list"
911
- msgstr ""
912
 
913
  #: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60
914
  msgid "Reset"
915
- msgstr ""
916
 
917
  #: includes/filterbar.php:278
918
  msgid "All"
919
- msgstr ""
920
 
921
  #: includes/filterbar.php:281
922
  msgid "All Dates"
923
- msgstr ""
924
 
925
  #: includes/options_helptexts.php:10
926
  msgid "CSV File to import"
@@ -932,7 +929,7 @@ msgstr ""
932
 
933
  #: includes/options_helptexts.php:15
934
  msgid "Used date format"
935
- msgstr ""
936
 
937
  #: includes/options_helptexts.php:17
938
  msgid ""
@@ -942,17 +939,17 @@ msgstr ""
942
 
943
  #: includes/options_helptexts.php:21
944
  msgid "Text for no events"
945
- msgstr ""
946
 
947
  #: includes/options_helptexts.php:23
948
  msgid ""
949
  "This option defines the displayed text when no events are available for the "
950
  "selected view."
951
- msgstr ""
952
 
953
  #: includes/options_helptexts.php:26
954
  msgid "Multiday filter range"
955
- msgstr ""
956
 
957
  #: includes/options_helptexts.php:27
958
  msgid "Use the complete event range in the date filter"
@@ -967,7 +964,7 @@ msgstr ""
967
  #: includes/options_helptexts.php:29
968
  msgid ""
969
  "If disabled, only the start day of an event is considered in the filter."
970
- msgstr ""
971
 
972
  #: includes/options_helptexts.php:30
973
  msgid ""
@@ -978,11 +975,11 @@ msgstr ""
978
 
979
  #: includes/options_helptexts.php:33
980
  msgid "Date display"
981
- msgstr ""
982
 
983
  #: includes/options_helptexts.php:34
984
  msgid "Show the date only once per day"
985
- msgstr ""
986
 
987
  #: includes/options_helptexts.php:35
988
  msgid ""
@@ -998,12 +995,12 @@ msgstr ""
998
 
999
  #: includes/options_helptexts.php:39
1000
  msgid "HTML tags"
1001
- msgstr ""
1002
 
1003
  #: includes/options_helptexts.php:40 includes/options_helptexts.php:45
1004
  #, php-format
1005
  msgid "Allow HTML tags in the event field \"%1$s\""
1006
- msgstr ""
1007
 
1008
  #: includes/options_helptexts.php:41 includes/options_helptexts.php:46
1009
  #, php-format
@@ -1013,11 +1010,11 @@ msgstr ""
1013
 
1014
  #: includes/options_helptexts.php:49
1015
  msgid "Preferred language file"
1016
- msgstr ""
1017
 
1018
  #: includes/options_helptexts.php:50
1019
  msgid "Load translations from general language directory first"
1020
- msgstr ""
1021
 
1022
  #: includes/options_helptexts.php:51
1023
  #, php-format
@@ -1045,7 +1042,7 @@ msgstr ""
1045
 
1046
  #: includes/options_helptexts.php:60
1047
  msgid "Text for \"Show content\""
1048
- msgstr ""
1049
 
1050
  #: includes/options_helptexts.php:61
1051
  msgid ""
@@ -1055,7 +1052,7 @@ msgstr ""
1055
 
1056
  #: includes/options_helptexts.php:64
1057
  msgid "Text for \"Hide content\""
1058
- msgstr ""
1059
 
1060
  #: includes/options_helptexts.php:65
1061
  msgid ""
@@ -1065,7 +1062,7 @@ msgstr ""
1065
 
1066
  #: includes/options_helptexts.php:68
1067
  msgid "Disable CSS file"
1068
- msgstr ""
1069
 
1070
  #: includes/options_helptexts.php:69
1071
  #, php-format
@@ -1085,7 +1082,7 @@ msgstr ""
1085
 
1086
  #: includes/options_helptexts.php:75
1087
  msgid "Date format in edit form"
1088
- msgstr ""
1089
 
1090
  #: includes/options_helptexts.php:76
1091
  msgid ""
@@ -1105,7 +1102,7 @@ msgstr ""
1105
 
1106
  #: includes/options_helptexts.php:82 includes/options_helptexts.php:110
1107
  msgid "Enable RSS feed"
1108
- msgstr ""
1109
 
1110
  #: includes/options_helptexts.php:83
1111
  msgid "Enable support for an event RSS feed"
@@ -1123,7 +1120,7 @@ msgstr ""
1123
 
1124
  #: includes/options_helptexts.php:88
1125
  msgid "Feed name"
1126
- msgstr ""
1127
 
1128
  #: includes/options_helptexts.php:89
1129
  #, php-format
@@ -1139,12 +1136,12 @@ msgstr ""
1139
 
1140
  #: includes/options_helptexts.php:93
1141
  msgid "Feed Description"
1142
- msgstr ""
1143
 
1144
  #: includes/options_helptexts.php:94
1145
  #, php-format
1146
  msgid "This options set the feed description. The default value is %1$s."
1147
- msgstr ""
1148
 
1149
  #: includes/options_helptexts.php:95
1150
  msgid ""
@@ -1154,11 +1151,11 @@ msgstr ""
1154
 
1155
  #: includes/options_helptexts.php:98
1156
  msgid "Listed events"
1157
- msgstr ""
1158
 
1159
  #: includes/options_helptexts.php:99
1160
  msgid "Only show upcoming events in feed"
1161
- msgstr ""
1162
 
1163
  #: includes/options_helptexts.php:100
1164
  msgid ""
@@ -1167,7 +1164,7 @@ msgstr ""
1167
 
1168
  #: includes/options_helptexts.php:101
1169
  msgid "If disabled all events (upcoming and past) will be listed."
1170
- msgstr ""
1171
 
1172
  #: includes/options_helptexts.php:104
1173
  msgid "Add RSS feed link in head"
@@ -1201,7 +1198,7 @@ msgstr ""
1201
  #: includes/options_helptexts.php:110
1202
  #, php-format
1203
  msgid "This option is only valid if the setting %1$s is enabled."
1204
- msgstr ""
1205
 
1206
  #: includes/options_helptexts.php:113
1207
  msgid "Position of the RSS feed link"
@@ -1209,15 +1206,15 @@ msgstr ""
1209
 
1210
  #: includes/options_helptexts.php:114
1211
  msgid "at the top (above the navigation bar)"
1212
- msgstr ""
1213
 
1214
  #: includes/options_helptexts.php:114
1215
  msgid "between navigation bar and events"
1216
- msgstr ""
1217
 
1218
  #: includes/options_helptexts.php:114
1219
  msgid "at the bottom"
1220
- msgstr ""
1221
 
1222
  #: includes/options_helptexts.php:115
1223
  msgid ""
@@ -1238,15 +1235,15 @@ msgstr ""
1238
 
1239
  #: includes/options_helptexts.php:120
1240
  msgid "left"
1241
- msgstr ""
1242
 
1243
  #: includes/options_helptexts.php:120
1244
  msgid "center"
1245
- msgstr ""
1246
 
1247
  #: includes/options_helptexts.php:120
1248
  msgid "right"
1249
- msgstr ""
1250
 
1251
  #: includes/options_helptexts.php:121
1252
  msgid ""
@@ -1284,7 +1281,7 @@ msgstr ""
1284
 
1285
  #: includes/options_helptexts.php:139
1286
  msgid "Event Category handling"
1287
- msgstr ""
1288
 
1289
  #: includes/options_helptexts.php:140
1290
  msgid "Use Post Categories"
@@ -1298,29 +1295,29 @@ msgstr ""
1298
 
1299
  #: includes/options_helptexts.php:142
1300
  msgid "Attention"
1301
- msgstr ""
1302
 
1303
  #: includes/options_helptexts.php:143
1304
  msgid ""
1305
  "This option cannot be changed directly, but you can go to the Event Category"
1306
  " switching page from here."
1307
- msgstr ""
1308
 
1309
  #: includes/options.php:40
1310
  msgid "events"
1311
- msgstr ""
1312
 
1313
  #: includes/options.php:41
1314
  msgid "Show content"
1315
- msgstr ""
1316
 
1317
  #: includes/options.php:42
1318
  msgid "Hide content"
1319
- msgstr ""
1320
 
1321
  #: includes/sc_event-list_helptexts.php:7
1322
  msgid "event-id"
1323
- msgstr ""
1324
 
1325
  #: includes/sc_event-list_helptexts.php:8
1326
  #, php-format
@@ -1333,13 +1330,13 @@ msgstr ""
1333
  #: includes/sc_event-list_helptexts.php:10
1334
  #: includes/sc_event-list_helptexts.php:22
1335
  msgid "year"
1336
- msgstr ""
1337
 
1338
  #: includes/sc_event-list_helptexts.php:11
1339
  msgid ""
1340
  "This attribute defines which events are initially shown. The default is to "
1341
  "show the upcoming events only."
1342
- msgstr ""
1343
 
1344
  #: includes/sc_event-list_helptexts.php:12
1345
  #, php-format
@@ -1356,7 +1353,7 @@ msgstr ""
1356
  msgid ""
1357
  "This attribute defines the category of which events are initially shown. The"
1358
  " default is to show events of all categories."
1359
- msgstr ""
1360
 
1361
  #: includes/sc_event-list_helptexts.php:16
1362
  msgid ""
@@ -1366,7 +1363,7 @@ msgstr ""
1366
 
1367
  #: includes/sc_event-list_helptexts.php:19
1368
  msgid "This attribute defines the initial order of the events."
1369
- msgstr ""
1370
 
1371
  #: includes/sc_event-list_helptexts.php:20
1372
  msgid ""
@@ -1428,7 +1425,7 @@ msgstr ""
1428
  #: includes/sc_event-list_helptexts.php:89
1429
  #: includes/sc_event-list_helptexts.php:104
1430
  msgid "number"
1431
- msgstr ""
1432
 
1433
  #: includes/sc_event-list_helptexts.php:34
1434
  #, php-format
@@ -1436,13 +1433,13 @@ msgid ""
1436
  "This attribute defines how many events should be displayed if upcoming "
1437
  "events is selected. With the default value %1$s all events will be "
1438
  "displayed."
1439
- msgstr ""
1440
 
1441
  #: includes/sc_event-list_helptexts.php:35
1442
  msgid ""
1443
  "Please not that in the actual version there is no pagination of the events "
1444
  "available, so the event list can be very long."
1445
- msgstr ""
1446
 
1447
  #: includes/sc_event-list_helptexts.php:38
1448
  msgid ""
@@ -1476,69 +1473,69 @@ msgstr ""
1476
 
1477
  #: includes/sc_event-list_helptexts.php:46
1478
  msgid "filterbar item"
1479
- msgstr ""
1480
 
1481
  #: includes/sc_event-list_helptexts.php:46
1482
  #: includes/sc_event-list_helptexts.php:63
1483
  msgid "description"
1484
- msgstr ""
1485
 
1486
  #: includes/sc_event-list_helptexts.php:46
1487
  msgid "item options"
1488
- msgstr ""
1489
 
1490
  #: includes/sc_event-list_helptexts.php:46
1491
  msgid "option values"
1492
- msgstr ""
1493
 
1494
  #: includes/sc_event-list_helptexts.php:46
1495
  msgid "default value"
1496
- msgstr ""
1497
 
1498
  #: includes/sc_event-list_helptexts.php:46
1499
  msgid "option description"
1500
- msgstr ""
1501
 
1502
  #: includes/sc_event-list_helptexts.php:47
1503
  msgid ""
1504
  "Show a list of all available years. Additional there are some special "
1505
  "entries available (see item options)."
1506
- msgstr ""
1507
 
1508
  #: includes/sc_event-list_helptexts.php:48
1509
  #: includes/sc_event-list_helptexts.php:53
1510
  msgid "Add an entry to show all events."
1511
- msgstr ""
1512
 
1513
  #: includes/sc_event-list_helptexts.php:49
1514
  #: includes/sc_event-list_helptexts.php:54
1515
  msgid "Add an entry to show all upcoming events."
1516
- msgstr ""
1517
 
1518
  #: includes/sc_event-list_helptexts.php:50
1519
  #: includes/sc_event-list_helptexts.php:55
1520
  msgid "Add an entry to show events in the past."
1521
- msgstr ""
1522
 
1523
  #: includes/sc_event-list_helptexts.php:51
1524
  msgid "Set descending or ascending order of year entries."
1525
- msgstr ""
1526
 
1527
  #: includes/sc_event-list_helptexts.php:52
1528
  msgid "Show a list of all available months."
1529
- msgstr ""
1530
 
1531
  #: includes/sc_event-list_helptexts.php:56
1532
  msgid "Set descending or ascending order of month entries."
1533
- msgstr ""
1534
 
1535
  #: includes/sc_event-list_helptexts.php:57
1536
  msgid "php date-formats"
1537
- msgstr ""
1538
 
1539
  #: includes/sc_event-list_helptexts.php:57
1540
  msgid "Set the displayed date format of the month entries."
1541
- msgstr ""
1542
 
1543
  #: includes/sc_event-list_helptexts.php:58
1544
  #, php-format
@@ -1557,35 +1554,35 @@ msgstr ""
1557
 
1558
  #: includes/sc_event-list_helptexts.php:59
1559
  msgid "Show a list of all available categories."
1560
- msgstr ""
1561
 
1562
  #: includes/sc_event-list_helptexts.php:59
1563
  msgid "Add an entry to show events from all categories."
1564
- msgstr ""
1565
 
1566
  #: includes/sc_event-list_helptexts.php:60
1567
  msgid "A link to reset the eventlist filter to standard."
1568
- msgstr ""
1569
 
1570
  #: includes/sc_event-list_helptexts.php:60
1571
  msgid "any text"
1572
- msgstr ""
1573
 
1574
  #: includes/sc_event-list_helptexts.php:60
1575
  msgid "Set the caption of the link."
1576
- msgstr ""
1577
 
1578
  #: includes/sc_event-list_helptexts.php:61
1579
  msgid "Find below an overview of the available filterbar display options:"
1580
- msgstr ""
1581
 
1582
  #: includes/sc_event-list_helptexts.php:63
1583
  msgid "display option"
1584
- msgstr ""
1585
 
1586
  #: includes/sc_event-list_helptexts.php:63
1587
  msgid "available for"
1588
- msgstr ""
1589
 
1590
  #: includes/sc_event-list_helptexts.php:64
1591
  #, php-format
@@ -1596,15 +1593,15 @@ msgstr ""
1596
  msgid ""
1597
  "Shows a select box where an item can be choosen. After the selection of an "
1598
  "item the page is reloaded via javascript to show the filtered events."
1599
- msgstr ""
1600
 
1601
  #: includes/sc_event-list_helptexts.php:66
1602
  msgid "Shows a simple link which can be clicked."
1603
- msgstr ""
1604
 
1605
  #: includes/sc_event-list_helptexts.php:67
1606
  msgid "Find below some declaration examples with descriptions:"
1607
- msgstr ""
1608
 
1609
  #: includes/sc_event-list_helptexts.php:69
1610
  #, php-format
@@ -1623,11 +1620,11 @@ msgstr ""
1623
 
1624
  #: includes/sc_event-list_helptexts.php:71
1625
  msgid "option_name"
1626
- msgstr ""
1627
 
1628
  #: includes/sc_event-list_helptexts.php:71
1629
  msgid "value"
1630
- msgstr ""
1631
 
1632
  #: includes/sc_event-list_helptexts.php:72
1633
  #, php-format
@@ -1657,7 +1654,7 @@ msgstr ""
1657
  #: includes/sc_event-list_helptexts.php:92
1658
  #: includes/sc_event-list_helptexts.php:107
1659
  msgid "This attribute has no influence if only a single event is shown."
1660
- msgstr ""
1661
 
1662
  #: includes/sc_event-list_helptexts.php:80
1663
  msgid ""
@@ -1691,12 +1688,12 @@ msgstr ""
1691
  msgid ""
1692
  "This attribute specifies if the content should be truncate to the given "
1693
  "number of characters in the event list."
1694
- msgstr ""
1695
 
1696
  #: includes/sc_event-list_helptexts.php:106
1697
  #, php-format
1698
  msgid "With the standard value %1$s the full text is displayed."
1699
- msgstr ""
1700
 
1701
  #: includes/sc_event-list_helptexts.php:110
1702
  msgid ""
@@ -1738,15 +1735,15 @@ msgstr ""
1738
 
1739
  #: includes/sc_event-list.php:135
1740
  msgid "Event Information:"
1741
- msgstr ""
1742
 
1743
  #: includes/widget_helptexts.php:10
1744
  msgid "This option defines the displayed title for the widget."
1745
- msgstr ""
1746
 
1747
  #: includes/widget_helptexts.php:15
1748
  msgid "Category Filter"
1749
- msgstr ""
1750
 
1751
  #: includes/widget_helptexts.php:17
1752
  msgid ""
@@ -1759,25 +1756,25 @@ msgstr ""
1759
 
1760
  #: includes/widget_helptexts.php:22
1761
  msgid "Number of listed events"
1762
- msgstr ""
1763
 
1764
  #: includes/widget_helptexts.php:24
1765
  msgid "The number of upcoming events to display"
1766
- msgstr ""
1767
 
1768
  #: includes/widget_helptexts.php:29
1769
  msgid "Truncate event title to"
1770
- msgstr ""
1771
 
1772
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1773
  #: includes/widget_helptexts.php:67
1774
  msgid "characters"
1775
- msgstr ""
1776
 
1777
  #: includes/widget_helptexts.php:31
1778
  msgid ""
1779
  "This option defines the number of displayed characters for the event title."
1780
- msgstr ""
1781
 
1782
  #: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
1783
  #, php-format
@@ -1788,7 +1785,7 @@ msgstr ""
1788
 
1789
  #: includes/widget_helptexts.php:37
1790
  msgid "Show event starttime"
1791
- msgstr ""
1792
 
1793
  #: includes/widget_helptexts.php:39
1794
  msgid "This option defines if the event start time will be displayed."
@@ -1796,48 +1793,48 @@ msgstr ""
1796
 
1797
  #: includes/widget_helptexts.php:44
1798
  msgid "Show event location"
1799
- msgstr ""
1800
 
1801
  #: includes/widget_helptexts.php:46
1802
  msgid "This option defines if the event location will be displayed."
1803
- msgstr ""
1804
 
1805
  #: includes/widget_helptexts.php:51
1806
  msgid "Truncate location to"
1807
- msgstr ""
1808
 
1809
  #: includes/widget_helptexts.php:53
1810
  msgid ""
1811
  "If the event location is diplayed this option defines the number of "
1812
  "displayed characters."
1813
- msgstr ""
1814
 
1815
  #: includes/widget_helptexts.php:59
1816
  msgid "Show event content"
1817
- msgstr ""
1818
 
1819
  #: includes/widget_helptexts.php:61
1820
  msgid "This option defines if the event content will be displayed."
1821
- msgstr ""
1822
 
1823
  #: includes/widget_helptexts.php:66
1824
  msgid "Truncate content to"
1825
- msgstr ""
1826
 
1827
  #: includes/widget_helptexts.php:68
1828
  msgid ""
1829
  "If the event content are diplayed this option defines the number of diplayed"
1830
  " characters."
1831
- msgstr ""
1832
 
1833
  #: includes/widget_helptexts.php:69
1834
  #, php-format
1835
  msgid "Set this value to %1$s to view the full text."
1836
- msgstr ""
1837
 
1838
  #: includes/widget_helptexts.php:74
1839
  msgid "URL to the linked Event List page"
1840
- msgstr ""
1841
 
1842
  #: includes/widget_helptexts.php:76
1843
  msgid ""
@@ -1872,22 +1869,22 @@ msgstr ""
1872
 
1873
  #: includes/widget_helptexts.php:102
1874
  msgid "Caption for the link"
1875
- msgstr ""
1876
 
1877
  #: includes/widget_helptexts.php:104
1878
  msgid ""
1879
  "This option defines the text for the link to the Event List page if the "
1880
  "approriate option is selected."
1881
- msgstr ""
1882
 
1883
  #: includes/widget.php:20
1884
  msgid "With this widget a list of upcoming events can be displayed."
1885
- msgstr ""
1886
 
1887
  #: includes/widget.php:25
1888
  msgid "Upcoming events"
1889
- msgstr ""
1890
 
1891
  #: includes/widget.php:38
1892
  msgid "show events page"
1893
- msgstr ""
4
  #
5
  # Translators:
6
  # Dominik Molčanyi <frinkjeee@gmail.com>, 2017
7
+ # Lubo Caca <lulucaca2.86@gmail.com>, 2018
8
  # Pavol Kubosko <palisanderb1@gmail.com>, 2017
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
14
+ "PO-Revision-Date: 2018-04-22 06:55+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: sk_SK\n"
21
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
22
 
23
+ #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
34
  msgid "Event List Settings"
35
  msgstr "Nastavenia zoznamu udalostí"
36
 
37
+ #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Nastavenia"
40
 
41
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "O plugine Zoznam udalostí"
44
 
45
+ #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "O plugine"
48
 
49
+ #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
112
 
113
  #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
114
  msgid "Add links to the single events"
115
+ msgstr "Pridaj odkaz na na akciu"
116
 
117
  #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
118
  msgid "Add a link to the Event List page"
119
+ msgstr "Pridaj odkaz na stránku akcií"
120
 
121
  #: admin/includes/admin-about.php:81
122
  msgid ""
153
 
154
  #: admin/includes/admin-about.php:86
155
  msgid "Settings page"
156
+ msgstr "Stránka nastavení"
157
 
158
  #: admin/includes/admin-about.php:92
159
  msgid "About the plugin author"
211
 
212
  #: admin/includes/admin-about.php:124
213
  msgid "Attribute name"
214
+ msgstr "Názov atribútu"
215
 
216
  #: admin/includes/admin-about.php:125
217
  msgid "Value options"
218
+ msgstr "Moznosti hodnoty"
219
 
220
  #: admin/includes/admin-about.php:126
221
  msgid "Default value"
222
+ msgstr "Predvolená hodnota"
223
 
224
  #: admin/includes/admin-about.php:127
225
  msgid "Description"
226
+ msgstr "Popis"
227
 
228
  #: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26
229
  #: includes/sc_event-list_helptexts.php:31
230
  msgid "Filter Syntax"
231
+ msgstr "Syntax filtra"
232
 
233
  #: admin/includes/admin-about.php:146
234
  msgid ""
245
 
246
  #: admin/includes/admin-about.php:147
247
  msgid "AND"
248
+ msgstr "A"
249
 
250
  #: admin/includes/admin-about.php:147
251
  msgid "OR"
252
+ msgstr "ALEBO"
253
 
254
  #: admin/includes/admin-about.php:147
255
  msgid "or"
256
+ msgstr "alebo"
257
 
258
  #: admin/includes/admin-about.php:147
259
  msgid "and"
260
+ msgstr "a"
261
 
262
  #: admin/includes/admin-about.php:148
263
  msgid "Examples for cat filters:"
282
 
283
  #: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25
284
  msgid "Available Date Formats"
285
+ msgstr "Dostupné formáty dátumu"
286
 
287
  #: admin/includes/admin-about.php:157
288
  msgid "For date filters you can use the following date formats:"
290
 
291
  #: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25
292
  msgid "Available Date Range Formats"
293
+ msgstr "Formáty rozmedzia dátumov "
294
 
295
  #: admin/includes/admin-about.php:166
296
  msgid "For date filters you can use the following daterange formats:"
297
+ msgstr "Pre filtrovanie rozmedzia dátumov môžete použiť formáty:"
298
 
299
  #: admin/includes/admin-about.php:178
300
  msgid "Value"
301
+ msgstr "Hodnota"
302
 
303
  #: admin/includes/admin-about.php:182
304
  msgid "Example"
305
+ msgstr "Príklad"
306
 
307
  #: admin/includes/admin-categories.php:38
308
  msgid "Synchronize with post categories"
309
+ msgstr "Synchronizovať s kategóriami príspevkov"
310
 
311
  #: admin/includes/admin-categories.php:46
312
  #, php-format
313
  msgid "%1$s categories modified (%2$s)"
314
+ msgstr "%1$s modifik. kategórie (%2$s)"
315
 
316
  #: admin/includes/admin-categories.php:47
317
  #, php-format
318
  msgid "%1$s categories added (%2$s)"
319
+ msgstr "%1$s pridané kategórie (%2$s)"
320
 
321
  #: admin/includes/admin-categories.php:48
322
  #, php-format
323
  msgid "%1$s categories deleted (%2$s)"
324
+ msgstr "%1$s zmazané kategórie (%2$s)"
325
 
326
  #: admin/includes/admin-categories.php:50
327
  #, php-format
328
  msgid "%1$s categories not modified (%2$s)"
329
+ msgstr "%1$s nezmenené kategórie (%2$s)"
330
 
331
  #: admin/includes/admin-categories.php:51
332
  #, php-format
333
  msgid "%1$s categories not added (%2$s)"
334
+ msgstr "%1$s nepridané kategórie (%2$s)"
335
 
336
  #: admin/includes/admin-categories.php:52
337
  #, php-format
338
  msgid "%1$s categories not deleted (%2$s)"
339
+ msgstr "%1$s nezmazané kategórie (%2$s)"
340
 
341
  #: admin/includes/admin-categories.php:55
342
  msgid "An Error occured during the category sync"
348
 
349
  #: admin/includes/admin-category-sync.php:45
350
  msgid "Error: You are not allowed to view this page!"
351
+ msgstr "Chyba: Nemáte oprávnenie zobraziť túto stránku!"
352
 
353
  #: admin/includes/admin-category-sync.php:62
354
  msgid "Affected Categories when switching to seperate Event Categories"
389
 
390
  #: admin/includes/admin-category-sync.php:74
391
  msgid "Start synchronisation"
392
+ msgstr "Začať synchronizovať"
393
 
394
  #: admin/includes/admin-category-sync.php:75
395
  msgid ""
399
 
400
  #: admin/includes/admin-category-sync.php:90
401
  msgid "Categories to modify"
402
+ msgstr "Kategórie na modifikáciu"
403
 
404
  #: admin/includes/admin-category-sync.php:91
405
  msgid "Categories to add"
406
+ msgstr "Kategórie na pridanie"
407
 
408
  #: admin/includes/admin-category-sync.php:92
409
  msgid "Categories to delete (optional)"
410
+ msgstr "Kategórie ma zmazanie (voliteľné)"
411
 
412
  #: admin/includes/admin-category-sync.php:93
413
  msgid "Delete not available post categories"
415
 
416
  #: admin/includes/admin-category-sync.php:97
417
  msgid "Categories with differences"
418
+ msgstr "Kategórie s rozdielmi"
419
 
420
  #: admin/includes/admin-category-sync.php:98
421
  msgid "Categories to add (optional)"
422
+ msgstr "Kategórie na pridanie (voliteľné)"
423
 
424
  #: admin/includes/admin-category-sync.php:99
425
  msgid "Add not available post categories"
427
 
428
  #: admin/includes/admin-category-sync.php:117
429
  msgid "none"
430
+ msgstr "nič"
431
 
432
  #: admin/includes/admin-import.php:50
433
  msgid "Import Events"
434
+ msgstr "Importovať udalosti"
435
 
436
  #: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
437
  msgid "Step"
438
+ msgstr "Krok"
439
 
440
  #: admin/includes/admin-import.php:70
441
  msgid "Set import file and options"
444
  #: admin/includes/admin-import.php:73
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
+ msgstr "Pokračuj krokom %1$s"
448
 
449
  #: admin/includes/admin-import.php:76
450
  msgid "Example file"
451
+ msgstr "Príklad"
452
 
453
  #: admin/includes/admin-import.php:77
454
  #, php-format
458
 
459
  #: admin/includes/admin-import.php:78
460
  msgid "Note"
461
+ msgstr "Poznámka"
462
 
463
  #: admin/includes/admin-import.php:78
464
  msgid ""
469
  #: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
470
  #: admin/includes/admin-import.php:106
471
  msgid "Sorry, there has been an error."
472
+ msgstr "Je nám ľúto, došlo k chybe."
473
 
474
  #: admin/includes/admin-import.php:86
475
  msgid "The file does not exist, please try again."
501
 
502
  #: admin/includes/admin-import.php:162
503
  msgid "Go back to All Events"
504
+ msgstr "Ísť späť na Všetky udalosti"
505
 
506
  #: admin/includes/admin-import.php:166
507
  msgid "Import with errors!"
516
  #: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
517
  #: includes/widget_helptexts.php:8
518
  msgid "Title"
519
+ msgstr "Nadpis"
520
 
521
  #: admin/includes/admin-import.php:175
522
  msgid "Start Date"
523
+ msgstr "Počiatočný deň"
524
 
525
  #: admin/includes/admin-import.php:176
526
  msgid "End Date"
527
+ msgstr "Posledný deň"
528
 
529
  #: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
530
  #: includes/options_helptexts.php:40 includes/options_helptexts.php:41
531
  msgid "Time"
532
+ msgstr "Čas"
533
 
534
  #: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
535
  #: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
536
  #: includes/options_helptexts.php:46
537
  msgid "Location"
538
+ msgstr "Miesto"
539
 
540
  #: admin/includes/admin-import.php:179
541
  msgid "Content"
542
+ msgstr "Obsah"
543
 
544
  #: admin/includes/admin-import.php:180
545
  msgid "Category slugs"
546
+ msgstr "Slugs kategória"
547
 
548
  #: admin/includes/admin-import.php:219
549
  #, php-format
554
 
555
  #: admin/includes/admin-import.php:251
556
  msgid "Import events"
557
+ msgstr "Importovať udalosti"
558
 
559
  #: admin/includes/admin-import.php:252
560
  msgid "Add additional categories"
561
+ msgstr "Pridať ďalšie categórie"
562
 
563
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
564
  msgid "Import"
565
+ msgstr "Import"
566
 
567
  #: admin/includes/admin-main.php:59
568
  msgid "Event Date"
569
+ msgstr "Deň udalosti"
570
 
571
  #: admin/includes/admin-main.php:63
572
  msgid "Author"
573
+ msgstr "Autor"
574
 
575
  #: admin/includes/admin-main.php:125
576
  #, php-format
577
  msgid "Add a copy of %1$s"
578
+ msgstr "Pridať kópiu %1$s"
579
 
580
  #: admin/includes/admin-main.php:125
581
  msgid "Copy"
582
+ msgstr "Kópia"
583
 
584
  #: admin/includes/admin-new.php:51
585
  msgid "Event data"
586
+ msgstr "Informácie o udalosti"
587
 
588
  #: admin/includes/admin-new.php:80
589
  msgid "Add Copy"
590
+ msgstr "Pridaj kópiu"
591
 
592
  #: admin/includes/admin-new.php:84
593
  msgid "Date"
594
+ msgstr "Dátum"
595
 
596
  #: admin/includes/admin-new.php:84
597
  msgid "required"
598
+ msgstr "Požadované"
599
 
600
  #: admin/includes/admin-new.php:87
601
  msgid "Multi-Day Event"
602
+ msgstr "Viacdenná udalosť"
603
 
604
  #: admin/includes/admin-new.php:106
605
  msgid "Event Title"
606
+ msgstr "Názov udalosti"
607
 
608
  #: admin/includes/admin-new.php:121
609
  msgid "Event Content"
610
+ msgstr "Obsah udalosti"
611
 
612
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
613
  msgid "Event updated."
614
+ msgstr "Udalosť bola aktualizovaná."
615
 
616
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
617
  msgid "View event"
618
+ msgstr "Pozri si udalosť"
619
 
620
  #: admin/includes/admin-new.php:184
621
  #, php-format
624
 
625
  #: admin/includes/admin-new.php:185
626
  msgid "Event published."
627
+ msgstr "Udalosť bola publikovaná."
628
 
629
  #: admin/includes/admin-new.php:187
630
  msgid "Event submitted."
631
+ msgstr "Udalosť bola odoslaná."
632
 
633
  #: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
634
  #: admin/includes/admin-new.php:190
635
  msgid "Preview event"
636
+ msgstr "Pozrieť podrobnosti udalosti."
637
 
638
  #: admin/includes/admin-new.php:188
639
  #, php-format
640
  msgid "Event scheduled for: %1$s>"
641
+ msgstr "Udalosť naplánovaná na: %1$s>"
642
 
643
  #: admin/includes/admin-new.php:190
644
  msgid "Event draft updated."
645
+ msgstr "Koncept udalosti bol aktualizovaný."
646
 
647
  #: admin/includes/admin-settings.php:71
648
  msgid "Go to Event Category switching page"
649
+ msgstr "Prejdite na stránku prepínania kategórií udalostí"
650
 
651
  #: admin/includes/admin-settings.php:83
652
  msgid "Frontend Settings"
653
+ msgstr "Nastavenia Frontendu"
654
 
655
  #: admin/includes/admin-settings.php:84
656
  msgid "Admin Page Settings"
657
+ msgstr "Nastavenia Administračnej stránky"
658
 
659
  #: admin/includes/admin-settings.php:85
660
  msgid "Feed Settings"
661
+ msgstr "Nastavenia Feedu"
662
 
663
  #: admin/includes/admin-settings.php:86
664
  msgid "Category Taxonomy"
666
 
667
  #: includes/daterange_helptexts.php:7
668
  msgid "Year"
669
+ msgstr "Rok"
670
 
671
  #: includes/daterange_helptexts.php:8
672
  msgid "A year can be specified in 4 digit format."
673
+ msgstr "Rok možno špecifikovať v 4-miestnom formáte."
674
 
675
  #: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
676
  #: includes/daterange_helptexts.php:36
686
 
687
  #: includes/daterange_helptexts.php:12
688
  msgid "Month"
689
+ msgstr "mesiac"
690
 
691
  #: includes/daterange_helptexts.php:13
692
  msgid ""
700
 
701
  #: includes/daterange_helptexts.php:17
702
  msgid "Day"
703
+ msgstr "deň"
704
 
705
  #: includes/daterange_helptexts.php:18
706
  msgid ""
707
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
708
  " month and 2 digets for the day, seperated by hyphens (-)."
709
+ msgstr "Deň môže byť zadaný vo formáte 4 číslice za rok, 2 číslice za mesiac a 2 císlice za deň, oddelené pomlčkami (-)."
710
 
711
  #: includes/daterange_helptexts.php:21
712
  msgid "Relative Year"
713
+ msgstr "Relatívny rok"
714
 
715
  #: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
716
  #: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
720
 
721
  #: includes/daterange_helptexts.php:22
722
  msgid "A relative year"
723
+ msgstr "Relatívny rok"
724
 
725
  #: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
726
  #: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
732
 
733
  #: includes/daterange_helptexts.php:23
734
  msgid "number of years"
735
+ msgstr "počet rokov"
736
 
737
  #: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
738
  #: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
739
  #, php-format
740
  msgid "Additionally the following values are available: %1$s"
741
+ msgstr "Okrem toho sú k dispozícii nasledujúce hodnoty: %1$s"
742
 
743
  #: includes/daterange_helptexts.php:27
744
  msgid "Relative Month"
745
+ msgstr "Relatívny mesiac"
746
 
747
  #: includes/daterange_helptexts.php:28
748
  msgid "A relative month"
749
+ msgstr "Relatívny mesiac"
750
 
751
  #: includes/daterange_helptexts.php:29
752
  msgid "number of months"
753
+ msgstr "počet mesiacov"
754
 
755
  #: includes/daterange_helptexts.php:33
756
  msgid "Relative Week"
757
+ msgstr "Relatívny týždeň"
758
 
759
  #: includes/daterange_helptexts.php:34
760
  msgid "A relative week"
761
+ msgstr "Relatívny týždeň"
762
 
763
  #: includes/daterange_helptexts.php:35
764
  msgid "number of weeks"
765
+ msgstr "počet týždňov"
766
 
767
  #: includes/daterange_helptexts.php:36
768
  msgid "the resulting week"
777
 
778
  #: includes/daterange_helptexts.php:41
779
  msgid "Relative Day"
780
+ msgstr "Relatívny deň"
781
 
782
  #: includes/daterange_helptexts.php:42
783
  msgid "A relative day"
784
+ msgstr "Relatívny deň"
785
 
786
  #: includes/daterange_helptexts.php:43
787
  msgid "number of days"
788
+ msgstr "počet dní"
789
 
790
  #: includes/daterange_helptexts.php:49
791
  msgid "Date range"
792
+ msgstr "Rozmedzie dátumov"
793
 
794
  #: includes/daterange_helptexts.php:50
795
  msgid ""
799
 
800
  #: includes/daterange_helptexts.php:55
801
  msgid "This value defines a range without any limits."
802
+ msgstr "Táto hodnota definuje rozsah bez akýchkoľvek obmedzení."
803
 
804
  #: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
805
  #: includes/daterange_helptexts.php:66
809
 
810
  #: includes/daterange_helptexts.php:59 includes/filterbar.php:287
811
  msgid "Upcoming"
812
+ msgstr "Nadchádzajúce"
813
 
814
  #: includes/daterange_helptexts.php:60
815
  msgid "This value defines a range from the actual day to the future."
816
+ msgstr "Táto hodnota definuje rozsah od aktuálneho dňa do budúcnosti."
817
 
818
  #: includes/daterange_helptexts.php:64 includes/filterbar.php:291
819
  msgid "Past"
820
+ msgstr "Munulé"
821
 
822
  #: includes/daterange_helptexts.php:65
823
  msgid "This value defines a range from the past to the previous day."
824
+ msgstr "Táto hodnota definuje rozsah od minulosti do predchádzajúceho dňa."
825
 
826
  #: includes/event.php:107
827
  msgid "No valid start date provided"
828
+ msgstr "Nie je k dispozícii platný dátum začiatku"
829
 
830
  #: includes/events_post_type.php:60
831
  msgid "Events"
833
 
834
  #: includes/events_post_type.php:61
835
  msgid "Event"
836
+ msgstr "Udalosť"
837
 
838
  #: includes/events_post_type.php:62
839
  msgid "Add New"
845
 
846
  #: includes/events_post_type.php:64
847
  msgid "Edit Event"
848
+ msgstr "Upraviť udalosť"
849
 
850
  #: includes/events_post_type.php:65
851
  msgid "New Event"
852
+ msgstr "Nová udalosť"
853
 
854
  #: includes/events_post_type.php:66
855
  msgid "View Event"
856
+ msgstr "Zobraziť udalosť"
857
 
858
  #: includes/events_post_type.php:67
859
  msgid "View Events"
860
+ msgstr "Zobraziť udalosti"
861
 
862
  #: includes/events_post_type.php:68
863
  msgid "Search Events"
864
+ msgstr "Vyhľadaj udalosti"
865
 
866
  #: includes/events_post_type.php:69
867
  msgid "No events found"
868
+ msgstr "Nenašli sa žiadne udalosti."
869
 
870
  #: includes/events_post_type.php:70
871
  msgid "No events found in Trash"
872
+ msgstr "V koši neboli nájdené žiadne udalosti"
873
 
874
  #: includes/events_post_type.php:72
875
  msgid "All Events"
877
 
878
  #: includes/events_post_type.php:73
879
  msgid "Event Archives"
880
+ msgstr "Archív udalostí"
881
 
882
  #: includes/events_post_type.php:74
883
  msgid "Event Attributes"
884
+ msgstr "Vlastnosti udalostí"
885
 
886
  #: includes/events_post_type.php:75
887
  msgid "Insert into event"
888
+ msgstr "Vložiť do udalosti"
889
 
890
  #: includes/events_post_type.php:76
891
  msgid "Uploaded to this event"
892
+ msgstr "Nahrané do tejto udalosti"
893
 
894
  #: includes/events_post_type.php:77
895
  msgid "Event List"
897
 
898
  #: includes/events_post_type.php:78
899
  msgid "Filter events list"
900
+ msgstr "Filtrovať zoznam udalostí"
901
 
902
  #: includes/events_post_type.php:79
903
  msgid "Events list navigation"
904
+ msgstr "Navigácia v zozname udalostí"
905
 
906
  #: includes/events_post_type.php:80
907
  msgid "Events list"
908
+ msgstr "Zoznam udalostí"
909
 
910
  #: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60
911
  msgid "Reset"
912
+ msgstr "Resetovať - znovu nastaviť"
913
 
914
  #: includes/filterbar.php:278
915
  msgid "All"
916
+ msgstr "Všetko"
917
 
918
  #: includes/filterbar.php:281
919
  msgid "All Dates"
920
+ msgstr "Všetky dátumy"
921
 
922
  #: includes/options_helptexts.php:10
923
  msgid "CSV File to import"
929
 
930
  #: includes/options_helptexts.php:15
931
  msgid "Used date format"
932
+ msgstr "Použitý formát dátumu"
933
 
934
  #: includes/options_helptexts.php:17
935
  msgid ""
939
 
940
  #: includes/options_helptexts.php:21
941
  msgid "Text for no events"
942
+ msgstr "Text pre žiadne udalosti"
943
 
944
  #: includes/options_helptexts.php:23
945
  msgid ""
946
  "This option defines the displayed text when no events are available for the "
947
  "selected view."
948
+ msgstr "Táto možnosť definuje zobrazený text, ak pre vybrané zobrazenie nie sú k dispozícii žiadne udalosti."
949
 
950
  #: includes/options_helptexts.php:26
951
  msgid "Multiday filter range"
952
+ msgstr "Viacdenný rozsah "
953
 
954
  #: includes/options_helptexts.php:27
955
  msgid "Use the complete event range in the date filter"
964
  #: includes/options_helptexts.php:29
965
  msgid ""
966
  "If disabled, only the start day of an event is considered in the filter."
967
+ msgstr "Ak je deaktivovaný, vo filtri sa zohľadní iba začiatočný deň udalosti."
968
 
969
  #: includes/options_helptexts.php:30
970
  msgid ""
975
 
976
  #: includes/options_helptexts.php:33
977
  msgid "Date display"
978
+ msgstr "Zobrazenie dátumu"
979
 
980
  #: includes/options_helptexts.php:34
981
  msgid "Show the date only once per day"
982
+ msgstr "Zobrazte dátum iba raz za deň"
983
 
984
  #: includes/options_helptexts.php:35
985
  msgid ""
995
 
996
  #: includes/options_helptexts.php:39
997
  msgid "HTML tags"
998
+ msgstr "HTML značky"
999
 
1000
  #: includes/options_helptexts.php:40 includes/options_helptexts.php:45
1001
  #, php-format
1002
  msgid "Allow HTML tags in the event field \"%1$s\""
1003
+ msgstr "Povoliť značky HTML v poli udalosti \"%1$s\""
1004
 
1005
  #: includes/options_helptexts.php:41 includes/options_helptexts.php:46
1006
  #, php-format
1010
 
1011
  #: includes/options_helptexts.php:49
1012
  msgid "Preferred language file"
1013
+ msgstr "Preferovaný jazykový súbor"
1014
 
1015
  #: includes/options_helptexts.php:50
1016
  msgid "Load translations from general language directory first"
1017
+ msgstr "Najprv načítajte preklady zo všeobecného adresára jazykov"
1018
 
1019
  #: includes/options_helptexts.php:51
1020
  #, php-format
1042
 
1043
  #: includes/options_helptexts.php:60
1044
  msgid "Text for \"Show content\""
1045
+ msgstr "Text pre \"Zobraziť obsah\""
1046
 
1047
  #: includes/options_helptexts.php:61
1048
  msgid ""
1052
 
1053
  #: includes/options_helptexts.php:64
1054
  msgid "Text for \"Hide content\""
1055
+ msgstr "Text pre položku \"Skryť obsah\""
1056
 
1057
  #: includes/options_helptexts.php:65
1058
  msgid ""
1062
 
1063
  #: includes/options_helptexts.php:68
1064
  msgid "Disable CSS file"
1065
+ msgstr "Zakázať súbor CSS"
1066
 
1067
  #: includes/options_helptexts.php:69
1068
  #, php-format
1082
 
1083
  #: includes/options_helptexts.php:75
1084
  msgid "Date format in edit form"
1085
+ msgstr "Formát dátumu vo formulári na upravenie"
1086
 
1087
  #: includes/options_helptexts.php:76
1088
  msgid ""
1102
 
1103
  #: includes/options_helptexts.php:82 includes/options_helptexts.php:110
1104
  msgid "Enable RSS feed"
1105
+ msgstr "Povoliť RSS kanál"
1106
 
1107
  #: includes/options_helptexts.php:83
1108
  msgid "Enable support for an event RSS feed"
1120
 
1121
  #: includes/options_helptexts.php:88
1122
  msgid "Feed name"
1123
+ msgstr "Názov kanála"
1124
 
1125
  #: includes/options_helptexts.php:89
1126
  #, php-format
1136
 
1137
  #: includes/options_helptexts.php:93
1138
  msgid "Feed Description"
1139
+ msgstr "Popis kanála"
1140
 
1141
  #: includes/options_helptexts.php:94
1142
  #, php-format
1143
  msgid "This options set the feed description. The default value is %1$s."
1144
+ msgstr "Tieto možnosti nastavujú popis kanála. Predvolená hodnota je %1$s."
1145
 
1146
  #: includes/options_helptexts.php:95
1147
  msgid ""
1151
 
1152
  #: includes/options_helptexts.php:98
1153
  msgid "Listed events"
1154
+ msgstr "Zoznam udalostí"
1155
 
1156
  #: includes/options_helptexts.php:99
1157
  msgid "Only show upcoming events in feed"
1158
+ msgstr "Zobrazovať iba nadchádzajúce udalosti v informačnom kanály"
1159
 
1160
  #: includes/options_helptexts.php:100
1161
  msgid ""
1164
 
1165
  #: includes/options_helptexts.php:101
1166
  msgid "If disabled all events (upcoming and past) will be listed."
1167
+ msgstr "Ak je zakázané, všetky udalosti (nadchádzajúce a minulé), budú zobrazené."
1168
 
1169
  #: includes/options_helptexts.php:104
1170
  msgid "Add RSS feed link in head"
1198
  #: includes/options_helptexts.php:110
1199
  #, php-format
1200
  msgid "This option is only valid if the setting %1$s is enabled."
1201
+ msgstr "Táto možnosť je platná len v prípade ak %1$s je povolené."
1202
 
1203
  #: includes/options_helptexts.php:113
1204
  msgid "Position of the RSS feed link"
1206
 
1207
  #: includes/options_helptexts.php:114
1208
  msgid "at the top (above the navigation bar)"
1209
+ msgstr "v hornej časti (nad navigačnou lištou)"
1210
 
1211
  #: includes/options_helptexts.php:114
1212
  msgid "between navigation bar and events"
1213
+ msgstr "medzi navigačnou lištou a udalosťami"
1214
 
1215
  #: includes/options_helptexts.php:114
1216
  msgid "at the bottom"
1217
+ msgstr "na spodku"
1218
 
1219
  #: includes/options_helptexts.php:115
1220
  msgid ""
1235
 
1236
  #: includes/options_helptexts.php:120
1237
  msgid "left"
1238
+ msgstr "vľavo"
1239
 
1240
  #: includes/options_helptexts.php:120
1241
  msgid "center"
1242
+ msgstr "v strede"
1243
 
1244
  #: includes/options_helptexts.php:120
1245
  msgid "right"
1246
+ msgstr "vpravo"
1247
 
1248
  #: includes/options_helptexts.php:121
1249
  msgid ""
1281
 
1282
  #: includes/options_helptexts.php:139
1283
  msgid "Event Category handling"
1284
+ msgstr "Spracovanie kategórie udalostí"
1285
 
1286
  #: includes/options_helptexts.php:140
1287
  msgid "Use Post Categories"
1295
 
1296
  #: includes/options_helptexts.php:142
1297
  msgid "Attention"
1298
+ msgstr "Upozornenie"
1299
 
1300
  #: includes/options_helptexts.php:143
1301
  msgid ""
1302
  "This option cannot be changed directly, but you can go to the Event Category"
1303
  " switching page from here."
1304
+ msgstr "Táto možnosť sa nedá zmeniť priamo, ale môžete prejsť na stránku prepínania kategórií udalostí"
1305
 
1306
  #: includes/options.php:40
1307
  msgid "events"
1308
+ msgstr "udalosti"
1309
 
1310
  #: includes/options.php:41
1311
  msgid "Show content"
1312
+ msgstr "Zobraziť obsah"
1313
 
1314
  #: includes/options.php:42
1315
  msgid "Hide content"
1316
+ msgstr "Skryť obsah"
1317
 
1318
  #: includes/sc_event-list_helptexts.php:7
1319
  msgid "event-id"
1320
+ msgstr "identifikátor udalosti"
1321
 
1322
  #: includes/sc_event-list_helptexts.php:8
1323
  #, php-format
1330
  #: includes/sc_event-list_helptexts.php:10
1331
  #: includes/sc_event-list_helptexts.php:22
1332
  msgid "year"
1333
+ msgstr "Rok"
1334
 
1335
  #: includes/sc_event-list_helptexts.php:11
1336
  msgid ""
1337
  "This attribute defines which events are initially shown. The default is to "
1338
  "show the upcoming events only."
1339
+ msgstr "Tento atribút definuje, ktoré udalosti sa na začiatku zobrazujú. Predvolenou možnosťou je zobraziť len nadchádzajúce udalosti."
1340
 
1341
  #: includes/sc_event-list_helptexts.php:12
1342
  #, php-format
1353
  msgid ""
1354
  "This attribute defines the category of which events are initially shown. The"
1355
  " default is to show events of all categories."
1356
+ msgstr "Tento atribút definuje kategóriu udalostí, ktoré sú na začiatku zobrazené. Predvolená hodnota je zobrazovať udalosti všetkých kategórií."
1357
 
1358
  #: includes/sc_event-list_helptexts.php:16
1359
  msgid ""
1363
 
1364
  #: includes/sc_event-list_helptexts.php:19
1365
  msgid "This attribute defines the initial order of the events."
1366
+ msgstr "Tento atribút definuje počiatočné poradie udalostí."
1367
 
1368
  #: includes/sc_event-list_helptexts.php:20
1369
  msgid ""
1425
  #: includes/sc_event-list_helptexts.php:89
1426
  #: includes/sc_event-list_helptexts.php:104
1427
  msgid "number"
1428
+ msgstr "číslo"
1429
 
1430
  #: includes/sc_event-list_helptexts.php:34
1431
  #, php-format
1433
  "This attribute defines how many events should be displayed if upcoming "
1434
  "events is selected. With the default value %1$s all events will be "
1435
  "displayed."
1436
+ msgstr "Tento atribút definuje, koľko udalostí by sa malo zobraziť, ak sa vyberú nadchádzajúce udalosti. Pri štandardnej hodnote %1$s sa zobrazia všetky udalosti."
1437
 
1438
  #: includes/sc_event-list_helptexts.php:35
1439
  msgid ""
1440
  "Please not that in the actual version there is no pagination of the events "
1441
  "available, so the event list can be very long."
1442
+ msgstr "Uvedomte si prosím, že v aktuálnej verzii nie je k dispozícii žiadne stránkovanie udalostí, takže zoznam udalostí môže byť veľmi dlhý."
1443
 
1444
  #: includes/sc_event-list_helptexts.php:38
1445
  msgid ""
1473
 
1474
  #: includes/sc_event-list_helptexts.php:46
1475
  msgid "filterbar item"
1476
+ msgstr "položka filtra"
1477
 
1478
  #: includes/sc_event-list_helptexts.php:46
1479
  #: includes/sc_event-list_helptexts.php:63
1480
  msgid "description"
1481
+ msgstr "popis"
1482
 
1483
  #: includes/sc_event-list_helptexts.php:46
1484
  msgid "item options"
1485
+ msgstr "možnosti hodnoty"
1486
 
1487
  #: includes/sc_event-list_helptexts.php:46
1488
  msgid "option values"
1489
+ msgstr "hodnoty ponuky"
1490
 
1491
  #: includes/sc_event-list_helptexts.php:46
1492
  msgid "default value"
1493
+ msgstr "predvolená hodnota"
1494
 
1495
  #: includes/sc_event-list_helptexts.php:46
1496
  msgid "option description"
1497
+ msgstr "popis možnosti"
1498
 
1499
  #: includes/sc_event-list_helptexts.php:47
1500
  msgid ""
1501
  "Show a list of all available years. Additional there are some special "
1502
  "entries available (see item options)."
1503
+ msgstr "Zobrazte zoznam všetkých dostupných rokov. Ďalej sú k dispozícii niektoré špeciálne položky (pozri možnosti položiek)."
1504
 
1505
  #: includes/sc_event-list_helptexts.php:48
1506
  #: includes/sc_event-list_helptexts.php:53
1507
  msgid "Add an entry to show all events."
1508
+ msgstr "Pridajte položku, aby ste zobrazili všetky udalosti."
1509
 
1510
  #: includes/sc_event-list_helptexts.php:49
1511
  #: includes/sc_event-list_helptexts.php:54
1512
  msgid "Add an entry to show all upcoming events."
1513
+ msgstr "Pridajte položku na zobrazenie všetkých nadchádzajúcich udalostí."
1514
 
1515
  #: includes/sc_event-list_helptexts.php:50
1516
  #: includes/sc_event-list_helptexts.php:55
1517
  msgid "Add an entry to show events in the past."
1518
+ msgstr "Pridajte položku na zobrazenie udalostí v minulosti."
1519
 
1520
  #: includes/sc_event-list_helptexts.php:51
1521
  msgid "Set descending or ascending order of year entries."
1522
+ msgstr "Nastavte zostupne alebo vzostupne poradie rokov."
1523
 
1524
  #: includes/sc_event-list_helptexts.php:52
1525
  msgid "Show a list of all available months."
1526
+ msgstr "Zobraziť zoznam všetkých dostupných mesiacov."
1527
 
1528
  #: includes/sc_event-list_helptexts.php:56
1529
  msgid "Set descending or ascending order of month entries."
1530
+ msgstr "Nastavte mesiace zostupne alebo vzostupne."
1531
 
1532
  #: includes/sc_event-list_helptexts.php:57
1533
  msgid "php date-formats"
1534
+ msgstr "php formáty dátumov"
1535
 
1536
  #: includes/sc_event-list_helptexts.php:57
1537
  msgid "Set the displayed date format of the month entries."
1538
+ msgstr "Nastavte zobrazený formát dátumu pre mesačné záznamy."
1539
 
1540
  #: includes/sc_event-list_helptexts.php:58
1541
  #, php-format
1554
 
1555
  #: includes/sc_event-list_helptexts.php:59
1556
  msgid "Show a list of all available categories."
1557
+ msgstr "Zobraziť zoznam všetkých dostupných kategórií."
1558
 
1559
  #: includes/sc_event-list_helptexts.php:59
1560
  msgid "Add an entry to show events from all categories."
1561
+ msgstr "Pridajte položku na zobrazenie udalostí zo všetkých kategórií."
1562
 
1563
  #: includes/sc_event-list_helptexts.php:60
1564
  msgid "A link to reset the eventlist filter to standard."
1565
+ msgstr "Odkaz na obnovenie filtrovania zoznamu udalostí na štandardné."
1566
 
1567
  #: includes/sc_event-list_helptexts.php:60
1568
  msgid "any text"
1569
+ msgstr "akýkoľvek text"
1570
 
1571
  #: includes/sc_event-list_helptexts.php:60
1572
  msgid "Set the caption of the link."
1573
+ msgstr "Titulok pre odkaz"
1574
 
1575
  #: includes/sc_event-list_helptexts.php:61
1576
  msgid "Find below an overview of the available filterbar display options:"
1577
+ msgstr "Nižšie nájdete prehľad dostupných možností zobrazenia filtračnej lišty:"
1578
 
1579
  #: includes/sc_event-list_helptexts.php:63
1580
  msgid "display option"
1581
+ msgstr "možnosti zobrazenia"
1582
 
1583
  #: includes/sc_event-list_helptexts.php:63
1584
  msgid "available for"
1585
+ msgstr "dostupný pre"
1586
 
1587
  #: includes/sc_event-list_helptexts.php:64
1588
  #, php-format
1593
  msgid ""
1594
  "Shows a select box where an item can be choosen. After the selection of an "
1595
  "item the page is reloaded via javascript to show the filtered events."
1596
+ msgstr "Zobrazí pole výberu, v ktorom sa dá vybrať položka. Po výbere položky sa stránka opätovne načíta pomocou javascriptu, aby sa zobrazili filtrované udalosti."
1597
 
1598
  #: includes/sc_event-list_helptexts.php:66
1599
  msgid "Shows a simple link which can be clicked."
1600
+ msgstr "Zobrazuje jednoduchý odkaz, na ktorý je možné kliknúť."
1601
 
1602
  #: includes/sc_event-list_helptexts.php:67
1603
  msgid "Find below some declaration examples with descriptions:"
1604
+ msgstr "Nižšie nájdete niekoľko príkladov s popismi:"
1605
 
1606
  #: includes/sc_event-list_helptexts.php:69
1607
  #, php-format
1620
 
1621
  #: includes/sc_event-list_helptexts.php:71
1622
  msgid "option_name"
1623
+ msgstr "názov_možnosti"
1624
 
1625
  #: includes/sc_event-list_helptexts.php:71
1626
  msgid "value"
1627
+ msgstr "hodnota"
1628
 
1629
  #: includes/sc_event-list_helptexts.php:72
1630
  #, php-format
1654
  #: includes/sc_event-list_helptexts.php:92
1655
  #: includes/sc_event-list_helptexts.php:107
1656
  msgid "This attribute has no influence if only a single event is shown."
1657
+ msgstr "Tento atribút nemá žiadny vplyv, ak je zobrazená iba jedna udalosť."
1658
 
1659
  #: includes/sc_event-list_helptexts.php:80
1660
  msgid ""
1688
  msgid ""
1689
  "This attribute specifies if the content should be truncate to the given "
1690
  "number of characters in the event list."
1691
+ msgstr "Tento atribút určuje, či by sa obsah mal skrátiť na daný počet znakov v zozname udalostí."
1692
 
1693
  #: includes/sc_event-list_helptexts.php:106
1694
  #, php-format
1695
  msgid "With the standard value %1$s the full text is displayed."
1696
+ msgstr "Pri štandardnej hodnote %1$s sa zobrazí celý text."
1697
 
1698
  #: includes/sc_event-list_helptexts.php:110
1699
  msgid ""
1735
 
1736
  #: includes/sc_event-list.php:135
1737
  msgid "Event Information:"
1738
+ msgstr "Informácie o udalosti"
1739
 
1740
  #: includes/widget_helptexts.php:10
1741
  msgid "This option defines the displayed title for the widget."
1742
+ msgstr "Táto možnosť definuje zobrazený názov miniaplikácie."
1743
 
1744
  #: includes/widget_helptexts.php:15
1745
  msgid "Category Filter"
1746
+ msgstr "Filter kategórií"
1747
 
1748
  #: includes/widget_helptexts.php:17
1749
  msgid ""
1756
 
1757
  #: includes/widget_helptexts.php:22
1758
  msgid "Number of listed events"
1759
+ msgstr "Počet uvedených udalostí "
1760
 
1761
  #: includes/widget_helptexts.php:24
1762
  msgid "The number of upcoming events to display"
1763
+ msgstr "Počet nadchádzajúcich udalostí, ktoré sa majú zobraziť"
1764
 
1765
  #: includes/widget_helptexts.php:29
1766
  msgid "Truncate event title to"
1767
+ msgstr "Skrátiť názov udalosti na"
1768
 
1769
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1770
  #: includes/widget_helptexts.php:67
1771
  msgid "characters"
1772
+ msgstr "znaky"
1773
 
1774
  #: includes/widget_helptexts.php:31
1775
  msgid ""
1776
  "This option defines the number of displayed characters for the event title."
1777
+ msgstr "Táto možnosť definuje počet zobrazených znakov pre názov udalosti."
1778
 
1779
  #: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
1780
  #, php-format
1785
 
1786
  #: includes/widget_helptexts.php:37
1787
  msgid "Show event starttime"
1788
+ msgstr "Zobraziť čas začiatku udalosti"
1789
 
1790
  #: includes/widget_helptexts.php:39
1791
  msgid "This option defines if the event start time will be displayed."
1793
 
1794
  #: includes/widget_helptexts.php:44
1795
  msgid "Show event location"
1796
+ msgstr "Zobraziť miesto udalosti"
1797
 
1798
  #: includes/widget_helptexts.php:46
1799
  msgid "This option defines if the event location will be displayed."
1800
+ msgstr "Táto možnosť určuje, či sa zobrazí miesto udalosti."
1801
 
1802
  #: includes/widget_helptexts.php:51
1803
  msgid "Truncate location to"
1804
+ msgstr "Skrátiť umiestnenie na"
1805
 
1806
  #: includes/widget_helptexts.php:53
1807
  msgid ""
1808
  "If the event location is diplayed this option defines the number of "
1809
  "displayed characters."
1810
+ msgstr "Ak sa zobrazuje miesto udalosti, táto možnosť definuje počet zobrazených znakov."
1811
 
1812
  #: includes/widget_helptexts.php:59
1813
  msgid "Show event content"
1814
+ msgstr "Zobraziť obsah udalosti"
1815
 
1816
  #: includes/widget_helptexts.php:61
1817
  msgid "This option defines if the event content will be displayed."
1818
+ msgstr "Táto možnosť určuje, či sa bude zobrazovať obsah udalosti."
1819
 
1820
  #: includes/widget_helptexts.php:66
1821
  msgid "Truncate content to"
1822
+ msgstr "Skrátiť obsah na"
1823
 
1824
  #: includes/widget_helptexts.php:68
1825
  msgid ""
1826
  "If the event content are diplayed this option defines the number of diplayed"
1827
  " characters."
1828
+ msgstr "Ak sa zobrazí obsah udalosti, táto možnosť definuje počet zobrazených znakov."
1829
 
1830
  #: includes/widget_helptexts.php:69
1831
  #, php-format
1832
  msgid "Set this value to %1$s to view the full text."
1833
+ msgstr "Nastav túto hodnotu na %1$s na zobrazenie celého textu."
1834
 
1835
  #: includes/widget_helptexts.php:74
1836
  msgid "URL to the linked Event List page"
1837
+ msgstr "URL ku stránke Zoznamu udalostí"
1838
 
1839
  #: includes/widget_helptexts.php:76
1840
  msgid ""
1869
 
1870
  #: includes/widget_helptexts.php:102
1871
  msgid "Caption for the link"
1872
+ msgstr "Titulok pre odkaz"
1873
 
1874
  #: includes/widget_helptexts.php:104
1875
  msgid ""
1876
  "This option defines the text for the link to the Event List page if the "
1877
  "approriate option is selected."
1878
+ msgstr "Táto možnosť definuje text odkazu na stránku Zoznam udalostí, ak je vybratá príslušná možnosť."
1879
 
1880
  #: includes/widget.php:20
1881
  msgid "With this widget a list of upcoming events can be displayed."
1882
+ msgstr "Pomocou tejto miniaplikácie sa môže zobraziť zoznam nadchádzajúcich udalostí."
1883
 
1884
  #: includes/widget.php:25
1885
  msgid "Upcoming events"
1886
+ msgstr "Nadchádzajúce udalosti"
1887
 
1888
  #: includes/widget.php:38
1889
  msgid "show events page"
1890
+ msgstr "zobraziť stránku udalostí"
languages/event-list-sl_SI.mo CHANGED
Binary file
languages/event-list-sl_SI.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: sl_SI\n"
19
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Nastavitve seznama dogodkov"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "Nastavitve"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "O seznamu dogodkov"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "Info"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -563,7 +559,7 @@ msgstr ""
563
  msgid "Add additional categories"
564
  msgstr ""
565
 
566
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
567
  msgid "Import"
568
  msgstr ""
569
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: sl_SI\n"
19
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "Nastavitve seznama dogodkov"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Nastavitve"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "O seznamu dogodkov"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Info"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
559
  msgid "Add additional categories"
560
  msgstr ""
561
 
562
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
563
  msgid "Import"
564
  msgstr ""
565
 
languages/event-list-sv_SE.mo CHANGED
Binary file
languages/event-list-sv_SE.po CHANGED
@@ -5,12 +5,13 @@
5
  # Translators:
6
  # Andreas Ek <andreas@andreasek.se>, 2016
7
  # Johan F <sidavbitare@gmail.com>, 2016
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
12
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
13
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
16
  "MIME-Version: 1.0\n"
@@ -19,37 +20,33 @@ msgstr ""
19
  "Language: sv_SE\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
 
22
- #: admin/admin.php:54
23
  #, php-format
24
  msgid "Errors during upgrade of plugin %1$s"
25
- msgstr ""
26
 
27
- #: admin/admin.php:54
28
  #, php-format
29
  msgid "Upgrade of plugin %1$s successful"
30
  msgstr ""
31
 
32
- #: admin/admin.php:55
33
- msgid "no additional information available"
34
- msgstr ""
35
-
36
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
37
  msgid "Event List Settings"
38
  msgstr "Inställningar Event List"
39
 
40
- #: admin/admin.php:95
41
  msgid "Settings"
42
  msgstr "Inställningar"
43
 
44
- #: admin/admin.php:99 admin/includes/admin-about.php:37
45
  msgid "About Event List"
46
  msgstr "Om Event List"
47
 
48
- #: admin/admin.php:99
49
  msgid "About"
50
  msgstr "Om"
51
 
52
- #: admin/admin.php:121
53
  #, php-format
54
  msgid "%s Event"
55
  msgid_plural "%s Events"
@@ -562,7 +559,7 @@ msgstr ""
562
  msgid "Add additional categories"
563
  msgstr ""
564
 
565
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
566
  msgid "Import"
567
  msgstr "Importera"
568
 
5
  # Translators:
6
  # Andreas Ek <andreas@andreasek.se>, 2016
7
  # Johan F <sidavbitare@gmail.com>, 2016
8
+ # Magnus Lidell <magnus@threklam.se>, 2018
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
14
+ "PO-Revision-Date: 2018-04-22 06:55+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: sv_SE\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
+ msgstr "Fel inträffade under uppdatering av tillägget %1$s"
27
 
28
+ #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
34
  msgid "Event List Settings"
35
  msgstr "Inställningar Event List"
36
 
37
+ #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Inställningar"
40
 
41
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Om Event List"
44
 
45
+ #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "Om"
48
 
49
+ #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
559
  msgid "Add additional categories"
560
  msgstr ""
561
 
562
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
563
  msgid "Import"
564
  msgstr "Importera"
565
 
languages/event-list-zh_CN.mo CHANGED
Binary file
languages/event-list-zh_CN.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
12
- "PO-Revision-Date: 2018-02-04 11:46+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,37 +18,33 @@ msgstr ""
18
  "Language: zh_CN\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:54
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:55
32
- msgid "no additional information available"
33
- msgstr ""
34
-
35
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "活动列表设置"
38
 
39
- #: admin/admin.php:95
40
  msgid "Settings"
41
  msgstr "设置"
42
 
43
- #: admin/admin.php:99 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "有关活动列表"
46
 
47
- #: admin/admin.php:99
48
  msgid "About"
49
  msgstr "有关"
50
 
51
- #: admin/admin.php:121
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -560,7 +556,7 @@ msgstr ""
560
  msgid "Add additional categories"
561
  msgstr ""
562
 
563
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
564
  msgid "Import"
565
  msgstr ""
566
 
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
12
+ "PO-Revision-Date: 2018-04-22 06:54+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: zh_CN\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
32
  msgid "Event List Settings"
33
  msgstr "活动列表设置"
34
 
35
+ #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "设置"
38
 
39
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "有关活动列表"
42
 
43
+ #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "有关"
46
 
47
+ #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
556
  msgid "Add additional categories"
557
  msgstr ""
558
 
559
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
560
  msgid "Import"
561
  msgstr ""
562
 
languages/event-list.pot CHANGED
@@ -6,44 +6,40 @@
6
  msgid ""
7
  msgstr ""
8
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
9
- "POT-Creation-Date: 2018-02-04 12:46+0100\n"
10
  "Language: en\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: admin/admin.php:54
17
  #, php-format
18
  msgid "Errors during upgrade of plugin %1$s"
19
  msgstr ""
20
 
21
- #: admin/admin.php:54
22
  #, php-format
23
  msgid "Upgrade of plugin %1$s successful"
24
  msgstr ""
25
 
26
- #: admin/admin.php:55
27
- msgid "no additional information available"
28
- msgstr ""
29
-
30
- #: admin/admin.php:95 admin/includes/admin-settings.php:65
31
  msgid "Event List Settings"
32
  msgstr ""
33
 
34
- #: admin/admin.php:95
35
  msgid "Settings"
36
  msgstr ""
37
 
38
- #: admin/admin.php:99 admin/includes/admin-about.php:37
39
  msgid "About Event List"
40
  msgstr ""
41
 
42
- #: admin/admin.php:99
43
  msgid "About"
44
  msgstr ""
45
 
46
- #: admin/admin.php:121
47
  #, php-format
48
  msgid "%s Event"
49
  msgid_plural "%s Events"
@@ -508,7 +504,7 @@ msgstr ""
508
  msgid "Add additional categories"
509
  msgstr ""
510
 
511
- #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
512
  msgid "Import"
513
  msgstr ""
514
 
6
  msgid ""
7
  msgstr ""
8
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
9
+ "POT-Creation-Date: 2018-04-22 08:53+0200\n"
10
  "Language: en\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: admin/admin.php:57
17
  #, php-format
18
  msgid "Errors during upgrade of plugin %1$s"
19
  msgstr ""
20
 
21
+ #: admin/admin.php:57
22
  #, php-format
23
  msgid "Upgrade of plugin %1$s successful"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:106 admin/includes/admin-settings.php:65
 
 
 
 
27
  msgid "Event List Settings"
28
  msgstr ""
29
 
30
+ #: admin/admin.php:106
31
  msgid "Settings"
32
  msgstr ""
33
 
34
+ #: admin/admin.php:110 admin/includes/admin-about.php:37
35
  msgid "About Event List"
36
  msgstr ""
37
 
38
+ #: admin/admin.php:110
39
  msgid "About"
40
  msgstr ""
41
 
42
+ #: admin/admin.php:132
43
  #, php-format
44
  msgid "%s Event"
45
  msgid_plural "%s Events"
504
  msgid "Add additional categories"
505
  msgstr ""
506
 
507
+ #: admin/includes/admin-import.php:259 admin/includes/admin-main.php:211
508
  msgid "Import"
509
  msgstr ""
510
 
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: 4.2
6
  Tested up to: 4.9
7
- Stable tag: 0.8.1
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
@@ -85,6 +85,13 @@ Another possibility would be to call the wordpress function "do_shortcode()".
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
 
 
88
  = 0.8.1 (2018-02-04) =
89
  * added option to change events permalink slug
90
  * added some additional upgrade check to improve the 0.8.0 upgrade
4
  Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
5
  Requires at least: 4.2
6
  Tested up to: 4.9
7
+ Stable tag: 0.8.2
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
85
 
86
  == Changelog ==
87
 
88
+ = 0.8.2 (2018-04-22) =
89
+ * fixed category view in front page
90
+ * fixed "past" filter option
91
+ * fixed category filter in admin view, if a seperate taxonomy is used
92
+ * many improvements and fixes in upgrade process
93
+ * add upgrade log file
94
+
95
  = 0.8.1 (2018-02-04) =
96
  * added option to change events permalink slug
97
  * added some additional upgrade check to improve the 0.8.0 upgrade