Event List - Version 0.7.7

Version Description

(2017-01-13) = * replaced custom admin menu icon with wordpress integrated icon for a consistent styling * added support to truncate text via css to exactly 1 line (length='auto') * added a link to the event at the ellipsis of a truncated details text * improved code for deleting of events * fixed some issues with the bulk action menu and button in admin event table * improved security for external links * updated translations

Download this release

Release Info

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

Code changes from version 0.7.6 to 0.7.7

admin/admin.php CHANGED
@@ -42,7 +42,7 @@ class EL_Admin {
42
  */
43
  public function register_pages() {
44
  // Main Menu page
45
- add_menu_page(__('Event List','event-list'), __('Event List','event-list'), 'edit_posts', 'el_admin_main', array(&$this, 'show_main_page'), EL_URL.'admin/images/calendar.png', '22.2');
46
 
47
  // All Events subpage
48
  $page = add_submenu_page('el_admin_main', __('Events','event-list'), __('All Events','event-list'), 'edit_posts', 'el_admin_main', array(&$this, 'show_main_page'));
42
  */
43
  public function register_pages() {
44
  // Main Menu page
45
+ add_menu_page(__('Event List','event-list'), __('Event List','event-list'), 'edit_posts', 'el_admin_main', array(&$this, 'show_main_page'), 'dashicons-calendar-alt', '22.2');
46
 
47
  // All Events subpage
48
  $page = add_submenu_page('el_admin_main', __('Events','event-list'), __('All Events','event-list'), 'edit_posts', 'el_admin_main', array(&$this, 'show_main_page'));
admin/images/calendar.png DELETED
Binary file
admin/includes/admin-main.php CHANGED
@@ -39,6 +39,7 @@ class EL_Admin_Main {
39
  $error = !$id;
40
  $this->redirect('added', $error, array('title' => urlencode($_POST['title']), 'id' => $id));
41
  }
 
42
  case 'edited':
43
  if(!empty($_POST)) {
44
  $error = !$this->update_event($_POST);
@@ -54,9 +55,14 @@ class EL_Admin_Main {
54
  // proceed with header if a bulk action was triggered (required due to "noheader" attribute for all action above)
55
  case 'delete_bulk':
56
  require_once(ABSPATH.'wp-admin/admin-header.php');
 
57
  }
58
  }
59
- // cleanup query args when filter button was pressed
 
 
 
 
60
  if(isset($_GET['filter'])) {
61
  $this->redirect();
62
  }
39
  $error = !$id;
40
  $this->redirect('added', $error, array('title' => urlencode($_POST['title']), 'id' => $id));
41
  }
42
+ break;
43
  case 'edited':
44
  if(!empty($_POST)) {
45
  $error = !$this->update_event($_POST);
55
  // proceed with header if a bulk action was triggered (required due to "noheader" attribute for all action above)
56
  case 'delete_bulk':
57
  require_once(ABSPATH.'wp-admin/admin-header.php');
58
+ break;
59
  }
60
  }
61
+ // cleanup query args if the button for bulk action was clicked, but no bulk action was selected
62
+ if(isset($_REQUEST['action']) && '-1' == $_REQUEST['action'] && isset($_REQUEST['action2']) && '-1' == $_REQUEST['action2']) {
63
+ $this->redirect();
64
+ }
65
+ // cleanup query args if filter button was pressed
66
  if(isset($_GET['filter'])) {
67
  $this->redirect();
68
  }
admin/includes/event_table.php CHANGED
@@ -28,7 +28,7 @@ class EL_Event_Table extends WP_List_Table {
28
  parent::__construct(array(
29
  'singular' => __('event','event-list'), //singular name of the listed records
30
  'plural' => __('events','event-list'), //plural name of the listed records
31
- 'ajax' => false //does this table support ajax?
32
  ));
33
  }
34
 
@@ -45,7 +45,7 @@ class EL_Event_Table extends WP_List_Table {
45
  case 'date' :
46
  return $this->format_event_date($item->start_date, $item->end_date, $item->time);
47
  case 'details' :
48
- return '<div>'.$this->db->truncate(wpautop($item->details), 100).'</div>';
49
  case 'pub_user' :
50
  return get_userdata($item->pub_user)->user_login;
51
  case 'pub_date' :
@@ -70,7 +70,7 @@ class EL_Event_Table extends WP_List_Table {
70
  $actions = array(
71
  'edit' => '<a href="?page='.$_REQUEST['page'].'&amp;id='.$item->id.'&amp;action=edit">'.__('Edit','event-list').'</a>',
72
  'duplicate' => '<a href="?page=el_admin_new&amp;id='.$item->id.'&amp;action=copy">'.__('Duplicate','event-list').'</a>',
73
- 'delete' => '<a href="#" onClick="eventlist_deleteEvent('.$item->id.');return false;">'.__('Delete','event-list').'</a>');
74
 
75
  //Return the title contents
76
  return sprintf('<b>%1$s</b> <span style="color:silver">(id:%2$s)</span>%3$s',
@@ -157,7 +157,8 @@ class EL_Event_Table extends WP_List_Table {
157
  //Detect when a bulk action is being triggered...
158
  if('delete_bulk'===$this->current_action()) {
159
  // Show confirmation window before deleting
160
- echo '<script language="JavaScript">eventlist_deleteEvent ("'.implode(', ', $_GET['id']).'");</script>';
 
161
  }
162
  }
163
 
@@ -301,5 +302,14 @@ class EL_Event_Table extends WP_List_Table {
301
  $datetime = mysql2date(__('Y/m/d g:i:s A'), $pub_date);
302
  return '<abbr title="'.$datetime.'">'.$date.'</abbr>';
303
  }
304
- }
305
 
 
 
 
 
 
 
 
 
 
 
28
  parent::__construct(array(
29
  'singular' => __('event','event-list'), //singular name of the listed records
30
  'plural' => __('events','event-list'), //plural name of the listed records
31
+ 'ajax' => false //does this table support ajax?
32
  ));
33
  }
34
 
45
  case 'date' :
46
  return $this->format_event_date($item->start_date, $item->end_date, $item->time);
47
  case 'details' :
48
+ return $this->db->truncate(wpautop('<div>'.$item->details.'</div>'), 100);
49
  case 'pub_user' :
50
  return get_userdata($item->pub_user)->user_login;
51
  case 'pub_date' :
70
  $actions = array(
71
  'edit' => '<a href="?page='.$_REQUEST['page'].'&amp;id='.$item->id.'&amp;action=edit">'.__('Edit','event-list').'</a>',
72
  'duplicate' => '<a href="?page=el_admin_new&amp;id='.$item->id.'&amp;action=copy">'.__('Duplicate','event-list').'</a>',
73
+ 'delete' => '<a href="#" onClick=\''.$this->call_js_deleteEvent($item->id).'\'>'.__('Delete','event-list').'</a>');
74
 
75
  //Return the title contents
76
  return sprintf('<b>%1$s</b> <span style="color:silver">(id:%2$s)</span>%3$s',
157
  //Detect when a bulk action is being triggered...
158
  if('delete_bulk'===$this->current_action()) {
159
  // Show confirmation window before deleting
160
+ $del_string = isset($_GET['id']) ? implode(', ', $_GET['id']) : '';
161
+ echo '<script language="JavaScript">'.$this->call_js_deleteEvent($del_string).'</script>';
162
  }
163
  }
164
 
302
  $datetime = mysql2date(__('Y/m/d g:i:s A'), $pub_date);
303
  return '<abbr title="'.$datetime.'">'.$date.'</abbr>';
304
  }
 
305
 
306
+ private function call_js_deleteEvent($del_ids) {
307
+ if(!empty($_REQUEST['_wp_http_referer'])) {
308
+ $ref = wp_unslash($_REQUEST['_wp_http_referer']);
309
+ }
310
+ else {
311
+ $ref = '?page=el_admin_main';
312
+ }
313
+ return 'eventlist_deleteEvent("'.$del_ids.'","'.$ref.'");';
314
+ }
315
+ }
admin/js/admin_main.js CHANGED
@@ -1,8 +1,13 @@
1
  // Javascript functions for event-list admin_main page
2
 
3
  // Confirmation for event deletion
4
- function eventlist_deleteEvent (id) {
5
- if (confirm("Are you sure you want to delete this event from you the database? This is a permanent action.")) {
6
- document.location.href = "?page=el_admin_main&id=" + id + "&action=delete&noheader=true";
7
  }
 
 
 
 
 
8
  }
1
  // Javascript functions for event-list admin_main page
2
 
3
  // Confirmation for event deletion
4
+ function eventlist_deleteEvent (del_ids, referer_url) {
5
+ if (del_ids == "") {
6
+ window.alert("No event selected for deletion! Deletion aborted!");
7
  }
8
+ else if (window.confirm("Are you sure you want to delete this event?")) {
9
+ document.location.href = referer_url + "&id=" + del_ids + "&action=delete&noheader=true";
10
+ return;
11
+ }
12
+ document.location.href = referer_url;
13
  }
event-list.php CHANGED
@@ -3,14 +3,14 @@
3
  Plugin Name: Event List
4
  Plugin URI: http://wordpress.org/extend/plugins/event-list/
5
  Description: Manage your events and show them in a list view on your site.
6
- Version: 0.7.6
7
  Author: Michael Burtscher
8
  Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
10
  License: GPLv2
11
 
12
  A plugin for the blogging MySQL/PHP-based WordPress.
13
- Copyright 2012-2015 Michael Burtscher
14
 
15
  This program is free software; you can redistribute it and/or
16
  modify it under the terms of the GNUs General Public License
3
  Plugin Name: Event List
4
  Plugin URI: http://wordpress.org/extend/plugins/event-list/
5
  Description: Manage your events and show them in a list view on your site.
6
+ Version: 0.7.7
7
  Author: Michael Burtscher
8
  Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
10
  License: GPLv2
11
 
12
  A plugin for the blogging MySQL/PHP-based WordPress.
13
+ Copyright 2012-2017 Michael Burtscher
14
 
15
  This program is free software; you can redistribute it and/or
16
  modify it under the terms of the GNUs General Public License
includes/db.php CHANGED
@@ -273,15 +273,25 @@ class EL_Db {
273
  }
274
 
275
  /** ************************************************************************************************************
276
- * Function to truncate and shorten text
277
  *
278
- * @param string $html The html code which should be shortened
279
- * @param int $length The length to which the text should be shortened
280
- * @param bool skip If this value is true the truncate will be skipped (nothing will be done)
281
- * @param bool perserve_tags Specifies if html tags should be preserved or if only the text should be shortened
 
 
 
 
 
 
282
  ***************************************************************************************************************/
283
- public function truncate($html, $length, $skip=false, $preserve_tags=true) {
284
  mb_internal_encoding("UTF-8");
 
 
 
 
285
  if(0 >= $length || mb_strlen($html) <= $length || $skip) {
286
  // do nothing
287
  return $html;
@@ -320,8 +330,6 @@ class EL_Db {
320
  if($this->mb_preg_match('{^<[\b]}', $tag)) {
321
  // This is a closing tag
322
  $openingTag = array_pop($tags);
323
- // Check for not properly nested tags (for debugging only)
324
- //assert($openingTag == $tagName, '----- Tags not properly nested: OpeningTag: '.$openingTag.'; TagName: '.$tagName.' -----');
325
  $out .= $tag;
326
  }
327
  else if($this->mb_preg_match('{/\s?>$}', $tag)) {
@@ -343,7 +351,12 @@ class EL_Db {
343
  }
344
  // Print ellipsis ("...") if the html was truncated
345
  if($truncated) {
346
- $out .= ' &hellip;';
 
 
 
 
 
347
  }
348
  // Close any open tags.
349
  while(!empty($tags)) {
273
  }
274
 
275
  /** ************************************************************************************************************
276
+ * Truncate HTML, close opened tags
277
  *
278
+ * @param string $html The html code which should be shortened.
279
+ * @param int $length The length (number of characters) to which the text will be shortened.
280
+ * With [0] the full text will be returned. With [auto] also the complete text
281
+ * will be used, but a wrapper div will be added which shortens the text to 1 full
282
+ * line via css.
283
+ * @param bool $skip If this value is true the truncate will be skipped (nothing will be done)
284
+ * @param bool $perserve_tags Specifies if html tags should be preserved or if only the text should be
285
+ * shortened.
286
+ * @param string $link If an url is given a link to the given url will be added for the ellipsis at
287
+ * the end of the truncated text.
288
  ***************************************************************************************************************/
289
+ public function truncate($html, $length, $skip=false, $preserve_tags=true, $link=false) {
290
  mb_internal_encoding("UTF-8");
291
+ if('auto' == $length) {
292
+ // add wrapper div with css styles for css truncate and return
293
+ return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">'.$html.'</div>';
294
+ }
295
  if(0 >= $length || mb_strlen($html) <= $length || $skip) {
296
  // do nothing
297
  return $html;
330
  if($this->mb_preg_match('{^<[\b]}', $tag)) {
331
  // This is a closing tag
332
  $openingTag = array_pop($tags);
 
 
333
  $out .= $tag;
334
  }
335
  else if($this->mb_preg_match('{/\s?>$}', $tag)) {
351
  }
352
  // Print ellipsis ("...") if the html was truncated
353
  if($truncated) {
354
+ if($link) {
355
+ $out .= ' <a href="'.$link.'">&hellip;</a>';
356
+ }
357
+ else {
358
+ $out .= ' &hellip;';
359
+ }
360
  }
361
  // Close any open tags.
362
  while(!empty($tags)) {
includes/options_helptexts.php CHANGED
@@ -76,7 +76,7 @@ $options_helptexts = array(
76
  'label' => __('Date format in edit form','event-list'),
77
  'desc' => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
78
  __('The standard is an empty string to use the Wordpress standard setting.','event-list').'<br />'.
79
- sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank">', '</a>')),
80
 
81
  // Section: "feed"
82
  'el_enable_feed' => array('type' => 'checkbox',
76
  'label' => __('Date format in edit form','event-list'),
77
  'desc' => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
78
  __('The standard is an empty string to use the Wordpress standard setting.','event-list').'<br />'.
79
+ sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')),
80
 
81
  // Section: "feed"
82
  'el_enable_feed' => array('type' => 'checkbox',
includes/sc_event-list.php CHANGED
@@ -42,8 +42,10 @@ class SC_Event_List {
42
  'num_events' => array('std_val' => '0'),
43
  'show_filterbar' => array('std_val' => 'true'),
44
  'filterbar_items' => array('std_val' => 'years_hlist'),
 
45
  'show_starttime' => array('std_val' => 'true'),
46
  'show_location' => array('std_val' => 'true'),
 
47
  'show_cat' => array('std_val' => 'false'),
48
  'show_details' => array('std_val' => 'true'),
49
  'details_length' => array('std_val' => '0'),
@@ -51,8 +53,6 @@ class SC_Event_List {
51
  'link_to_event' => array('std_val' => 'event_list_only'),
52
  'add_feed_link' => array('std_val' => 'false'),
53
  'url_to_page' => array('std_val' => ''),
54
- 'title_length' => array('std_val' => '0'),
55
- 'location_length' => array('std_val' => '0'),
56
  'sc_id_for_url' => array('std_val' => ''),
57
  // Internal attributes: This parameters will be added by the script and are not available in the shortcode
58
  // 'sc_id'
@@ -205,9 +205,9 @@ class SC_Event_List {
205
  $out .= '">';
206
  // event title
207
  $out .= '<div class="event-title"><h3>';
208
- $title = esc_attr($this->db->truncate($event->title, $a['title_length'], $this->single_event));
209
  if($this->is_link_available($a, $event)) {
210
- $out .= $this->get_event_url($a, $event->id, $title);
211
  }
212
  else {
213
  $out .= $title;
@@ -229,16 +229,18 @@ class SC_Event_List {
229
  // event location
230
  if('' != $event->location && $this->is_visible($a['show_location'])) {
231
  if('' == $this->options->get('el_html_tags_in_loc')) {
232
- $location = esc_attr($this->db->truncate($event->location, $a['location_length'], $this->single_event, false));
233
  }
234
  else {
235
  $location = $this->db->truncate($event->location, $a['location_length'], $this->single_event);
236
  }
237
  $out .= '<span class="event-location">'.$location.'</span>';
238
  }
 
239
  if( $this->is_visible( $a['show_cat'] ) ) {
240
  $out .= '<div class="event-cat">'.esc_attr($this->categories->convert_db_string($event->categories)).'</div>';
241
  }
 
242
  if( $this->is_visible( $a['show_details'] ) ) {
243
  $out .= $this->get_details($event, $a);
244
  }
@@ -388,6 +390,7 @@ class SC_Event_List {
388
  if('' == $event->details) {
389
  return '';
390
  }
 
391
  // check and handle the read more tag if available
392
  //search fore more-tag (no more tag handling if truncate of details is set)
393
  if(preg_match('/<!--more(.*?)?-->/', $event->details, $matches)) {
@@ -405,15 +408,18 @@ class SC_Event_List {
405
  $more_link_text = __('(more&hellip;)');
406
  }
407
  //details with more-link
408
- $details = apply_filters('the_content_more_link', $part[0].$this->get_event_url($a, $event->id, $more_link_text));
409
  }
410
  }
411
  else {
412
  //normal details
413
  $details = $event->details;
 
 
 
414
  }
415
  // last preparations of details
416
- $details = $this->db->truncate(do_shortcode(wpautop($details)), $a['details_length'], $this->single_event);
417
  // preparations for collapsed details
418
  if($this->is_visible($a['collapse_details'])) {
419
  wp_register_script('el_collapse_details', EL_URL.'includes/js/collapse_details.js', null, true);
@@ -425,6 +431,14 @@ class SC_Event_List {
425
  return '<div class="event-details">'.$details.'</div>';
426
  }
427
 
 
 
 
 
 
 
 
 
428
  private function get_url(&$a) {
429
  if('' !== $a['url_to_page']) {
430
  // use given url
@@ -442,10 +456,6 @@ class SC_Event_List {
442
  return $url;
443
  }
444
 
445
- private function get_event_url(&$a, $event_id, $title) {
446
- return '<a href="'.esc_html(add_query_arg('event_id'.$a['sc_id_for_url'], $event_id, $this->get_url($a))).'">'.$title.'</a>';
447
- }
448
-
449
  private function is_single_day_only( &$events ) {
450
  foreach( $events as $event ) {
451
  if( $event->start_date !== $event->end_date ) {
42
  'num_events' => array('std_val' => '0'),
43
  'show_filterbar' => array('std_val' => 'true'),
44
  'filterbar_items' => array('std_val' => 'years_hlist'),
45
+ 'title_length' => array('std_val' => '0'),
46
  'show_starttime' => array('std_val' => 'true'),
47
  'show_location' => array('std_val' => 'true'),
48
+ 'location_length' => array('std_val' => '0'),
49
  'show_cat' => array('std_val' => 'false'),
50
  'show_details' => array('std_val' => 'true'),
51
  'details_length' => array('std_val' => '0'),
53
  'link_to_event' => array('std_val' => 'event_list_only'),
54
  'add_feed_link' => array('std_val' => 'false'),
55
  'url_to_page' => array('std_val' => ''),
 
 
56
  'sc_id_for_url' => array('std_val' => ''),
57
  // Internal attributes: This parameters will be added by the script and are not available in the shortcode
58
  // 'sc_id'
205
  $out .= '">';
206
  // event title
207
  $out .= '<div class="event-title"><h3>';
208
+ $title = $this->db->truncate(esc_attr($event->title), $a['title_length'], $this->single_event);
209
  if($this->is_link_available($a, $event)) {
210
+ $out .= $this->get_event_link($a, $event->id, $title);
211
  }
212
  else {
213
  $out .= $title;
229
  // event location
230
  if('' != $event->location && $this->is_visible($a['show_location'])) {
231
  if('' == $this->options->get('el_html_tags_in_loc')) {
232
+ $location =$this->db->truncate(esc_attr($event->location), $a['location_length'], $this->single_event, false);
233
  }
234
  else {
235
  $location = $this->db->truncate($event->location, $a['location_length'], $this->single_event);
236
  }
237
  $out .= '<span class="event-location">'.$location.'</span>';
238
  }
239
+ // event categories
240
  if( $this->is_visible( $a['show_cat'] ) ) {
241
  $out .= '<div class="event-cat">'.esc_attr($this->categories->convert_db_string($event->categories)).'</div>';
242
  }
243
+ // event details
244
  if( $this->is_visible( $a['show_details'] ) ) {
245
  $out .= $this->get_details($event, $a);
246
  }
390
  if('' == $event->details) {
391
  return '';
392
  }
393
+ $truncate_url = false;
394
  // check and handle the read more tag if available
395
  //search fore more-tag (no more tag handling if truncate of details is set)
396
  if(preg_match('/<!--more(.*?)?-->/', $event->details, $matches)) {
408
  $more_link_text = __('(more&hellip;)');
409
  }
410
  //details with more-link
411
+ $details = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->id, $more_link_text));
412
  }
413
  }
414
  else {
415
  //normal details
416
  $details = $event->details;
417
+ if($this->is_link_available($a, $event)) {
418
+ $truncate_url = $this->get_event_url($a, $event->id);
419
+ }
420
  }
421
  // last preparations of details
422
+ $details = $this->db->truncate(do_shortcode(wpautop($details)), $a['details_length'], $this->single_event, true, $truncate_url);
423
  // preparations for collapsed details
424
  if($this->is_visible($a['collapse_details'])) {
425
  wp_register_script('el_collapse_details', EL_URL.'includes/js/collapse_details.js', null, true);
431
  return '<div class="event-details">'.$details.'</div>';
432
  }
433
 
434
+ private function get_event_link(&$a, $event_id, $title) {
435
+ return '<a href="'.$this->get_event_url($a, $event_id).'">'.$title.'</a>';
436
+ }
437
+
438
+ private function get_event_url(&$a, $event_id) {
439
+ return esc_html(add_query_arg('event_id'.$a['sc_id_for_url'], $event_id, $this->get_url($a)));
440
+ }
441
+
442
  private function get_url(&$a) {
443
  if('' !== $a['url_to_page']) {
444
  // use given url
456
  return $url;
457
  }
458
 
 
 
 
 
459
  private function is_single_day_only( &$events ) {
460
  foreach( $events as $event ) {
461
  if( $event->start_date !== $event->end_date ) {
includes/sc_event-list_helptexts.php CHANGED
@@ -75,6 +75,11 @@ $sc_eventlist_helptexts = array(
75
  In this example you can see that filterbar options can be added in brackets in format "option_name=value". You can also add multiple options seperated by a pipe ("|").<br />
76
  The 2 semicolon (";") devides the bar in 3 section. The first section will be displayed left-justified, the second section will be centered and the third section will be right-aligned. So in this example the 2 dropdown will be left-aligned and the reset link will be on the right side.</p>'),
77
 
 
 
 
 
 
78
  'show_starttime' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only',
79
  'desc' => __('This attribute specifies if the starttime is displayed in the event list.<br />
80
  Choose "false" to always hide and "true" to always show the starttime.<br />
@@ -85,6 +90,11 @@ $sc_eventlist_helptexts = array(
85
  Choose "false" to always hide and "true" to always show the location.<br />
86
  With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event','event-list')),
87
 
 
 
 
 
 
88
  'show_cat' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only',
89
  'desc' => __('This attribute specifies if the categories are displayed in the event list.<br />
90
  Choose "false" to always hide and "true" to always show the category.<br />
@@ -95,10 +105,10 @@ $sc_eventlist_helptexts = array(
95
  Choose "false" to always hide and "true" to always show the details.<br />
96
  With "event_list_only" the details are only visible in the event list and with "single_event_only" only for a single event','event-list')),
97
 
98
- 'details_length' => array('val' => 'number',
99
- 'desc' => __('This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />
100
- With the standard value 0 the full details are displayed.<br />
101
- This attribute has no influence if only a single event is shown.','event-list')),
102
 
103
  'collapse_details' => array('val' => 'false',
104
  'desc' => __('This attribute specifies if the details should be collapsed initially.<br />
@@ -124,18 +134,6 @@ $sc_eventlist_helptexts = array(
124
  An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.','event-list')),
125
 
126
  // Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
127
- 'title_length' => array('val' => 'number',
128
- 'hidden' => true,
129
- 'desc' => __('This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />
130
- With the standard value 0 the full details are displayed.<br />
131
- This attribute has no influence if only a single event is shown.','event-list')),
132
-
133
- 'location_length' => array('val' => 'number',
134
- 'hidden' => true,
135
- 'desc' => __('This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />
136
- With the standard value 0 the full details are displayed.<br />
137
- This attribute has no influence if only a single event is shown.','event-list')),
138
-
139
  'sc_id_for_url' => array('val' => 'number',
140
  'hidden' => true,
141
  'desc' => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
75
  In this example you can see that filterbar options can be added in brackets in format "option_name=value". You can also add multiple options seperated by a pipe ("|").<br />
76
  The 2 semicolon (";") devides the bar in 3 section. The first section will be displayed left-justified, the second section will be centered and the third section will be right-aligned. So in this example the 2 dropdown will be left-aligned and the reset link will be on the right side.</p>'),
77
 
78
+ 'title_length' => array('val' => __('number','event-list').'<br />auto',
79
+ 'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
80
+ sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
81
+ __('This attribute has no influence if only a single event is shown.','event-list')),
82
+
83
  'show_starttime' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only',
84
  'desc' => __('This attribute specifies if the starttime is displayed in the event list.<br />
85
  Choose "false" to always hide and "true" to always show the starttime.<br />
90
  Choose "false" to always hide and "true" to always show the location.<br />
91
  With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event','event-list')),
92
 
93
+ 'location_length' => array('val' => __('number','event-list').'<br />auto',
94
+ 'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
95
+ sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
96
+ __('This attribute has no influence if only a single event is shown.','event-list')),
97
+
98
  'show_cat' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only',
99
  'desc' => __('This attribute specifies if the categories are displayed in the event list.<br />
100
  Choose "false" to always hide and "true" to always show the category.<br />
105
  Choose "false" to always hide and "true" to always show the details.<br />
106
  With "event_list_only" the details are only visible in the event list and with "single_event_only" only for a single event','event-list')),
107
 
108
+ 'details_length' => array('val' => __('number','event-list'),
109
+ 'desc' => __('This attribute specifies if the details should be truncate to the given number of characters in the event list.','event-list').'<br />'.
110
+ sprintf(__('With the standard value %1$s the full text is displayed.','event-list'), '[0]').'<br />'.
111
+ __('This attribute has no influence if only a single event is shown.','event-list')),
112
 
113
  'collapse_details' => array('val' => 'false',
114
  'desc' => __('This attribute specifies if the details should be collapsed initially.<br />
134
  An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.','event-list')),
135
 
136
  // Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
 
 
 
 
 
 
 
 
 
 
 
 
137
  'sc_id_for_url' => array('val' => 'number',
138
  'hidden' => true,
139
  'desc' => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
includes/widget_helptexts.php CHANGED
@@ -28,9 +28,10 @@ $widget_items_helptexts = array(
28
  'title_length' => array('type' => 'text',
29
  'caption' => __('Truncate event title to','event-list'),
30
  'caption_after' => __('characters','event-list'),
31
- 'tooltip' => __('This option defines the number of displayed characters for the event title. Set this value to 0 to view the full title.','event-list'),
 
32
  'form_style' => null,
33
- 'form_width' => 30),
34
 
35
  'show_starttime' => array('type' => 'checkbox',
36
  'caption' => __('Show event starttime','event-list'),
@@ -49,9 +50,10 @@ $widget_items_helptexts = array(
49
  'location_length' => array('type' => 'text',
50
  'caption' => __('Truncate location to','event-list'),
51
  'caption_after' => __('characters','event-list'),
52
- 'tooltip' => __('If the event location is diplayed this option defines the number of displayed characters. Set this value to 0 to view the full location.','event-list'),
 
53
  'form_style' => 'margin:0 0 0.6em 0.9em',
54
- 'form_width' => 30),
55
 
56
  'show_details' => array('type' => 'checkbox',
57
  'caption' => __('Show event details','event-list'),
@@ -63,9 +65,10 @@ $widget_items_helptexts = array(
63
  'details_length' => array('type' => 'text',
64
  'caption' => __('Truncate details to','event-list'),
65
  'caption_after' => __('characters','event-list'),
66
- 'tooltip' => __('If the event details are diplayed this option defines the number of diplayed characters. Set this value to 0 to view the full details.','event-list'),
 
67
  'form_style' => 'margin:0 0 0.6em 0.9em',
68
- 'form_width' => 30),
69
 
70
  'url_to_page' => array('type' => 'text',
71
  'caption' => __('URL to the linked Event List page','event-list').':',
@@ -79,7 +82,7 @@ $widget_items_helptexts = array(
79
  'caption_after' => null,
80
  'tooltip' => __('This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page.','event-list'),
81
  'form_style' => null,
82
- 'form_width' => 30),
83
 
84
  'link_to_event' => array('type' => 'checkbox',
85
  'caption' => __('Add links to the single events','event-list'),
28
  'title_length' => array('type' => 'text',
29
  'caption' => __('Truncate event title to','event-list'),
30
  'caption_after' => __('characters','event-list'),
31
+ 'tooltip' => __('This option defines the number of displayed characters for the event title.','event-list').' '.
32
+ sprintf(__('Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.','event-list'), '[0]', '[auto]'),
33
  'form_style' => null,
34
+ 'form_width' => 40),
35
 
36
  'show_starttime' => array('type' => 'checkbox',
37
  'caption' => __('Show event starttime','event-list'),
50
  'location_length' => array('type' => 'text',
51
  'caption' => __('Truncate location to','event-list'),
52
  'caption_after' => __('characters','event-list'),
53
+ 'tooltip' => __('If the event location is diplayed this option defines the number of displayed characters.','event-list').' '.
54
+ sprintf(__('Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.','event-list'), '[0]', '[auto]'),
55
  'form_style' => 'margin:0 0 0.6em 0.9em',
56
+ 'form_width' => 40),
57
 
58
  'show_details' => array('type' => 'checkbox',
59
  'caption' => __('Show event details','event-list'),
65
  'details_length' => array('type' => 'text',
66
  'caption' => __('Truncate details to','event-list'),
67
  'caption_after' => __('characters','event-list'),
68
+ 'tooltip' => __('If the event details are diplayed this option defines the number of diplayed characters.','event-list').' '.
69
+ sprintf(__('Set this value to %1$s to view the full text.','event-list'), '[0]'),
70
  'form_style' => 'margin:0 0 0.6em 0.9em',
71
+ 'form_width' => 40),
72
 
73
  'url_to_page' => array('type' => 'text',
74
  'caption' => __('URL to the linked Event List page','event-list').':',
82
  'caption_after' => null,
83
  'tooltip' => __('This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page.','event-list'),
84
  'form_style' => null,
85
+ 'form_width' => 35),
86
 
87
  'link_to_event' => array('type' => 'checkbox',
88
  'caption' => __('Add links to the single events','event-list'),
languages/event-list-de_DE.mo CHANGED
Binary file
languages/event-list-de_DE.po CHANGED
@@ -1,15 +1,17 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
 
 
6
  # mibuthu, 2015
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
12
- "PO-Revision-Date: 2015-12-13 20:36+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,128 +20,128 @@ msgstr ""
18
  "Language: de_DE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Event List"
24
 
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Termine"
31
 
32
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
33
  msgid "All Events"
34
  msgstr "Alle Termine"
35
 
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
  msgstr "Neuen Termin erstellen"
40
 
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
43
  msgid "Add New"
44
  msgstr "Erstellen"
45
 
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
  msgstr "Event List Kategorien"
50
 
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
55
  msgid "Categories"
56
  msgstr "Kategorien"
57
 
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
  msgstr "Event List Einstellungen"
62
 
63
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
64
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
  msgstr "Einstellungen"
67
 
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
  msgstr "Informationen zu Event List"
72
 
73
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
74
  msgid "About"
75
  msgstr "Informationen"
76
 
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
- msgstr ""
85
 
86
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
  msgstr "Hilfe und Anleitungen"
89
 
90
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
  msgstr "Die Termine können %1$shier%2$s verwaltet werden"
94
 
95
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
  msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
98
 
99
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
  msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
103
 
104
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
  msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
108
 
109
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
  msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
114
 
115
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
  msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist weiter unten verfügbar."
120
 
121
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
  msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
124
 
125
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
  msgstr "Beim Einsatz des Widgets muss beachtet werden, dass die URL zur verlinkten Event List Seite angegeben werden muss, falls eine Verlinkungsoption ausgewählt wird (%1$s oder %2$s). Dies ist erforderlich weil das Widget nicht wissen kann auf welcher Seite oder in welchem Beitrag der Shortcode verwendet wird, zudem verlinkt werden soll."
131
 
132
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
134
  msgid "Add links to the single events"
135
  msgstr "Füge Links zu den einzelnen Terminen ein"
136
 
137
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
138
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
139
  msgid "Add a link to the Event List page"
140
  msgstr "Füge einen Link zur Event List Seite hinzu"
141
 
142
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -147,903 +149,903 @@ msgid ""
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
  msgstr "Zusätzlich muss die korrekte Shortcode ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt, welcher Shortcode auf der verlinkten Seite oder dem verlinkten Beitrag verwendet werden soll, wenn mehrere Shortcodes vorhanden sind. Der Standardwert von \"1\" ist somit normalerweise o.k., aber falls erforderlich kann die korrekte ID über die URL eines Termin-Links auf der verlinkten Seite herausgefunden werden. Die ID wird am Ende des URL-Parameternamens angehängt (z.B. %1$s)."
149
 
150
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
  msgstr "Bitte werfen Sie auch einen Blick auf die %1$sEinstellungsseite%2$s in der Sie das Plugin nach Ihren Vorstellungen anpassen können."
156
 
157
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
  msgstr "Shortcode Attribute"
160
 
161
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
  msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
166
 
167
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
  msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
173
 
174
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
  msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
179
 
180
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
  msgstr "Name"
183
 
184
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
  msgstr "zulässige Werte"
187
 
188
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
  msgstr "Standard-Wert"
191
 
192
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
195
  msgid "Description"
196
  msgstr "Beschreibung"
197
 
198
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
  msgstr "Filter Syntax"
201
 
202
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
  msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
207
 
208
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
  msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
214
 
215
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
216
  msgid "AND"
217
  msgstr "UND"
218
 
219
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
220
  msgid "OR"
221
  msgstr "ODER"
222
 
223
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
224
  msgid "or"
225
  msgstr "oder"
226
 
227
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
228
  msgid "and"
229
  msgstr "und"
230
 
231
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
  msgstr "Beispiele für Kategorie-Filter:"
234
 
235
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
  msgstr "Zeige alle Termine mit der Kategorie %1$s."
239
 
240
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
  msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
244
 
245
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
  msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
251
 
252
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
  msgstr "Verfügbare Datumsformate"
255
 
256
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
  msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
259
 
260
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
  msgstr "Verfügbare Datumsbereichs-Formate"
263
 
264
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
  msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
267
 
268
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
269
  msgid "Value"
270
  msgstr "Wert"
271
 
272
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
273
  msgid "Example"
274
  msgstr "Beispiel"
275
 
276
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
  msgstr "Kategorie bearbeiten"
279
 
280
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
  msgstr "Kategorie aktualisieren"
283
 
284
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
  msgstr "Neue Kategorie erstellen"
287
 
288
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
  msgstr "Kategorie \"%s\" gelöscht."
292
 
293
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
  msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
297
 
298
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
  msgstr "Fehler beim Löschen der Kategorie \"%s\""
302
 
303
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
  msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
306
 
307
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
  msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
310
 
311
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
  msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
314
 
315
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
  msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
319
 
320
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
  msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
324
 
325
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
  msgstr "Kategorie \"%s\" wurde geändert"
329
 
330
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
  msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
334
 
335
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
  msgstr ""
341
 
342
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
344
  msgid "Name"
345
  msgstr ""
346
 
347
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
  msgstr "Dieser Name wird dann auf der Webseite angezeigt."
350
 
351
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
353
  msgid "Slug"
354
  msgstr ""
355
 
356
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
  msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
361
 
362
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
  msgstr "Parent"
365
 
366
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
367
  msgid "None"
368
  msgstr ""
369
 
370
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
  msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
375
 
376
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
  msgstr "Anwenden"
379
 
380
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
  msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
383
 
384
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
  msgstr "Importiere Termine"
387
 
388
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
390
  msgid "Step"
391
  msgstr ""
392
 
393
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
  msgstr ""
396
 
397
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
  msgstr "Importiere Termin-Daten"
400
 
401
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
  msgstr "Beispieldatei"
404
 
405
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
- msgstr ""
410
 
411
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
412
  msgid "Note"
413
  msgstr "Achtung"
414
 
415
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
  msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
420
 
421
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
  msgstr "Entschuldigung, ein Fehler ist aufgetreten."
426
 
427
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
  msgstr "Die Datei existiert nicht, bitte erneut versuchen."
430
 
431
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
  msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
434
 
435
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
  msgstr ""
438
 
439
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
442
  msgid "Import"
443
  msgstr "Importieren"
444
 
445
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
  msgstr "Import mit Fehler!"
448
 
449
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
  msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
455
 
456
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
  msgstr "Importieren erfolgreich abgeschlossen!"
459
 
460
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
  msgstr "Gehe zurück zu Alle Termine"
463
 
464
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
467
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
468
  msgid "Title"
469
  msgstr "Titel"
470
 
471
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
  msgstr "Start-Datum"
474
 
475
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
  msgstr "End-Datum"
478
 
479
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
481
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
483
  msgid "Time"
484
  msgstr "Uhrzeit"
485
 
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
489
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
491
  msgid "Location"
492
  msgstr "Ort"
493
 
494
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
497
  msgid "Details"
498
  msgstr "Beschreibung"
499
 
500
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
  msgstr "Fehler beim Lesen der CSV-Datei."
503
 
504
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
  msgstr "Abbrechen"
508
 
509
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
  msgstr "Keine Kategorien verfügbar."
513
 
514
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
515
  msgid "Edit Event"
516
  msgstr "Termin bearbeiten"
517
 
518
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
  msgstr "Duplizieren"
522
 
523
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
  msgstr "Duplikat der Termin-ID: %d"
527
 
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
530
  msgid "required"
531
  msgstr "erforderlich"
532
 
533
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
535
  msgid "Date"
536
  msgstr "Datum"
537
 
538
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
  msgstr "Mehrtägiger Termin"
541
 
542
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
  msgstr "Veröffentlichen"
546
 
547
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
548
  msgid "Update"
549
  msgstr "Aktualisieren"
550
 
551
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
  msgstr "Gehe zu Kategorie-Einstellungen"
554
 
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
559
  msgid "Y/m/d"
560
- msgstr ""
561
 
562
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
  msgstr "Einstellungen gespeichert."
565
 
566
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
567
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
568
  msgid "General"
569
  msgstr "Allgemein"
570
 
571
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
  msgstr "Frontend Einstellungen"
574
 
575
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
  msgstr "Admin-Seiten Einstellungen"
578
 
579
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
  msgstr "Feed Einstellungen"
582
 
583
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
585
  msgid "event"
586
  msgstr "Termin"
587
 
588
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
590
  msgid "events"
591
  msgstr "Termine"
592
 
593
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
595
  msgid "Edit"
596
  msgstr "Bearbeiten"
597
 
598
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
602
  msgid "Delete"
603
  msgstr "Löschen"
604
 
605
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
606
  msgid "Author"
607
  msgstr "Autor"
608
 
609
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
610
  msgid "Published"
611
  msgstr "Veröffentlicht"
612
 
613
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
614
  msgid "Filter"
615
  msgstr "Auswahl einschränken"
616
 
617
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
618
  #, php-format
619
  msgid "%s ago"
620
  msgstr "vor %s"
621
 
622
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
623
  msgid "Y/m/d g:i:s A"
624
  msgstr ""
625
 
626
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
  msgstr "Jahr"
629
 
630
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
  msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
633
 
634
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
  msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
642
 
643
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
  msgstr "des entsprechenden Jahres"
646
 
647
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
  msgstr "Monat"
650
 
651
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
  msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
656
 
657
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
  msgstr "des entsprechenden Monats"
660
 
661
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
  msgstr "Tag"
664
 
665
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
  msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
670
 
671
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
  msgstr "Relatives Jahr"
674
 
675
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
  msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
682
 
683
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
  msgstr "Ein relatives Jahr"
686
 
687
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
  msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
696
 
697
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
  msgstr "Jahresanzahl"
700
 
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
  msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
708
 
709
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
  msgstr "Relativer Monat"
712
 
713
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
  msgstr "Ein relativer Monat"
716
 
717
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
  msgstr "Monatsanzahl"
720
 
721
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
  msgstr "Relative Woche"
724
 
725
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
  msgstr "Eine relative Woche"
728
 
729
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
  msgstr "Wochenanzahl"
732
 
733
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
  msgstr "der entsprechende Woche"
736
 
737
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
  msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
743
 
744
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
  msgstr "Woche beginnt am"
747
 
748
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
  msgstr "Relativer Tag"
751
 
752
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
  msgstr "Ein relativer Tag"
755
 
756
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
  msgstr "Tagesanzahl"
759
 
760
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
  msgstr "Datumsbereich"
763
 
764
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
  msgstr "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
769
 
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
772
  msgid "All"
773
  msgstr "Alle"
774
 
775
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
  msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
778
 
779
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
  msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
785
 
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
788
  msgid "Upcoming"
789
  msgstr "Anstehend"
790
 
791
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
  msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
794
 
795
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
797
  msgid "Past"
798
  msgstr "Beendet"
799
 
800
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
  msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
803
 
804
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
805
  msgid "Show all dates"
806
  msgstr "Zeige alle Datumsbereiche"
807
 
808
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
809
  msgid "Show all categories"
810
  msgstr "Zeige alle Kategorien"
811
 
812
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
  msgstr "Termin Kategorien"
815
 
816
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
  msgstr ""
819
 
820
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
  msgstr "Synchronisiere Kategorien"
823
 
824
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
  msgstr "Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron"
827
 
828
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
829
  msgid "Attention"
830
  msgstr "Achtung"
831
 
832
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
  msgstr "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert."
838
 
839
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
- msgstr ""
842
 
843
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
- msgstr ""
846
 
847
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
- msgstr ""
850
 
851
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
- msgstr ""
856
 
857
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
  msgstr "Text für keine Termine"
860
 
861
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
  msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
866
 
867
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
  msgstr "Mehrtägiger Bereich für Filter"
870
 
871
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
  msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
874
 
875
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
  msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
880
 
881
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
  msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
885
 
886
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
  msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
892
 
893
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
894
  msgid "Date display"
895
  msgstr "Datumsanzeige"
896
 
897
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
  msgstr "Zeige das Datum nur einmal pro Tag"
900
 
901
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
  msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
906
 
907
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
  msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
912
 
913
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
  msgstr "HTML-Tags"
916
 
917
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
  msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
  msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
929
 
930
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
  msgstr "Text für \"Zeige Beschreibung\""
933
 
934
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
  msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Anzeigen der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
  msgstr "Text für \"Verstecke Beschreibung\""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
  msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Verstecken der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
949
 
950
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
  msgstr "Deaktiviere die CSS-Datei"
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
  msgstr "Deaktiviere die %1$s Datei."
958
 
959
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
  msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
  msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
969
 
970
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
  msgstr "Datumsformat im Formular"
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
  msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
979
 
980
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
  msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
983
 
984
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
  msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
- msgstr ""
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
  msgstr ""
997
 
998
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
  msgstr ""
1003
 
1004
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
  msgstr ""
1007
 
1008
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
  msgstr ""
1013
 
1014
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
  msgstr ""
1017
 
1018
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
  msgstr ""
1023
 
1024
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
  msgstr ""
1027
 
1028
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
- msgstr ""
1031
 
1032
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
  msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
  msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
  msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1052,86 +1054,86 @@ msgid ""
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
  msgstr ""
1054
 
1055
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
- msgstr ""
1058
 
1059
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
  msgstr ""
1065
 
1066
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
  msgstr ""
1069
 
1070
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
  msgstr ""
1076
 
1077
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
- msgstr ""
1080
 
1081
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
  msgstr ""
1087
 
1088
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
  msgstr ""
1091
 
1092
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
  msgstr ""
1095
 
1096
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
  msgstr ""
1101
 
1102
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1103
  msgid "Show details"
1104
  msgstr "Zeige Beschreibung"
1105
 
1106
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1107
  msgid "Hide details"
1108
  msgstr "Verstecke Beschreibung"
1109
 
1110
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
  msgstr ""
1115
 
1116
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
  msgstr ""
1121
 
1122
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
  msgstr ""
1127
 
1128
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
  msgstr ""
1133
 
1134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1139,63 +1141,94 @@ msgid ""
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
  msgstr ""
1141
 
1142
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
  msgstr ""
1148
 
1149
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
  msgstr ""
1155
 
1156
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1161
  msgstr ""
1162
 
1163
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
  msgid ""
1165
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1166
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1167
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1168
  msgstr ""
1169
 
1170
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1171
  msgid ""
1172
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1173
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1174
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1175
  msgstr ""
1176
 
1177
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1178
  msgid ""
1179
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1180
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1181
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1182
  msgstr ""
1183
 
1184
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1185
  msgid ""
1186
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1187
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1188
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1189
  msgstr ""
1190
 
1191
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1192
  msgid ""
1193
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1194
- "\t With the standard value 0 the full details are displayed.<br />\n"
1195
- "\t This attribute has no influence if only a single event is shown."
 
 
 
 
1196
  msgstr ""
1197
 
1198
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1199
  msgid ""
1200
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1201
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1203,7 +1236,7 @@ msgid ""
1203
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1204
  msgstr ""
1205
 
1206
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1207
  msgid ""
1208
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1209
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1211,7 +1244,7 @@ msgid ""
1211
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1212
  msgstr ""
1213
 
1214
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1215
  msgid ""
1216
  "This attribute specifies if a rss feed link should be added.<br />\n"
1217
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1220,44 +1253,36 @@ msgid ""
1220
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1221
  msgstr ""
1222
 
1223
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1224
  msgid ""
1225
  "This attribute specifies the page or post url for event links.<br />\n"
1226
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1227
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1228
  msgstr ""
1229
 
1230
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1232
- msgid ""
1233
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1234
- "\t With the standard value 0 the full details are displayed.<br />\n"
1235
- "\t This attribute has no influence if only a single event is shown."
1236
- msgstr ""
1237
-
1238
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1239
  msgid ""
1240
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1241
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1242
  msgstr ""
1243
 
1244
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1245
  msgid "Event Information:"
1246
  msgstr "Termin Informationen:"
1247
 
1248
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1249
  msgid "(more&hellip;)"
1250
  msgstr ""
1251
 
1252
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1253
  msgid "This option defines the displayed title for the widget."
1254
  msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
1255
 
1256
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1257
  msgid "Category Filter"
1258
  msgstr "Kategoriefilter"
1259
 
1260
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1261
  msgid ""
1262
  "This option defines the categories of which events are shown. The standard "
1263
  "is all or an empty string to show all events. Specify a category slug or a "
@@ -1266,127 +1291,139 @@ msgid ""
1266
  "all possibilities."
1267
  msgstr "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten."
1268
 
1269
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1270
  msgid "Number of listed events"
1271
  msgstr "Anzahl der angezeigten Termine"
1272
 
1273
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1274
  msgid "The number of upcoming events to display"
1275
  msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
1276
 
1277
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1278
  msgid "Truncate event title to"
1279
  msgstr "Kürze den Termin-Titel auf"
1280
 
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1284
  msgid "characters"
1285
  msgstr "Buchstaben"
1286
 
1287
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
1288
  msgid ""
1289
- "This option defines the number of displayed characters for the event title. "
1290
- "Set this value to 0 to view the full title."
1291
- msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest. Wird der Wert auf 0 gesetzt, wird der vollständige Titel angezeigt."
1292
 
1293
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
 
 
 
 
 
 
 
 
1294
  msgid "Show event starttime"
1295
  msgstr "Zeige die Termin-Uhrzeit"
1296
 
1297
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1298
  msgid "This option defines if the event start time will be displayed."
1299
  msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
1300
 
1301
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1302
  msgid "Show event location"
1303
  msgstr "Zeige den Termin-Ort"
1304
 
1305
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1306
  msgid "This option defines if the event location will be displayed."
1307
  msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
1308
 
1309
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1310
  msgid "Truncate location to"
1311
  msgstr "Kürze den Ort auf"
1312
 
1313
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1314
  msgid ""
1315
  "If the event location is diplayed this option defines the number of "
1316
- "displayed characters. Set this value to 0 to view the full location."
1317
- msgstr "Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest. Wird der Wert auf 0 gesetzt, dann wird die vollständige Beschreibung angezeigt."
1318
 
1319
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1320
  msgid "Show event details"
1321
  msgstr "Zeige die Termin-Beschreibung"
1322
 
1323
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1324
  msgid "This option defines if the event details will be displayed."
1325
  msgstr "Diese Option definiert, ob die Beschreibung des Termins angezeigt wird."
1326
 
1327
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1328
  msgid "Truncate details to"
1329
  msgstr "Kürze Beschreibung auf"
1330
 
1331
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1332
  msgid ""
1333
  "If the event details are diplayed this option defines the number of diplayed"
1334
- " characters. Set this value to 0 to view the full details."
1335
- msgstr "Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest. Wird der Wert auf 0 gesetzt, dann wird die vollständige Beschreibung angezeigt."
 
 
 
 
 
1336
 
1337
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1338
  msgid "URL to the linked Event List page"
1339
  msgstr "URL zur verlinkten Event List Seite"
1340
 
1341
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1342
  msgid ""
1343
  "This option defines the url to the linked Event List page. This option is "
1344
  "required if you want to use one of the options below."
1345
  msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
1346
 
1347
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1348
  msgid "Shortcode ID on linked page"
1349
  msgstr "Shortcode ID auf der verlinkten Seite"
1350
 
1351
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1352
  msgid ""
1353
  "This option defines the shortcode-id for the Event List on the linked page. "
1354
  "Normally the standard value 1 is correct, you only have to change it if you "
1355
  "use multiple event-list shortcodes on the linked page."
1356
  msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
1357
 
1358
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1359
  msgid ""
1360
  "With this option you can add a link to the single event page for every "
1361
  "displayed event. You have to specify the url to the page and the shortcode "
1362
  "id option if you want to use it."
1363
  msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
1364
 
1365
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1366
  msgid ""
1367
  "With this option you can add a link to the event-list page below the "
1368
  "diplayed events. You have to specify the url to page option if you want to "
1369
  "use it."
1370
  msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
1371
 
1372
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1373
  msgid "Caption for the link"
1374
  msgstr "Anzuzeigender Text für den Link"
1375
 
1376
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1377
  msgid ""
1378
  "This option defines the text for the link to the Event List page if the "
1379
  "approriate option is selected."
1380
  msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
1381
 
1382
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1383
  msgid "With this widget a list of upcoming events can be displayed."
1384
  msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
1385
 
1386
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1387
  msgid "Upcoming events"
1388
  msgstr "Anstehende Termine"
1389
 
1390
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1391
  msgid "show events page"
1392
  msgstr "öffne den Kalender"
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
6
+ # Lasse Schulz <lasse.schulz@netthelp.de>, 2016
7
+ # Marco Schwarzenbach <sp1n@gmx.ch>, 2016
8
  # mibuthu, 2015
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
14
+ "PO-Revision-Date: 2017-01-07 20:37+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: de_DE\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
24
  msgid "Event List"
25
  msgstr "Event List"
26
 
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
29
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
30
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
31
  msgid "Events"
32
  msgstr "Termine"
33
 
34
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
35
  msgid "All Events"
36
  msgstr "Alle Termine"
37
 
38
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
39
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
40
  msgid "Add New Event"
41
  msgstr "Neuen Termin erstellen"
42
 
43
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
44
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
45
  msgid "Add New"
46
  msgstr "Erstellen"
47
 
48
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
49
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
50
  msgid "Event List Categories"
51
  msgstr "Event List Kategorien"
52
 
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
55
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
56
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
57
  msgid "Categories"
58
  msgstr "Kategorien"
59
 
60
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
61
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
62
  msgid "Event List Settings"
63
  msgstr "Event List Einstellungen"
64
 
65
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
66
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
67
  msgid "Settings"
68
  msgstr "Einstellungen"
69
 
70
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
71
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
72
  msgid "About Event List"
73
  msgstr "Informationen zu Event List"
74
 
75
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
76
  msgid "About"
77
  msgstr "Informationen"
78
 
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
83
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
84
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
85
  msgid "You do not have sufficient permissions to access this page."
86
+ msgstr "Sie haben nicht die Berechtigung dazu, um auf diese Seite zuzugreifen."
87
 
88
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
89
  msgid "Help and Instructions"
90
  msgstr "Hilfe und Anleitungen"
91
 
92
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
93
  #, php-format
94
  msgid "You can manage your events %1$shere%2$s"
95
  msgstr "Die Termine können %1$shier%2$s verwaltet werden"
96
 
97
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
98
  msgid "To show the events on your site you have 2 possibilities"
99
  msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
100
 
101
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
102
  #, php-format
103
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
104
  msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
105
 
106
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
107
  #, php-format
108
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
109
  msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
110
 
111
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
112
  msgid ""
113
  "The displayed events and their style can be modified with the available "
114
  "widget settings and the available attributes for the shortcode."
115
  msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
116
 
117
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
118
  msgid ""
119
  "A list of all available shortcode attributes with their description is "
120
  "available below."
121
  msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist weiter unten verfügbar."
122
 
123
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
124
  msgid "The available widget options are described in their tooltip text."
125
  msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
126
 
127
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
128
  #, php-format
129
  msgid ""
130
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
131
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
132
  msgstr "Beim Einsatz des Widgets muss beachtet werden, dass die URL zur verlinkten Event List Seite angegeben werden muss, falls eine Verlinkungsoption ausgewählt wird (%1$s oder %2$s). Dies ist erforderlich weil das Widget nicht wissen kann auf welcher Seite oder in welchem Beitrag der Shortcode verwendet wird, zudem verlinkt werden soll."
133
 
134
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
135
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
136
  msgid "Add links to the single events"
137
  msgstr "Füge Links zu den einzelnen Terminen ein"
138
 
139
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
140
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
141
  msgid "Add a link to the Event List page"
142
  msgstr "Füge einen Link zur Event List Seite hinzu"
143
 
144
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
145
  #, php-format
146
  msgid ""
147
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
149
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
150
  msgstr "Zusätzlich muss die korrekte Shortcode ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt, welcher Shortcode auf der verlinkten Seite oder dem verlinkten Beitrag verwendet werden soll, wenn mehrere Shortcodes vorhanden sind. Der Standardwert von \"1\" ist somit normalerweise o.k., aber falls erforderlich kann die korrekte ID über die URL eines Termin-Links auf der verlinkten Seite herausgefunden werden. Die ID wird am Ende des URL-Parameternamens angehängt (z.B. %1$s)."
151
 
152
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
153
  #, php-format
154
  msgid ""
155
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
156
  "just the way you want."
157
  msgstr "Bitte werfen Sie auch einen Blick auf die %1$sEinstellungsseite%2$s in der Sie das Plugin nach Ihren Vorstellungen anpassen können."
158
 
159
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
160
  msgid "Shortcode Attributes"
161
  msgstr "Shortcode Attribute"
162
 
163
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
164
  msgid ""
165
  "You have the possibility to modify the output if you add some of the "
166
  "following attributes to the shortcode."
167
  msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
168
 
169
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
170
  #, php-format
171
  msgid ""
172
  "You can combine and add as much attributes as you want. E.g. the shortcode "
173
  "including the attributes %1$s and %2$s would looks like this:"
174
  msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
175
 
176
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
177
  msgid ""
178
  "Below you can find a list of all supported attributes with their "
179
  "descriptions and available options:"
180
  msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
181
 
182
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
183
  msgid "Attribute name"
184
  msgstr "Name"
185
 
186
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
187
  msgid "Value options"
188
  msgstr "zulässige Werte"
189
 
190
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
191
  msgid "Default value"
192
  msgstr "Standard-Wert"
193
 
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
195
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
196
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
197
  msgid "Description"
198
  msgstr "Beschreibung"
199
 
200
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
201
  msgid "Filter Syntax"
202
  msgstr "Filter Syntax"
203
 
204
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
205
  msgid ""
206
  "For date and cat filters you can specify complex filters with the following "
207
  "syntax:"
208
  msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
209
 
210
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
211
  #, php-format
212
  msgid ""
213
  "You can use %1$s and %2$s connections to define complex filters. "
214
  "Additionally you can set brackets %3$s for nested queries."
215
  msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
216
 
217
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
218
  msgid "AND"
219
  msgstr "UND"
220
 
221
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
222
  msgid "OR"
223
  msgstr "ODER"
224
 
225
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
226
  msgid "or"
227
  msgstr "oder"
228
 
229
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
230
  msgid "and"
231
  msgstr "und"
232
 
233
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
234
  msgid "Examples for cat filters:"
235
  msgstr "Beispiele für Kategorie-Filter:"
236
 
237
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
238
  #, php-format
239
  msgid "Show all events with category %1$s."
240
  msgstr "Zeige alle Termine mit der Kategorie %1$s."
241
 
242
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
243
  #, php-format
244
  msgid "Show all events with category %1$s or %2$s."
245
  msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
246
 
247
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
248
  #, php-format
249
  msgid ""
250
  "Show all events with category %1$s and all events where category %2$s as "
251
  "well as %3$s is selected."
252
  msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
253
 
254
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
255
  msgid "Available Date Formats"
256
  msgstr "Verfügbare Datumsformate"
257
 
258
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
259
  msgid "For date filters you can use the following date formats:"
260
  msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
261
 
262
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
263
  msgid "Available Date Range Formats"
264
  msgstr "Verfügbare Datumsbereichs-Formate"
265
 
266
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
267
  msgid "For date filters you can use the following daterange formats:"
268
  msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
269
 
270
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
271
  msgid "Value"
272
  msgstr "Wert"
273
 
274
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
275
  msgid "Example"
276
  msgstr "Beispiel"
277
 
278
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
279
  msgid "Edit Category"
280
  msgstr "Kategorie bearbeiten"
281
 
282
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
283
  msgid "Update Category"
284
  msgstr "Kategorie aktualisieren"
285
 
286
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
287
  msgid "Add New Category"
288
  msgstr "Neue Kategorie erstellen"
289
 
290
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
291
  #, php-format
292
  msgid "Category \"%s\" deleted."
293
  msgstr "Kategorie \"%s\" gelöscht."
294
 
295
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
296
  #, php-format
297
  msgid "This Category was also removed from %d events."
298
  msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
299
 
300
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
301
  #, php-format
302
  msgid "Error while deleting category \"%s\""
303
  msgstr "Fehler beim Löschen der Kategorie \"%s\""
304
 
305
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
306
  msgid "Sync with post categories enabled."
307
  msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
308
 
309
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
310
  msgid "Sync with post categories disabled."
311
  msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
312
 
313
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
314
  msgid "Manual sync with post categories sucessfully finished."
315
  msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
316
 
317
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
318
  #, php-format
319
  msgid "New Category \"%s\" was added"
320
  msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
321
 
322
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
323
  #, php-format
324
  msgid "Error: New Category \"%s\" could not be added"
325
  msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
326
 
327
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
328
  #, php-format
329
  msgid "Category \"%s\" was modified"
330
  msgstr "Kategorie \"%s\" wurde geändert"
331
 
332
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
333
  #, php-format
334
  msgid "Error: Category \"%s\" could not be modified"
335
  msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
336
 
337
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
338
  msgid ""
339
  "Categories are automatically synced with the post categories.<br />\n"
340
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
341
  "\t\t\t If you want to manually edit the categories you have to disable this option."
342
  msgstr ""
343
 
344
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
345
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
346
  msgid "Name"
347
  msgstr ""
348
 
349
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
350
  msgid "The name is how it appears on your site."
351
  msgstr "Dieser Name wird dann auf der Webseite angezeigt."
352
 
353
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
354
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
355
  msgid "Slug"
356
  msgstr ""
357
 
358
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
359
  msgid ""
360
  "The “slug” is the URL-friendly version of the name. It is usually all "
361
  "lowercase and contains only letters, numbers, and hyphens."
362
  msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
363
 
364
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
365
  msgid "Parent"
366
  msgstr "Parent"
367
 
368
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
369
  msgid "None"
370
  msgstr ""
371
 
372
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
373
  msgid ""
374
  "Categories can have a hierarchy. You might have a Jazz category, and under "
375
  "that have children categories for Bebop and Big Band. Totally optional."
376
  msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
377
 
378
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
379
  msgid "Apply"
380
  msgstr "Anwenden"
381
 
382
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
383
  msgid "Do a manual sync with post categories"
384
  msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
385
 
386
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
387
  msgid "Import Events"
388
  msgstr "Importiere Termine"
389
 
390
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
391
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
392
  msgid "Step"
393
  msgstr ""
394
 
395
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
396
  msgid "Set import file and options"
397
  msgstr ""
398
 
399
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
400
  msgid "Import Event Data"
401
  msgstr "Importiere Termin-Daten"
402
 
403
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
404
  msgid "Example file"
405
  msgstr "Beispieldatei"
406
 
407
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
408
  #, php-format
409
  msgid ""
410
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
411
+ msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (CSV Trennzeichen ist ein Komma!)"
412
 
413
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
414
  msgid "Note"
415
  msgstr "Achtung"
416
 
417
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
418
  msgid ""
419
  "Do not change the column header and separator line (first two lines), "
420
  "otherwise the import will fail!"
421
  msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
422
 
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
424
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
425
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
426
  msgid "Sorry, there has been an error."
427
  msgstr "Entschuldigung, ein Fehler ist aufgetreten."
428
 
429
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
430
  msgid "The file does not exist, please try again."
431
  msgstr "Die Datei existiert nicht, bitte erneut versuchen."
432
 
433
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
434
  msgid "The file is not a CSV file."
435
  msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
436
 
437
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
438
  msgid "Event review and category selection"
439
  msgstr ""
440
 
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
442
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
443
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
444
  msgid "Import"
445
  msgstr "Importieren"
446
 
447
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
448
  msgid "Import with errors!"
449
  msgstr "Import mit Fehler!"
450
 
451
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
452
  #, php-format
453
  msgid ""
454
  "An error occurred during import! Please send your import file to %1$sthe "
455
  "administrator%2$s for analysis."
456
  msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
457
 
458
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
459
  msgid "Import successful!"
460
  msgstr "Importieren erfolgreich abgeschlossen!"
461
 
462
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
463
  msgid "Go back to All Events"
464
  msgstr "Gehe zurück zu Alle Termine"
465
 
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
467
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
468
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
469
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
470
  msgid "Title"
471
  msgstr "Titel"
472
 
473
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
474
  msgid "Start Date"
475
  msgstr "Start-Datum"
476
 
477
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
478
  msgid "End Date"
479
  msgstr "End-Datum"
480
 
481
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
482
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
483
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
484
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
485
  msgid "Time"
486
  msgstr "Uhrzeit"
487
 
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
489
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
490
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
491
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
492
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
493
  msgid "Location"
494
  msgstr "Ort"
495
 
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
497
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
498
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
499
  msgid "Details"
500
  msgstr "Beschreibung"
501
 
502
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
503
  msgid "There was an error when reading this CSV file."
504
  msgstr "Fehler beim Lesen der CSV-Datei."
505
 
506
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
507
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
508
  msgid "Cancel"
509
  msgstr "Abbrechen"
510
 
511
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
512
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
513
  msgid "No categories available."
514
  msgstr "Keine Kategorien verfügbar."
515
 
516
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
517
  msgid "Edit Event"
518
  msgstr "Termin bearbeiten"
519
 
520
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
521
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
522
  msgid "Duplicate"
523
  msgstr "Duplizieren"
524
 
525
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
526
  #, php-format
527
  msgid "Duplicate of event id:%d"
528
  msgstr "Duplikat der Termin-ID: %d"
529
 
530
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
531
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
532
  msgid "required"
533
  msgstr "erforderlich"
534
 
535
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
536
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
537
  msgid "Date"
538
  msgstr "Datum"
539
 
540
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
541
  msgid "Multi-Day Event"
542
  msgstr "Mehrtägiger Termin"
543
 
544
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
545
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
546
  msgid "Publish"
547
  msgstr "Veröffentlichen"
548
 
549
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
550
  msgid "Update"
551
  msgstr "Aktualisieren"
552
 
553
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
554
  msgid "Goto Category Settings"
555
  msgstr "Gehe zu Kategorie-Einstellungen"
556
 
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
559
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
560
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
561
  msgid "Y/m/d"
562
+ msgstr "J/M/T"
563
 
564
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
565
  msgid "Settings saved."
566
  msgstr "Einstellungen gespeichert."
567
 
568
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
569
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
570
  msgid "General"
571
  msgstr "Allgemein"
572
 
573
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
574
  msgid "Frontend Settings"
575
  msgstr "Frontend Einstellungen"
576
 
577
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
578
  msgid "Admin Page Settings"
579
  msgstr "Admin-Seiten Einstellungen"
580
 
581
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
582
  msgid "Feed Settings"
583
  msgstr "Feed Einstellungen"
584
 
585
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
586
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
587
  msgid "event"
588
  msgstr "Termin"
589
 
590
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
591
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
592
  msgid "events"
593
  msgstr "Termine"
594
 
595
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
596
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
597
  msgid "Edit"
598
  msgstr "Bearbeiten"
599
 
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
602
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
603
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
604
  msgid "Delete"
605
  msgstr "Löschen"
606
 
607
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
608
  msgid "Author"
609
  msgstr "Autor"
610
 
611
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
612
  msgid "Published"
613
  msgstr "Veröffentlicht"
614
 
615
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
616
  msgid "Filter"
617
  msgstr "Auswahl einschränken"
618
 
619
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
620
  #, php-format
621
  msgid "%s ago"
622
  msgstr "vor %s"
623
 
624
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
625
  msgid "Y/m/d g:i:s A"
626
  msgstr ""
627
 
628
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
629
  msgid "Year"
630
  msgstr "Jahr"
631
 
632
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
633
  msgid "A year can be specified in 4 digit format."
634
  msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
635
 
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
637
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
638
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
639
  #, php-format
640
  msgid ""
641
  "For a start date filter the first day of %1$s is used, in an end date the "
642
  "last day."
643
  msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
644
 
645
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
646
  msgid "the resulting year"
647
  msgstr "des entsprechenden Jahres"
648
 
649
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
650
  msgid "Month"
651
  msgstr "Monat"
652
 
653
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
654
  msgid ""
655
  "A month can be specified with 4 digits for the year and 2 digits for the "
656
  "month, seperated by a hyphen (-)."
657
  msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
658
 
659
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
660
  msgid "the resulting month"
661
  msgstr "des entsprechenden Monats"
662
 
663
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
664
  msgid "Day"
665
  msgstr "Tag"
666
 
667
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
668
  msgid ""
669
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
670
  " month and 2 digets for the day, seperated by hyphens (-)."
671
  msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
672
 
673
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
674
  msgid "Relative Year"
675
  msgstr "Relatives Jahr"
676
 
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
679
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
680
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
681
  #, php-format
682
  msgid "%1$s from now can be specified in the following notation: %2$s"
683
  msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
684
 
685
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
686
  msgid "A relative year"
687
  msgstr "Ein relatives Jahr"
688
 
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
691
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
692
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
693
  #, php-format
694
  msgid ""
695
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
696
  "%3$s or %4$s attached (see also the example below)."
697
  msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
698
 
699
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
700
  msgid "number of years"
701
  msgstr "Jahresanzahl"
702
 
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
705
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
706
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
707
  #, php-format
708
  msgid "Additionally the following values are available: %1$s"
709
  msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
710
 
711
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
712
  msgid "Relative Month"
713
  msgstr "Relativer Monat"
714
 
715
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
716
  msgid "A relative month"
717
  msgstr "Ein relativer Monat"
718
 
719
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
720
  msgid "number of months"
721
  msgstr "Monatsanzahl"
722
 
723
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
724
  msgid "Relative Week"
725
  msgstr "Relative Woche"
726
 
727
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
728
  msgid "A relative week"
729
  msgstr "Eine relative Woche"
730
 
731
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
732
  msgid "number of weeks"
733
  msgstr "Wochenanzahl"
734
 
735
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
736
  msgid "the resulting week"
737
  msgstr "der entsprechende Woche"
738
 
739
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
740
  #, php-format
741
  msgid ""
742
  "The first day of the week is depending on the option %1$s which can be found"
743
  " and changed in %2$s."
744
  msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
745
 
746
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
747
  msgid "Week Starts On"
748
  msgstr "Woche beginnt am"
749
 
750
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
751
  msgid "Relative Day"
752
  msgstr "Relativer Tag"
753
 
754
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
755
  msgid "A relative day"
756
  msgstr "Ein relativer Tag"
757
 
758
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
759
  msgid "number of days"
760
  msgstr "Tagesanzahl"
761
 
762
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
763
  msgid "Date range"
764
  msgstr "Datumsbereich"
765
 
766
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
767
  msgid ""
768
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
769
  "\t For the start and end date any available date format can be used."
770
  msgstr "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
771
 
772
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
773
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
774
  msgid "All"
775
  msgstr "Alle"
776
 
777
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
778
  msgid "This value defines a range without any limits."
779
  msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
780
 
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
782
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
783
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
784
  #, php-format
785
  msgid "The corresponding date_range format is: %1$s"
786
  msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
787
 
788
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
789
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
790
  msgid "Upcoming"
791
  msgstr "Anstehend"
792
 
793
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
794
  msgid "This value defines a range from the actual day to the future."
795
  msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
796
 
797
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
798
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
799
  msgid "Past"
800
  msgstr "Beendet"
801
 
802
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
803
  msgid "This value defines a range from the past to the previous day."
804
  msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
805
 
806
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
807
  msgid "Show all dates"
808
  msgstr "Zeige alle Datumsbereiche"
809
 
810
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
811
  msgid "Show all categories"
812
  msgstr "Zeige alle Kategorien"
813
 
814
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
815
  msgid "Event Categories"
816
  msgstr "Termin Kategorien"
817
 
818
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
819
  msgid "This option specifies all event category data."
820
  msgstr ""
821
 
822
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
823
  msgid "Sync Categories"
824
  msgstr "Synchronisiere Kategorien"
825
 
826
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
827
  msgid "Keep event categories in sync with post categories automatically"
828
  msgstr "Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron"
829
 
830
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
831
  msgid "Attention"
832
  msgstr "Achtung"
833
 
834
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
835
  msgid ""
836
  "Please note that this option will delete all categories which are not "
837
  "available in the post categories! Existing Categories with the same slug "
838
  "will be updated."
839
  msgstr "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert."
840
 
841
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
842
  msgid "CSV File to import"
843
+ msgstr "CSV Datei zum Importieren"
844
 
845
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
846
  msgid "Please select the file which contains the event data in CSV format."
847
+ msgstr "Bitte wähle die Datei aus, welche die Eventdaten im CSV Format enthält."
848
 
849
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
850
  msgid "Used date format"
851
+ msgstr "Verwendetes Datumsformat"
852
 
853
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
854
  msgid ""
855
  "With this option the used date format for event start and end date given in "
856
  "the CSV file can be specified."
857
+ msgstr "Mit dieser Option kann das in der CSV Datei angegebene Datumsformat für das Event Start- und Enddatum angegeben werden."
858
 
859
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
860
  msgid "Text for no events"
861
  msgstr "Text für keine Termine"
862
 
863
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
864
  msgid ""
865
  "This option defines the displayed text when no events are available for the "
866
  "selected view."
867
  msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
868
 
869
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
870
  msgid "Multiday filter range"
871
  msgstr "Mehrtägiger Bereich für Filter"
872
 
873
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
874
  msgid "Use the complete event range in the date filter"
875
  msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
876
 
877
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
878
  msgid ""
879
  "This option defines if the complete range of a multiday event shall be "
880
  "considered in the date filter."
881
  msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
882
 
883
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
884
  msgid ""
885
  "If disabled, only the start day of an event is considered in the filter."
886
  msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
887
 
888
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
889
  msgid ""
890
  "For an example multiday event which started yesterday and ends tomorrow this"
891
  " means, that it is displayed in umcoming dates when this option is enabled, "
892
  "but it is hidden when the option is disabled."
893
  msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
894
 
895
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
896
  msgid "Date display"
897
  msgstr "Datumsanzeige"
898
 
899
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
900
  msgid "Show the date only once per day"
901
  msgstr "Zeige das Datum nur einmal pro Tag"
902
 
903
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
904
  msgid ""
905
  "With this option enabled the date is only displayed once per day if more "
906
  "than one event is available on the same day."
907
  msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
908
 
909
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
910
  msgid ""
911
  "If enabled, the events are ordered in a different way (end date before start"
912
  " time) to allow using the same date for as much events as possible."
913
  msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
914
 
915
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
916
  msgid "HTML tags"
917
  msgstr "HTML-Tags"
918
 
919
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
920
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
921
  #, php-format
922
  msgid "Allow HTML tags in the event field \"%1$s\""
923
  msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
924
 
925
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
926
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
927
  #, php-format
928
  msgid ""
929
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
930
  msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
931
 
932
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
933
  msgid "Text for \"Show details\""
934
  msgstr "Text für \"Zeige Beschreibung\""
935
 
936
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
937
  msgid ""
938
  "With this option the displayed text for the link to show the event details "
939
  "can be changed, when collapsing is enabled."
940
  msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Anzeigen der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
941
 
942
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
943
  msgid "Text for \"Hide details\""
944
  msgstr "Text für \"Verstecke Beschreibung\""
945
 
946
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
947
  msgid ""
948
  "With this option the displayed text for the link to hide the event details "
949
  "can be changed, when collapsing is enabled."
950
  msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Verstecken der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
951
 
952
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
953
  msgid "Disable CSS file"
954
  msgstr "Deaktiviere die CSS-Datei"
955
 
956
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
957
  #, php-format
958
  msgid "Disable the %1$s file."
959
  msgstr "Deaktiviere die %1$s Datei."
960
 
961
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
962
  #, php-format
963
  msgid "With this option you can disable the inclusion of the %1$s file."
964
  msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
965
 
966
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
967
  msgid ""
968
  "This normally only make sense if you have css conflicts with your theme and "
969
  "want to set all required css styles somewhere else (e.g. in the theme css)."
970
  msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
971
 
972
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
973
  msgid "Date format in edit form"
974
  msgstr "Datumsformat im Formular"
975
 
976
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
977
  msgid ""
978
  "This option sets the displayed date format for the event date fields in the "
979
  "event new / edit form."
980
  msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
981
 
982
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
983
  msgid "The standard is an empty string to use the Wordpress standard setting."
984
  msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
985
 
986
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
987
  #, php-format
988
  msgid ""
989
  "All available options to specify the date format can be found %1$shere%2$s."
990
  msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
991
 
992
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
993
  msgid "Enable RSS feed"
994
+ msgstr "RSS feed aktivieren"
995
 
996
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
997
  msgid "Enable support for an event RSS feed"
998
  msgstr ""
999
 
1000
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
1001
  msgid ""
1002
  "This option activates a RSS feed for the events.<br />\n"
1003
  "\t You have to enable this option if you want to use one of the RSS feed features."
1004
  msgstr ""
1005
 
1006
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1007
  msgid "Feed name"
1008
  msgstr ""
1009
 
1010
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1011
  msgid ""
1012
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1013
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1014
  msgstr ""
1015
 
1016
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1017
  msgid "Feed Description"
1018
  msgstr ""
1019
 
1020
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1021
  msgid ""
1022
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1023
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1024
  msgstr ""
1025
 
1026
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1027
  msgid "Listed events"
1028
  msgstr ""
1029
 
1030
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1031
  msgid "Only show upcoming events in feed"
1032
+ msgstr "Zeige nur kommende Events im Feed an"
1033
 
1034
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1035
  msgid ""
1036
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1037
  "\t If disabled all events (upcoming and past) will be listed."
1038
  msgstr ""
1039
 
1040
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1041
  msgid "Add RSS feed link in head"
1042
  msgstr ""
1043
 
1044
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1045
  msgid "Add RSS feed link in the html head"
1046
  msgstr ""
1047
 
1048
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1049
  msgid ""
1050
  "This option adds a RSS feed in the html head for the events.<br />\n"
1051
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1054
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1055
  msgstr ""
1056
 
1057
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1058
  msgid "Position of the RSS feed link"
1059
+ msgstr "Position des RSS feed Links"
1060
 
1061
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1062
  msgid ""
1063
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1064
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1065
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1066
  msgstr ""
1067
 
1068
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1069
  msgid "Align of the RSS feed link"
1070
  msgstr ""
1071
 
1072
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1073
  msgid ""
1074
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1075
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1076
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1077
  msgstr ""
1078
 
1079
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1080
  msgid "Feed link text"
1081
+ msgstr "Feed Link Text"
1082
 
1083
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1084
  msgid ""
1085
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1086
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1087
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1088
  msgstr ""
1089
 
1090
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1091
  msgid "Feed link image"
1092
  msgstr ""
1093
 
1094
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1095
  msgid "Show rss image in feed link"
1096
  msgstr ""
1097
 
1098
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1099
  msgid ""
1100
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1101
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1102
  msgstr ""
1103
 
1104
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1105
  msgid "Show details"
1106
  msgstr "Zeige Beschreibung"
1107
 
1108
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1109
  msgid "Hide details"
1110
  msgstr "Verstecke Beschreibung"
1111
 
1112
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1113
  msgid ""
1114
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1115
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1116
  msgstr ""
1117
 
1118
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1119
  msgid ""
1120
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1121
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1122
  msgstr ""
1123
 
1124
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1125
  msgid ""
1126
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1127
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1128
  msgstr ""
1129
 
1130
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1131
  msgid ""
1132
  "This attribute specifies the initial order of the events.<br />\n"
1133
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1134
  msgstr ""
1135
 
1136
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1137
  msgid ""
1138
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1139
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1141
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1142
  msgstr ""
1143
 
1144
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1145
  msgid ""
1146
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1147
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1148
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1149
  msgstr ""
1150
 
1151
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1152
  msgid ""
1153
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1154
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1155
  "\t Please not that in the actual version there is no pagination of the events available."
1156
  msgstr ""
1157
 
1158
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1159
  msgid ""
1160
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1161
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1162
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1163
  msgstr ""
1164
 
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1166
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1167
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1168
+ msgid "number"
1169
+ msgstr ""
1170
+
1171
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1172
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1173
+ msgid ""
1174
+ "This attribute specifies if the title should be truncated to the given "
1175
+ "number of characters in the event list."
1176
+ msgstr ""
1177
+
1178
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1179
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1180
+ #, php-format
1181
+ msgid ""
1182
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1183
+ "is automatically truncated via css."
1184
+ msgstr ""
1185
+
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1187
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1188
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1189
+ msgid "This attribute has no influence if only a single event is shown."
1190
+ msgstr ""
1191
+
1192
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1193
  msgid ""
1194
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1195
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1196
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1197
  msgstr ""
1198
 
1199
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1200
  msgid ""
1201
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1202
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1203
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1204
  msgstr ""
1205
 
1206
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1207
  msgid ""
1208
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1209
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1210
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1211
  msgstr ""
1212
 
1213
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1214
  msgid ""
1215
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1216
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1217
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1218
  msgstr ""
1219
 
1220
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1221
  msgid ""
1222
+ "This attribute specifies if the details should be truncate to the given "
1223
+ "number of characters in the event list."
1224
+ msgstr ""
1225
+
1226
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1227
+ #, php-format
1228
+ msgid "With the standard value %1$s the full text is displayed."
1229
  msgstr ""
1230
 
1231
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1232
  msgid ""
1233
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1234
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1236
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1237
  msgstr ""
1238
 
1239
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1240
  msgid ""
1241
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1242
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1244
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1245
  msgstr ""
1246
 
1247
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1248
  msgid ""
1249
  "This attribute specifies if a rss feed link should be added.<br />\n"
1250
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1253
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1254
  msgstr ""
1255
 
1256
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1257
  msgid ""
1258
  "This attribute specifies the page or post url for event links.<br />\n"
1259
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1260
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1261
  msgstr ""
1262
 
1263
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1264
  msgid ""
1265
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1266
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1267
  msgstr ""
1268
 
1269
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1270
  msgid "Event Information:"
1271
  msgstr "Termin Informationen:"
1272
 
1273
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1274
  msgid "(more&hellip;)"
1275
  msgstr ""
1276
 
1277
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1278
  msgid "This option defines the displayed title for the widget."
1279
  msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
1280
 
1281
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1282
  msgid "Category Filter"
1283
  msgstr "Kategoriefilter"
1284
 
1285
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1286
  msgid ""
1287
  "This option defines the categories of which events are shown. The standard "
1288
  "is all or an empty string to show all events. Specify a category slug or a "
1291
  "all possibilities."
1292
  msgstr "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten."
1293
 
1294
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1295
  msgid "Number of listed events"
1296
  msgstr "Anzahl der angezeigten Termine"
1297
 
1298
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1299
  msgid "The number of upcoming events to display"
1300
  msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
1301
 
1302
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1303
  msgid "Truncate event title to"
1304
  msgstr "Kürze den Termin-Titel auf"
1305
 
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1307
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1308
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1309
  msgid "characters"
1310
  msgstr "Buchstaben"
1311
 
1312
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1313
  msgid ""
1314
+ "This option defines the number of displayed characters for the event title."
1315
+ msgstr ""
 
1316
 
1317
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1318
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1319
+ #, php-format
1320
+ msgid ""
1321
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1322
+ "automatically truncate the text via css."
1323
+ msgstr ""
1324
+
1325
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1326
  msgid "Show event starttime"
1327
  msgstr "Zeige die Termin-Uhrzeit"
1328
 
1329
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1330
  msgid "This option defines if the event start time will be displayed."
1331
  msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
1332
 
1333
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1334
  msgid "Show event location"
1335
  msgstr "Zeige den Termin-Ort"
1336
 
1337
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1338
  msgid "This option defines if the event location will be displayed."
1339
  msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
1340
 
1341
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1342
  msgid "Truncate location to"
1343
  msgstr "Kürze den Ort auf"
1344
 
1345
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1346
  msgid ""
1347
  "If the event location is diplayed this option defines the number of "
1348
+ "displayed characters."
1349
+ msgstr ""
1350
 
1351
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1352
  msgid "Show event details"
1353
  msgstr "Zeige die Termin-Beschreibung"
1354
 
1355
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1356
  msgid "This option defines if the event details will be displayed."
1357
  msgstr "Diese Option definiert, ob die Beschreibung des Termins angezeigt wird."
1358
 
1359
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1360
  msgid "Truncate details to"
1361
  msgstr "Kürze Beschreibung auf"
1362
 
1363
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1364
  msgid ""
1365
  "If the event details are diplayed this option defines the number of diplayed"
1366
+ " characters."
1367
+ msgstr ""
1368
+
1369
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1370
+ #, php-format
1371
+ msgid "Set this value to %1$s to view the full text."
1372
+ msgstr ""
1373
 
1374
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1375
  msgid "URL to the linked Event List page"
1376
  msgstr "URL zur verlinkten Event List Seite"
1377
 
1378
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1379
  msgid ""
1380
  "This option defines the url to the linked Event List page. This option is "
1381
  "required if you want to use one of the options below."
1382
  msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
1383
 
1384
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1385
  msgid "Shortcode ID on linked page"
1386
  msgstr "Shortcode ID auf der verlinkten Seite"
1387
 
1388
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1389
  msgid ""
1390
  "This option defines the shortcode-id for the Event List on the linked page. "
1391
  "Normally the standard value 1 is correct, you only have to change it if you "
1392
  "use multiple event-list shortcodes on the linked page."
1393
  msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
1394
 
1395
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1396
  msgid ""
1397
  "With this option you can add a link to the single event page for every "
1398
  "displayed event. You have to specify the url to the page and the shortcode "
1399
  "id option if you want to use it."
1400
  msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
1401
 
1402
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1403
  msgid ""
1404
  "With this option you can add a link to the event-list page below the "
1405
  "diplayed events. You have to specify the url to page option if you want to "
1406
  "use it."
1407
  msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
1408
 
1409
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1410
  msgid "Caption for the link"
1411
  msgstr "Anzuzeigender Text für den Link"
1412
 
1413
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1414
  msgid ""
1415
  "This option defines the text for the link to the Event List page if the "
1416
  "approriate option is selected."
1417
  msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
1418
 
1419
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1420
  msgid "With this widget a list of upcoming events can be displayed."
1421
  msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
1422
 
1423
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1424
  msgid "Upcoming events"
1425
  msgstr "Anstehende Termine"
1426
 
1427
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1428
  msgid "show events page"
1429
  msgstr "öffne den Kalender"
languages/event-list-es_AR.mo CHANGED
Binary file
languages/event-list-es_AR.po CHANGED
@@ -1,5 +1,5 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
12
- "PO-Revision-Date: 2015-12-13 20:41+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,128 +18,128 @@ msgstr ""
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Listado de Eventos"
24
 
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Eventos"
31
 
32
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
33
  msgid "All Events"
34
  msgstr "Todos los Eventos"
35
 
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
  msgstr "Agregar un Nuevo Evento"
40
 
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
43
  msgid "Add New"
44
  msgstr "Agregar Nuevo"
45
 
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
  msgstr "Listado de Categorías de Eventos"
50
 
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
55
  msgid "Categories"
56
  msgstr "Categorías"
57
 
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
  msgstr "Configuraciones del Listado de Eventos"
62
 
63
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
64
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
  msgstr "Configuraciones"
67
 
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
  msgstr "Sobre Listado de Eventos"
72
 
73
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
74
  msgid "About"
75
  msgstr "Sobre"
76
 
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
  msgstr "Usted no tiene suficientes permisos para acceder a esta página."
85
 
86
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
  msgstr "Ayuda e Instrucciones"
89
 
90
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
  msgstr "Usted puede administrar sus eventos %1$shere%2$s"
94
 
95
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
  msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades"
98
 
99
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
  msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio"
103
 
104
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
  msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral"
108
 
109
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
  msgstr "El evento listado, y su estilo, pueden ser modificados mediante las configuraciones disponibles del widget, como así tambien los atributos disponibles para su atajo."
114
 
115
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
  msgstr "Un listado de atributos para atajos con sus respectivas descripciones se encuentra disponible abajo."
120
 
121
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
  msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información."
124
 
125
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
  msgstr ""
131
 
132
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
134
  msgid "Add links to the single events"
135
  msgstr ""
136
 
137
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
138
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
139
  msgid "Add a link to the Event List page"
140
  msgstr ""
141
 
142
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -147,903 +147,903 @@ msgid ""
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
  msgstr ""
149
 
150
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
  msgstr ""
156
 
157
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
  msgstr ""
160
 
161
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
  msgstr ""
166
 
167
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
  msgstr ""
173
 
174
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
  msgstr ""
179
 
180
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
  msgstr ""
183
 
184
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
  msgstr ""
187
 
188
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
  msgstr ""
191
 
192
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
195
  msgid "Description"
196
  msgstr "Descripción"
197
 
198
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
  msgstr ""
201
 
202
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
  msgstr ""
207
 
208
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
  msgstr ""
214
 
215
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
216
  msgid "AND"
217
  msgstr ""
218
 
219
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
220
  msgid "OR"
221
  msgstr ""
222
 
223
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
224
  msgid "or"
225
  msgstr ""
226
 
227
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
228
  msgid "and"
229
  msgstr ""
230
 
231
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
  msgstr ""
234
 
235
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
  msgstr ""
239
 
240
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
  msgstr ""
244
 
245
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
  msgstr ""
251
 
252
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
  msgstr ""
255
 
256
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
  msgstr ""
259
 
260
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
  msgstr ""
263
 
264
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
  msgstr ""
267
 
268
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
269
  msgid "Value"
270
  msgstr ""
271
 
272
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
273
  msgid "Example"
274
  msgstr ""
275
 
276
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
  msgstr ""
279
 
280
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
  msgstr ""
283
 
284
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
  msgstr "Agregar una nueva Categoría"
287
 
288
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
  msgstr ""
292
 
293
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
  msgstr ""
297
 
298
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
  msgstr ""
302
 
303
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
  msgstr ""
306
 
307
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
  msgstr ""
310
 
311
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
  msgstr ""
314
 
315
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
  msgstr ""
319
 
320
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
  msgstr ""
324
 
325
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
  msgstr ""
329
 
330
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
  msgstr ""
334
 
335
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
  msgstr ""
341
 
342
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
344
  msgid "Name"
345
  msgstr "Nombre"
346
 
347
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
  msgstr ""
350
 
351
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
353
  msgid "Slug"
354
  msgstr ""
355
 
356
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
  msgstr ""
361
 
362
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
  msgstr ""
365
 
366
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
367
  msgid "None"
368
  msgstr "Ninguno"
369
 
370
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
  msgstr ""
375
 
376
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
  msgstr "Aplicar"
379
 
380
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
  msgstr ""
383
 
384
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
  msgstr "Importar Eventos"
387
 
388
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
390
  msgid "Step"
391
  msgstr ""
392
 
393
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
  msgstr ""
396
 
397
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
  msgstr ""
400
 
401
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
  msgstr ""
404
 
405
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
  msgstr ""
410
 
411
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
412
  msgid "Note"
413
  msgstr ""
414
 
415
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
  msgstr ""
420
 
421
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
  msgstr ""
426
 
427
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
  msgstr ""
430
 
431
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
  msgstr ""
434
 
435
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
  msgstr ""
438
 
439
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
442
  msgid "Import"
443
  msgstr "Importar"
444
 
445
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
  msgstr ""
448
 
449
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
  msgstr ""
455
 
456
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
  msgstr ""
459
 
460
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
  msgstr ""
463
 
464
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
467
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
468
  msgid "Title"
469
  msgstr "Título"
470
 
471
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
  msgstr ""
474
 
475
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
  msgstr ""
478
 
479
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
481
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
483
  msgid "Time"
484
  msgstr ""
485
 
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
489
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
491
  msgid "Location"
492
  msgstr ""
493
 
494
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
497
  msgid "Details"
498
  msgstr "Detalles"
499
 
500
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
  msgstr ""
503
 
504
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
  msgstr "Cancelar"
508
 
509
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
  msgstr ""
513
 
514
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
515
  msgid "Edit Event"
516
  msgstr "Editar Evento"
517
 
518
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
  msgstr "Duplicar"
522
 
523
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
  msgstr ""
527
 
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
530
  msgid "required"
531
  msgstr ""
532
 
533
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
535
  msgid "Date"
536
  msgstr ""
537
 
538
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
  msgstr ""
541
 
542
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
  msgstr ""
546
 
547
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
548
  msgid "Update"
549
  msgstr ""
550
 
551
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
  msgstr ""
554
 
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
559
  msgid "Y/m/d"
560
  msgstr ""
561
 
562
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
  msgstr ""
565
 
566
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
567
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
568
  msgid "General"
569
  msgstr ""
570
 
571
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
  msgstr ""
574
 
575
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
  msgstr ""
578
 
579
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
  msgstr ""
582
 
583
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
585
  msgid "event"
586
  msgstr "evento"
587
 
588
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
590
  msgid "events"
591
  msgstr "eventos"
592
 
593
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
595
  msgid "Edit"
596
  msgstr ""
597
 
598
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
602
  msgid "Delete"
603
  msgstr ""
604
 
605
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
606
  msgid "Author"
607
  msgstr ""
608
 
609
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
610
  msgid "Published"
611
  msgstr ""
612
 
613
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
614
  msgid "Filter"
615
  msgstr ""
616
 
617
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
618
  #, php-format
619
  msgid "%s ago"
620
  msgstr ""
621
 
622
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
623
  msgid "Y/m/d g:i:s A"
624
  msgstr ""
625
 
626
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
  msgstr ""
629
 
630
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
  msgstr ""
633
 
634
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
  msgstr ""
642
 
643
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
  msgstr ""
646
 
647
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
  msgstr ""
650
 
651
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
  msgstr ""
656
 
657
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
  msgstr ""
660
 
661
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
  msgstr ""
664
 
665
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
  msgstr ""
670
 
671
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
  msgstr ""
674
 
675
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
  msgstr ""
682
 
683
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
  msgstr ""
686
 
687
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
  msgstr ""
696
 
697
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
  msgstr ""
700
 
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
  msgstr ""
708
 
709
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
  msgstr ""
712
 
713
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
  msgstr ""
716
 
717
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
  msgstr ""
720
 
721
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
  msgstr ""
724
 
725
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
  msgstr ""
728
 
729
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
  msgstr ""
732
 
733
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
  msgstr ""
736
 
737
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
  msgstr ""
743
 
744
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
  msgstr ""
747
 
748
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
  msgstr ""
751
 
752
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
  msgstr ""
755
 
756
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
  msgstr ""
759
 
760
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
  msgstr ""
763
 
764
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
  msgstr ""
769
 
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
772
  msgid "All"
773
  msgstr "Todos"
774
 
775
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
  msgstr ""
778
 
779
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
  msgstr ""
785
 
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
788
  msgid "Upcoming"
789
  msgstr "Próximos"
790
 
791
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
  msgstr ""
794
 
795
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
797
  msgid "Past"
798
  msgstr "Pasado"
799
 
800
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
  msgstr ""
803
 
804
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
805
  msgid "Show all dates"
806
  msgstr ""
807
 
808
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
809
  msgid "Show all categories"
810
  msgstr ""
811
 
812
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
  msgstr ""
815
 
816
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
  msgstr ""
819
 
820
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
  msgstr ""
823
 
824
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
  msgstr ""
827
 
828
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
829
  msgid "Attention"
830
  msgstr ""
831
 
832
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
  msgstr ""
838
 
839
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
  msgstr ""
842
 
843
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
  msgstr ""
846
 
847
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
  msgstr ""
850
 
851
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
  msgstr ""
856
 
857
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
  msgstr ""
860
 
861
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
  msgstr ""
866
 
867
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
  msgstr ""
870
 
871
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
  msgstr ""
874
 
875
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
  msgstr ""
880
 
881
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
  msgstr ""
885
 
886
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
  msgstr ""
892
 
893
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
894
  msgid "Date display"
895
  msgstr ""
896
 
897
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
  msgstr ""
900
 
901
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
  msgstr ""
906
 
907
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
  msgstr ""
912
 
913
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
  msgstr ""
916
 
917
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
  msgstr ""
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
  msgstr ""
929
 
930
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
  msgstr ""
933
 
934
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
  msgstr ""
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
  msgstr ""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
  msgstr ""
949
 
950
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
  msgstr ""
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
  msgstr ""
958
 
959
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
  msgstr ""
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
  msgstr ""
969
 
970
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
  msgstr ""
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
  msgstr ""
979
 
980
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
  msgstr ""
983
 
984
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
  msgstr ""
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
  msgstr ""
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
  msgstr ""
997
 
998
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
  msgstr ""
1003
 
1004
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
  msgstr ""
1007
 
1008
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
  msgstr ""
1013
 
1014
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
  msgstr ""
1017
 
1018
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
  msgstr ""
1023
 
1024
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
  msgstr "Eventos Listados"
1027
 
1028
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
  msgstr ""
1031
 
1032
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
  msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
  msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
  msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1052,86 +1052,86 @@ msgid ""
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
  msgstr ""
1054
 
1055
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
  msgstr ""
1058
 
1059
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
  msgstr ""
1065
 
1066
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
  msgstr ""
1069
 
1070
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
  msgstr ""
1076
 
1077
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
  msgstr ""
1080
 
1081
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
  msgstr ""
1087
 
1088
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
  msgstr ""
1091
 
1092
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
  msgstr ""
1095
 
1096
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
  msgstr ""
1101
 
1102
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1103
  msgid "Show details"
1104
  msgstr ""
1105
 
1106
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1107
  msgid "Hide details"
1108
  msgstr ""
1109
 
1110
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
  msgstr ""
1115
 
1116
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
  msgstr ""
1121
 
1122
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
  msgstr ""
1127
 
1128
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
  msgstr ""
1133
 
1134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1139,63 +1139,94 @@ msgid ""
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
  msgstr ""
1141
 
1142
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
  msgstr ""
1148
 
1149
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
  msgstr ""
1155
 
1156
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1161
  msgstr ""
1162
 
1163
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
  msgid ""
1165
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1166
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1167
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1168
  msgstr ""
1169
 
1170
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1171
  msgid ""
1172
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1173
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1174
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1175
  msgstr ""
1176
 
1177
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1178
  msgid ""
1179
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1180
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1181
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1182
  msgstr ""
1183
 
1184
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1185
  msgid ""
1186
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1187
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1188
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1189
  msgstr ""
1190
 
1191
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1192
  msgid ""
1193
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1194
- "\t With the standard value 0 the full details are displayed.<br />\n"
1195
- "\t This attribute has no influence if only a single event is shown."
 
 
 
 
1196
  msgstr ""
1197
 
1198
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1199
  msgid ""
1200
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1201
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1203,7 +1234,7 @@ msgid ""
1203
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1204
  msgstr ""
1205
 
1206
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1207
  msgid ""
1208
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1209
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1211,7 +1242,7 @@ msgid ""
1211
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1212
  msgstr ""
1213
 
1214
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1215
  msgid ""
1216
  "This attribute specifies if a rss feed link should be added.<br />\n"
1217
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1220,44 +1251,36 @@ msgid ""
1220
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1221
  msgstr ""
1222
 
1223
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1224
  msgid ""
1225
  "This attribute specifies the page or post url for event links.<br />\n"
1226
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1227
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1228
  msgstr ""
1229
 
1230
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1232
- msgid ""
1233
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1234
- "\t With the standard value 0 the full details are displayed.<br />\n"
1235
- "\t This attribute has no influence if only a single event is shown."
1236
- msgstr ""
1237
-
1238
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1239
  msgid ""
1240
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1241
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1242
  msgstr ""
1243
 
1244
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1245
  msgid "Event Information:"
1246
  msgstr "Información del evento:"
1247
 
1248
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1249
  msgid "(more&hellip;)"
1250
  msgstr ""
1251
 
1252
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1253
  msgid "This option defines the displayed title for the widget."
1254
  msgstr ""
1255
 
1256
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1257
  msgid "Category Filter"
1258
  msgstr "Filtro de categoría"
1259
 
1260
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1261
  msgid ""
1262
  "This option defines the categories of which events are shown. The standard "
1263
  "is all or an empty string to show all events. Specify a category slug or a "
@@ -1266,127 +1289,139 @@ msgid ""
1266
  "all possibilities."
1267
  msgstr ""
1268
 
1269
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1270
  msgid "Number of listed events"
1271
  msgstr "Cantidad de eventos listados"
1272
 
1273
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1274
  msgid "The number of upcoming events to display"
1275
  msgstr ""
1276
 
1277
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1278
  msgid "Truncate event title to"
1279
  msgstr ""
1280
 
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1284
  msgid "characters"
1285
  msgstr "caracteres"
1286
 
1287
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
 
 
 
 
 
1288
  msgid ""
1289
- "This option defines the number of displayed characters for the event title. "
1290
- "Set this value to 0 to view the full title."
1291
  msgstr ""
1292
 
1293
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1294
  msgid "Show event starttime"
1295
  msgstr "Mostrar horario de comienzo del evento"
1296
 
1297
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1298
  msgid "This option defines if the event start time will be displayed."
1299
  msgstr ""
1300
 
1301
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1302
  msgid "Show event location"
1303
  msgstr "Mostrar localización del evento"
1304
 
1305
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1306
  msgid "This option defines if the event location will be displayed."
1307
  msgstr ""
1308
 
1309
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1310
  msgid "Truncate location to"
1311
  msgstr "Recortar la localización a"
1312
 
1313
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1314
  msgid ""
1315
  "If the event location is diplayed this option defines the number of "
1316
- "displayed characters. Set this value to 0 to view the full location."
1317
  msgstr ""
1318
 
1319
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1320
  msgid "Show event details"
1321
  msgstr "Mostrar detalles del evento"
1322
 
1323
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1324
  msgid "This option defines if the event details will be displayed."
1325
  msgstr ""
1326
 
1327
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1328
  msgid "Truncate details to"
1329
  msgstr ""
1330
 
1331
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1332
  msgid ""
1333
  "If the event details are diplayed this option defines the number of diplayed"
1334
- " characters. Set this value to 0 to view the full details."
 
 
 
 
 
1335
  msgstr ""
1336
 
1337
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1338
  msgid "URL to the linked Event List page"
1339
  msgstr "Link a la Página del Evento"
1340
 
1341
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1342
  msgid ""
1343
  "This option defines the url to the linked Event List page. This option is "
1344
  "required if you want to use one of the options below."
1345
  msgstr ""
1346
 
1347
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1348
  msgid "Shortcode ID on linked page"
1349
  msgstr ""
1350
 
1351
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1352
  msgid ""
1353
  "This option defines the shortcode-id for the Event List on the linked page. "
1354
  "Normally the standard value 1 is correct, you only have to change it if you "
1355
  "use multiple event-list shortcodes on the linked page."
1356
  msgstr ""
1357
 
1358
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1359
  msgid ""
1360
  "With this option you can add a link to the single event page for every "
1361
  "displayed event. You have to specify the url to the page and the shortcode "
1362
  "id option if you want to use it."
1363
  msgstr ""
1364
 
1365
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1366
  msgid ""
1367
  "With this option you can add a link to the event-list page below the "
1368
  "diplayed events. You have to specify the url to page option if you want to "
1369
  "use it."
1370
  msgstr ""
1371
 
1372
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1373
  msgid "Caption for the link"
1374
  msgstr ""
1375
 
1376
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1377
  msgid ""
1378
  "This option defines the text for the link to the Event List page if the "
1379
  "approriate option is selected."
1380
  msgstr ""
1381
 
1382
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1383
  msgid "With this widget a list of upcoming events can be displayed."
1384
  msgstr ""
1385
 
1386
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1387
  msgid "Upcoming events"
1388
  msgstr "Eventos próximos"
1389
 
1390
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1391
  msgid "show events page"
1392
  msgstr "Mostrar página de eventos"
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
12
+ "PO-Revision-Date: 2017-01-07 20:34+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
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Listado de Eventos"
24
 
25
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Eventos"
31
 
32
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
33
  msgid "All Events"
34
  msgstr "Todos los Eventos"
35
 
36
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
37
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
  msgstr "Agregar un Nuevo Evento"
40
 
41
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
42
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
43
  msgid "Add New"
44
  msgstr "Agregar Nuevo"
45
 
46
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
47
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
  msgstr "Listado de Categorías de Eventos"
50
 
51
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
55
  msgid "Categories"
56
  msgstr "Categorías"
57
 
58
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
59
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
  msgstr "Configuraciones del Listado de Eventos"
62
 
63
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
64
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
  msgstr "Configuraciones"
67
 
68
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
69
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
  msgstr "Sobre Listado de Eventos"
72
 
73
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
74
  msgid "About"
75
  msgstr "Sobre"
76
 
77
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
  msgstr "Usted no tiene suficientes permisos para acceder a esta página."
85
 
86
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
  msgstr "Ayuda e Instrucciones"
89
 
90
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
  msgstr "Usted puede administrar sus eventos %1$shere%2$s"
94
 
95
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
  msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades"
98
 
99
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
  msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio"
103
 
104
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
  msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral"
108
 
109
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
  msgstr "El evento listado, y su estilo, pueden ser modificados mediante las configuraciones disponibles del widget, como así tambien los atributos disponibles para su atajo."
114
 
115
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
  msgstr "Un listado de atributos para atajos con sus respectivas descripciones se encuentra disponible abajo."
120
 
121
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
  msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información."
124
 
125
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
  msgstr ""
131
 
132
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
133
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
134
  msgid "Add links to the single events"
135
  msgstr ""
136
 
137
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
138
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
139
  msgid "Add a link to the Event List page"
140
  msgstr ""
141
 
142
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
  msgstr ""
149
 
150
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
  msgstr ""
156
 
157
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
  msgstr ""
160
 
161
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
  msgstr ""
166
 
167
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
  msgstr ""
173
 
174
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
  msgstr ""
179
 
180
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
  msgstr ""
183
 
184
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
  msgstr ""
187
 
188
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
  msgstr ""
191
 
192
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
195
  msgid "Description"
196
  msgstr "Descripción"
197
 
198
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
  msgstr ""
201
 
202
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
  msgstr ""
207
 
208
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
  msgstr ""
214
 
215
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
216
  msgid "AND"
217
  msgstr ""
218
 
219
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
220
  msgid "OR"
221
  msgstr ""
222
 
223
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
224
  msgid "or"
225
  msgstr ""
226
 
227
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
228
  msgid "and"
229
  msgstr ""
230
 
231
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
  msgstr ""
234
 
235
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
  msgstr ""
239
 
240
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
  msgstr ""
244
 
245
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
  msgstr ""
251
 
252
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
  msgstr ""
255
 
256
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
  msgstr ""
259
 
260
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
  msgstr ""
263
 
264
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
  msgstr ""
267
 
268
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
269
  msgid "Value"
270
  msgstr ""
271
 
272
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
273
  msgid "Example"
274
  msgstr ""
275
 
276
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
  msgstr ""
279
 
280
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
  msgstr ""
283
 
284
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
  msgstr "Agregar una nueva Categoría"
287
 
288
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
  msgstr ""
292
 
293
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
  msgstr ""
297
 
298
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
  msgstr ""
302
 
303
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
  msgstr ""
306
 
307
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
  msgstr ""
310
 
311
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
  msgstr ""
314
 
315
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
  msgstr ""
319
 
320
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
  msgstr ""
324
 
325
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
  msgstr ""
329
 
330
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
  msgstr ""
334
 
335
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
  msgstr ""
341
 
342
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
343
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
344
  msgid "Name"
345
  msgstr "Nombre"
346
 
347
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
  msgstr ""
350
 
351
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
352
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
353
  msgid "Slug"
354
  msgstr ""
355
 
356
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
  msgstr ""
361
 
362
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
  msgstr ""
365
 
366
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
367
  msgid "None"
368
  msgstr "Ninguno"
369
 
370
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
  msgstr ""
375
 
376
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
  msgstr "Aplicar"
379
 
380
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
  msgstr ""
383
 
384
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
  msgstr "Importar Eventos"
387
 
388
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
389
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
390
  msgid "Step"
391
  msgstr ""
392
 
393
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
  msgstr ""
396
 
397
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
  msgstr ""
400
 
401
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
  msgstr ""
404
 
405
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
  msgstr ""
410
 
411
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
412
  msgid "Note"
413
  msgstr ""
414
 
415
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
  msgstr ""
420
 
421
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
422
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
  msgstr ""
426
 
427
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
  msgstr ""
430
 
431
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
  msgstr ""
434
 
435
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
  msgstr ""
438
 
439
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
440
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
442
  msgid "Import"
443
  msgstr "Importar"
444
 
445
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
  msgstr ""
448
 
449
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
  msgstr ""
455
 
456
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
  msgstr ""
459
 
460
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
  msgstr ""
463
 
464
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
465
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
467
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
468
  msgid "Title"
469
  msgstr "Título"
470
 
471
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
  msgstr ""
474
 
475
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
  msgstr ""
478
 
479
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
480
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
481
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
482
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
483
  msgid "Time"
484
  msgstr ""
485
 
486
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
487
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
489
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
490
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
491
  msgid "Location"
492
  msgstr ""
493
 
494
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
497
  msgid "Details"
498
  msgstr "Detalles"
499
 
500
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
  msgstr ""
503
 
504
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
505
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
  msgstr "Cancelar"
508
 
509
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
510
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
  msgstr ""
513
 
514
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
515
  msgid "Edit Event"
516
  msgstr "Editar Evento"
517
 
518
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
519
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
  msgstr "Duplicar"
522
 
523
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
  msgstr ""
527
 
528
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
529
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
530
  msgid "required"
531
  msgstr ""
532
 
533
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
534
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
535
  msgid "Date"
536
  msgstr ""
537
 
538
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
  msgstr ""
541
 
542
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
543
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
  msgstr ""
546
 
547
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
548
  msgid "Update"
549
  msgstr ""
550
 
551
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
  msgstr ""
554
 
555
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
559
  msgid "Y/m/d"
560
  msgstr ""
561
 
562
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
  msgstr ""
565
 
566
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
567
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
568
  msgid "General"
569
  msgstr ""
570
 
571
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
  msgstr ""
574
 
575
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
  msgstr ""
578
 
579
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
  msgstr ""
582
 
583
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
584
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
585
  msgid "event"
586
  msgstr "evento"
587
 
588
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
589
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
590
  msgid "events"
591
  msgstr "eventos"
592
 
593
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
594
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
595
  msgid "Edit"
596
  msgstr ""
597
 
598
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
599
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
602
  msgid "Delete"
603
  msgstr ""
604
 
605
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
606
  msgid "Author"
607
  msgstr ""
608
 
609
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
610
  msgid "Published"
611
  msgstr ""
612
 
613
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
614
  msgid "Filter"
615
  msgstr ""
616
 
617
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
618
  #, php-format
619
  msgid "%s ago"
620
  msgstr ""
621
 
622
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
623
  msgid "Y/m/d g:i:s A"
624
  msgstr ""
625
 
626
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
  msgstr ""
629
 
630
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
  msgstr ""
633
 
634
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
635
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
  msgstr ""
642
 
643
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
  msgstr ""
646
 
647
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
  msgstr ""
650
 
651
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
  msgstr ""
656
 
657
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
  msgstr ""
660
 
661
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
  msgstr ""
664
 
665
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
  msgstr ""
670
 
671
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
  msgstr ""
674
 
675
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
676
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
  msgstr ""
682
 
683
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
  msgstr ""
686
 
687
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
688
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
  msgstr ""
696
 
697
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
  msgstr ""
700
 
701
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
702
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
  msgstr ""
708
 
709
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
  msgstr ""
712
 
713
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
  msgstr ""
716
 
717
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
  msgstr ""
720
 
721
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
  msgstr ""
724
 
725
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
  msgstr ""
728
 
729
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
  msgstr ""
732
 
733
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
  msgstr ""
736
 
737
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
  msgstr ""
743
 
744
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
  msgstr ""
747
 
748
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
  msgstr ""
751
 
752
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
  msgstr ""
755
 
756
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
  msgstr ""
759
 
760
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
  msgstr ""
763
 
764
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
  msgstr ""
769
 
770
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
771
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
772
  msgid "All"
773
  msgstr "Todos"
774
 
775
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
  msgstr ""
778
 
779
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
780
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
  msgstr ""
785
 
786
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
787
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
788
  msgid "Upcoming"
789
  msgstr "Próximos"
790
 
791
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
  msgstr ""
794
 
795
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
796
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
797
  msgid "Past"
798
  msgstr "Pasado"
799
 
800
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
  msgstr ""
803
 
804
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
805
  msgid "Show all dates"
806
  msgstr ""
807
 
808
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
809
  msgid "Show all categories"
810
  msgstr ""
811
 
812
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
  msgstr ""
815
 
816
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
  msgstr ""
819
 
820
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
  msgstr ""
823
 
824
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
  msgstr ""
827
 
828
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
829
  msgid "Attention"
830
  msgstr ""
831
 
832
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
  msgstr ""
838
 
839
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
  msgstr ""
842
 
843
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
  msgstr ""
846
 
847
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
  msgstr ""
850
 
851
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
  msgstr ""
856
 
857
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
  msgstr ""
860
 
861
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
  msgstr ""
866
 
867
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
  msgstr ""
870
 
871
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
  msgstr ""
874
 
875
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
  msgstr ""
880
 
881
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
  msgstr ""
885
 
886
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
  msgstr ""
892
 
893
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
894
  msgid "Date display"
895
  msgstr ""
896
 
897
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
  msgstr ""
900
 
901
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
  msgstr ""
906
 
907
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
  msgstr ""
912
 
913
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
  msgstr ""
916
 
917
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
918
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
  msgstr ""
922
 
923
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
924
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
  msgstr ""
929
 
930
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
  msgstr ""
933
 
934
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
  msgstr ""
939
 
940
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
  msgstr ""
943
 
944
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
  msgstr ""
949
 
950
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
  msgstr ""
953
 
954
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
  msgstr ""
958
 
959
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
  msgstr ""
963
 
964
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
  msgstr ""
969
 
970
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
  msgstr ""
973
 
974
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
  msgstr ""
979
 
980
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
  msgstr ""
983
 
984
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
  msgstr ""
989
 
990
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
  msgstr ""
993
 
994
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
  msgstr ""
997
 
998
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
  msgstr ""
1003
 
1004
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
  msgstr ""
1007
 
1008
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
  msgstr ""
1013
 
1014
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
  msgstr ""
1017
 
1018
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
  msgstr ""
1023
 
1024
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
  msgstr "Eventos Listados"
1027
 
1028
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
  msgstr ""
1031
 
1032
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
  msgstr ""
1037
 
1038
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
  msgstr ""
1041
 
1042
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
  msgstr ""
1045
 
1046
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
  msgstr ""
1054
 
1055
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
  msgstr ""
1058
 
1059
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
  msgstr ""
1065
 
1066
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
  msgstr ""
1069
 
1070
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
  msgstr ""
1076
 
1077
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
  msgstr ""
1080
 
1081
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
  msgstr ""
1087
 
1088
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
  msgstr ""
1091
 
1092
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
  msgstr ""
1095
 
1096
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
  msgstr ""
1101
 
1102
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1103
  msgid "Show details"
1104
  msgstr ""
1105
 
1106
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1107
  msgid "Hide details"
1108
  msgstr ""
1109
 
1110
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
  msgstr ""
1115
 
1116
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
  msgstr ""
1121
 
1122
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
  msgstr ""
1127
 
1128
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
  msgstr ""
1133
 
1134
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
  msgstr ""
1141
 
1142
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
  msgstr ""
1148
 
1149
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
  msgstr ""
1155
 
1156
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1161
  msgstr ""
1162
 
1163
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1164
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1166
+ msgid "number"
1167
+ msgstr ""
1168
+
1169
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1170
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1171
+ msgid ""
1172
+ "This attribute specifies if the title should be truncated to the given "
1173
+ "number of characters in the event list."
1174
+ msgstr ""
1175
+
1176
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1177
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1178
+ #, php-format
1179
+ msgid ""
1180
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1181
+ "is automatically truncated via css."
1182
+ msgstr ""
1183
+
1184
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1185
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1187
+ msgid "This attribute has no influence if only a single event is shown."
1188
+ msgstr ""
1189
+
1190
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1191
  msgid ""
1192
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1193
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1194
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1195
  msgstr ""
1196
 
1197
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1198
  msgid ""
1199
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1200
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1201
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1202
  msgstr ""
1203
 
1204
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1205
  msgid ""
1206
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1207
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1208
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1209
  msgstr ""
1210
 
1211
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1212
  msgid ""
1213
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1214
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1215
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1216
  msgstr ""
1217
 
1218
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1219
  msgid ""
1220
+ "This attribute specifies if the details should be truncate to the given "
1221
+ "number of characters in the event list."
1222
+ msgstr ""
1223
+
1224
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1225
+ #, php-format
1226
+ msgid "With the standard value %1$s the full text is displayed."
1227
  msgstr ""
1228
 
1229
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1230
  msgid ""
1231
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1232
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1234
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1235
  msgstr ""
1236
 
1237
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1238
  msgid ""
1239
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1240
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1242
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1243
  msgstr ""
1244
 
1245
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1246
  msgid ""
1247
  "This attribute specifies if a rss feed link should be added.<br />\n"
1248
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1251
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1252
  msgstr ""
1253
 
1254
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1255
  msgid ""
1256
  "This attribute specifies the page or post url for event links.<br />\n"
1257
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1258
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1259
  msgstr ""
1260
 
1261
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1262
  msgid ""
1263
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1264
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1265
  msgstr ""
1266
 
1267
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1268
  msgid "Event Information:"
1269
  msgstr "Información del evento:"
1270
 
1271
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1272
  msgid "(more&hellip;)"
1273
  msgstr ""
1274
 
1275
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1276
  msgid "This option defines the displayed title for the widget."
1277
  msgstr ""
1278
 
1279
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1280
  msgid "Category Filter"
1281
  msgstr "Filtro de categoría"
1282
 
1283
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1284
  msgid ""
1285
  "This option defines the categories of which events are shown. The standard "
1286
  "is all or an empty string to show all events. Specify a category slug or a "
1289
  "all possibilities."
1290
  msgstr ""
1291
 
1292
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1293
  msgid "Number of listed events"
1294
  msgstr "Cantidad de eventos listados"
1295
 
1296
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1297
  msgid "The number of upcoming events to display"
1298
  msgstr ""
1299
 
1300
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1301
  msgid "Truncate event title to"
1302
  msgstr ""
1303
 
1304
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1307
  msgid "characters"
1308
  msgstr "caracteres"
1309
 
1310
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1311
+ msgid ""
1312
+ "This option defines the number of displayed characters for the event title."
1313
+ msgstr ""
1314
+
1315
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1316
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1317
+ #, php-format
1318
  msgid ""
1319
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1320
+ "automatically truncate the text via css."
1321
  msgstr ""
1322
 
1323
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1324
  msgid "Show event starttime"
1325
  msgstr "Mostrar horario de comienzo del evento"
1326
 
1327
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1328
  msgid "This option defines if the event start time will be displayed."
1329
  msgstr ""
1330
 
1331
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1332
  msgid "Show event location"
1333
  msgstr "Mostrar localización del evento"
1334
 
1335
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1336
  msgid "This option defines if the event location will be displayed."
1337
  msgstr ""
1338
 
1339
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1340
  msgid "Truncate location to"
1341
  msgstr "Recortar la localización a"
1342
 
1343
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1344
  msgid ""
1345
  "If the event location is diplayed this option defines the number of "
1346
+ "displayed characters."
1347
  msgstr ""
1348
 
1349
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1350
  msgid "Show event details"
1351
  msgstr "Mostrar detalles del evento"
1352
 
1353
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1354
  msgid "This option defines if the event details will be displayed."
1355
  msgstr ""
1356
 
1357
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1358
  msgid "Truncate details to"
1359
  msgstr ""
1360
 
1361
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1362
  msgid ""
1363
  "If the event details are diplayed this option defines the number of diplayed"
1364
+ " characters."
1365
+ msgstr ""
1366
+
1367
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1368
+ #, php-format
1369
+ msgid "Set this value to %1$s to view the full text."
1370
  msgstr ""
1371
 
1372
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1373
  msgid "URL to the linked Event List page"
1374
  msgstr "Link a la Página del Evento"
1375
 
1376
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1377
  msgid ""
1378
  "This option defines the url to the linked Event List page. This option is "
1379
  "required if you want to use one of the options below."
1380
  msgstr ""
1381
 
1382
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1383
  msgid "Shortcode ID on linked page"
1384
  msgstr ""
1385
 
1386
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1387
  msgid ""
1388
  "This option defines the shortcode-id for the Event List on the linked page. "
1389
  "Normally the standard value 1 is correct, you only have to change it if you "
1390
  "use multiple event-list shortcodes on the linked page."
1391
  msgstr ""
1392
 
1393
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1394
  msgid ""
1395
  "With this option you can add a link to the single event page for every "
1396
  "displayed event. You have to specify the url to the page and the shortcode "
1397
  "id option if you want to use it."
1398
  msgstr ""
1399
 
1400
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1401
  msgid ""
1402
  "With this option you can add a link to the event-list page below the "
1403
  "diplayed events. You have to specify the url to page option if you want to "
1404
  "use it."
1405
  msgstr ""
1406
 
1407
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1408
  msgid "Caption for the link"
1409
  msgstr ""
1410
 
1411
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1412
  msgid ""
1413
  "This option defines the text for the link to the Event List page if the "
1414
  "approriate option is selected."
1415
  msgstr ""
1416
 
1417
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1418
  msgid "With this widget a list of upcoming events can be displayed."
1419
  msgstr ""
1420
 
1421
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1422
  msgid "Upcoming events"
1423
  msgstr "Eventos próximos"
1424
 
1425
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1426
  msgid "show events page"
1427
  msgstr "Mostrar página de eventos"
languages/event-list-es_ES.mo CHANGED
Binary file
languages/event-list-es_ES.po CHANGED
@@ -1,5 +1,5 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
11
- "PO-Revision-Date: 2015-12-13 20:42+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,128 +17,128 @@ msgstr ""
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
21
  msgid "Event List"
22
  msgstr "Listado Eventos"
23
 
24
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
28
  msgid "Events"
29
  msgstr "Eventos"
30
 
31
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
32
  msgid "All Events"
33
  msgstr "Añadir Eventos"
34
 
35
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
37
  msgid "Add New Event"
38
  msgstr "Añadir Nuevo Evento"
39
 
40
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
42
  msgid "Add New"
43
  msgstr "Añadir Nuevo"
44
 
45
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
47
  msgid "Event List Categories"
48
  msgstr "Categorías de Eventos"
49
 
50
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
54
  msgid "Categories"
55
  msgstr "Categorías"
56
 
57
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
59
  msgid "Event List Settings"
60
  msgstr "Ajustes de eventos"
61
 
62
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
63
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
64
  msgid "Settings"
65
  msgstr "Ajustes"
66
 
67
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
69
  msgid "About Event List"
70
  msgstr "Acerca de la lista de eventos"
71
 
72
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
73
  msgid "About"
74
  msgstr "Sobre"
75
 
76
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
82
  msgid "You do not have sufficient permissions to access this page."
83
  msgstr "No tienes permisos suficientes para acceder a esta página."
84
 
85
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
86
  msgid "Help and Instructions"
87
  msgstr "Ayuda e instrucciones"
88
 
89
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
90
  #, php-format
91
  msgid "You can manage your events %1$shere%2$s"
92
  msgstr "Puedes gestionar tus eventos %saquí%s."
93
 
94
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
95
  msgid "To show the events on your site you have 2 possibilities"
96
  msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades"
97
 
98
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
99
  #, php-format
100
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
101
  msgstr ""
102
 
103
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
104
  #, php-format
105
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
106
  msgstr ""
107
 
108
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
109
  msgid ""
110
  "The displayed events and their style can be modified with the available "
111
  "widget settings and the available attributes for the shortcode."
112
  msgstr ""
113
 
114
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
115
  msgid ""
116
  "A list of all available shortcode attributes with their description is "
117
  "available below."
118
  msgstr ""
119
 
120
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
121
  msgid "The available widget options are described in their tooltip text."
122
  msgstr ""
123
 
124
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
125
  #, php-format
126
  msgid ""
127
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
128
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
129
  msgstr ""
130
 
131
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
132
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
133
  msgid "Add links to the single events"
134
  msgstr ""
135
 
136
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
137
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
138
  msgid "Add a link to the Event List page"
139
  msgstr ""
140
 
141
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
142
  #, php-format
143
  msgid ""
144
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -146,903 +146,903 @@ msgid ""
146
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
147
  msgstr ""
148
 
149
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
150
  #, php-format
151
  msgid ""
152
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
153
  "just the way you want."
154
  msgstr ""
155
 
156
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
157
  msgid "Shortcode Attributes"
158
  msgstr ""
159
 
160
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
161
  msgid ""
162
  "You have the possibility to modify the output if you add some of the "
163
  "following attributes to the shortcode."
164
  msgstr ""
165
 
166
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
167
  #, php-format
168
  msgid ""
169
  "You can combine and add as much attributes as you want. E.g. the shortcode "
170
  "including the attributes %1$s and %2$s would looks like this:"
171
  msgstr ""
172
 
173
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
174
  msgid ""
175
  "Below you can find a list of all supported attributes with their "
176
  "descriptions and available options:"
177
  msgstr ""
178
 
179
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
180
  msgid "Attribute name"
181
  msgstr "Nombre de atributo"
182
 
183
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
184
  msgid "Value options"
185
  msgstr "Opciones de valor"
186
 
187
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
188
  msgid "Default value"
189
  msgstr "Valor por defecto"
190
 
191
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
192
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
194
  msgid "Description"
195
  msgstr "Descripción"
196
 
197
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
198
  msgid "Filter Syntax"
199
  msgstr "Sintaxis de filtro"
200
 
201
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
202
  msgid ""
203
  "For date and cat filters you can specify complex filters with the following "
204
  "syntax:"
205
  msgstr ""
206
 
207
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
208
  #, php-format
209
  msgid ""
210
  "You can use %1$s and %2$s connections to define complex filters. "
211
  "Additionally you can set brackets %3$s for nested queries."
212
  msgstr ""
213
 
214
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
215
  msgid "AND"
216
  msgstr "Y"
217
 
218
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
219
  msgid "OR"
220
  msgstr "O"
221
 
222
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
223
  msgid "or"
224
  msgstr "o"
225
 
226
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
227
  msgid "and"
228
  msgstr "y"
229
 
230
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
231
  msgid "Examples for cat filters:"
232
  msgstr "Ejemplos de filtros cat:"
233
 
234
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
235
  #, php-format
236
  msgid "Show all events with category %1$s."
237
  msgstr ""
238
 
239
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
240
  #, php-format
241
  msgid "Show all events with category %1$s or %2$s."
242
  msgstr ""
243
 
244
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
245
  #, php-format
246
  msgid ""
247
  "Show all events with category %1$s and all events where category %2$s as "
248
  "well as %3$s is selected."
249
  msgstr ""
250
 
251
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
252
  msgid "Available Date Formats"
253
  msgstr "Formatos de fecha disponibles"
254
 
255
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
256
  msgid "For date filters you can use the following date formats:"
257
  msgstr ""
258
 
259
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
260
  msgid "Available Date Range Formats"
261
  msgstr "Formatos Rango Fecha Disponible"
262
 
263
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
264
  msgid "For date filters you can use the following daterange formats:"
265
  msgstr ""
266
 
267
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
268
  msgid "Value"
269
  msgstr "Valor"
270
 
271
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
272
  msgid "Example"
273
  msgstr "Ejemplo"
274
 
275
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
276
  msgid "Edit Category"
277
  msgstr "Editar categoría"
278
 
279
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
280
  msgid "Update Category"
281
  msgstr "Actualizar Categoría"
282
 
283
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
284
  msgid "Add New Category"
285
  msgstr "Agregar nueva categoría"
286
 
287
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
288
  #, php-format
289
  msgid "Category \"%s\" deleted."
290
  msgstr "Categoría “%s” eliminada."
291
 
292
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
293
  #, php-format
294
  msgid "This Category was also removed from %d events."
295
  msgstr ""
296
 
297
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
298
  #, php-format
299
  msgid "Error while deleting category \"%s\""
300
  msgstr ""
301
 
302
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
303
  msgid "Sync with post categories enabled."
304
  msgstr ""
305
 
306
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
307
  msgid "Sync with post categories disabled."
308
  msgstr ""
309
 
310
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
311
  msgid "Manual sync with post categories sucessfully finished."
312
  msgstr ""
313
 
314
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
315
  #, php-format
316
  msgid "New Category \"%s\" was added"
317
  msgstr ""
318
 
319
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
320
  #, php-format
321
  msgid "Error: New Category \"%s\" could not be added"
322
  msgstr ""
323
 
324
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
325
  #, php-format
326
  msgid "Category \"%s\" was modified"
327
  msgstr ""
328
 
329
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
330
  #, php-format
331
  msgid "Error: Category \"%s\" could not be modified"
332
  msgstr ""
333
 
334
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
335
  msgid ""
336
  "Categories are automatically synced with the post categories.<br />\n"
337
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
338
  "\t\t\t If you want to manually edit the categories you have to disable this option."
339
  msgstr ""
340
 
341
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
342
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
343
  msgid "Name"
344
  msgstr "Nombre"
345
 
346
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
347
  msgid "The name is how it appears on your site."
348
  msgstr ""
349
 
350
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
351
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
352
  msgid "Slug"
353
  msgstr "Enlace permanente"
354
 
355
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
356
  msgid ""
357
  "The “slug” is the URL-friendly version of the name. It is usually all "
358
  "lowercase and contains only letters, numbers, and hyphens."
359
  msgstr ""
360
 
361
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
362
  msgid "Parent"
363
  msgstr "Padre"
364
 
365
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
366
  msgid "None"
367
  msgstr "Ninguno"
368
 
369
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
370
  msgid ""
371
  "Categories can have a hierarchy. You might have a Jazz category, and under "
372
  "that have children categories for Bebop and Big Band. Totally optional."
373
  msgstr ""
374
 
375
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
376
  msgid "Apply"
377
  msgstr "Aplicar"
378
 
379
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
380
  msgid "Do a manual sync with post categories"
381
  msgstr ""
382
 
383
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
384
  msgid "Import Events"
385
  msgstr "Importar Eventos"
386
 
387
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
388
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
389
  msgid "Step"
390
  msgstr "Paso"
391
 
392
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
393
  msgid "Set import file and options"
394
  msgstr ""
395
 
396
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
397
  msgid "Import Event Data"
398
  msgstr ""
399
 
400
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
401
  msgid "Example file"
402
  msgstr "Archivo de ejemplo"
403
 
404
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
405
  #, php-format
406
  msgid ""
407
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
408
  msgstr ""
409
 
410
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
411
  msgid "Note"
412
  msgstr "Nota"
413
 
414
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
415
  msgid ""
416
  "Do not change the column header and separator line (first two lines), "
417
  "otherwise the import will fail!"
418
  msgstr ""
419
 
420
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
421
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
423
  msgid "Sorry, there has been an error."
424
  msgstr ""
425
 
426
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
427
  msgid "The file does not exist, please try again."
428
  msgstr ""
429
 
430
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
431
  msgid "The file is not a CSV file."
432
  msgstr ""
433
 
434
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
435
  msgid "Event review and category selection"
436
  msgstr ""
437
 
438
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
439
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
441
  msgid "Import"
442
  msgstr "Importar"
443
 
444
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
445
  msgid "Import with errors!"
446
  msgstr ""
447
 
448
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
449
  #, php-format
450
  msgid ""
451
  "An error occurred during import! Please send your import file to %1$sthe "
452
  "administrator%2$s for analysis."
453
  msgstr ""
454
 
455
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
456
  msgid "Import successful!"
457
  msgstr ""
458
 
459
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
460
  msgid "Go back to All Events"
461
  msgstr ""
462
 
463
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
464
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
466
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
467
  msgid "Title"
468
  msgstr "Título"
469
 
470
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
471
  msgid "Start Date"
472
  msgstr "Fecha Inicio"
473
 
474
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
475
  msgid "End Date"
476
  msgstr "Fecha Final"
477
 
478
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
479
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
480
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
481
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
482
  msgid "Time"
483
  msgstr "Hora"
484
 
485
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
488
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
489
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
490
  msgid "Location"
491
  msgstr "Ubicación"
492
 
493
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
494
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
496
  msgid "Details"
497
  msgstr "Detalles"
498
 
499
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
500
  msgid "There was an error when reading this CSV file."
501
  msgstr ""
502
 
503
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
504
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
505
  msgid "Cancel"
506
  msgstr "Cancelar"
507
 
508
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
509
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
510
  msgid "No categories available."
511
  msgstr "No hay categorías disponibles"
512
 
513
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
514
  msgid "Edit Event"
515
  msgstr "Editar Evento"
516
 
517
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
518
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
519
  msgid "Duplicate"
520
  msgstr "Duplicar"
521
 
522
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
523
  #, php-format
524
  msgid "Duplicate of event id:%d"
525
  msgstr "Duplicado de evento id: % d"
526
 
527
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
529
  msgid "required"
530
  msgstr "obligatorio"
531
 
532
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
533
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
534
  msgid "Date"
535
  msgstr "Fecha"
536
 
537
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
538
  msgid "Multi-Day Event"
539
  msgstr "Evento de varios días"
540
 
541
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
542
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
543
  msgid "Publish"
544
  msgstr "Publicar"
545
 
546
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
547
  msgid "Update"
548
  msgstr "Actualizar"
549
 
550
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
551
  msgid "Goto Category Settings"
552
  msgstr "Ir a Ajustes de Categorías"
553
 
554
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
558
  msgid "Y/m/d"
559
  msgstr "Y/m/d"
560
 
561
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
562
  msgid "Settings saved."
563
  msgstr "Configuración guardada."
564
 
565
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
566
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
567
  msgid "General"
568
  msgstr "General"
569
 
570
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
571
  msgid "Frontend Settings"
572
  msgstr "Configuración de interfaz"
573
 
574
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
575
  msgid "Admin Page Settings"
576
  msgstr "Configuración de página de administrador"
577
 
578
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
579
  msgid "Feed Settings"
580
  msgstr "Configuración Conectores"
581
 
582
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
583
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
584
  msgid "event"
585
  msgstr "evento"
586
 
587
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
588
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
589
  msgid "events"
590
  msgstr "eventos"
591
 
592
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
593
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
594
  msgid "Edit"
595
  msgstr "Editar"
596
 
597
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
598
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
601
  msgid "Delete"
602
  msgstr "Borrar"
603
 
604
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
605
  msgid "Author"
606
  msgstr "Autor"
607
 
608
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
609
  msgid "Published"
610
  msgstr "Publicado"
611
 
612
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
613
  msgid "Filter"
614
  msgstr "Filtro"
615
 
616
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
617
  #, php-format
618
  msgid "%s ago"
619
  msgstr "hace %s"
620
 
621
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
622
  msgid "Y/m/d g:i:s A"
623
  msgstr "Y/m/d g:i:s A"
624
 
625
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
626
  msgid "Year"
627
  msgstr "Año"
628
 
629
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
630
  msgid "A year can be specified in 4 digit format."
631
  msgstr ""
632
 
633
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
634
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
636
  #, php-format
637
  msgid ""
638
  "For a start date filter the first day of %1$s is used, in an end date the "
639
  "last day."
640
  msgstr ""
641
 
642
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
643
  msgid "the resulting year"
644
  msgstr ""
645
 
646
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
647
  msgid "Month"
648
  msgstr "Mes"
649
 
650
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
651
  msgid ""
652
  "A month can be specified with 4 digits for the year and 2 digits for the "
653
  "month, seperated by a hyphen (-)."
654
  msgstr ""
655
 
656
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
657
  msgid "the resulting month"
658
  msgstr ""
659
 
660
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
661
  msgid "Day"
662
  msgstr "Día"
663
 
664
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
665
  msgid ""
666
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
667
  " month and 2 digets for the day, seperated by hyphens (-)."
668
  msgstr ""
669
 
670
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
671
  msgid "Relative Year"
672
  msgstr "Año relativo"
673
 
674
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
675
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
678
  #, php-format
679
  msgid "%1$s from now can be specified in the following notation: %2$s"
680
  msgstr ""
681
 
682
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
683
  msgid "A relative year"
684
  msgstr ""
685
 
686
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
687
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
690
  #, php-format
691
  msgid ""
692
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
693
  "%3$s or %4$s attached (see also the example below)."
694
  msgstr ""
695
 
696
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
697
  msgid "number of years"
698
  msgstr ""
699
 
700
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
704
  #, php-format
705
  msgid "Additionally the following values are available: %1$s"
706
  msgstr ""
707
 
708
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
709
  msgid "Relative Month"
710
  msgstr "Mes relativo"
711
 
712
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
713
  msgid "A relative month"
714
  msgstr "Un mes relativo"
715
 
716
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
717
  msgid "number of months"
718
  msgstr "número de meses"
719
 
720
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
721
  msgid "Relative Week"
722
  msgstr "Semana relativa"
723
 
724
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
725
  msgid "A relative week"
726
  msgstr "Una semana relativa"
727
 
728
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
729
  msgid "number of weeks"
730
  msgstr "número de semanas"
731
 
732
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
733
  msgid "the resulting week"
734
  msgstr ""
735
 
736
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
737
  #, php-format
738
  msgid ""
739
  "The first day of the week is depending on the option %1$s which can be found"
740
  " and changed in %2$s."
741
  msgstr ""
742
 
743
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
744
  msgid "Week Starts On"
745
  msgstr ""
746
 
747
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
748
  msgid "Relative Day"
749
  msgstr "Día relativo"
750
 
751
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
752
  msgid "A relative day"
753
  msgstr "Un día relativo"
754
 
755
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
756
  msgid "number of days"
757
  msgstr "Número de días"
758
 
759
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
760
  msgid "Date range"
761
  msgstr "Rango de fechas"
762
 
763
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
764
  msgid ""
765
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
766
  "\t For the start and end date any available date format can be used."
767
  msgstr ""
768
 
769
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
771
  msgid "All"
772
  msgstr "Todos"
773
 
774
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
775
  msgid "This value defines a range without any limits."
776
  msgstr ""
777
 
778
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
779
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
781
  #, php-format
782
  msgid "The corresponding date_range format is: %1$s"
783
  msgstr ""
784
 
785
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
787
  msgid "Upcoming"
788
  msgstr "Próximamente"
789
 
790
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
791
  msgid "This value defines a range from the actual day to the future."
792
  msgstr ""
793
 
794
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
795
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
796
  msgid "Past"
797
  msgstr "Pasado"
798
 
799
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
800
  msgid "This value defines a range from the past to the previous day."
801
  msgstr ""
802
 
803
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
804
  msgid "Show all dates"
805
  msgstr "Mostrar todas las fechas"
806
 
807
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
808
  msgid "Show all categories"
809
  msgstr "Mostrar todas las categorías"
810
 
811
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
812
  msgid "Event Categories"
813
  msgstr "Categorías de Eventos"
814
 
815
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
816
  msgid "This option specifies all event category data."
817
  msgstr ""
818
 
819
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
820
  msgid "Sync Categories"
821
  msgstr "Sincronizar Categorías"
822
 
823
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
824
  msgid "Keep event categories in sync with post categories automatically"
825
  msgstr ""
826
 
827
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
828
  msgid "Attention"
829
  msgstr "Atención"
830
 
831
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
832
  msgid ""
833
  "Please note that this option will delete all categories which are not "
834
  "available in the post categories! Existing Categories with the same slug "
835
  "will be updated."
836
  msgstr ""
837
 
838
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
839
  msgid "CSV File to import"
840
  msgstr "Importar vía archivo CSV"
841
 
842
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
843
  msgid "Please select the file which contains the event data in CSV format."
844
  msgstr ""
845
 
846
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
847
  msgid "Used date format"
848
  msgstr "Formato de Fecha utilizado"
849
 
850
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
851
  msgid ""
852
  "With this option the used date format for event start and end date given in "
853
  "the CSV file can be specified."
854
  msgstr ""
855
 
856
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
857
  msgid "Text for no events"
858
  msgstr "Texto para ningún evento"
859
 
860
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
861
  msgid ""
862
  "This option defines the displayed text when no events are available for the "
863
  "selected view."
864
  msgstr ""
865
 
866
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
867
  msgid "Multiday filter range"
868
  msgstr ""
869
 
870
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
871
  msgid "Use the complete event range in the date filter"
872
  msgstr ""
873
 
874
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
875
  msgid ""
876
  "This option defines if the complete range of a multiday event shall be "
877
  "considered in the date filter."
878
  msgstr ""
879
 
880
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
881
  msgid ""
882
  "If disabled, only the start day of an event is considered in the filter."
883
  msgstr ""
884
 
885
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
886
  msgid ""
887
  "For an example multiday event which started yesterday and ends tomorrow this"
888
  " means, that it is displayed in umcoming dates when this option is enabled, "
889
  "but it is hidden when the option is disabled."
890
  msgstr ""
891
 
892
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
893
  msgid "Date display"
894
  msgstr "Indicación de la fecha"
895
 
896
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
897
  msgid "Show the date only once per day"
898
  msgstr ""
899
 
900
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
901
  msgid ""
902
  "With this option enabled the date is only displayed once per day if more "
903
  "than one event is available on the same day."
904
  msgstr ""
905
 
906
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
907
  msgid ""
908
  "If enabled, the events are ordered in a different way (end date before start"
909
  " time) to allow using the same date for as much events as possible."
910
  msgstr ""
911
 
912
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
913
  msgid "HTML tags"
914
  msgstr "Etiquetas HTML"
915
 
916
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
917
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
918
  #, php-format
919
  msgid "Allow HTML tags in the event field \"%1$s\""
920
  msgstr ""
921
 
922
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
924
  #, php-format
925
  msgid ""
926
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
927
  msgstr ""
928
 
929
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
930
  msgid "Text for \"Show details\""
931
  msgstr ""
932
 
933
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
934
  msgid ""
935
  "With this option the displayed text for the link to show the event details "
936
  "can be changed, when collapsing is enabled."
937
  msgstr ""
938
 
939
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
940
  msgid "Text for \"Hide details\""
941
  msgstr ""
942
 
943
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
944
  msgid ""
945
  "With this option the displayed text for the link to hide the event details "
946
  "can be changed, when collapsing is enabled."
947
  msgstr ""
948
 
949
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
950
  msgid "Disable CSS file"
951
  msgstr "Deshabitar CSS"
952
 
953
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
954
  #, php-format
955
  msgid "Disable the %1$s file."
956
  msgstr ""
957
 
958
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
959
  #, php-format
960
  msgid "With this option you can disable the inclusion of the %1$s file."
961
  msgstr ""
962
 
963
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
964
  msgid ""
965
  "This normally only make sense if you have css conflicts with your theme and "
966
  "want to set all required css styles somewhere else (e.g. in the theme css)."
967
  msgstr ""
968
 
969
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
970
  msgid "Date format in edit form"
971
  msgstr ""
972
 
973
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
974
  msgid ""
975
  "This option sets the displayed date format for the event date fields in the "
976
  "event new / edit form."
977
  msgstr ""
978
 
979
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
980
  msgid "The standard is an empty string to use the Wordpress standard setting."
981
  msgstr ""
982
 
983
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
984
  #, php-format
985
  msgid ""
986
  "All available options to specify the date format can be found %1$shere%2$s."
987
  msgstr ""
988
 
989
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
990
  msgid "Enable RSS feed"
991
  msgstr ""
992
 
993
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
994
  msgid "Enable support for an event RSS feed"
995
  msgstr ""
996
 
997
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
998
  msgid ""
999
  "This option activates a RSS feed for the events.<br />\n"
1000
  "\t You have to enable this option if you want to use one of the RSS feed features."
1001
  msgstr ""
1002
 
1003
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1004
  msgid "Feed name"
1005
  msgstr ""
1006
 
1007
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1008
  msgid ""
1009
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1010
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1011
  msgstr ""
1012
 
1013
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1014
  msgid "Feed Description"
1015
  msgstr ""
1016
 
1017
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1018
  msgid ""
1019
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1020
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1021
  msgstr ""
1022
 
1023
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1024
  msgid "Listed events"
1025
  msgstr ""
1026
 
1027
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1028
  msgid "Only show upcoming events in feed"
1029
  msgstr ""
1030
 
1031
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1032
  msgid ""
1033
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1034
  "\t If disabled all events (upcoming and past) will be listed."
1035
  msgstr ""
1036
 
1037
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1038
  msgid "Add RSS feed link in head"
1039
  msgstr ""
1040
 
1041
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1042
  msgid "Add RSS feed link in the html head"
1043
  msgstr ""
1044
 
1045
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1046
  msgid ""
1047
  "This option adds a RSS feed in the html head for the events.<br />\n"
1048
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1051,86 +1051,86 @@ msgid ""
1051
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1052
  msgstr ""
1053
 
1054
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1055
  msgid "Position of the RSS feed link"
1056
  msgstr ""
1057
 
1058
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1059
  msgid ""
1060
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1061
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1062
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1063
  msgstr ""
1064
 
1065
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1066
  msgid "Align of the RSS feed link"
1067
  msgstr ""
1068
 
1069
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1070
  msgid ""
1071
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1072
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1073
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1074
  msgstr ""
1075
 
1076
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1077
  msgid "Feed link text"
1078
  msgstr ""
1079
 
1080
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1081
  msgid ""
1082
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1083
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1084
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1085
  msgstr ""
1086
 
1087
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1088
  msgid "Feed link image"
1089
  msgstr ""
1090
 
1091
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1092
  msgid "Show rss image in feed link"
1093
  msgstr ""
1094
 
1095
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1096
  msgid ""
1097
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1098
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1099
  msgstr ""
1100
 
1101
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1102
  msgid "Show details"
1103
  msgstr ""
1104
 
1105
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1106
  msgid "Hide details"
1107
  msgstr ""
1108
 
1109
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1110
  msgid ""
1111
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1112
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1113
  msgstr ""
1114
 
1115
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1116
  msgid ""
1117
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1118
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1119
  msgstr ""
1120
 
1121
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1122
  msgid ""
1123
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1124
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1125
  msgstr ""
1126
 
1127
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1128
  msgid ""
1129
  "This attribute specifies the initial order of the events.<br />\n"
1130
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1131
  msgstr ""
1132
 
1133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1134
  msgid ""
1135
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1136
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1138,63 +1138,94 @@ msgid ""
1138
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1139
  msgstr ""
1140
 
1141
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1142
  msgid ""
1143
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1144
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1145
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1146
  msgstr ""
1147
 
1148
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1149
  msgid ""
1150
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1151
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1152
  "\t Please not that in the actual version there is no pagination of the events available."
1153
  msgstr ""
1154
 
1155
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1156
  msgid ""
1157
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1158
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1159
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1160
  msgstr ""
1161
 
1162
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1163
  msgid ""
1164
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1165
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1166
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1167
  msgstr ""
1168
 
1169
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1170
  msgid ""
1171
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1172
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1173
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1174
  msgstr ""
1175
 
1176
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1177
  msgid ""
1178
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1179
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1180
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1181
  msgstr ""
1182
 
1183
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1184
  msgid ""
1185
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1186
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1187
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1188
  msgstr ""
1189
 
1190
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1191
  msgid ""
1192
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1193
- "\t With the standard value 0 the full details are displayed.<br />\n"
1194
- "\t This attribute has no influence if only a single event is shown."
 
 
 
 
1195
  msgstr ""
1196
 
1197
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1198
  msgid ""
1199
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1200
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1202,7 +1233,7 @@ msgid ""
1202
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1203
  msgstr ""
1204
 
1205
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1206
  msgid ""
1207
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1208
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1210,7 +1241,7 @@ msgid ""
1210
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1211
  msgstr ""
1212
 
1213
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1214
  msgid ""
1215
  "This attribute specifies if a rss feed link should be added.<br />\n"
1216
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1219,44 +1250,36 @@ msgid ""
1219
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1220
  msgstr ""
1221
 
1222
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1223
  msgid ""
1224
  "This attribute specifies the page or post url for event links.<br />\n"
1225
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1226
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1227
  msgstr ""
1228
 
1229
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1230
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1231
- msgid ""
1232
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1233
- "\t With the standard value 0 the full details are displayed.<br />\n"
1234
- "\t This attribute has no influence if only a single event is shown."
1235
- msgstr ""
1236
-
1237
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1238
  msgid ""
1239
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1240
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1241
  msgstr ""
1242
 
1243
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1244
  msgid "Event Information:"
1245
  msgstr "Información del evento:"
1246
 
1247
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1248
  msgid "(more&hellip;)"
1249
  msgstr ""
1250
 
1251
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1252
  msgid "This option defines the displayed title for the widget."
1253
  msgstr ""
1254
 
1255
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1256
  msgid "Category Filter"
1257
  msgstr "Categoría de filtro"
1258
 
1259
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1260
  msgid ""
1261
  "This option defines the categories of which events are shown. The standard "
1262
  "is all or an empty string to show all events. Specify a category slug or a "
@@ -1265,127 +1288,139 @@ msgid ""
1265
  "all possibilities."
1266
  msgstr ""
1267
 
1268
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1269
  msgid "Number of listed events"
1270
  msgstr ""
1271
 
1272
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1273
  msgid "The number of upcoming events to display"
1274
  msgstr ""
1275
 
1276
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1277
  msgid "Truncate event title to"
1278
  msgstr ""
1279
 
1280
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1283
  msgid "characters"
1284
  msgstr "caracteres"
1285
 
1286
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
 
 
 
 
 
1287
  msgid ""
1288
- "This option defines the number of displayed characters for the event title. "
1289
- "Set this value to 0 to view the full title."
1290
  msgstr ""
1291
 
1292
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1293
  msgid "Show event starttime"
1294
  msgstr ""
1295
 
1296
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1297
  msgid "This option defines if the event start time will be displayed."
1298
  msgstr ""
1299
 
1300
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1301
  msgid "Show event location"
1302
  msgstr ""
1303
 
1304
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1305
  msgid "This option defines if the event location will be displayed."
1306
  msgstr ""
1307
 
1308
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1309
  msgid "Truncate location to"
1310
  msgstr ""
1311
 
1312
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1313
  msgid ""
1314
  "If the event location is diplayed this option defines the number of "
1315
- "displayed characters. Set this value to 0 to view the full location."
1316
  msgstr ""
1317
 
1318
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1319
  msgid "Show event details"
1320
  msgstr "Ver detalles del evento"
1321
 
1322
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1323
  msgid "This option defines if the event details will be displayed."
1324
  msgstr ""
1325
 
1326
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1327
  msgid "Truncate details to"
1328
  msgstr "Truncar los datos para"
1329
 
1330
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1331
  msgid ""
1332
  "If the event details are diplayed this option defines the number of diplayed"
1333
- " characters. Set this value to 0 to view the full details."
 
 
 
 
 
1334
  msgstr ""
1335
 
1336
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1337
  msgid "URL to the linked Event List page"
1338
  msgstr ""
1339
 
1340
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1341
  msgid ""
1342
  "This option defines the url to the linked Event List page. This option is "
1343
  "required if you want to use one of the options below."
1344
  msgstr ""
1345
 
1346
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1347
  msgid "Shortcode ID on linked page"
1348
  msgstr ""
1349
 
1350
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1351
  msgid ""
1352
  "This option defines the shortcode-id for the Event List on the linked page. "
1353
  "Normally the standard value 1 is correct, you only have to change it if you "
1354
  "use multiple event-list shortcodes on the linked page."
1355
  msgstr ""
1356
 
1357
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1358
  msgid ""
1359
  "With this option you can add a link to the single event page for every "
1360
  "displayed event. You have to specify the url to the page and the shortcode "
1361
  "id option if you want to use it."
1362
  msgstr ""
1363
 
1364
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1365
  msgid ""
1366
  "With this option you can add a link to the event-list page below the "
1367
  "diplayed events. You have to specify the url to page option if you want to "
1368
  "use it."
1369
  msgstr ""
1370
 
1371
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1372
  msgid "Caption for the link"
1373
  msgstr ""
1374
 
1375
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1376
  msgid ""
1377
  "This option defines the text for the link to the Event List page if the "
1378
  "approriate option is selected."
1379
  msgstr ""
1380
 
1381
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1382
  msgid "With this widget a list of upcoming events can be displayed."
1383
  msgstr ""
1384
 
1385
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1386
  msgid "Upcoming events"
1387
  msgstr ""
1388
 
1389
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1390
  msgid "show events page"
1391
  msgstr ""
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
11
+ "PO-Revision-Date: 2017-01-07 20:34+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
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
21
  msgid "Event List"
22
  msgstr "Listado Eventos"
23
 
24
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
25
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
28
  msgid "Events"
29
  msgstr "Eventos"
30
 
31
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
32
  msgid "All Events"
33
  msgstr "Añadir Eventos"
34
 
35
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
36
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
37
  msgid "Add New Event"
38
  msgstr "Añadir Nuevo Evento"
39
 
40
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
41
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
42
  msgid "Add New"
43
  msgstr "Añadir Nuevo"
44
 
45
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
46
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
47
  msgid "Event List Categories"
48
  msgstr "Categorías de Eventos"
49
 
50
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
51
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
54
  msgid "Categories"
55
  msgstr "Categorías"
56
 
57
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
58
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
59
  msgid "Event List Settings"
60
  msgstr "Ajustes de eventos"
61
 
62
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
63
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
64
  msgid "Settings"
65
  msgstr "Ajustes"
66
 
67
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
68
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
69
  msgid "About Event List"
70
  msgstr "Acerca de la lista de eventos"
71
 
72
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
73
  msgid "About"
74
  msgstr "Sobre"
75
 
76
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
77
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
82
  msgid "You do not have sufficient permissions to access this page."
83
  msgstr "No tienes permisos suficientes para acceder a esta página."
84
 
85
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
86
  msgid "Help and Instructions"
87
  msgstr "Ayuda e instrucciones"
88
 
89
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
90
  #, php-format
91
  msgid "You can manage your events %1$shere%2$s"
92
  msgstr "Puedes gestionar tus eventos %saquí%s."
93
 
94
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
95
  msgid "To show the events on your site you have 2 possibilities"
96
  msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades"
97
 
98
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
99
  #, php-format
100
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
101
  msgstr ""
102
 
103
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
104
  #, php-format
105
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
106
  msgstr ""
107
 
108
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
109
  msgid ""
110
  "The displayed events and their style can be modified with the available "
111
  "widget settings and the available attributes for the shortcode."
112
  msgstr ""
113
 
114
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
115
  msgid ""
116
  "A list of all available shortcode attributes with their description is "
117
  "available below."
118
  msgstr ""
119
 
120
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
121
  msgid "The available widget options are described in their tooltip text."
122
  msgstr ""
123
 
124
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
125
  #, php-format
126
  msgid ""
127
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
128
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
129
  msgstr ""
130
 
131
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
132
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
133
  msgid "Add links to the single events"
134
  msgstr ""
135
 
136
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
137
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
138
  msgid "Add a link to the Event List page"
139
  msgstr ""
140
 
141
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
142
  #, php-format
143
  msgid ""
144
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
146
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
147
  msgstr ""
148
 
149
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
150
  #, php-format
151
  msgid ""
152
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
153
  "just the way you want."
154
  msgstr ""
155
 
156
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
157
  msgid "Shortcode Attributes"
158
  msgstr ""
159
 
160
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
161
  msgid ""
162
  "You have the possibility to modify the output if you add some of the "
163
  "following attributes to the shortcode."
164
  msgstr ""
165
 
166
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
167
  #, php-format
168
  msgid ""
169
  "You can combine and add as much attributes as you want. E.g. the shortcode "
170
  "including the attributes %1$s and %2$s would looks like this:"
171
  msgstr ""
172
 
173
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
174
  msgid ""
175
  "Below you can find a list of all supported attributes with their "
176
  "descriptions and available options:"
177
  msgstr ""
178
 
179
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
180
  msgid "Attribute name"
181
  msgstr "Nombre de atributo"
182
 
183
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
184
  msgid "Value options"
185
  msgstr "Opciones de valor"
186
 
187
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
188
  msgid "Default value"
189
  msgstr "Valor por defecto"
190
 
191
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
192
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
194
  msgid "Description"
195
  msgstr "Descripción"
196
 
197
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
198
  msgid "Filter Syntax"
199
  msgstr "Sintaxis de filtro"
200
 
201
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
202
  msgid ""
203
  "For date and cat filters you can specify complex filters with the following "
204
  "syntax:"
205
  msgstr ""
206
 
207
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
208
  #, php-format
209
  msgid ""
210
  "You can use %1$s and %2$s connections to define complex filters. "
211
  "Additionally you can set brackets %3$s for nested queries."
212
  msgstr ""
213
 
214
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
215
  msgid "AND"
216
  msgstr "Y"
217
 
218
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
219
  msgid "OR"
220
  msgstr "O"
221
 
222
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
223
  msgid "or"
224
  msgstr "o"
225
 
226
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
227
  msgid "and"
228
  msgstr "y"
229
 
230
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
231
  msgid "Examples for cat filters:"
232
  msgstr "Ejemplos de filtros cat:"
233
 
234
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
235
  #, php-format
236
  msgid "Show all events with category %1$s."
237
  msgstr ""
238
 
239
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
240
  #, php-format
241
  msgid "Show all events with category %1$s or %2$s."
242
  msgstr ""
243
 
244
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
245
  #, php-format
246
  msgid ""
247
  "Show all events with category %1$s and all events where category %2$s as "
248
  "well as %3$s is selected."
249
  msgstr ""
250
 
251
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
252
  msgid "Available Date Formats"
253
  msgstr "Formatos de fecha disponibles"
254
 
255
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
256
  msgid "For date filters you can use the following date formats:"
257
  msgstr ""
258
 
259
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
260
  msgid "Available Date Range Formats"
261
  msgstr "Formatos Rango Fecha Disponible"
262
 
263
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
264
  msgid "For date filters you can use the following daterange formats:"
265
  msgstr ""
266
 
267
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
268
  msgid "Value"
269
  msgstr "Valor"
270
 
271
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
272
  msgid "Example"
273
  msgstr "Ejemplo"
274
 
275
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
276
  msgid "Edit Category"
277
  msgstr "Editar categoría"
278
 
279
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
280
  msgid "Update Category"
281
  msgstr "Actualizar Categoría"
282
 
283
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
284
  msgid "Add New Category"
285
  msgstr "Agregar nueva categoría"
286
 
287
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
288
  #, php-format
289
  msgid "Category \"%s\" deleted."
290
  msgstr "Categoría “%s” eliminada."
291
 
292
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
293
  #, php-format
294
  msgid "This Category was also removed from %d events."
295
  msgstr ""
296
 
297
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
298
  #, php-format
299
  msgid "Error while deleting category \"%s\""
300
  msgstr ""
301
 
302
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
303
  msgid "Sync with post categories enabled."
304
  msgstr ""
305
 
306
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
307
  msgid "Sync with post categories disabled."
308
  msgstr ""
309
 
310
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
311
  msgid "Manual sync with post categories sucessfully finished."
312
  msgstr ""
313
 
314
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
315
  #, php-format
316
  msgid "New Category \"%s\" was added"
317
  msgstr ""
318
 
319
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
320
  #, php-format
321
  msgid "Error: New Category \"%s\" could not be added"
322
  msgstr ""
323
 
324
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
325
  #, php-format
326
  msgid "Category \"%s\" was modified"
327
  msgstr ""
328
 
329
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
330
  #, php-format
331
  msgid "Error: Category \"%s\" could not be modified"
332
  msgstr ""
333
 
334
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
335
  msgid ""
336
  "Categories are automatically synced with the post categories.<br />\n"
337
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
338
  "\t\t\t If you want to manually edit the categories you have to disable this option."
339
  msgstr ""
340
 
341
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
342
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
343
  msgid "Name"
344
  msgstr "Nombre"
345
 
346
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
347
  msgid "The name is how it appears on your site."
348
  msgstr ""
349
 
350
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
351
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
352
  msgid "Slug"
353
  msgstr "Enlace permanente"
354
 
355
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
356
  msgid ""
357
  "The “slug” is the URL-friendly version of the name. It is usually all "
358
  "lowercase and contains only letters, numbers, and hyphens."
359
  msgstr ""
360
 
361
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
362
  msgid "Parent"
363
  msgstr "Padre"
364
 
365
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
366
  msgid "None"
367
  msgstr "Ninguno"
368
 
369
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
370
  msgid ""
371
  "Categories can have a hierarchy. You might have a Jazz category, and under "
372
  "that have children categories for Bebop and Big Band. Totally optional."
373
  msgstr ""
374
 
375
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
376
  msgid "Apply"
377
  msgstr "Aplicar"
378
 
379
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
380
  msgid "Do a manual sync with post categories"
381
  msgstr ""
382
 
383
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
384
  msgid "Import Events"
385
  msgstr "Importar Eventos"
386
 
387
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
388
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
389
  msgid "Step"
390
  msgstr "Paso"
391
 
392
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
393
  msgid "Set import file and options"
394
  msgstr ""
395
 
396
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
397
  msgid "Import Event Data"
398
  msgstr ""
399
 
400
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
401
  msgid "Example file"
402
  msgstr "Archivo de ejemplo"
403
 
404
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
405
  #, php-format
406
  msgid ""
407
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
408
  msgstr ""
409
 
410
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
411
  msgid "Note"
412
  msgstr "Nota"
413
 
414
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
415
  msgid ""
416
  "Do not change the column header and separator line (first two lines), "
417
  "otherwise the import will fail!"
418
  msgstr ""
419
 
420
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
421
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
422
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
423
  msgid "Sorry, there has been an error."
424
  msgstr ""
425
 
426
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
427
  msgid "The file does not exist, please try again."
428
  msgstr ""
429
 
430
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
431
  msgid "The file is not a CSV file."
432
  msgstr ""
433
 
434
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
435
  msgid "Event review and category selection"
436
  msgstr ""
437
 
438
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
439
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
440
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
441
  msgid "Import"
442
  msgstr "Importar"
443
 
444
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
445
  msgid "Import with errors!"
446
  msgstr ""
447
 
448
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
449
  #, php-format
450
  msgid ""
451
  "An error occurred during import! Please send your import file to %1$sthe "
452
  "administrator%2$s for analysis."
453
  msgstr ""
454
 
455
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
456
  msgid "Import successful!"
457
  msgstr ""
458
 
459
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
460
  msgid "Go back to All Events"
461
  msgstr ""
462
 
463
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
464
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
465
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
466
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
467
  msgid "Title"
468
  msgstr "Título"
469
 
470
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
471
  msgid "Start Date"
472
  msgstr "Fecha Inicio"
473
 
474
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
475
  msgid "End Date"
476
  msgstr "Fecha Final"
477
 
478
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
479
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
480
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
481
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
482
  msgid "Time"
483
  msgstr "Hora"
484
 
485
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
486
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
487
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
488
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
489
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
490
  msgid "Location"
491
  msgstr "Ubicación"
492
 
493
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
494
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
496
  msgid "Details"
497
  msgstr "Detalles"
498
 
499
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
500
  msgid "There was an error when reading this CSV file."
501
  msgstr ""
502
 
503
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
504
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
505
  msgid "Cancel"
506
  msgstr "Cancelar"
507
 
508
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
509
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
510
  msgid "No categories available."
511
  msgstr "No hay categorías disponibles"
512
 
513
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
514
  msgid "Edit Event"
515
  msgstr "Editar Evento"
516
 
517
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
518
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
519
  msgid "Duplicate"
520
  msgstr "Duplicar"
521
 
522
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
523
  #, php-format
524
  msgid "Duplicate of event id:%d"
525
  msgstr "Duplicado de evento id: % d"
526
 
527
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
528
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
529
  msgid "required"
530
  msgstr "obligatorio"
531
 
532
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
533
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
534
  msgid "Date"
535
  msgstr "Fecha"
536
 
537
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
538
  msgid "Multi-Day Event"
539
  msgstr "Evento de varios días"
540
 
541
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
542
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
543
  msgid "Publish"
544
  msgstr "Publicar"
545
 
546
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
547
  msgid "Update"
548
  msgstr "Actualizar"
549
 
550
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
551
  msgid "Goto Category Settings"
552
  msgstr "Ir a Ajustes de Categorías"
553
 
554
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
555
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
558
  msgid "Y/m/d"
559
  msgstr "Y/m/d"
560
 
561
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
562
  msgid "Settings saved."
563
  msgstr "Configuración guardada."
564
 
565
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
566
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
567
  msgid "General"
568
  msgstr "General"
569
 
570
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
571
  msgid "Frontend Settings"
572
  msgstr "Configuración de interfaz"
573
 
574
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
575
  msgid "Admin Page Settings"
576
  msgstr "Configuración de página de administrador"
577
 
578
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
579
  msgid "Feed Settings"
580
  msgstr "Configuración Conectores"
581
 
582
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
583
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
584
  msgid "event"
585
  msgstr "evento"
586
 
587
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
588
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
589
  msgid "events"
590
  msgstr "eventos"
591
 
592
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
593
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
594
  msgid "Edit"
595
  msgstr "Editar"
596
 
597
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
598
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
599
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
601
  msgid "Delete"
602
  msgstr "Borrar"
603
 
604
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
605
  msgid "Author"
606
  msgstr "Autor"
607
 
608
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
609
  msgid "Published"
610
  msgstr "Publicado"
611
 
612
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
613
  msgid "Filter"
614
  msgstr "Filtro"
615
 
616
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
617
  #, php-format
618
  msgid "%s ago"
619
  msgstr "hace %s"
620
 
621
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
622
  msgid "Y/m/d g:i:s A"
623
  msgstr "Y/m/d g:i:s A"
624
 
625
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
626
  msgid "Year"
627
  msgstr "Año"
628
 
629
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
630
  msgid "A year can be specified in 4 digit format."
631
  msgstr ""
632
 
633
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
634
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
635
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
636
  #, php-format
637
  msgid ""
638
  "For a start date filter the first day of %1$s is used, in an end date the "
639
  "last day."
640
  msgstr ""
641
 
642
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
643
  msgid "the resulting year"
644
  msgstr ""
645
 
646
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
647
  msgid "Month"
648
  msgstr "Mes"
649
 
650
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
651
  msgid ""
652
  "A month can be specified with 4 digits for the year and 2 digits for the "
653
  "month, seperated by a hyphen (-)."
654
  msgstr ""
655
 
656
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
657
  msgid "the resulting month"
658
  msgstr ""
659
 
660
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
661
  msgid "Day"
662
  msgstr "Día"
663
 
664
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
665
  msgid ""
666
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
667
  " month and 2 digets for the day, seperated by hyphens (-)."
668
  msgstr ""
669
 
670
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
671
  msgid "Relative Year"
672
  msgstr "Año relativo"
673
 
674
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
675
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
676
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
678
  #, php-format
679
  msgid "%1$s from now can be specified in the following notation: %2$s"
680
  msgstr ""
681
 
682
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
683
  msgid "A relative year"
684
  msgstr ""
685
 
686
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
687
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
688
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
690
  #, php-format
691
  msgid ""
692
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
693
  "%3$s or %4$s attached (see also the example below)."
694
  msgstr ""
695
 
696
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
697
  msgid "number of years"
698
  msgstr ""
699
 
700
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
701
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
702
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
704
  #, php-format
705
  msgid "Additionally the following values are available: %1$s"
706
  msgstr ""
707
 
708
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
709
  msgid "Relative Month"
710
  msgstr "Mes relativo"
711
 
712
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
713
  msgid "A relative month"
714
  msgstr "Un mes relativo"
715
 
716
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
717
  msgid "number of months"
718
  msgstr "número de meses"
719
 
720
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
721
  msgid "Relative Week"
722
  msgstr "Semana relativa"
723
 
724
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
725
  msgid "A relative week"
726
  msgstr "Una semana relativa"
727
 
728
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
729
  msgid "number of weeks"
730
  msgstr "número de semanas"
731
 
732
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
733
  msgid "the resulting week"
734
  msgstr ""
735
 
736
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
737
  #, php-format
738
  msgid ""
739
  "The first day of the week is depending on the option %1$s which can be found"
740
  " and changed in %2$s."
741
  msgstr ""
742
 
743
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
744
  msgid "Week Starts On"
745
  msgstr ""
746
 
747
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
748
  msgid "Relative Day"
749
  msgstr "Día relativo"
750
 
751
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
752
  msgid "A relative day"
753
  msgstr "Un día relativo"
754
 
755
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
756
  msgid "number of days"
757
  msgstr "Número de días"
758
 
759
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
760
  msgid "Date range"
761
  msgstr "Rango de fechas"
762
 
763
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
764
  msgid ""
765
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
766
  "\t For the start and end date any available date format can be used."
767
  msgstr ""
768
 
769
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
770
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
771
  msgid "All"
772
  msgstr "Todos"
773
 
774
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
775
  msgid "This value defines a range without any limits."
776
  msgstr ""
777
 
778
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
779
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
780
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
781
  #, php-format
782
  msgid "The corresponding date_range format is: %1$s"
783
  msgstr ""
784
 
785
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
786
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
787
  msgid "Upcoming"
788
  msgstr "Próximamente"
789
 
790
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
791
  msgid "This value defines a range from the actual day to the future."
792
  msgstr ""
793
 
794
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
795
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
796
  msgid "Past"
797
  msgstr "Pasado"
798
 
799
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
800
  msgid "This value defines a range from the past to the previous day."
801
  msgstr ""
802
 
803
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
804
  msgid "Show all dates"
805
  msgstr "Mostrar todas las fechas"
806
 
807
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
808
  msgid "Show all categories"
809
  msgstr "Mostrar todas las categorías"
810
 
811
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
812
  msgid "Event Categories"
813
  msgstr "Categorías de Eventos"
814
 
815
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
816
  msgid "This option specifies all event category data."
817
  msgstr ""
818
 
819
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
820
  msgid "Sync Categories"
821
  msgstr "Sincronizar Categorías"
822
 
823
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
824
  msgid "Keep event categories in sync with post categories automatically"
825
  msgstr ""
826
 
827
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
828
  msgid "Attention"
829
  msgstr "Atención"
830
 
831
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
832
  msgid ""
833
  "Please note that this option will delete all categories which are not "
834
  "available in the post categories! Existing Categories with the same slug "
835
  "will be updated."
836
  msgstr ""
837
 
838
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
839
  msgid "CSV File to import"
840
  msgstr "Importar vía archivo CSV"
841
 
842
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
843
  msgid "Please select the file which contains the event data in CSV format."
844
  msgstr ""
845
 
846
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
847
  msgid "Used date format"
848
  msgstr "Formato de Fecha utilizado"
849
 
850
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
851
  msgid ""
852
  "With this option the used date format for event start and end date given in "
853
  "the CSV file can be specified."
854
  msgstr ""
855
 
856
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
857
  msgid "Text for no events"
858
  msgstr "Texto para ningún evento"
859
 
860
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
861
  msgid ""
862
  "This option defines the displayed text when no events are available for the "
863
  "selected view."
864
  msgstr ""
865
 
866
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
867
  msgid "Multiday filter range"
868
  msgstr ""
869
 
870
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
871
  msgid "Use the complete event range in the date filter"
872
  msgstr ""
873
 
874
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
875
  msgid ""
876
  "This option defines if the complete range of a multiday event shall be "
877
  "considered in the date filter."
878
  msgstr ""
879
 
880
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
881
  msgid ""
882
  "If disabled, only the start day of an event is considered in the filter."
883
  msgstr ""
884
 
885
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
886
  msgid ""
887
  "For an example multiday event which started yesterday and ends tomorrow this"
888
  " means, that it is displayed in umcoming dates when this option is enabled, "
889
  "but it is hidden when the option is disabled."
890
  msgstr ""
891
 
892
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
893
  msgid "Date display"
894
  msgstr "Indicación de la fecha"
895
 
896
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
897
  msgid "Show the date only once per day"
898
  msgstr ""
899
 
900
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
901
  msgid ""
902
  "With this option enabled the date is only displayed once per day if more "
903
  "than one event is available on the same day."
904
  msgstr ""
905
 
906
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
907
  msgid ""
908
  "If enabled, the events are ordered in a different way (end date before start"
909
  " time) to allow using the same date for as much events as possible."
910
  msgstr ""
911
 
912
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
913
  msgid "HTML tags"
914
  msgstr "Etiquetas HTML"
915
 
916
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
917
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
918
  #, php-format
919
  msgid "Allow HTML tags in the event field \"%1$s\""
920
  msgstr ""
921
 
922
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
923
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
924
  #, php-format
925
  msgid ""
926
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
927
  msgstr ""
928
 
929
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
930
  msgid "Text for \"Show details\""
931
  msgstr ""
932
 
933
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
934
  msgid ""
935
  "With this option the displayed text for the link to show the event details "
936
  "can be changed, when collapsing is enabled."
937
  msgstr ""
938
 
939
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
940
  msgid "Text for \"Hide details\""
941
  msgstr ""
942
 
943
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
944
  msgid ""
945
  "With this option the displayed text for the link to hide the event details "
946
  "can be changed, when collapsing is enabled."
947
  msgstr ""
948
 
949
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
950
  msgid "Disable CSS file"
951
  msgstr "Deshabitar CSS"
952
 
953
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
954
  #, php-format
955
  msgid "Disable the %1$s file."
956
  msgstr ""
957
 
958
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
959
  #, php-format
960
  msgid "With this option you can disable the inclusion of the %1$s file."
961
  msgstr ""
962
 
963
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
964
  msgid ""
965
  "This normally only make sense if you have css conflicts with your theme and "
966
  "want to set all required css styles somewhere else (e.g. in the theme css)."
967
  msgstr ""
968
 
969
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
970
  msgid "Date format in edit form"
971
  msgstr ""
972
 
973
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
974
  msgid ""
975
  "This option sets the displayed date format for the event date fields in the "
976
  "event new / edit form."
977
  msgstr ""
978
 
979
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
980
  msgid "The standard is an empty string to use the Wordpress standard setting."
981
  msgstr ""
982
 
983
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
984
  #, php-format
985
  msgid ""
986
  "All available options to specify the date format can be found %1$shere%2$s."
987
  msgstr ""
988
 
989
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
990
  msgid "Enable RSS feed"
991
  msgstr ""
992
 
993
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
994
  msgid "Enable support for an event RSS feed"
995
  msgstr ""
996
 
997
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
998
  msgid ""
999
  "This option activates a RSS feed for the events.<br />\n"
1000
  "\t You have to enable this option if you want to use one of the RSS feed features."
1001
  msgstr ""
1002
 
1003
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1004
  msgid "Feed name"
1005
  msgstr ""
1006
 
1007
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1008
  msgid ""
1009
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1010
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1011
  msgstr ""
1012
 
1013
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1014
  msgid "Feed Description"
1015
  msgstr ""
1016
 
1017
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1018
  msgid ""
1019
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1020
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1021
  msgstr ""
1022
 
1023
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1024
  msgid "Listed events"
1025
  msgstr ""
1026
 
1027
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1028
  msgid "Only show upcoming events in feed"
1029
  msgstr ""
1030
 
1031
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1032
  msgid ""
1033
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1034
  "\t If disabled all events (upcoming and past) will be listed."
1035
  msgstr ""
1036
 
1037
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1038
  msgid "Add RSS feed link in head"
1039
  msgstr ""
1040
 
1041
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1042
  msgid "Add RSS feed link in the html head"
1043
  msgstr ""
1044
 
1045
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1046
  msgid ""
1047
  "This option adds a RSS feed in the html head for the events.<br />\n"
1048
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1051
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1052
  msgstr ""
1053
 
1054
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1055
  msgid "Position of the RSS feed link"
1056
  msgstr ""
1057
 
1058
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1059
  msgid ""
1060
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1061
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1062
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1063
  msgstr ""
1064
 
1065
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1066
  msgid "Align of the RSS feed link"
1067
  msgstr ""
1068
 
1069
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1070
  msgid ""
1071
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1072
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1073
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1074
  msgstr ""
1075
 
1076
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1077
  msgid "Feed link text"
1078
  msgstr ""
1079
 
1080
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1081
  msgid ""
1082
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1083
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1084
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1085
  msgstr ""
1086
 
1087
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1088
  msgid "Feed link image"
1089
  msgstr ""
1090
 
1091
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1092
  msgid "Show rss image in feed link"
1093
  msgstr ""
1094
 
1095
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1096
  msgid ""
1097
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1098
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1099
  msgstr ""
1100
 
1101
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1102
  msgid "Show details"
1103
  msgstr ""
1104
 
1105
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1106
  msgid "Hide details"
1107
  msgstr ""
1108
 
1109
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1110
  msgid ""
1111
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1112
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1113
  msgstr ""
1114
 
1115
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1116
  msgid ""
1117
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1118
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1119
  msgstr ""
1120
 
1121
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1122
  msgid ""
1123
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1124
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1125
  msgstr ""
1126
 
1127
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1128
  msgid ""
1129
  "This attribute specifies the initial order of the events.<br />\n"
1130
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1131
  msgstr ""
1132
 
1133
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1134
  msgid ""
1135
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1136
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1138
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1139
  msgstr ""
1140
 
1141
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1142
  msgid ""
1143
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1144
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1145
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1146
  msgstr ""
1147
 
1148
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1149
  msgid ""
1150
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1151
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1152
  "\t Please not that in the actual version there is no pagination of the events available."
1153
  msgstr ""
1154
 
1155
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1156
  msgid ""
1157
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1158
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1159
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1160
  msgstr ""
1161
 
1162
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1163
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1164
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1165
+ msgid "number"
1166
+ msgstr ""
1167
+
1168
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1169
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1170
+ msgid ""
1171
+ "This attribute specifies if the title should be truncated to the given "
1172
+ "number of characters in the event list."
1173
+ msgstr ""
1174
+
1175
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1176
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1177
+ #, php-format
1178
+ msgid ""
1179
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1180
+ "is automatically truncated via css."
1181
+ msgstr ""
1182
+
1183
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1184
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1185
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1186
+ msgid "This attribute has no influence if only a single event is shown."
1187
+ msgstr ""
1188
+
1189
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1190
  msgid ""
1191
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1192
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1193
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1194
  msgstr ""
1195
 
1196
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1197
  msgid ""
1198
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1199
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1200
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1201
  msgstr ""
1202
 
1203
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1204
  msgid ""
1205
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1206
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1207
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1208
  msgstr ""
1209
 
1210
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1211
  msgid ""
1212
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1213
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1214
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1215
  msgstr ""
1216
 
1217
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1218
  msgid ""
1219
+ "This attribute specifies if the details should be truncate to the given "
1220
+ "number of characters in the event list."
1221
+ msgstr ""
1222
+
1223
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1224
+ #, php-format
1225
+ msgid "With the standard value %1$s the full text is displayed."
1226
  msgstr ""
1227
 
1228
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1229
  msgid ""
1230
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1231
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1233
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1234
  msgstr ""
1235
 
1236
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1237
  msgid ""
1238
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1239
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1241
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1242
  msgstr ""
1243
 
1244
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1245
  msgid ""
1246
  "This attribute specifies if a rss feed link should be added.<br />\n"
1247
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1250
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1251
  msgstr ""
1252
 
1253
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1254
  msgid ""
1255
  "This attribute specifies the page or post url for event links.<br />\n"
1256
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1257
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1258
  msgstr ""
1259
 
1260
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1261
  msgid ""
1262
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1263
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1264
  msgstr ""
1265
 
1266
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1267
  msgid "Event Information:"
1268
  msgstr "Información del evento:"
1269
 
1270
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1271
  msgid "(more&hellip;)"
1272
  msgstr ""
1273
 
1274
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1275
  msgid "This option defines the displayed title for the widget."
1276
  msgstr ""
1277
 
1278
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1279
  msgid "Category Filter"
1280
  msgstr "Categoría de filtro"
1281
 
1282
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1283
  msgid ""
1284
  "This option defines the categories of which events are shown. The standard "
1285
  "is all or an empty string to show all events. Specify a category slug or a "
1288
  "all possibilities."
1289
  msgstr ""
1290
 
1291
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1292
  msgid "Number of listed events"
1293
  msgstr ""
1294
 
1295
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1296
  msgid "The number of upcoming events to display"
1297
  msgstr ""
1298
 
1299
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1300
  msgid "Truncate event title to"
1301
  msgstr ""
1302
 
1303
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1304
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1306
  msgid "characters"
1307
  msgstr "caracteres"
1308
 
1309
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1310
+ msgid ""
1311
+ "This option defines the number of displayed characters for the event title."
1312
+ msgstr ""
1313
+
1314
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1315
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1316
+ #, php-format
1317
  msgid ""
1318
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1319
+ "automatically truncate the text via css."
1320
  msgstr ""
1321
 
1322
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1323
  msgid "Show event starttime"
1324
  msgstr ""
1325
 
1326
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1327
  msgid "This option defines if the event start time will be displayed."
1328
  msgstr ""
1329
 
1330
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1331
  msgid "Show event location"
1332
  msgstr ""
1333
 
1334
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1335
  msgid "This option defines if the event location will be displayed."
1336
  msgstr ""
1337
 
1338
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1339
  msgid "Truncate location to"
1340
  msgstr ""
1341
 
1342
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1343
  msgid ""
1344
  "If the event location is diplayed this option defines the number of "
1345
+ "displayed characters."
1346
  msgstr ""
1347
 
1348
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1349
  msgid "Show event details"
1350
  msgstr "Ver detalles del evento"
1351
 
1352
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1353
  msgid "This option defines if the event details will be displayed."
1354
  msgstr ""
1355
 
1356
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1357
  msgid "Truncate details to"
1358
  msgstr "Truncar los datos para"
1359
 
1360
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1361
  msgid ""
1362
  "If the event details are diplayed this option defines the number of diplayed"
1363
+ " characters."
1364
+ msgstr ""
1365
+
1366
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1367
+ #, php-format
1368
+ msgid "Set this value to %1$s to view the full text."
1369
  msgstr ""
1370
 
1371
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1372
  msgid "URL to the linked Event List page"
1373
  msgstr ""
1374
 
1375
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1376
  msgid ""
1377
  "This option defines the url to the linked Event List page. This option is "
1378
  "required if you want to use one of the options below."
1379
  msgstr ""
1380
 
1381
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1382
  msgid "Shortcode ID on linked page"
1383
  msgstr ""
1384
 
1385
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1386
  msgid ""
1387
  "This option defines the shortcode-id for the Event List on the linked page. "
1388
  "Normally the standard value 1 is correct, you only have to change it if you "
1389
  "use multiple event-list shortcodes on the linked page."
1390
  msgstr ""
1391
 
1392
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1393
  msgid ""
1394
  "With this option you can add a link to the single event page for every "
1395
  "displayed event. You have to specify the url to the page and the shortcode "
1396
  "id option if you want to use it."
1397
  msgstr ""
1398
 
1399
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1400
  msgid ""
1401
  "With this option you can add a link to the event-list page below the "
1402
  "diplayed events. You have to specify the url to page option if you want to "
1403
  "use it."
1404
  msgstr ""
1405
 
1406
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1407
  msgid "Caption for the link"
1408
  msgstr ""
1409
 
1410
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1411
  msgid ""
1412
  "This option defines the text for the link to the Event List page if the "
1413
  "approriate option is selected."
1414
  msgstr ""
1415
 
1416
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1417
  msgid "With this widget a list of upcoming events can be displayed."
1418
  msgstr ""
1419
 
1420
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1421
  msgid "Upcoming events"
1422
  msgstr ""
1423
 
1424
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1425
  msgid "show events page"
1426
  msgstr ""
languages/event-list-fi_FI.mo CHANGED
Binary file
languages/event-list-fi_FI.po CHANGED
@@ -1,5 +1,5 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
@@ -9,8 +9,8 @@ msgid ""
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
13
- "PO-Revision-Date: 2015-12-13 20:42+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
16
  "MIME-Version: 1.0\n"
@@ -19,128 +19,128 @@ msgstr ""
19
  "Language: fi_FI\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
 
22
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
23
  msgid "Event List"
24
  msgstr "Tapahtuma lista"
25
 
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
29
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
30
  msgid "Events"
31
  msgstr "Tapahtumat"
32
 
33
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
34
  msgid "All Events"
35
  msgstr "Kaikki tapahtumat"
36
 
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
38
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
39
  msgid "Add New Event"
40
  msgstr "Lisää uusi tapahtuma"
41
 
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
43
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
44
  msgid "Add New"
45
  msgstr "Lisää uusi"
46
 
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
48
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
49
  msgid "Event List Categories"
50
  msgstr "Tapahtuma listan gategoriat"
51
 
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
55
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
56
  msgid "Categories"
57
  msgstr "Kategoriat"
58
 
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
60
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
61
  msgid "Event List Settings"
62
  msgstr "Tapahtuma listan asetukset"
63
 
64
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
65
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
66
  msgid "Settings"
67
  msgstr "Asetukset"
68
 
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
70
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
71
  msgid "About Event List"
72
  msgstr "Lisätietoa Tapahtumalistasta"
73
 
74
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
75
  msgid "About"
76
  msgstr "Lisätietoa"
77
 
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
83
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
84
  msgid "You do not have sufficient permissions to access this page."
85
  msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivustolle."
86
 
87
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
88
  msgid "Help and Instructions"
89
  msgstr "Apu ja ohjeet"
90
 
91
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
92
  #, php-format
93
  msgid "You can manage your events %1$shere%2$s"
94
  msgstr "Voit hallita tapahtumiasi %1$shere%2$s"
95
 
96
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
97
  msgid "To show the events on your site you have 2 possibilities"
98
  msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi."
99
 
100
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
101
  #, php-format
102
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
103
  msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen."
104
 
105
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
106
  #, php-format
107
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
108
  msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi."
109
 
110
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
111
  msgid ""
112
  "The displayed events and their style can be modified with the available "
113
  "widget settings and the available attributes for the shortcode."
114
  msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa."
115
 
116
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
117
  msgid ""
118
  "A list of all available shortcode attributes with their description is "
119
  "available below."
120
  msgstr "Alla on listattuna shortcode attribuutit kuvauksineen."
121
 
122
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
123
  msgid "The available widget options are described in their tooltip text."
124
  msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä."
125
 
126
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
127
  #, php-format
128
  msgid ""
129
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
130
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
131
  msgstr ""
132
 
133
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
135
  msgid "Add links to the single events"
136
  msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
137
 
138
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
139
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
140
  msgid "Add a link to the Event List page"
141
  msgstr "Lisää linkki Tapahtumalistan sivulle"
142
 
143
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
144
  #, php-format
145
  msgid ""
146
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -148,903 +148,903 @@ msgid ""
148
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
149
  msgstr ""
150
 
151
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
152
  #, php-format
153
  msgid ""
154
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
155
  "just the way you want."
156
  msgstr ""
157
 
158
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
159
  msgid "Shortcode Attributes"
160
  msgstr ""
161
 
162
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
163
  msgid ""
164
  "You have the possibility to modify the output if you add some of the "
165
  "following attributes to the shortcode."
166
  msgstr ""
167
 
168
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
169
  #, php-format
170
  msgid ""
171
  "You can combine and add as much attributes as you want. E.g. the shortcode "
172
  "including the attributes %1$s and %2$s would looks like this:"
173
  msgstr ""
174
 
175
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
176
  msgid ""
177
  "Below you can find a list of all supported attributes with their "
178
  "descriptions and available options:"
179
  msgstr ""
180
 
181
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
182
  msgid "Attribute name"
183
  msgstr "Atribuutin nimi"
184
 
185
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
186
  msgid "Value options"
187
  msgstr "Arvon vaihtoehdot"
188
 
189
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
190
  msgid "Default value"
191
  msgstr "Oletus arvo"
192
 
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
195
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
196
  msgid "Description"
197
  msgstr "Kuvaus"
198
 
199
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
200
  msgid "Filter Syntax"
201
  msgstr ""
202
 
203
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
204
  msgid ""
205
  "For date and cat filters you can specify complex filters with the following "
206
  "syntax:"
207
  msgstr ""
208
 
209
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
210
  #, php-format
211
  msgid ""
212
  "You can use %1$s and %2$s connections to define complex filters. "
213
  "Additionally you can set brackets %3$s for nested queries."
214
  msgstr ""
215
 
216
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
217
  msgid "AND"
218
  msgstr ""
219
 
220
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
221
  msgid "OR"
222
  msgstr ""
223
 
224
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
225
  msgid "or"
226
  msgstr "tai"
227
 
228
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
229
  msgid "and"
230
  msgstr "ja"
231
 
232
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
233
  msgid "Examples for cat filters:"
234
  msgstr ""
235
 
236
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
237
  #, php-format
238
  msgid "Show all events with category %1$s."
239
  msgstr ""
240
 
241
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
242
  #, php-format
243
  msgid "Show all events with category %1$s or %2$s."
244
  msgstr ""
245
 
246
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
247
  #, php-format
248
  msgid ""
249
  "Show all events with category %1$s and all events where category %2$s as "
250
  "well as %3$s is selected."
251
  msgstr ""
252
 
253
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
254
  msgid "Available Date Formats"
255
  msgstr ""
256
 
257
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
258
  msgid "For date filters you can use the following date formats:"
259
  msgstr ""
260
 
261
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
262
  msgid "Available Date Range Formats"
263
  msgstr ""
264
 
265
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
266
  msgid "For date filters you can use the following daterange formats:"
267
  msgstr ""
268
 
269
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
270
  msgid "Value"
271
  msgstr "Arvo"
272
 
273
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
274
  msgid "Example"
275
  msgstr "Esimerkki"
276
 
277
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
278
  msgid "Edit Category"
279
  msgstr "Muokkaa kategoriaa"
280
 
281
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
282
  msgid "Update Category"
283
  msgstr "Päivitä kategoria"
284
 
285
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
286
  msgid "Add New Category"
287
  msgstr "Lisää uusi kategoria"
288
 
289
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
290
  #, php-format
291
  msgid "Category \"%s\" deleted."
292
  msgstr "Kategoria \"%s\" on poistettu."
293
 
294
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
295
  #, php-format
296
  msgid "This Category was also removed from %d events."
297
  msgstr ""
298
 
299
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
300
  #, php-format
301
  msgid "Error while deleting category \"%s\""
302
  msgstr ""
303
 
304
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
305
  msgid "Sync with post categories enabled."
306
  msgstr ""
307
 
308
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
309
  msgid "Sync with post categories disabled."
310
  msgstr ""
311
 
312
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
313
  msgid "Manual sync with post categories sucessfully finished."
314
  msgstr ""
315
 
316
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
317
  #, php-format
318
  msgid "New Category \"%s\" was added"
319
  msgstr ""
320
 
321
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
322
  #, php-format
323
  msgid "Error: New Category \"%s\" could not be added"
324
  msgstr ""
325
 
326
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
327
  #, php-format
328
  msgid "Category \"%s\" was modified"
329
  msgstr ""
330
 
331
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
332
  #, php-format
333
  msgid "Error: Category \"%s\" could not be modified"
334
  msgstr ""
335
 
336
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
337
  msgid ""
338
  "Categories are automatically synced with the post categories.<br />\n"
339
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
340
  "\t\t\t If you want to manually edit the categories you have to disable this option."
341
  msgstr ""
342
 
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
344
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
345
  msgid "Name"
346
  msgstr "Nimi"
347
 
348
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
349
  msgid "The name is how it appears on your site."
350
  msgstr ""
351
 
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
353
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
354
  msgid "Slug"
355
  msgstr ""
356
 
357
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
358
  msgid ""
359
  "The “slug” is the URL-friendly version of the name. It is usually all "
360
  "lowercase and contains only letters, numbers, and hyphens."
361
  msgstr ""
362
 
363
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
364
  msgid "Parent"
365
  msgstr ""
366
 
367
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
368
  msgid "None"
369
  msgstr "Tyhjä"
370
 
371
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
372
  msgid ""
373
  "Categories can have a hierarchy. You might have a Jazz category, and under "
374
  "that have children categories for Bebop and Big Band. Totally optional."
375
  msgstr ""
376
 
377
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
378
  msgid "Apply"
379
  msgstr "Aseta"
380
 
381
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
382
  msgid "Do a manual sync with post categories"
383
  msgstr ""
384
 
385
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
386
  msgid "Import Events"
387
  msgstr "Tuo tapahtumia"
388
 
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
390
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
391
  msgid "Step"
392
  msgstr ""
393
 
394
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
395
  msgid "Set import file and options"
396
  msgstr ""
397
 
398
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
399
  msgid "Import Event Data"
400
  msgstr "Tuo tapahtuma tiedot"
401
 
402
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
403
  msgid "Example file"
404
  msgstr "Esimerkki tiedosto"
405
 
406
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
407
  #, php-format
408
  msgid ""
409
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
410
  msgstr ""
411
 
412
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
413
  msgid "Note"
414
  msgstr ""
415
 
416
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
417
  msgid ""
418
  "Do not change the column header and separator line (first two lines), "
419
  "otherwise the import will fail!"
420
  msgstr ""
421
 
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
424
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
425
  msgid "Sorry, there has been an error."
426
  msgstr ""
427
 
428
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
429
  msgid "The file does not exist, please try again."
430
  msgstr ""
431
 
432
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
433
  msgid "The file is not a CSV file."
434
  msgstr ""
435
 
436
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
437
  msgid "Event review and category selection"
438
  msgstr ""
439
 
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
442
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
443
  msgid "Import"
444
  msgstr "Tuo"
445
 
446
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
447
  msgid "Import with errors!"
448
  msgstr ""
449
 
450
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
451
  #, php-format
452
  msgid ""
453
  "An error occurred during import! Please send your import file to %1$sthe "
454
  "administrator%2$s for analysis."
455
  msgstr ""
456
 
457
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
458
  msgid "Import successful!"
459
  msgstr ""
460
 
461
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
462
  msgid "Go back to All Events"
463
  msgstr ""
464
 
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
467
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
468
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
469
  msgid "Title"
470
  msgstr "Otsikko"
471
 
472
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
473
  msgid "Start Date"
474
  msgstr "Alku päivämäärä"
475
 
476
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
477
  msgid "End Date"
478
  msgstr "Loppu päivämäärä"
479
 
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
481
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
483
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
484
  msgid "Time"
485
  msgstr "Aika"
486
 
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
489
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
491
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
492
  msgid "Location"
493
  msgstr "Sijainti"
494
 
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
497
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
498
  msgid "Details"
499
  msgstr "Yksityiskohdat"
500
 
501
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
502
  msgid "There was an error when reading this CSV file."
503
  msgstr ""
504
 
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
506
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
507
  msgid "Cancel"
508
  msgstr "Peruuta"
509
 
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
511
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
512
  msgid "No categories available."
513
  msgstr ""
514
 
515
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
516
  msgid "Edit Event"
517
  msgstr "Muokkaa tapahtumaa"
518
 
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
520
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
521
  msgid "Duplicate"
522
  msgstr ""
523
 
524
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
525
  #, php-format
526
  msgid "Duplicate of event id:%d"
527
  msgstr ""
528
 
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
530
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
531
  msgid "required"
532
  msgstr "tarpeellinen"
533
 
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
535
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
536
  msgid "Date"
537
  msgstr "Päiväys"
538
 
539
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
540
  msgid "Multi-Day Event"
541
  msgstr ""
542
 
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
544
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
545
  msgid "Publish"
546
  msgstr "Julkaise"
547
 
548
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
549
  msgid "Update"
550
  msgstr "Päivitä"
551
 
552
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
553
  msgid "Goto Category Settings"
554
  msgstr ""
555
 
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
559
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
560
  msgid "Y/m/d"
561
  msgstr ""
562
 
563
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
564
  msgid "Settings saved."
565
  msgstr "Asetukset tallennettu."
566
 
567
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
568
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
569
  msgid "General"
570
  msgstr "Yleinen"
571
 
572
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
573
  msgid "Frontend Settings"
574
  msgstr ""
575
 
576
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
577
  msgid "Admin Page Settings"
578
  msgstr ""
579
 
580
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
581
  msgid "Feed Settings"
582
  msgstr "Syöte asetukset"
583
 
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
585
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
586
  msgid "event"
587
  msgstr "tapahtuma"
588
 
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
590
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
591
  msgid "events"
592
  msgstr "Tapahtumat"
593
 
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
595
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
596
  msgid "Edit"
597
  msgstr "Muokkaa"
598
 
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
602
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
603
  msgid "Delete"
604
  msgstr "Poista"
605
 
606
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
607
  msgid "Author"
608
  msgstr ""
609
 
610
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
611
  msgid "Published"
612
  msgstr "Julkaistu"
613
 
614
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
615
  msgid "Filter"
616
  msgstr "Suodatin"
617
 
618
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
619
  #, php-format
620
  msgid "%s ago"
621
  msgstr ""
622
 
623
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
624
  msgid "Y/m/d g:i:s A"
625
  msgstr ""
626
 
627
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
628
  msgid "Year"
629
  msgstr "Vuosi"
630
 
631
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
632
  msgid "A year can be specified in 4 digit format."
633
  msgstr ""
634
 
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
637
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
638
  #, php-format
639
  msgid ""
640
  "For a start date filter the first day of %1$s is used, in an end date the "
641
  "last day."
642
  msgstr ""
643
 
644
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
645
  msgid "the resulting year"
646
  msgstr ""
647
 
648
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
649
  msgid "Month"
650
  msgstr "Kuukausi"
651
 
652
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
653
  msgid ""
654
  "A month can be specified with 4 digits for the year and 2 digits for the "
655
  "month, seperated by a hyphen (-)."
656
  msgstr ""
657
 
658
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
659
  msgid "the resulting month"
660
  msgstr ""
661
 
662
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
663
  msgid "Day"
664
  msgstr "Päivä"
665
 
666
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
667
  msgid ""
668
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
669
  " month and 2 digets for the day, seperated by hyphens (-)."
670
  msgstr ""
671
 
672
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
673
  msgid "Relative Year"
674
  msgstr ""
675
 
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
679
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
680
  #, php-format
681
  msgid "%1$s from now can be specified in the following notation: %2$s"
682
  msgstr ""
683
 
684
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
685
  msgid "A relative year"
686
  msgstr ""
687
 
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
691
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
692
  #, php-format
693
  msgid ""
694
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
695
  "%3$s or %4$s attached (see also the example below)."
696
  msgstr ""
697
 
698
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
699
  msgid "number of years"
700
  msgstr ""
701
 
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
705
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
706
  #, php-format
707
  msgid "Additionally the following values are available: %1$s"
708
  msgstr ""
709
 
710
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
711
  msgid "Relative Month"
712
  msgstr ""
713
 
714
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
715
  msgid "A relative month"
716
  msgstr ""
717
 
718
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
719
  msgid "number of months"
720
  msgstr ""
721
 
722
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
723
  msgid "Relative Week"
724
  msgstr ""
725
 
726
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
727
  msgid "A relative week"
728
  msgstr ""
729
 
730
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
731
  msgid "number of weeks"
732
  msgstr ""
733
 
734
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
735
  msgid "the resulting week"
736
  msgstr ""
737
 
738
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
739
  #, php-format
740
  msgid ""
741
  "The first day of the week is depending on the option %1$s which can be found"
742
  " and changed in %2$s."
743
  msgstr ""
744
 
745
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
746
  msgid "Week Starts On"
747
  msgstr ""
748
 
749
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
750
  msgid "Relative Day"
751
  msgstr ""
752
 
753
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
754
  msgid "A relative day"
755
  msgstr ""
756
 
757
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
758
  msgid "number of days"
759
  msgstr ""
760
 
761
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
762
  msgid "Date range"
763
  msgstr ""
764
 
765
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
766
  msgid ""
767
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
768
  "\t For the start and end date any available date format can be used."
769
  msgstr ""
770
 
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
772
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
773
  msgid "All"
774
  msgstr "Kaikki"
775
 
776
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
777
  msgid "This value defines a range without any limits."
778
  msgstr ""
779
 
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
782
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
783
  #, php-format
784
  msgid "The corresponding date_range format is: %1$s"
785
  msgstr ""
786
 
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
788
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
789
  msgid "Upcoming"
790
  msgstr "Tulevat"
791
 
792
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
793
  msgid "This value defines a range from the actual day to the future."
794
  msgstr ""
795
 
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
797
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
798
  msgid "Past"
799
  msgstr "Menneet"
800
 
801
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
802
  msgid "This value defines a range from the past to the previous day."
803
  msgstr ""
804
 
805
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
806
  msgid "Show all dates"
807
  msgstr "Näytä kaikki päiväykset"
808
 
809
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
810
  msgid "Show all categories"
811
  msgstr "Näytä kaikki kategoriat"
812
 
813
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
814
  msgid "Event Categories"
815
  msgstr "Tapahtuma kategoriat"
816
 
817
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
818
  msgid "This option specifies all event category data."
819
  msgstr ""
820
 
821
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
822
  msgid "Sync Categories"
823
  msgstr "Synkronoi kategoriat"
824
 
825
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
826
  msgid "Keep event categories in sync with post categories automatically"
827
  msgstr ""
828
 
829
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
830
  msgid "Attention"
831
  msgstr "Huomio"
832
 
833
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
834
  msgid ""
835
  "Please note that this option will delete all categories which are not "
836
  "available in the post categories! Existing Categories with the same slug "
837
  "will be updated."
838
  msgstr ""
839
 
840
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
841
  msgid "CSV File to import"
842
  msgstr ""
843
 
844
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
845
  msgid "Please select the file which contains the event data in CSV format."
846
  msgstr ""
847
 
848
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
849
  msgid "Used date format"
850
  msgstr ""
851
 
852
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
853
  msgid ""
854
  "With this option the used date format for event start and end date given in "
855
  "the CSV file can be specified."
856
  msgstr ""
857
 
858
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
859
  msgid "Text for no events"
860
  msgstr "Ei tapahtumia teksti"
861
 
862
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
863
  msgid ""
864
  "This option defines the displayed text when no events are available for the "
865
  "selected view."
866
  msgstr ""
867
 
868
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
869
  msgid "Multiday filter range"
870
  msgstr ""
871
 
872
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
873
  msgid "Use the complete event range in the date filter"
874
  msgstr ""
875
 
876
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
877
  msgid ""
878
  "This option defines if the complete range of a multiday event shall be "
879
  "considered in the date filter."
880
  msgstr ""
881
 
882
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
883
  msgid ""
884
  "If disabled, only the start day of an event is considered in the filter."
885
  msgstr ""
886
 
887
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
888
  msgid ""
889
  "For an example multiday event which started yesterday and ends tomorrow this"
890
  " means, that it is displayed in umcoming dates when this option is enabled, "
891
  "but it is hidden when the option is disabled."
892
  msgstr ""
893
 
894
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
895
  msgid "Date display"
896
  msgstr "Päivä näyttö"
897
 
898
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
899
  msgid "Show the date only once per day"
900
  msgstr ""
901
 
902
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
903
  msgid ""
904
  "With this option enabled the date is only displayed once per day if more "
905
  "than one event is available on the same day."
906
  msgstr ""
907
 
908
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
909
  msgid ""
910
  "If enabled, the events are ordered in a different way (end date before start"
911
  " time) to allow using the same date for as much events as possible."
912
  msgstr ""
913
 
914
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
915
  msgid "HTML tags"
916
  msgstr "HTML merkit"
917
 
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
919
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
920
  #, php-format
921
  msgid "Allow HTML tags in the event field \"%1$s\""
922
  msgstr ""
923
 
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
925
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
926
  #, php-format
927
  msgid ""
928
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
929
  msgstr ""
930
 
931
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
932
  msgid "Text for \"Show details\""
933
  msgstr ""
934
 
935
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
936
  msgid ""
937
  "With this option the displayed text for the link to show the event details "
938
  "can be changed, when collapsing is enabled."
939
  msgstr ""
940
 
941
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
942
  msgid "Text for \"Hide details\""
943
  msgstr ""
944
 
945
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
946
  msgid ""
947
  "With this option the displayed text for the link to hide the event details "
948
  "can be changed, when collapsing is enabled."
949
  msgstr ""
950
 
951
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
952
  msgid "Disable CSS file"
953
  msgstr "Estä CSS tiedosto"
954
 
955
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
956
  #, php-format
957
  msgid "Disable the %1$s file."
958
  msgstr ""
959
 
960
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
961
  #, php-format
962
  msgid "With this option you can disable the inclusion of the %1$s file."
963
  msgstr ""
964
 
965
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
966
  msgid ""
967
  "This normally only make sense if you have css conflicts with your theme and "
968
  "want to set all required css styles somewhere else (e.g. in the theme css)."
969
  msgstr ""
970
 
971
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
972
  msgid "Date format in edit form"
973
  msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
974
 
975
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
976
  msgid ""
977
  "This option sets the displayed date format for the event date fields in the "
978
  "event new / edit form."
979
  msgstr ""
980
 
981
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
982
  msgid "The standard is an empty string to use the Wordpress standard setting."
983
  msgstr ""
984
 
985
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
986
  #, php-format
987
  msgid ""
988
  "All available options to specify the date format can be found %1$shere%2$s."
989
  msgstr ""
990
 
991
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
992
  msgid "Enable RSS feed"
993
  msgstr "Salli RSS syöte"
994
 
995
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
996
  msgid "Enable support for an event RSS feed"
997
  msgstr ""
998
 
999
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
1000
  msgid ""
1001
  "This option activates a RSS feed for the events.<br />\n"
1002
  "\t You have to enable this option if you want to use one of the RSS feed features."
1003
  msgstr ""
1004
 
1005
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1006
  msgid "Feed name"
1007
  msgstr "Syötteen nimi"
1008
 
1009
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1010
  msgid ""
1011
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1012
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1013
  msgstr ""
1014
 
1015
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1016
  msgid "Feed Description"
1017
  msgstr "Syötteen kuvaus"
1018
 
1019
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1020
  msgid ""
1021
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1022
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1023
  msgstr ""
1024
 
1025
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1026
  msgid "Listed events"
1027
  msgstr "Listatut tapahtumat"
1028
 
1029
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1030
  msgid "Only show upcoming events in feed"
1031
  msgstr ""
1032
 
1033
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1034
  msgid ""
1035
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1036
  "\t If disabled all events (upcoming and past) will be listed."
1037
  msgstr ""
1038
 
1039
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1040
  msgid "Add RSS feed link in head"
1041
  msgstr ""
1042
 
1043
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1044
  msgid "Add RSS feed link in the html head"
1045
  msgstr ""
1046
 
1047
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1048
  msgid ""
1049
  "This option adds a RSS feed in the html head for the events.<br />\n"
1050
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1053,86 +1053,86 @@ msgid ""
1053
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1054
  msgstr ""
1055
 
1056
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1057
  msgid "Position of the RSS feed link"
1058
  msgstr ""
1059
 
1060
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1061
  msgid ""
1062
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1063
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1064
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1065
  msgstr ""
1066
 
1067
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1068
  msgid "Align of the RSS feed link"
1069
  msgstr ""
1070
 
1071
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1072
  msgid ""
1073
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1074
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1075
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1076
  msgstr ""
1077
 
1078
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1079
  msgid "Feed link text"
1080
  msgstr ""
1081
 
1082
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1083
  msgid ""
1084
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1085
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1086
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1087
  msgstr ""
1088
 
1089
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1090
  msgid "Feed link image"
1091
  msgstr ""
1092
 
1093
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1094
  msgid "Show rss image in feed link"
1095
  msgstr ""
1096
 
1097
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1098
  msgid ""
1099
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1100
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1101
  msgstr ""
1102
 
1103
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1104
  msgid "Show details"
1105
  msgstr ""
1106
 
1107
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1108
  msgid "Hide details"
1109
  msgstr ""
1110
 
1111
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1112
  msgid ""
1113
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1114
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1115
  msgstr ""
1116
 
1117
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1118
  msgid ""
1119
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1120
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1121
  msgstr ""
1122
 
1123
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1124
  msgid ""
1125
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1126
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1127
  msgstr ""
1128
 
1129
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1130
  msgid ""
1131
  "This attribute specifies the initial order of the events.<br />\n"
1132
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1133
  msgstr ""
1134
 
1135
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1136
  msgid ""
1137
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1138
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1140,63 +1140,94 @@ msgid ""
1140
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1141
  msgstr ""
1142
 
1143
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1144
  msgid ""
1145
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1146
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1147
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1148
  msgstr ""
1149
 
1150
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1151
  msgid ""
1152
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1153
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1154
  "\t Please not that in the actual version there is no pagination of the events available."
1155
  msgstr ""
1156
 
1157
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1158
  msgid ""
1159
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1160
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1161
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1162
  msgstr ""
1163
 
1164
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  msgid ""
1166
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1167
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1168
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1169
  msgstr ""
1170
 
1171
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1172
  msgid ""
1173
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1174
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1175
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1176
  msgstr ""
1177
 
1178
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1179
  msgid ""
1180
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1181
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1182
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1183
  msgstr ""
1184
 
1185
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1186
  msgid ""
1187
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1188
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1189
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1190
  msgstr ""
1191
 
1192
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1193
  msgid ""
1194
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1195
- "\t With the standard value 0 the full details are displayed.<br />\n"
1196
- "\t This attribute has no influence if only a single event is shown."
 
 
 
 
1197
  msgstr ""
1198
 
1199
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1200
  msgid ""
1201
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1202
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1204,7 +1235,7 @@ msgid ""
1204
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1205
  msgstr ""
1206
 
1207
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1208
  msgid ""
1209
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1210
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1212,7 +1243,7 @@ msgid ""
1212
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1213
  msgstr ""
1214
 
1215
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1216
  msgid ""
1217
  "This attribute specifies if a rss feed link should be added.<br />\n"
1218
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1221,44 +1252,36 @@ msgid ""
1221
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1222
  msgstr ""
1223
 
1224
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1225
  msgid ""
1226
  "This attribute specifies the page or post url for event links.<br />\n"
1227
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1228
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1229
  msgstr ""
1230
 
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1232
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1233
- msgid ""
1234
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1235
- "\t With the standard value 0 the full details are displayed.<br />\n"
1236
- "\t This attribute has no influence if only a single event is shown."
1237
- msgstr ""
1238
-
1239
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1240
  msgid ""
1241
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1242
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1243
  msgstr ""
1244
 
1245
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1246
  msgid "Event Information:"
1247
  msgstr "Tapahtuman tiedot:"
1248
 
1249
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1250
  msgid "(more&hellip;)"
1251
  msgstr ""
1252
 
1253
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1254
  msgid "This option defines the displayed title for the widget."
1255
  msgstr "Määritä vimpaimen näkyvä otsikko"
1256
 
1257
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1258
  msgid "Category Filter"
1259
  msgstr "Kategoria suodatin"
1260
 
1261
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1262
  msgid ""
1263
  "This option defines the categories of which events are shown. The standard "
1264
  "is all or an empty string to show all events. Specify a category slug or a "
@@ -1267,127 +1290,139 @@ msgid ""
1267
  "all possibilities."
1268
  msgstr ""
1269
 
1270
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1271
  msgid "Number of listed events"
1272
  msgstr "Listattujen tapahtumien määrä"
1273
 
1274
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1275
  msgid "The number of upcoming events to display"
1276
  msgstr ""
1277
 
1278
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1279
  msgid "Truncate event title to"
1280
  msgstr "Tapahtuma otsikon lyhenne"
1281
 
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1284
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1285
  msgid "characters"
1286
  msgstr "merkkejä"
1287
 
1288
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
 
 
 
 
 
1289
  msgid ""
1290
- "This option defines the number of displayed characters for the event title. "
1291
- "Set this value to 0 to view the full title."
1292
  msgstr ""
1293
 
1294
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1295
  msgid "Show event starttime"
1296
  msgstr "Näytä tapahtuman alkamisajankohta"
1297
 
1298
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1299
  msgid "This option defines if the event start time will be displayed."
1300
  msgstr ""
1301
 
1302
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1303
  msgid "Show event location"
1304
  msgstr "Näytä tapahtuman paikka"
1305
 
1306
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1307
  msgid "This option defines if the event location will be displayed."
1308
  msgstr ""
1309
 
1310
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1311
  msgid "Truncate location to"
1312
  msgstr "Sijainnin lyhenne"
1313
 
1314
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1315
  msgid ""
1316
  "If the event location is diplayed this option defines the number of "
1317
- "displayed characters. Set this value to 0 to view the full location."
1318
  msgstr ""
1319
 
1320
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1321
  msgid "Show event details"
1322
  msgstr "Näytä tapahtuman tiedot"
1323
 
1324
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1325
  msgid "This option defines if the event details will be displayed."
1326
  msgstr ""
1327
 
1328
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1329
  msgid "Truncate details to"
1330
  msgstr "Yksityiskohtien lyhenne"
1331
 
1332
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1333
  msgid ""
1334
  "If the event details are diplayed this option defines the number of diplayed"
1335
- " characters. Set this value to 0 to view the full details."
 
 
 
 
 
1336
  msgstr ""
1337
 
1338
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1339
  msgid "URL to the linked Event List page"
1340
  msgstr ""
1341
 
1342
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1343
  msgid ""
1344
  "This option defines the url to the linked Event List page. This option is "
1345
  "required if you want to use one of the options below."
1346
  msgstr ""
1347
 
1348
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1349
  msgid "Shortcode ID on linked page"
1350
  msgstr ""
1351
 
1352
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1353
  msgid ""
1354
  "This option defines the shortcode-id for the Event List on the linked page. "
1355
  "Normally the standard value 1 is correct, you only have to change it if you "
1356
  "use multiple event-list shortcodes on the linked page."
1357
  msgstr ""
1358
 
1359
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1360
  msgid ""
1361
  "With this option you can add a link to the single event page for every "
1362
  "displayed event. You have to specify the url to the page and the shortcode "
1363
  "id option if you want to use it."
1364
  msgstr ""
1365
 
1366
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1367
  msgid ""
1368
  "With this option you can add a link to the event-list page below the "
1369
  "diplayed events. You have to specify the url to page option if you want to "
1370
  "use it."
1371
  msgstr ""
1372
 
1373
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1374
  msgid "Caption for the link"
1375
  msgstr ""
1376
 
1377
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1378
  msgid ""
1379
  "This option defines the text for the link to the Event List page if the "
1380
  "approriate option is selected."
1381
  msgstr ""
1382
 
1383
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1384
  msgid "With this widget a list of upcoming events can be displayed."
1385
  msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
1386
 
1387
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1388
  msgid "Upcoming events"
1389
  msgstr "Tulevat tapahtumat"
1390
 
1391
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1392
  msgid "show events page"
1393
  msgstr "näytä tapahtuma sivu"
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
13
+ "PO-Revision-Date: 2017-01-07 20:34+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
16
  "MIME-Version: 1.0\n"
19
  "Language: fi_FI\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
 
22
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
23
  msgid "Event List"
24
  msgstr "Tapahtuma lista"
25
 
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
29
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
30
  msgid "Events"
31
  msgstr "Tapahtumat"
32
 
33
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
34
  msgid "All Events"
35
  msgstr "Kaikki tapahtumat"
36
 
37
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
38
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
39
  msgid "Add New Event"
40
  msgstr "Lisää uusi tapahtuma"
41
 
42
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
43
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
44
  msgid "Add New"
45
  msgstr "Lisää uusi"
46
 
47
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
48
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
49
  msgid "Event List Categories"
50
  msgstr "Tapahtuma listan gategoriat"
51
 
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
55
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
56
  msgid "Categories"
57
  msgstr "Kategoriat"
58
 
59
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
60
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
61
  msgid "Event List Settings"
62
  msgstr "Tapahtuma listan asetukset"
63
 
64
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
65
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
66
  msgid "Settings"
67
  msgstr "Asetukset"
68
 
69
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
70
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
71
  msgid "About Event List"
72
  msgstr "Lisätietoa Tapahtumalistasta"
73
 
74
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
75
  msgid "About"
76
  msgstr "Lisätietoa"
77
 
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
83
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
84
  msgid "You do not have sufficient permissions to access this page."
85
  msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivustolle."
86
 
87
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
88
  msgid "Help and Instructions"
89
  msgstr "Apu ja ohjeet"
90
 
91
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
92
  #, php-format
93
  msgid "You can manage your events %1$shere%2$s"
94
  msgstr "Voit hallita tapahtumiasi %1$shere%2$s"
95
 
96
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
97
  msgid "To show the events on your site you have 2 possibilities"
98
  msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi."
99
 
100
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
101
  #, php-format
102
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
103
  msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen."
104
 
105
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
106
  #, php-format
107
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
108
  msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi."
109
 
110
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
111
  msgid ""
112
  "The displayed events and their style can be modified with the available "
113
  "widget settings and the available attributes for the shortcode."
114
  msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa."
115
 
116
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
117
  msgid ""
118
  "A list of all available shortcode attributes with their description is "
119
  "available below."
120
  msgstr "Alla on listattuna shortcode attribuutit kuvauksineen."
121
 
122
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
123
  msgid "The available widget options are described in their tooltip text."
124
  msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä."
125
 
126
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
127
  #, php-format
128
  msgid ""
129
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
130
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
131
  msgstr ""
132
 
133
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
134
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
135
  msgid "Add links to the single events"
136
  msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
137
 
138
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
139
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
140
  msgid "Add a link to the Event List page"
141
  msgstr "Lisää linkki Tapahtumalistan sivulle"
142
 
143
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
144
  #, php-format
145
  msgid ""
146
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
148
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
149
  msgstr ""
150
 
151
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
152
  #, php-format
153
  msgid ""
154
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
155
  "just the way you want."
156
  msgstr ""
157
 
158
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
159
  msgid "Shortcode Attributes"
160
  msgstr ""
161
 
162
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
163
  msgid ""
164
  "You have the possibility to modify the output if you add some of the "
165
  "following attributes to the shortcode."
166
  msgstr ""
167
 
168
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
169
  #, php-format
170
  msgid ""
171
  "You can combine and add as much attributes as you want. E.g. the shortcode "
172
  "including the attributes %1$s and %2$s would looks like this:"
173
  msgstr ""
174
 
175
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
176
  msgid ""
177
  "Below you can find a list of all supported attributes with their "
178
  "descriptions and available options:"
179
  msgstr ""
180
 
181
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
182
  msgid "Attribute name"
183
  msgstr "Atribuutin nimi"
184
 
185
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
186
  msgid "Value options"
187
  msgstr "Arvon vaihtoehdot"
188
 
189
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
190
  msgid "Default value"
191
  msgstr "Oletus arvo"
192
 
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
195
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
196
  msgid "Description"
197
  msgstr "Kuvaus"
198
 
199
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
200
  msgid "Filter Syntax"
201
  msgstr ""
202
 
203
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
204
  msgid ""
205
  "For date and cat filters you can specify complex filters with the following "
206
  "syntax:"
207
  msgstr ""
208
 
209
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
210
  #, php-format
211
  msgid ""
212
  "You can use %1$s and %2$s connections to define complex filters. "
213
  "Additionally you can set brackets %3$s for nested queries."
214
  msgstr ""
215
 
216
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
217
  msgid "AND"
218
  msgstr ""
219
 
220
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
221
  msgid "OR"
222
  msgstr ""
223
 
224
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
225
  msgid "or"
226
  msgstr "tai"
227
 
228
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
229
  msgid "and"
230
  msgstr "ja"
231
 
232
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
233
  msgid "Examples for cat filters:"
234
  msgstr ""
235
 
236
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
237
  #, php-format
238
  msgid "Show all events with category %1$s."
239
  msgstr ""
240
 
241
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
242
  #, php-format
243
  msgid "Show all events with category %1$s or %2$s."
244
  msgstr ""
245
 
246
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
247
  #, php-format
248
  msgid ""
249
  "Show all events with category %1$s and all events where category %2$s as "
250
  "well as %3$s is selected."
251
  msgstr ""
252
 
253
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
254
  msgid "Available Date Formats"
255
  msgstr ""
256
 
257
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
258
  msgid "For date filters you can use the following date formats:"
259
  msgstr ""
260
 
261
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
262
  msgid "Available Date Range Formats"
263
  msgstr ""
264
 
265
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
266
  msgid "For date filters you can use the following daterange formats:"
267
  msgstr ""
268
 
269
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
270
  msgid "Value"
271
  msgstr "Arvo"
272
 
273
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
274
  msgid "Example"
275
  msgstr "Esimerkki"
276
 
277
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
278
  msgid "Edit Category"
279
  msgstr "Muokkaa kategoriaa"
280
 
281
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
282
  msgid "Update Category"
283
  msgstr "Päivitä kategoria"
284
 
285
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
286
  msgid "Add New Category"
287
  msgstr "Lisää uusi kategoria"
288
 
289
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
290
  #, php-format
291
  msgid "Category \"%s\" deleted."
292
  msgstr "Kategoria \"%s\" on poistettu."
293
 
294
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
295
  #, php-format
296
  msgid "This Category was also removed from %d events."
297
  msgstr ""
298
 
299
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
300
  #, php-format
301
  msgid "Error while deleting category \"%s\""
302
  msgstr ""
303
 
304
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
305
  msgid "Sync with post categories enabled."
306
  msgstr ""
307
 
308
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
309
  msgid "Sync with post categories disabled."
310
  msgstr ""
311
 
312
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
313
  msgid "Manual sync with post categories sucessfully finished."
314
  msgstr ""
315
 
316
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
317
  #, php-format
318
  msgid "New Category \"%s\" was added"
319
  msgstr ""
320
 
321
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
322
  #, php-format
323
  msgid "Error: New Category \"%s\" could not be added"
324
  msgstr ""
325
 
326
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
327
  #, php-format
328
  msgid "Category \"%s\" was modified"
329
  msgstr ""
330
 
331
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
332
  #, php-format
333
  msgid "Error: Category \"%s\" could not be modified"
334
  msgstr ""
335
 
336
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
337
  msgid ""
338
  "Categories are automatically synced with the post categories.<br />\n"
339
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
340
  "\t\t\t If you want to manually edit the categories you have to disable this option."
341
  msgstr ""
342
 
343
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
344
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
345
  msgid "Name"
346
  msgstr "Nimi"
347
 
348
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
349
  msgid "The name is how it appears on your site."
350
  msgstr ""
351
 
352
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
353
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
354
  msgid "Slug"
355
  msgstr ""
356
 
357
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
358
  msgid ""
359
  "The “slug” is the URL-friendly version of the name. It is usually all "
360
  "lowercase and contains only letters, numbers, and hyphens."
361
  msgstr ""
362
 
363
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
364
  msgid "Parent"
365
  msgstr ""
366
 
367
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
368
  msgid "None"
369
  msgstr "Tyhjä"
370
 
371
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
372
  msgid ""
373
  "Categories can have a hierarchy. You might have a Jazz category, and under "
374
  "that have children categories for Bebop and Big Band. Totally optional."
375
  msgstr ""
376
 
377
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
378
  msgid "Apply"
379
  msgstr "Aseta"
380
 
381
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
382
  msgid "Do a manual sync with post categories"
383
  msgstr ""
384
 
385
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
386
  msgid "Import Events"
387
  msgstr "Tuo tapahtumia"
388
 
389
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
390
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
391
  msgid "Step"
392
  msgstr ""
393
 
394
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
395
  msgid "Set import file and options"
396
  msgstr ""
397
 
398
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
399
  msgid "Import Event Data"
400
  msgstr "Tuo tapahtuma tiedot"
401
 
402
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
403
  msgid "Example file"
404
  msgstr "Esimerkki tiedosto"
405
 
406
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
407
  #, php-format
408
  msgid ""
409
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
410
  msgstr ""
411
 
412
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
413
  msgid "Note"
414
  msgstr ""
415
 
416
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
417
  msgid ""
418
  "Do not change the column header and separator line (first two lines), "
419
  "otherwise the import will fail!"
420
  msgstr ""
421
 
422
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
424
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
425
  msgid "Sorry, there has been an error."
426
  msgstr ""
427
 
428
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
429
  msgid "The file does not exist, please try again."
430
  msgstr ""
431
 
432
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
433
  msgid "The file is not a CSV file."
434
  msgstr ""
435
 
436
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
437
  msgid "Event review and category selection"
438
  msgstr ""
439
 
440
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
442
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
443
  msgid "Import"
444
  msgstr "Tuo"
445
 
446
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
447
  msgid "Import with errors!"
448
  msgstr ""
449
 
450
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
451
  #, php-format
452
  msgid ""
453
  "An error occurred during import! Please send your import file to %1$sthe "
454
  "administrator%2$s for analysis."
455
  msgstr ""
456
 
457
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
458
  msgid "Import successful!"
459
  msgstr ""
460
 
461
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
462
  msgid "Go back to All Events"
463
  msgstr ""
464
 
465
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
467
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
468
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
469
  msgid "Title"
470
  msgstr "Otsikko"
471
 
472
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
473
  msgid "Start Date"
474
  msgstr "Alku päivämäärä"
475
 
476
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
477
  msgid "End Date"
478
  msgstr "Loppu päivämäärä"
479
 
480
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
481
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
482
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
483
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
484
  msgid "Time"
485
  msgstr "Aika"
486
 
487
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
489
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
490
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
491
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
492
  msgid "Location"
493
  msgstr "Sijainti"
494
 
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
497
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
498
  msgid "Details"
499
  msgstr "Yksityiskohdat"
500
 
501
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
502
  msgid "There was an error when reading this CSV file."
503
  msgstr ""
504
 
505
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
506
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
507
  msgid "Cancel"
508
  msgstr "Peruuta"
509
 
510
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
511
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
512
  msgid "No categories available."
513
  msgstr ""
514
 
515
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
516
  msgid "Edit Event"
517
  msgstr "Muokkaa tapahtumaa"
518
 
519
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
520
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
521
  msgid "Duplicate"
522
  msgstr ""
523
 
524
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
525
  #, php-format
526
  msgid "Duplicate of event id:%d"
527
  msgstr ""
528
 
529
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
530
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
531
  msgid "required"
532
  msgstr "tarpeellinen"
533
 
534
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
535
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
536
  msgid "Date"
537
  msgstr "Päiväys"
538
 
539
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
540
  msgid "Multi-Day Event"
541
  msgstr ""
542
 
543
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
544
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
545
  msgid "Publish"
546
  msgstr "Julkaise"
547
 
548
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
549
  msgid "Update"
550
  msgstr "Päivitä"
551
 
552
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
553
  msgid "Goto Category Settings"
554
  msgstr ""
555
 
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
559
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
560
  msgid "Y/m/d"
561
  msgstr ""
562
 
563
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
564
  msgid "Settings saved."
565
  msgstr "Asetukset tallennettu."
566
 
567
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
568
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
569
  msgid "General"
570
  msgstr "Yleinen"
571
 
572
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
573
  msgid "Frontend Settings"
574
  msgstr ""
575
 
576
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
577
  msgid "Admin Page Settings"
578
  msgstr ""
579
 
580
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
581
  msgid "Feed Settings"
582
  msgstr "Syöte asetukset"
583
 
584
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
585
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
586
  msgid "event"
587
  msgstr "tapahtuma"
588
 
589
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
590
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
591
  msgid "events"
592
  msgstr "Tapahtumat"
593
 
594
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
595
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
596
  msgid "Edit"
597
  msgstr "Muokkaa"
598
 
599
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
602
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
603
  msgid "Delete"
604
  msgstr "Poista"
605
 
606
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
607
  msgid "Author"
608
  msgstr ""
609
 
610
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
611
  msgid "Published"
612
  msgstr "Julkaistu"
613
 
614
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
615
  msgid "Filter"
616
  msgstr "Suodatin"
617
 
618
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
619
  #, php-format
620
  msgid "%s ago"
621
  msgstr ""
622
 
623
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
624
  msgid "Y/m/d g:i:s A"
625
  msgstr ""
626
 
627
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
628
  msgid "Year"
629
  msgstr "Vuosi"
630
 
631
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
632
  msgid "A year can be specified in 4 digit format."
633
  msgstr ""
634
 
635
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
637
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
638
  #, php-format
639
  msgid ""
640
  "For a start date filter the first day of %1$s is used, in an end date the "
641
  "last day."
642
  msgstr ""
643
 
644
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
645
  msgid "the resulting year"
646
  msgstr ""
647
 
648
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
649
  msgid "Month"
650
  msgstr "Kuukausi"
651
 
652
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
653
  msgid ""
654
  "A month can be specified with 4 digits for the year and 2 digits for the "
655
  "month, seperated by a hyphen (-)."
656
  msgstr ""
657
 
658
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
659
  msgid "the resulting month"
660
  msgstr ""
661
 
662
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
663
  msgid "Day"
664
  msgstr "Päivä"
665
 
666
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
667
  msgid ""
668
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
669
  " month and 2 digets for the day, seperated by hyphens (-)."
670
  msgstr ""
671
 
672
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
673
  msgid "Relative Year"
674
  msgstr ""
675
 
676
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
679
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
680
  #, php-format
681
  msgid "%1$s from now can be specified in the following notation: %2$s"
682
  msgstr ""
683
 
684
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
685
  msgid "A relative year"
686
  msgstr ""
687
 
688
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
691
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
692
  #, php-format
693
  msgid ""
694
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
695
  "%3$s or %4$s attached (see also the example below)."
696
  msgstr ""
697
 
698
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
699
  msgid "number of years"
700
  msgstr ""
701
 
702
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
705
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
706
  #, php-format
707
  msgid "Additionally the following values are available: %1$s"
708
  msgstr ""
709
 
710
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
711
  msgid "Relative Month"
712
  msgstr ""
713
 
714
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
715
  msgid "A relative month"
716
  msgstr ""
717
 
718
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
719
  msgid "number of months"
720
  msgstr ""
721
 
722
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
723
  msgid "Relative Week"
724
  msgstr ""
725
 
726
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
727
  msgid "A relative week"
728
  msgstr ""
729
 
730
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
731
  msgid "number of weeks"
732
  msgstr ""
733
 
734
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
735
  msgid "the resulting week"
736
  msgstr ""
737
 
738
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
739
  #, php-format
740
  msgid ""
741
  "The first day of the week is depending on the option %1$s which can be found"
742
  " and changed in %2$s."
743
  msgstr ""
744
 
745
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
746
  msgid "Week Starts On"
747
  msgstr ""
748
 
749
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
750
  msgid "Relative Day"
751
  msgstr ""
752
 
753
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
754
  msgid "A relative day"
755
  msgstr ""
756
 
757
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
758
  msgid "number of days"
759
  msgstr ""
760
 
761
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
762
  msgid "Date range"
763
  msgstr ""
764
 
765
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
766
  msgid ""
767
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
768
  "\t For the start and end date any available date format can be used."
769
  msgstr ""
770
 
771
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
772
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
773
  msgid "All"
774
  msgstr "Kaikki"
775
 
776
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
777
  msgid "This value defines a range without any limits."
778
  msgstr ""
779
 
780
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
782
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
783
  #, php-format
784
  msgid "The corresponding date_range format is: %1$s"
785
  msgstr ""
786
 
787
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
788
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
789
  msgid "Upcoming"
790
  msgstr "Tulevat"
791
 
792
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
793
  msgid "This value defines a range from the actual day to the future."
794
  msgstr ""
795
 
796
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
797
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
798
  msgid "Past"
799
  msgstr "Menneet"
800
 
801
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
802
  msgid "This value defines a range from the past to the previous day."
803
  msgstr ""
804
 
805
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
806
  msgid "Show all dates"
807
  msgstr "Näytä kaikki päiväykset"
808
 
809
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
810
  msgid "Show all categories"
811
  msgstr "Näytä kaikki kategoriat"
812
 
813
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
814
  msgid "Event Categories"
815
  msgstr "Tapahtuma kategoriat"
816
 
817
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
818
  msgid "This option specifies all event category data."
819
  msgstr ""
820
 
821
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
822
  msgid "Sync Categories"
823
  msgstr "Synkronoi kategoriat"
824
 
825
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
826
  msgid "Keep event categories in sync with post categories automatically"
827
  msgstr ""
828
 
829
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
830
  msgid "Attention"
831
  msgstr "Huomio"
832
 
833
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
834
  msgid ""
835
  "Please note that this option will delete all categories which are not "
836
  "available in the post categories! Existing Categories with the same slug "
837
  "will be updated."
838
  msgstr ""
839
 
840
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
841
  msgid "CSV File to import"
842
  msgstr ""
843
 
844
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
845
  msgid "Please select the file which contains the event data in CSV format."
846
  msgstr ""
847
 
848
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
849
  msgid "Used date format"
850
  msgstr ""
851
 
852
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
853
  msgid ""
854
  "With this option the used date format for event start and end date given in "
855
  "the CSV file can be specified."
856
  msgstr ""
857
 
858
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
859
  msgid "Text for no events"
860
  msgstr "Ei tapahtumia teksti"
861
 
862
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
863
  msgid ""
864
  "This option defines the displayed text when no events are available for the "
865
  "selected view."
866
  msgstr ""
867
 
868
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
869
  msgid "Multiday filter range"
870
  msgstr ""
871
 
872
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
873
  msgid "Use the complete event range in the date filter"
874
  msgstr ""
875
 
876
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
877
  msgid ""
878
  "This option defines if the complete range of a multiday event shall be "
879
  "considered in the date filter."
880
  msgstr ""
881
 
882
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
883
  msgid ""
884
  "If disabled, only the start day of an event is considered in the filter."
885
  msgstr ""
886
 
887
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
888
  msgid ""
889
  "For an example multiday event which started yesterday and ends tomorrow this"
890
  " means, that it is displayed in umcoming dates when this option is enabled, "
891
  "but it is hidden when the option is disabled."
892
  msgstr ""
893
 
894
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
895
  msgid "Date display"
896
  msgstr "Päivä näyttö"
897
 
898
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
899
  msgid "Show the date only once per day"
900
  msgstr ""
901
 
902
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
903
  msgid ""
904
  "With this option enabled the date is only displayed once per day if more "
905
  "than one event is available on the same day."
906
  msgstr ""
907
 
908
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
909
  msgid ""
910
  "If enabled, the events are ordered in a different way (end date before start"
911
  " time) to allow using the same date for as much events as possible."
912
  msgstr ""
913
 
914
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
915
  msgid "HTML tags"
916
  msgstr "HTML merkit"
917
 
918
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
919
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
920
  #, php-format
921
  msgid "Allow HTML tags in the event field \"%1$s\""
922
  msgstr ""
923
 
924
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
925
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
926
  #, php-format
927
  msgid ""
928
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
929
  msgstr ""
930
 
931
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
932
  msgid "Text for \"Show details\""
933
  msgstr ""
934
 
935
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
936
  msgid ""
937
  "With this option the displayed text for the link to show the event details "
938
  "can be changed, when collapsing is enabled."
939
  msgstr ""
940
 
941
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
942
  msgid "Text for \"Hide details\""
943
  msgstr ""
944
 
945
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
946
  msgid ""
947
  "With this option the displayed text for the link to hide the event details "
948
  "can be changed, when collapsing is enabled."
949
  msgstr ""
950
 
951
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
952
  msgid "Disable CSS file"
953
  msgstr "Estä CSS tiedosto"
954
 
955
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
956
  #, php-format
957
  msgid "Disable the %1$s file."
958
  msgstr ""
959
 
960
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
961
  #, php-format
962
  msgid "With this option you can disable the inclusion of the %1$s file."
963
  msgstr ""
964
 
965
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
966
  msgid ""
967
  "This normally only make sense if you have css conflicts with your theme and "
968
  "want to set all required css styles somewhere else (e.g. in the theme css)."
969
  msgstr ""
970
 
971
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
972
  msgid "Date format in edit form"
973
  msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
974
 
975
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
976
  msgid ""
977
  "This option sets the displayed date format for the event date fields in the "
978
  "event new / edit form."
979
  msgstr ""
980
 
981
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
982
  msgid "The standard is an empty string to use the Wordpress standard setting."
983
  msgstr ""
984
 
985
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
986
  #, php-format
987
  msgid ""
988
  "All available options to specify the date format can be found %1$shere%2$s."
989
  msgstr ""
990
 
991
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
992
  msgid "Enable RSS feed"
993
  msgstr "Salli RSS syöte"
994
 
995
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
996
  msgid "Enable support for an event RSS feed"
997
  msgstr ""
998
 
999
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
1000
  msgid ""
1001
  "This option activates a RSS feed for the events.<br />\n"
1002
  "\t You have to enable this option if you want to use one of the RSS feed features."
1003
  msgstr ""
1004
 
1005
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1006
  msgid "Feed name"
1007
  msgstr "Syötteen nimi"
1008
 
1009
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1010
  msgid ""
1011
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1012
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1013
  msgstr ""
1014
 
1015
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1016
  msgid "Feed Description"
1017
  msgstr "Syötteen kuvaus"
1018
 
1019
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1020
  msgid ""
1021
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1022
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1023
  msgstr ""
1024
 
1025
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1026
  msgid "Listed events"
1027
  msgstr "Listatut tapahtumat"
1028
 
1029
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1030
  msgid "Only show upcoming events in feed"
1031
  msgstr ""
1032
 
1033
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1034
  msgid ""
1035
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1036
  "\t If disabled all events (upcoming and past) will be listed."
1037
  msgstr ""
1038
 
1039
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1040
  msgid "Add RSS feed link in head"
1041
  msgstr ""
1042
 
1043
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1044
  msgid "Add RSS feed link in the html head"
1045
  msgstr ""
1046
 
1047
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1048
  msgid ""
1049
  "This option adds a RSS feed in the html head for the events.<br />\n"
1050
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1053
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1054
  msgstr ""
1055
 
1056
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1057
  msgid "Position of the RSS feed link"
1058
  msgstr ""
1059
 
1060
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1061
  msgid ""
1062
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1063
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1064
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1065
  msgstr ""
1066
 
1067
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1068
  msgid "Align of the RSS feed link"
1069
  msgstr ""
1070
 
1071
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1072
  msgid ""
1073
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1074
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1075
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1076
  msgstr ""
1077
 
1078
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1079
  msgid "Feed link text"
1080
  msgstr ""
1081
 
1082
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1083
  msgid ""
1084
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1085
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1086
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1087
  msgstr ""
1088
 
1089
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1090
  msgid "Feed link image"
1091
  msgstr ""
1092
 
1093
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1094
  msgid "Show rss image in feed link"
1095
  msgstr ""
1096
 
1097
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1098
  msgid ""
1099
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1100
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1101
  msgstr ""
1102
 
1103
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1104
  msgid "Show details"
1105
  msgstr ""
1106
 
1107
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1108
  msgid "Hide details"
1109
  msgstr ""
1110
 
1111
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1112
  msgid ""
1113
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1114
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1115
  msgstr ""
1116
 
1117
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1118
  msgid ""
1119
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1120
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1121
  msgstr ""
1122
 
1123
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1124
  msgid ""
1125
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1126
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1127
  msgstr ""
1128
 
1129
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1130
  msgid ""
1131
  "This attribute specifies the initial order of the events.<br />\n"
1132
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1133
  msgstr ""
1134
 
1135
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1136
  msgid ""
1137
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1138
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1140
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1141
  msgstr ""
1142
 
1143
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1144
  msgid ""
1145
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1146
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1147
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1148
  msgstr ""
1149
 
1150
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1151
  msgid ""
1152
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1153
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1154
  "\t Please not that in the actual version there is no pagination of the events available."
1155
  msgstr ""
1156
 
1157
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1158
  msgid ""
1159
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1160
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1161
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1162
  msgstr ""
1163
 
1164
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1166
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1167
+ msgid "number"
1168
+ msgstr ""
1169
+
1170
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1171
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1172
+ msgid ""
1173
+ "This attribute specifies if the title should be truncated to the given "
1174
+ "number of characters in the event list."
1175
+ msgstr ""
1176
+
1177
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1178
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1179
+ #, php-format
1180
+ msgid ""
1181
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1182
+ "is automatically truncated via css."
1183
+ msgstr ""
1184
+
1185
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1187
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1188
+ msgid "This attribute has no influence if only a single event is shown."
1189
+ msgstr ""
1190
+
1191
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1192
  msgid ""
1193
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1194
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1195
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1196
  msgstr ""
1197
 
1198
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1199
  msgid ""
1200
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1201
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1202
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1203
  msgstr ""
1204
 
1205
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1206
  msgid ""
1207
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1208
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1209
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1210
  msgstr ""
1211
 
1212
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1213
  msgid ""
1214
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1215
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1216
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1217
  msgstr ""
1218
 
1219
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1220
  msgid ""
1221
+ "This attribute specifies if the details should be truncate to the given "
1222
+ "number of characters in the event list."
1223
+ msgstr ""
1224
+
1225
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1226
+ #, php-format
1227
+ msgid "With the standard value %1$s the full text is displayed."
1228
  msgstr ""
1229
 
1230
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1231
  msgid ""
1232
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1233
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1235
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1236
  msgstr ""
1237
 
1238
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1239
  msgid ""
1240
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1241
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1243
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1244
  msgstr ""
1245
 
1246
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1247
  msgid ""
1248
  "This attribute specifies if a rss feed link should be added.<br />\n"
1249
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1252
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1253
  msgstr ""
1254
 
1255
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1256
  msgid ""
1257
  "This attribute specifies the page or post url for event links.<br />\n"
1258
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1259
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1260
  msgstr ""
1261
 
1262
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1263
  msgid ""
1264
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1265
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1266
  msgstr ""
1267
 
1268
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1269
  msgid "Event Information:"
1270
  msgstr "Tapahtuman tiedot:"
1271
 
1272
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1273
  msgid "(more&hellip;)"
1274
  msgstr ""
1275
 
1276
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1277
  msgid "This option defines the displayed title for the widget."
1278
  msgstr "Määritä vimpaimen näkyvä otsikko"
1279
 
1280
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1281
  msgid "Category Filter"
1282
  msgstr "Kategoria suodatin"
1283
 
1284
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1285
  msgid ""
1286
  "This option defines the categories of which events are shown. The standard "
1287
  "is all or an empty string to show all events. Specify a category slug or a "
1290
  "all possibilities."
1291
  msgstr ""
1292
 
1293
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1294
  msgid "Number of listed events"
1295
  msgstr "Listattujen tapahtumien määrä"
1296
 
1297
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1298
  msgid "The number of upcoming events to display"
1299
  msgstr ""
1300
 
1301
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1302
  msgid "Truncate event title to"
1303
  msgstr "Tapahtuma otsikon lyhenne"
1304
 
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1307
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1308
  msgid "characters"
1309
  msgstr "merkkejä"
1310
 
1311
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1312
+ msgid ""
1313
+ "This option defines the number of displayed characters for the event title."
1314
+ msgstr ""
1315
+
1316
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1317
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1318
+ #, php-format
1319
  msgid ""
1320
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1321
+ "automatically truncate the text via css."
1322
  msgstr ""
1323
 
1324
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1325
  msgid "Show event starttime"
1326
  msgstr "Näytä tapahtuman alkamisajankohta"
1327
 
1328
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1329
  msgid "This option defines if the event start time will be displayed."
1330
  msgstr ""
1331
 
1332
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1333
  msgid "Show event location"
1334
  msgstr "Näytä tapahtuman paikka"
1335
 
1336
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1337
  msgid "This option defines if the event location will be displayed."
1338
  msgstr ""
1339
 
1340
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1341
  msgid "Truncate location to"
1342
  msgstr "Sijainnin lyhenne"
1343
 
1344
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1345
  msgid ""
1346
  "If the event location is diplayed this option defines the number of "
1347
+ "displayed characters."
1348
  msgstr ""
1349
 
1350
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1351
  msgid "Show event details"
1352
  msgstr "Näytä tapahtuman tiedot"
1353
 
1354
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1355
  msgid "This option defines if the event details will be displayed."
1356
  msgstr ""
1357
 
1358
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1359
  msgid "Truncate details to"
1360
  msgstr "Yksityiskohtien lyhenne"
1361
 
1362
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1363
  msgid ""
1364
  "If the event details are diplayed this option defines the number of diplayed"
1365
+ " characters."
1366
+ msgstr ""
1367
+
1368
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1369
+ #, php-format
1370
+ msgid "Set this value to %1$s to view the full text."
1371
  msgstr ""
1372
 
1373
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1374
  msgid "URL to the linked Event List page"
1375
  msgstr ""
1376
 
1377
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1378
  msgid ""
1379
  "This option defines the url to the linked Event List page. This option is "
1380
  "required if you want to use one of the options below."
1381
  msgstr ""
1382
 
1383
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1384
  msgid "Shortcode ID on linked page"
1385
  msgstr ""
1386
 
1387
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1388
  msgid ""
1389
  "This option defines the shortcode-id for the Event List on the linked page. "
1390
  "Normally the standard value 1 is correct, you only have to change it if you "
1391
  "use multiple event-list shortcodes on the linked page."
1392
  msgstr ""
1393
 
1394
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1395
  msgid ""
1396
  "With this option you can add a link to the single event page for every "
1397
  "displayed event. You have to specify the url to the page and the shortcode "
1398
  "id option if you want to use it."
1399
  msgstr ""
1400
 
1401
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1402
  msgid ""
1403
  "With this option you can add a link to the event-list page below the "
1404
  "diplayed events. You have to specify the url to page option if you want to "
1405
  "use it."
1406
  msgstr ""
1407
 
1408
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1409
  msgid "Caption for the link"
1410
  msgstr ""
1411
 
1412
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1413
  msgid ""
1414
  "This option defines the text for the link to the Event List page if the "
1415
  "approriate option is selected."
1416
  msgstr ""
1417
 
1418
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1419
  msgid "With this widget a list of upcoming events can be displayed."
1420
  msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
1421
 
1422
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1423
  msgid "Upcoming events"
1424
  msgstr "Tulevat tapahtumat"
1425
 
1426
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1427
  msgid "show events page"
1428
  msgstr "näytä tapahtuma sivu"
languages/event-list-fr_FR.mo CHANGED
Binary file
languages/event-list-fr_FR.po CHANGED
@@ -1,15 +1,16 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
6
  # Gwenael Jan <gwejan@gmail.com>, 2015
 
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
12
- "PO-Revision-Date: 2015-12-13 20:38+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,1375 +19,1410 @@ msgstr ""
18
  "Language: fr_FR\n"
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
 
21
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Liste des événements"
24
 
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Evénements"
31
 
32
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
33
  msgid "All Events"
34
- msgstr ""
35
 
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
- msgstr ""
40
 
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
43
  msgid "Add New"
44
- msgstr ""
45
 
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
- msgstr ""
50
 
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
55
  msgid "Categories"
56
- msgstr ""
57
 
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
- msgstr ""
62
 
63
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
64
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
- msgstr ""
67
 
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
- msgstr ""
72
 
73
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
74
  msgid "About"
75
- msgstr ""
76
-
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
- msgstr ""
85
 
86
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
- msgstr ""
89
 
90
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
- msgstr ""
94
 
95
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
- msgstr ""
98
 
99
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
- msgstr ""
103
 
104
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
- msgstr ""
108
 
109
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
- msgstr ""
114
 
115
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
- msgstr ""
120
 
121
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
- msgstr ""
124
 
125
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
- msgstr ""
131
 
132
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
134
  msgid "Add links to the single events"
135
- msgstr ""
136
 
137
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
138
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
139
  msgid "Add a link to the Event List page"
140
- msgstr ""
141
 
142
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
146
  "\t\t\t\t\tSo the standard value \"1\" is normally o.k., but if required you can check the ID by looking into the URL of an event link on your linked page or post.\n"
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
- msgstr ""
149
 
150
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
- msgstr ""
156
 
157
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
- msgstr ""
160
 
161
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
- msgstr ""
166
 
167
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
- msgstr ""
173
 
174
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
- msgstr ""
179
 
180
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
- msgstr ""
183
 
184
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
- msgstr ""
187
 
188
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
- msgstr ""
191
 
192
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
195
  msgid "Description"
196
- msgstr ""
197
 
198
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
- msgstr ""
201
 
202
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
- msgstr ""
207
 
208
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
- msgstr ""
214
 
215
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
216
  msgid "AND"
217
- msgstr ""
218
 
219
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
220
  msgid "OR"
221
- msgstr ""
222
 
223
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
224
  msgid "or"
225
- msgstr ""
226
 
227
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
228
  msgid "and"
229
- msgstr ""
230
 
231
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
- msgstr ""
234
 
235
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
- msgstr ""
239
 
240
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
- msgstr ""
244
 
245
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
- msgstr ""
251
 
252
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
- msgstr ""
255
 
256
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
- msgstr ""
259
 
260
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
- msgstr ""
263
 
264
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
- msgstr ""
267
 
268
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
269
  msgid "Value"
270
- msgstr ""
271
 
272
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
273
  msgid "Example"
274
- msgstr ""
275
 
276
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
- msgstr ""
279
 
280
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
- msgstr ""
283
 
284
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
- msgstr ""
287
 
288
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
- msgstr ""
292
 
293
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
- msgstr ""
297
 
298
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
- msgstr ""
302
 
303
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
- msgstr ""
306
 
307
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
- msgstr ""
310
 
311
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
- msgstr ""
314
 
315
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
- msgstr ""
319
 
320
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
- msgstr ""
324
 
325
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
- msgstr ""
329
 
330
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
- msgstr ""
334
 
335
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
- msgstr ""
341
 
342
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
344
  msgid "Name"
345
- msgstr ""
346
 
347
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
- msgstr ""
350
 
351
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
353
  msgid "Slug"
354
- msgstr ""
355
 
356
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
- msgstr ""
361
 
362
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
- msgstr ""
365
 
366
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
367
  msgid "None"
368
- msgstr ""
369
 
370
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
- msgstr ""
375
 
376
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
- msgstr ""
379
 
380
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
- msgstr ""
383
 
384
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
- msgstr ""
387
 
388
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
390
  msgid "Step"
391
- msgstr ""
392
 
393
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
- msgstr ""
396
 
397
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
- msgstr ""
400
 
401
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
- msgstr ""
404
 
405
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
- msgstr ""
410
 
411
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
412
  msgid "Note"
413
- msgstr ""
414
 
415
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
- msgstr ""
420
 
421
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
- msgstr ""
426
 
427
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
- msgstr ""
430
 
431
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
- msgstr ""
434
 
435
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
- msgstr ""
438
 
439
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
442
  msgid "Import"
443
- msgstr ""
444
 
445
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
- msgstr ""
448
 
449
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
- msgstr ""
455
 
456
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
- msgstr ""
459
 
460
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
- msgstr ""
463
 
464
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
467
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
468
  msgid "Title"
469
- msgstr ""
470
 
471
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
- msgstr ""
474
 
475
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
- msgstr ""
478
 
479
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
481
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
483
  msgid "Time"
484
- msgstr ""
485
 
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
489
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
491
  msgid "Location"
492
- msgstr ""
493
 
494
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
497
  msgid "Details"
498
- msgstr ""
499
 
500
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
- msgstr ""
503
 
504
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
- msgstr ""
508
 
509
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
- msgstr ""
513
 
514
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
515
  msgid "Edit Event"
516
- msgstr ""
517
 
518
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
- msgstr ""
522
 
523
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
- msgstr ""
527
 
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
530
  msgid "required"
531
- msgstr ""
532
 
533
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
535
  msgid "Date"
536
- msgstr ""
537
 
538
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
- msgstr ""
541
 
542
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
- msgstr ""
546
 
547
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
548
  msgid "Update"
549
- msgstr ""
550
 
551
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
- msgstr ""
554
 
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
559
  msgid "Y/m/d"
560
  msgstr ""
561
 
562
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
- msgstr ""
565
 
566
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
567
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
568
  msgid "General"
569
- msgstr ""
570
 
571
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
- msgstr ""
574
 
575
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
- msgstr ""
578
 
579
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
- msgstr ""
582
 
583
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
585
  msgid "event"
586
- msgstr ""
587
 
588
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
590
  msgid "events"
591
- msgstr ""
592
 
593
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
595
  msgid "Edit"
596
- msgstr ""
597
 
598
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
602
  msgid "Delete"
603
- msgstr ""
604
 
605
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
606
  msgid "Author"
607
- msgstr ""
608
 
609
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
610
  msgid "Published"
611
- msgstr ""
612
 
613
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
614
  msgid "Filter"
615
- msgstr ""
616
 
617
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
618
  #, php-format
619
  msgid "%s ago"
620
- msgstr ""
621
 
622
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
623
  msgid "Y/m/d g:i:s A"
624
  msgstr ""
625
 
626
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
- msgstr ""
629
 
630
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
- msgstr ""
633
 
634
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
- msgstr ""
642
 
643
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
- msgstr ""
646
 
647
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
- msgstr ""
650
 
651
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
- msgstr ""
656
 
657
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
- msgstr ""
660
 
661
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
- msgstr ""
664
 
665
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
- msgstr ""
670
 
671
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
- msgstr ""
674
 
675
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
- msgstr ""
682
 
683
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
- msgstr ""
686
 
687
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
- msgstr ""
696
 
697
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
- msgstr ""
700
 
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
- msgstr ""
708
 
709
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
- msgstr ""
712
 
713
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
- msgstr ""
716
 
717
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
- msgstr ""
720
 
721
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
- msgstr ""
724
 
725
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
- msgstr ""
728
 
729
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
- msgstr ""
732
 
733
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
- msgstr ""
736
 
737
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
- msgstr ""
743
 
744
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
- msgstr ""
747
 
748
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
- msgstr ""
751
 
752
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
- msgstr ""
755
 
756
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
- msgstr ""
759
 
760
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
- msgstr ""
763
 
764
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
- msgstr ""
769
 
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
772
  msgid "All"
773
- msgstr ""
774
 
775
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
- msgstr ""
778
 
779
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
- msgstr ""
785
 
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
788
  msgid "Upcoming"
789
- msgstr ""
790
 
791
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
- msgstr ""
794
 
795
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
797
  msgid "Past"
798
- msgstr ""
799
 
800
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
- msgstr ""
803
 
804
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
805
  msgid "Show all dates"
806
- msgstr ""
807
 
808
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
809
  msgid "Show all categories"
810
- msgstr ""
811
 
812
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
- msgstr ""
815
 
816
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
- msgstr ""
819
 
820
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
- msgstr ""
823
 
824
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
- msgstr ""
827
 
828
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
829
  msgid "Attention"
830
- msgstr ""
831
 
832
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
- msgstr ""
838
 
839
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
- msgstr ""
842
 
843
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
- msgstr ""
846
 
847
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
- msgstr ""
850
 
851
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
- msgstr ""
856
 
857
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
- msgstr ""
860
 
861
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
- msgstr ""
866
 
867
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
- msgstr ""
870
 
871
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
- msgstr ""
874
 
875
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
- msgstr ""
880
 
881
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
- msgstr ""
885
 
886
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
- msgstr ""
892
 
893
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
894
  msgid "Date display"
895
- msgstr ""
896
 
897
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
- msgstr ""
900
 
901
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
- msgstr ""
906
 
907
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
- msgstr ""
912
 
913
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
- msgstr ""
916
 
917
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
- msgstr ""
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
- msgstr ""
929
 
930
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
- msgstr ""
933
 
934
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
- msgstr ""
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
- msgstr ""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
- msgstr ""
949
 
950
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
- msgstr ""
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
- msgstr ""
958
 
959
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
- msgstr ""
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
- msgstr ""
969
 
970
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
- msgstr ""
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
- msgstr ""
979
 
980
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
- msgstr ""
983
 
984
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
- msgstr ""
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
- msgstr ""
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
- msgstr ""
997
 
998
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
- msgstr ""
1003
 
1004
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
- msgstr ""
1007
 
1008
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
- msgstr ""
1013
 
1014
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
- msgstr ""
1017
 
1018
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
- msgstr ""
1023
 
1024
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
- msgstr ""
1027
 
1028
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
- msgstr ""
1031
 
1032
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
- msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
- msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
- msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1050
  "\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
1051
  "\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
- msgstr ""
1054
 
1055
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
- msgstr ""
1058
 
1059
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
- msgstr ""
1065
 
1066
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
- msgstr ""
1069
 
1070
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
- msgstr ""
1076
 
1077
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
- msgstr ""
1080
 
1081
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
- msgstr ""
1087
 
1088
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
- msgstr ""
1091
 
1092
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
- msgstr ""
1095
 
1096
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
- msgstr ""
1101
 
1102
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1103
  msgid "Show details"
1104
- msgstr ""
1105
 
1106
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1107
  msgid "Hide details"
1108
- msgstr ""
1109
 
1110
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
- msgstr ""
1115
 
1116
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
- msgstr ""
1121
 
1122
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
- msgstr ""
1127
 
1128
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
- msgstr ""
1133
 
1134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1138
  "\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
- msgstr ""
1141
 
1142
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
- msgstr ""
1148
 
1149
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
- msgstr ""
1155
 
1156
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
 
 
 
 
 
 
1161
  msgstr ""
1162
 
1163
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
  msgid ""
1165
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1166
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1167
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1168
- msgstr ""
1169
 
1170
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1171
  msgid ""
1172
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1173
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1174
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1175
- msgstr ""
1176
 
1177
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1178
  msgid ""
1179
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1180
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1181
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1182
- msgstr ""
1183
 
1184
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1185
  msgid ""
1186
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1187
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1188
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1189
- msgstr ""
1190
 
1191
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1192
  msgid ""
1193
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1194
- "\t With the standard value 0 the full details are displayed.<br />\n"
1195
- "\t This attribute has no influence if only a single event is shown."
1196
  msgstr ""
1197
 
1198
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
 
 
 
 
 
1199
  msgid ""
1200
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1201
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1202
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
1203
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1204
- msgstr ""
1205
 
1206
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1207
  msgid ""
1208
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1209
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1210
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1211
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1212
- msgstr ""
1213
 
1214
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1215
  msgid ""
1216
  "This attribute specifies if a rss feed link should be added.<br />\n"
1217
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1218
  "\t On that page you can also find some settings to modify the output.<br />\n"
1219
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1220
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1221
- msgstr ""
1222
 
1223
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1224
  msgid ""
1225
  "This attribute specifies the page or post url for event links.<br />\n"
1226
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1227
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1228
- msgstr ""
1229
-
1230
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1232
- msgid ""
1233
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1234
- "\t With the standard value 0 the full details are displayed.<br />\n"
1235
- "\t This attribute has no influence if only a single event is shown."
1236
- msgstr ""
1237
 
1238
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1239
  msgid ""
1240
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1241
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1242
- msgstr ""
1243
 
1244
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1245
  msgid "Event Information:"
1246
- msgstr ""
1247
 
1248
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1249
  msgid "(more&hellip;)"
1250
- msgstr ""
1251
 
1252
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1253
  msgid "This option defines the displayed title for the widget."
1254
- msgstr ""
1255
 
1256
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1257
  msgid "Category Filter"
1258
- msgstr ""
1259
 
1260
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1261
  msgid ""
1262
  "This option defines the categories of which events are shown. The standard "
1263
  "is all or an empty string to show all events. Specify a category slug or a "
1264
  "list of category slugs to only show events of the specified categories. See "
1265
  "description of the shortcode attribute cat_filter for detailed info about "
1266
  "all possibilities."
1267
- msgstr ""
1268
 
1269
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1270
  msgid "Number of listed events"
1271
- msgstr ""
1272
 
1273
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1274
  msgid "The number of upcoming events to display"
1275
- msgstr ""
1276
 
1277
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1278
  msgid "Truncate event title to"
1279
- msgstr ""
1280
 
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1284
  msgid "characters"
 
 
 
 
 
1285
  msgstr ""
1286
 
1287
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
1288
  msgid ""
1289
- "This option defines the number of displayed characters for the event title. "
1290
- "Set this value to 0 to view the full title."
1291
  msgstr ""
1292
 
1293
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1294
  msgid "Show event starttime"
1295
- msgstr ""
1296
 
1297
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1298
  msgid "This option defines if the event start time will be displayed."
1299
- msgstr ""
1300
 
1301
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1302
  msgid "Show event location"
1303
- msgstr ""
1304
 
1305
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1306
  msgid "This option defines if the event location will be displayed."
1307
- msgstr ""
1308
 
1309
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1310
  msgid "Truncate location to"
1311
- msgstr ""
1312
 
1313
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1314
  msgid ""
1315
  "If the event location is diplayed this option defines the number of "
1316
- "displayed characters. Set this value to 0 to view the full location."
1317
  msgstr ""
1318
 
1319
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1320
  msgid "Show event details"
1321
- msgstr ""
1322
 
1323
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1324
  msgid "This option defines if the event details will be displayed."
1325
- msgstr ""
1326
 
1327
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1328
  msgid "Truncate details to"
1329
- msgstr ""
1330
 
1331
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1332
  msgid ""
1333
  "If the event details are diplayed this option defines the number of diplayed"
1334
- " characters. Set this value to 0 to view the full details."
1335
  msgstr ""
1336
 
1337
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1338
- msgid "URL to the linked Event List page"
 
1339
  msgstr ""
1340
 
1341
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
 
 
 
 
1342
  msgid ""
1343
  "This option defines the url to the linked Event List page. This option is "
1344
  "required if you want to use one of the options below."
1345
- msgstr ""
1346
 
1347
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1348
  msgid "Shortcode ID on linked page"
1349
- msgstr ""
1350
 
1351
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1352
  msgid ""
1353
  "This option defines the shortcode-id for the Event List on the linked page. "
1354
  "Normally the standard value 1 is correct, you only have to change it if you "
1355
  "use multiple event-list shortcodes on the linked page."
1356
- msgstr ""
1357
 
1358
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1359
  msgid ""
1360
  "With this option you can add a link to the single event page for every "
1361
  "displayed event. You have to specify the url to the page and the shortcode "
1362
  "id option if you want to use it."
1363
- msgstr ""
1364
 
1365
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1366
  msgid ""
1367
  "With this option you can add a link to the event-list page below the "
1368
  "diplayed events. You have to specify the url to page option if you want to "
1369
  "use it."
1370
- msgstr ""
1371
 
1372
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1373
  msgid "Caption for the link"
1374
- msgstr ""
1375
 
1376
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1377
  msgid ""
1378
  "This option defines the text for the link to the Event List page if the "
1379
  "approriate option is selected."
1380
- msgstr ""
1381
 
1382
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1383
  msgid "With this widget a list of upcoming events can be displayed."
1384
- msgstr ""
1385
 
1386
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1387
  msgid "Upcoming events"
1388
- msgstr ""
1389
 
1390
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1391
  msgid "show events page"
1392
- msgstr ""
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
6
  # Gwenael Jan <gwejan@gmail.com>, 2015
7
+ # patoudss <patrice@desaintsteban.fr>, 2016
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
13
+ "PO-Revision-Date: 2017-01-07 20:39+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
16
  "MIME-Version: 1.0\n"
19
  "Language: fr_FR\n"
20
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
 
22
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
23
  msgid "Event List"
24
  msgstr "Liste des événements"
25
 
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
29
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
30
  msgid "Events"
31
  msgstr "Evénements"
32
 
33
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
34
  msgid "All Events"
35
+ msgstr "Tous les évènements"
36
 
37
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
38
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
39
  msgid "Add New Event"
40
+ msgstr "Ajouter un nouvel évènement"
41
 
42
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
43
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
44
  msgid "Add New"
45
+ msgstr "Ajouter"
46
 
47
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
48
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
49
  msgid "Event List Categories"
50
+ msgstr "Liste des catégories d'évènements"
51
 
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
55
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
56
  msgid "Categories"
57
+ msgstr "Catégories"
58
 
59
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
60
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
61
  msgid "Event List Settings"
62
+ msgstr "Préférences"
63
 
64
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
65
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
66
  msgid "Settings"
67
+ msgstr "Préférences"
68
 
69
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
70
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
71
  msgid "About Event List"
72
+ msgstr "A propos de la liste d'évènement"
73
 
74
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
75
  msgid "About"
76
+ msgstr "A propos"
77
+
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
83
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
84
  msgid "You do not have sufficient permissions to access this page."
85
+ msgstr "Vous n'avez pas la permission d’accéder à cette page."
86
 
87
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
88
  msgid "Help and Instructions"
89
+ msgstr "Aide et instructions"
90
 
91
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
92
  #, php-format
93
  msgid "You can manage your events %1$shere%2$s"
94
+ msgstr "Vous pouvez gérer vos évènements %1$sici%2$s"
95
 
96
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
97
  msgid "To show the events on your site you have 2 possibilities"
98
+ msgstr "Pour voir les évènements sur votre site, vous avez 2 possibilités."
99
 
100
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
101
  #, php-format
102
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
103
+ msgstr "Vous pouvez placer le <strong>shortcode</strong> %1$s sur n'importe quel page ou article."
104
 
105
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
106
  #, php-format
107
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
108
+ msgstr "Vous pouvez ajouter le <strong>widget</strong> %1$s dans votre barre latérale."
109
 
110
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
111
  msgid ""
112
  "The displayed events and their style can be modified with the available "
113
  "widget settings and the available attributes for the shortcode."
114
+ msgstr "L'évènement affiché et son style peut être modifié avec les paramètres du widget et attributs disponible pour le shortcode."
115
 
116
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
117
  msgid ""
118
  "A list of all available shortcode attributes with their description is "
119
  "available below."
120
+ msgstr "Une liste de tous les attributs disponible avec leurs description est disponible ci-dessous."
121
 
122
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
123
  msgid "The available widget options are described in their tooltip text."
124
+ msgstr "Les options disponibles du widget sont disponible dans leurs infobulles"
125
 
126
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
127
  #, php-format
128
  msgid ""
129
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
130
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
131
+ msgstr "Pour le widget, il est important de savoir que vous devez insérer une URL vers la page de la liste des évènements si vous activez une des options de liens\n⇥⇥⇥⇥⇥(%1$s ou %2$s). Cela est requis parce que le widget ne sait sur pas quel page ou article le shortcode est inclus."
132
 
133
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
134
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
135
  msgid "Add links to the single events"
136
+ msgstr "Ajoute un lien vers le détail de l'évènement."
137
 
138
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
139
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
140
  msgid "Add a link to the Event List page"
141
+ msgstr "Ajoute un liens vers la page des évènements."
142
 
143
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
144
  #, php-format
145
  msgid ""
146
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
147
  "\t\t\t\t\tSo the standard value \"1\" is normally o.k., but if required you can check the ID by looking into the URL of an event link on your linked page or post.\n"
148
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
149
+ msgstr "En plus, vous devez insérer le bon identifiant du shortcode sur la page lié. Cet identifiant indique quel shortcode doit être utilisé sur la page ou l'article si vous avez plus d'un shortcode.\n⇥⇥⇥⇥⇥Alors la valeur par défaut \"1\" est normalement exacte, mais si nécessaire, vous pouvez vérifier l'identifiant en regardant dans l'url de la liste des évènements sur la page ou l'article lié.\n⇥⇥⇥⇥⇥l'identifiant sera ajouté à la fin de la liste des paramètres dans l'URL (e.g. %1$s)."
150
 
151
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
152
  #, php-format
153
  msgid ""
154
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
155
  "just the way you want."
156
+ msgstr "Soyez sûr de vérifier la %1$spage de paramètres%2$s pour que la liste des évènements se comporte exactement comme vous le souhaitiez."
157
 
158
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
159
  msgid "Shortcode Attributes"
160
+ msgstr "Attributs du shortcode"
161
 
162
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
163
  msgid ""
164
  "You have the possibility to modify the output if you add some of the "
165
  "following attributes to the shortcode."
166
+ msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
167
 
168
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
169
  #, php-format
170
  msgid ""
171
  "You can combine and add as much attributes as you want. E.g. the shortcode "
172
  "including the attributes %1$s and %2$s would looks like this:"
173
+ msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
174
 
175
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
176
  msgid ""
177
  "Below you can find a list of all supported attributes with their "
178
  "descriptions and available options:"
179
+ msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
180
 
181
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
182
  msgid "Attribute name"
183
+ msgstr "Nom de l'attribut"
184
 
185
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
186
  msgid "Value options"
187
+ msgstr "Valeurs possibles"
188
 
189
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
190
  msgid "Default value"
191
+ msgstr "Valeur par défaut"
192
 
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
195
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
196
  msgid "Description"
197
+ msgstr "Description"
198
 
199
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
200
  msgid "Filter Syntax"
201
+ msgstr "Syntaxe des filtres"
202
 
203
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
204
  msgid ""
205
  "For date and cat filters you can specify complex filters with the following "
206
  "syntax:"
207
+ msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
208
 
209
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
210
  #, php-format
211
  msgid ""
212
  "You can use %1$s and %2$s connections to define complex filters. "
213
  "Additionally you can set brackets %3$s for nested queries."
214
+ msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
215
 
216
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
217
  msgid "AND"
218
+ msgstr "ET"
219
 
220
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
221
  msgid "OR"
222
+ msgstr "OU"
223
 
224
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
225
  msgid "or"
226
+ msgstr "ou"
227
 
228
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
229
  msgid "and"
230
+ msgstr "et"
231
 
232
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
233
  msgid "Examples for cat filters:"
234
+ msgstr "Exemple de filtre de catégorie :"
235
 
236
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
237
  #, php-format
238
  msgid "Show all events with category %1$s."
239
+ msgstr "Voir tous les évènements de la catégorie %1$s."
240
 
241
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
242
  #, php-format
243
  msgid "Show all events with category %1$s or %2$s."
244
+ msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
245
 
246
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
247
  #, php-format
248
  msgid ""
249
  "Show all events with category %1$s and all events where category %2$s as "
250
  "well as %3$s is selected."
251
+ msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
252
 
253
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
254
  msgid "Available Date Formats"
255
+ msgstr "Formats de date disponible"
256
 
257
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
258
  msgid "For date filters you can use the following date formats:"
259
+ msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
260
 
261
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
262
  msgid "Available Date Range Formats"
263
+ msgstr "Formats de d'intervalle de date disponible"
264
 
265
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
266
  msgid "For date filters you can use the following daterange formats:"
267
+ msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
268
 
269
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
270
  msgid "Value"
271
+ msgstr "Valeur"
272
 
273
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
274
  msgid "Example"
275
+ msgstr "Exemple"
276
 
277
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
278
  msgid "Edit Category"
279
+ msgstr "Modifier catégorie"
280
 
281
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
282
  msgid "Update Category"
283
+ msgstr "Mettre à jour catégorie"
284
 
285
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
286
  msgid "Add New Category"
287
+ msgstr "Ajouter une nouvelle catégorie"
288
 
289
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
290
  #, php-format
291
  msgid "Category \"%s\" deleted."
292
+ msgstr "Catégorie \"%s\" supprimé."
293
 
294
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
295
  #, php-format
296
  msgid "This Category was also removed from %d events."
297
+ msgstr "Cette catégorie a aussi été supprimé de %d évènements."
298
 
299
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
300
  #, php-format
301
  msgid "Error while deleting category \"%s\""
302
+ msgstr "Erreur lors de la suppression de la catégorie \"%s\""
303
 
304
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
305
  msgid "Sync with post categories enabled."
306
+ msgstr "Synchronisation avec les catégories d'articles activé"
307
 
308
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
309
  msgid "Sync with post categories disabled."
310
+ msgstr "Synchronisation avec les catégories d'articles désactivé."
311
 
312
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
313
  msgid "Manual sync with post categories sucessfully finished."
314
+ msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés."
315
 
316
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
317
  #, php-format
318
  msgid "New Category \"%s\" was added"
319
+ msgstr "Nouvelle catégorie \"%s\" ajouté."
320
 
321
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
322
  #, php-format
323
  msgid "Error: New Category \"%s\" could not be added"
324
+ msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée."
325
 
326
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
327
  #, php-format
328
  msgid "Category \"%s\" was modified"
329
+ msgstr "La catégorie \"%s\" a été modifié."
330
 
331
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
332
  #, php-format
333
  msgid "Error: Category \"%s\" could not be modified"
334
+ msgstr "Erreur: La catégorie \"%s\" ne peut pas être modifié."
335
 
336
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
337
  msgid ""
338
  "Categories are automatically synced with the post categories.<br />\n"
339
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
340
  "\t\t\t If you want to manually edit the categories you have to disable this option."
341
+ msgstr "Les catégories sont automatiquement synchronisé avec les catégories des articles.<br/>\n⇥⇥⇥ C'est pourquoi toutes les options pour ajouter ou modifier les catégories existantes sont désactivés.<br/>\n⇥⇥⇥ Si vous voulez éditer manuellement les catégories vous devez désactiver cette option."
342
 
343
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
344
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
345
  msgid "Name"
346
+ msgstr "Nom"
347
 
348
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
349
  msgid "The name is how it appears on your site."
350
+ msgstr "Le nom est la façon dont il apparaît sur votre site."
351
 
352
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
353
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
354
  msgid "Slug"
355
+ msgstr "Slug"
356
 
357
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
358
  msgid ""
359
  "The “slug” is the URL-friendly version of the name. It is usually all "
360
  "lowercase and contains only letters, numbers, and hyphens."
361
+ msgstr "Le \"slug\" est la version du nom dans l'URL, c'est la version du nom ne contenant que des lettres minuscules (sans accents), des chiffres et des tirets."
362
 
363
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
364
  msgid "Parent"
365
+ msgstr "Parent"
366
 
367
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
368
  msgid "None"
369
+ msgstr "Aucune"
370
 
371
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
372
  msgid ""
373
  "Categories can have a hierarchy. You might have a Jazz category, and under "
374
  "that have children categories for Bebop and Big Band. Totally optional."
375
+ msgstr "Les catégories peuvent avoir une hierarchie. Vous pouvez avoir une catégorie Jazz et avoir en dessous les catégories enfants Bebop et Big Band. Totalement optionnel."
376
 
377
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
378
  msgid "Apply"
379
+ msgstr "Appliquer"
380
 
381
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
382
  msgid "Do a manual sync with post categories"
383
+ msgstr "Faire une synchronisation manuel avec les catégories d'articles."
384
 
385
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
386
  msgid "Import Events"
387
+ msgstr "Importer évènements."
388
 
389
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
390
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
391
  msgid "Step"
392
+ msgstr "Etape"
393
 
394
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
395
  msgid "Set import file and options"
396
+ msgstr "Sélection du fichier à importer et des options."
397
 
398
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
399
  msgid "Import Event Data"
400
+ msgstr "Importer les données des évènements"
401
 
402
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
403
  msgid "Example file"
404
+ msgstr "Fichier d'exemple"
405
 
406
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
407
  #, php-format
408
  msgid ""
409
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
410
+ msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
411
 
412
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
413
  msgid "Note"
414
+ msgstr "Remarque"
415
 
416
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
417
  msgid ""
418
  "Do not change the column header and separator line (first two lines), "
419
  "otherwise the import will fail!"
420
+ msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
421
 
422
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
424
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
425
  msgid "Sorry, there has been an error."
426
+ msgstr "Désolé, il y a eu une erreur."
427
 
428
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
429
  msgid "The file does not exist, please try again."
430
+ msgstr "Le fichier n'existe pas, essayez encore."
431
 
432
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
433
  msgid "The file is not a CSV file."
434
+ msgstr "Le fichier n'est pas un fichier CSV valide."
435
 
436
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
437
  msgid "Event review and category selection"
438
+ msgstr "Revue des évènements et sélection de la catégorie."
439
 
440
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
442
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
443
  msgid "Import"
444
+ msgstr "Importer"
445
 
446
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
447
  msgid "Import with errors!"
448
+ msgstr "Importé avec des erreurs!"
449
 
450
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
451
  #, php-format
452
  msgid ""
453
  "An error occurred during import! Please send your import file to %1$sthe "
454
  "administrator%2$s for analysis."
455
+ msgstr "Une erreur est survenue durant l'import! Merci d'envoyer votre fichier d'import à l'%1$sadministrateur%2$s pour analyse."
456
 
457
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
458
  msgid "Import successful!"
459
+ msgstr "Importation réussis!"
460
 
461
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
462
  msgid "Go back to All Events"
463
+ msgstr "Retour à la liste des évènements"
464
 
465
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
467
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
468
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
469
  msgid "Title"
470
+ msgstr "Titre"
471
 
472
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
473
  msgid "Start Date"
474
+ msgstr "Date de début"
475
 
476
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
477
  msgid "End Date"
478
+ msgstr "Date de fin"
479
 
480
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
481
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
482
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
483
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
484
  msgid "Time"
485
+ msgstr "Heure"
486
 
487
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
489
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
490
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
491
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
492
  msgid "Location"
493
+ msgstr "Lieu"
494
 
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
497
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
498
  msgid "Details"
499
+ msgstr "Détails"
500
 
501
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
502
  msgid "There was an error when reading this CSV file."
503
+ msgstr "Il y a une erreur lors de la lecture du fichier CSV"
504
 
505
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
506
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
507
  msgid "Cancel"
508
+ msgstr "Annuler"
509
 
510
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
511
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
512
  msgid "No categories available."
513
+ msgstr "Pas de catégories disponible."
514
 
515
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
516
  msgid "Edit Event"
517
+ msgstr "Modifier évènement"
518
 
519
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
520
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
521
  msgid "Duplicate"
522
+ msgstr "Dupliquer"
523
 
524
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
525
  #, php-format
526
  msgid "Duplicate of event id:%d"
527
+ msgstr "Duplication de l'évènement: %d"
528
 
529
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
530
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
531
  msgid "required"
532
+ msgstr "Requis"
533
 
534
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
535
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
536
  msgid "Date"
537
+ msgstr "Date"
538
 
539
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
540
  msgid "Multi-Day Event"
541
+ msgstr "Evènement sur plusieurs jours"
542
 
543
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
544
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
545
  msgid "Publish"
546
+ msgstr "Publier"
547
 
548
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
549
  msgid "Update"
550
+ msgstr "Modifier"
551
 
552
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
553
  msgid "Goto Category Settings"
554
+ msgstr "Aller sur les paramètres des catégories"
555
 
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
559
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
560
  msgid "Y/m/d"
561
  msgstr ""
562
 
563
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
564
  msgid "Settings saved."
565
+ msgstr "Paramètres sauvegardé."
566
 
567
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
568
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
569
  msgid "General"
570
+ msgstr "Général"
571
 
572
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
573
  msgid "Frontend Settings"
574
+ msgstr "Frontend Préférences"
575
 
576
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
577
  msgid "Admin Page Settings"
578
+ msgstr "Administration Préférences"
579
 
580
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
581
  msgid "Feed Settings"
582
+ msgstr "Flux RSS Préférences"
583
 
584
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
585
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
586
  msgid "event"
587
+ msgstr "évènement"
588
 
589
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
590
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
591
  msgid "events"
592
+ msgstr "évènements"
593
 
594
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
595
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
596
  msgid "Edit"
597
+ msgstr "Modifier"
598
 
599
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
602
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
603
  msgid "Delete"
604
+ msgstr "Supprimer"
605
 
606
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
607
  msgid "Author"
608
+ msgstr "Auteur"
609
 
610
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
611
  msgid "Published"
612
+ msgstr "Publié"
613
 
614
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
615
  msgid "Filter"
616
+ msgstr "Filtrer"
617
 
618
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
619
  #, php-format
620
  msgid "%s ago"
621
+ msgstr "depuis %s"
622
 
623
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
624
  msgid "Y/m/d g:i:s A"
625
  msgstr ""
626
 
627
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
628
  msgid "Year"
629
+ msgstr "Année"
630
 
631
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
632
  msgid "A year can be specified in 4 digit format."
633
+ msgstr "Une année peut être spécifié au format 4 chiffres."
634
 
635
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
637
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
638
  #, php-format
639
  msgid ""
640
  "For a start date filter the first day of %1$s is used, in an end date the "
641
  "last day."
642
+ msgstr "Pour un filtre de date de début, le premier jour de %1$s est utilisé, dans une date de fin, le dernier jours est utilisé."
643
 
644
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
645
  msgid "the resulting year"
646
+ msgstr "Année résultante"
647
 
648
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
649
  msgid "Month"
650
+ msgstr "Mois"
651
 
652
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
653
  msgid ""
654
  "A month can be specified with 4 digits for the year and 2 digits for the "
655
  "month, seperated by a hyphen (-)."
656
+ msgstr "Un mois peut être spécifié avec 4 chiffres pour l'année et 2 chiffres pour le mois, séparé par un tiret (-)."
657
 
658
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
659
  msgid "the resulting month"
660
+ msgstr "Mois résultant"
661
 
662
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
663
  msgid "Day"
664
+ msgstr "Jour"
665
 
666
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
667
  msgid ""
668
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
669
  " month and 2 digets for the day, seperated by hyphens (-)."
670
+ msgstr "Un jour peut être spécifié avec le format de 4 chiffres pour l'année, 2 chiffres pour le mois et 2 chiffres pour le jour, séparé par un tiret (-)."
671
 
672
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
673
  msgid "Relative Year"
674
+ msgstr "Année relative"
675
 
676
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
679
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
680
  #, php-format
681
  msgid "%1$s from now can be specified in the following notation: %2$s"
682
+ msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s"
683
 
684
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
685
  msgid "A relative year"
686
+ msgstr "Une année relative"
687
 
688
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
691
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
692
  #, php-format
693
  msgid ""
694
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
695
  "%3$s or %4$s attached (see also the example below)."
696
+ msgstr "Cela signifie que vous pouvez spécifier un %2$s positif ou négatif (%1$s) à partir de maintenant suffixé par %3$s ou %4$s (voir l'exemple ci-dessous)"
697
 
698
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
699
  msgid "number of years"
700
+ msgstr "nombre d'année"
701
 
702
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
705
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
706
  #, php-format
707
  msgid "Additionally the following values are available: %1$s"
708
+ msgstr "De plus, les valeurs suivantes sont disponibles : %1$s"
709
 
710
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
711
  msgid "Relative Month"
712
+ msgstr "Mois relatif"
713
 
714
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
715
  msgid "A relative month"
716
+ msgstr "Un mois relatif"
717
 
718
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
719
  msgid "number of months"
720
+ msgstr "Nombre de mois"
721
 
722
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
723
  msgid "Relative Week"
724
+ msgstr "Semaine relative"
725
 
726
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
727
  msgid "A relative week"
728
+ msgstr "Une semaine relative"
729
 
730
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
731
  msgid "number of weeks"
732
+ msgstr "Nombre de semaines"
733
 
734
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
735
  msgid "the resulting week"
736
+ msgstr "Une semaine relative"
737
 
738
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
739
  #, php-format
740
  msgid ""
741
  "The first day of the week is depending on the option %1$s which can be found"
742
  " and changed in %2$s."
743
+ msgstr "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s"
744
 
745
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
746
  msgid "Week Starts On"
747
+ msgstr "Semaine commence le "
748
 
749
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
750
  msgid "Relative Day"
751
+ msgstr "Jour relatif"
752
 
753
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
754
  msgid "A relative day"
755
+ msgstr "Un jour relatif"
756
 
757
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
758
  msgid "number of days"
759
+ msgstr "nombre de jours"
760
 
761
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
762
  msgid "Date range"
763
+ msgstr "Période"
764
 
765
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
766
  msgid ""
767
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
768
  "\t For the start and end date any available date format can be used."
769
+ msgstr "Une période peut être spécifié via une date de début et une date de fin séparé par un tilde (~).<br/>\n⇥ Pour la date de début et de fin, n'importe quel format de date peut être utilisé."
770
 
771
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
772
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
773
  msgid "All"
774
+ msgstr "Tous"
775
 
776
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
777
  msgid "This value defines a range without any limits."
778
+ msgstr "Cette valeur définie une période sans aucune limites"
779
 
780
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
782
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
783
  #, php-format
784
  msgid "The corresponding date_range format is: %1$s"
785
+ msgstr "Le période correspondant est : %1$s"
786
 
787
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
788
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
789
  msgid "Upcoming"
790
+ msgstr "A venir"
791
 
792
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
793
  msgid "This value defines a range from the actual day to the future."
794
+ msgstr "Cette valeur définie une période à partir du jour actuel juste que dans le future."
795
 
796
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
797
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
798
  msgid "Past"
799
+ msgstr "Passé"
800
 
801
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
802
  msgid "This value defines a range from the past to the previous day."
803
+ msgstr "Cette valeur définie une période antérieur à la date du jour."
804
 
805
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
806
  msgid "Show all dates"
807
+ msgstr "Voir toutes les dates"
808
 
809
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
810
  msgid "Show all categories"
811
+ msgstr "Voir toutes les catégories"
812
 
813
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
814
  msgid "Event Categories"
815
+ msgstr "Catégories d'évènements"
816
 
817
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
818
  msgid "This option specifies all event category data."
819
+ msgstr "Cette option spécifie toutes les données de la catégorie d'événement."
820
 
821
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
822
  msgid "Sync Categories"
823
+ msgstr "Synchroniser les catégories"
824
 
825
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
826
  msgid "Keep event categories in sync with post categories automatically"
827
+ msgstr "Garder automatiquement synchronisé les catégories d'évènements avec les catégories d'articles."
828
 
829
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
830
  msgid "Attention"
831
+ msgstr "Attention"
832
 
833
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
834
  msgid ""
835
  "Please note that this option will delete all categories which are not "
836
  "available in the post categories! Existing Categories with the same slug "
837
  "will be updated."
838
+ msgstr "Veuillez notez que cette option va supprimer toutes les catégories qui ne sont pas disponibles dans les catégories d'articles!"
839
 
840
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
841
  msgid "CSV File to import"
842
+ msgstr "Fichier CSV à importer"
843
 
844
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
845
  msgid "Please select the file which contains the event data in CSV format."
846
+ msgstr "Veuillez sélectionner le fichier qui contient les évènements au format CSV."
847
 
848
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
849
  msgid "Used date format"
850
+ msgstr "Utilise le format de date suivant"
851
 
852
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
853
  msgid ""
854
  "With this option the used date format for event start and end date given in "
855
  "the CSV file can be specified."
856
+ msgstr "Avec cette option le format de la date de début et de fin peut être spécifié pour le fichier CSV importé."
857
 
858
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
859
  msgid "Text for no events"
860
+ msgstr "Texte si pas d'événements."
861
 
862
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
863
  msgid ""
864
  "This option defines the displayed text when no events are available for the "
865
  "selected view."
866
+ msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
867
 
868
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
869
  msgid "Multiday filter range"
870
+ msgstr "Filtre sur plusieurs jours"
871
 
872
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
873
  msgid "Use the complete event range in the date filter"
874
+ msgstr "Utiliser la période complète dans le filtre par date."
875
 
876
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
877
  msgid ""
878
  "This option defines if the complete range of a multiday event shall be "
879
  "considered in the date filter."
880
+ msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
881
 
882
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
883
  msgid ""
884
  "If disabled, only the start day of an event is considered in the filter."
885
+ msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
886
 
887
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
888
  msgid ""
889
  "For an example multiday event which started yesterday and ends tomorrow this"
890
  " means, that it is displayed in umcoming dates when this option is enabled, "
891
  "but it is hidden when the option is disabled."
892
+ msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
893
 
894
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
895
  msgid "Date display"
896
+ msgstr "Affichage de la date"
897
 
898
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
899
  msgid "Show the date only once per day"
900
+ msgstr "Afficher la date seulement une fois par jour."
901
 
902
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
903
  msgid ""
904
  "With this option enabled the date is only displayed once per day if more "
905
  "than one event is available on the same day."
906
+ msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
907
 
908
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
909
  msgid ""
910
  "If enabled, the events are ordered in a different way (end date before start"
911
  " time) to allow using the same date for as much events as possible."
912
+ msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
913
 
914
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
915
  msgid "HTML tags"
916
+ msgstr "Tags HTML"
917
 
918
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
919
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
920
  #, php-format
921
  msgid "Allow HTML tags in the event field \"%1$s\""
922
+ msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
923
 
924
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
925
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
926
  #, php-format
927
  msgid ""
928
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
929
+ msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
930
 
931
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
932
  msgid "Text for \"Show details\""
933
+ msgstr "Texte pour \"Afficher détails\""
934
 
935
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
936
  msgid ""
937
  "With this option the displayed text for the link to show the event details "
938
  "can be changed, when collapsing is enabled."
939
+ msgstr "Avec cette option, le texte affiché pour le lien qui permet de lire le texte d'un évènement peut être changé, lorsque l'option Replier est activé."
940
 
941
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
942
  msgid "Text for \"Hide details\""
943
+ msgstr "Texte pour \"Cacher les détails\""
944
 
945
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
946
  msgid ""
947
  "With this option the displayed text for the link to hide the event details "
948
  "can be changed, when collapsing is enabled."
949
+ msgstr "Avec cette option, le texte affiché pour le lien qui permet de cacher le texte d'un évènement peut être changé, lorsque l'option Replier est activé."
950
 
951
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
952
  msgid "Disable CSS file"
953
+ msgstr "Désactiver le fichier CSS"
954
 
955
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
956
  #, php-format
957
  msgid "Disable the %1$s file."
958
+ msgstr "Désactiver le fichier %1$s."
959
 
960
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
961
  #, php-format
962
  msgid "With this option you can disable the inclusion of the %1$s file."
963
+ msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
964
 
965
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
966
  msgid ""
967
  "This normally only make sense if you have css conflicts with your theme and "
968
  "want to set all required css styles somewhere else (e.g. in the theme css)."
969
+ msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
970
 
971
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
972
  msgid "Date format in edit form"
973
+ msgstr "Format de la date dans le formulaire d'édition."
974
 
975
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
976
  msgid ""
977
  "This option sets the displayed date format for the event date fields in the "
978
  "event new / edit form."
979
+ msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
980
 
981
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
982
  msgid "The standard is an empty string to use the Wordpress standard setting."
983
+ msgstr "Si cette option est vide, le format définie dans les paramètres Wordpress est utilisé."
984
 
985
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
986
  #, php-format
987
  msgid ""
988
  "All available options to specify the date format can be found %1$shere%2$s."
989
+ msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
990
 
991
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
992
  msgid "Enable RSS feed"
993
+ msgstr "Activer flux RSS"
994
 
995
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
996
  msgid "Enable support for an event RSS feed"
997
+ msgstr "Activer le support pour un flux RSS des évènements"
998
 
999
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
1000
  msgid ""
1001
  "This option activates a RSS feed for the events.<br />\n"
1002
  "\t You have to enable this option if you want to use one of the RSS feed features."
1003
+ msgstr "Cette option active un flux RSS pour les évènements.<br/>\n⇥ Vous devez activer cette option si vous voulez utiliser une des fonctionnalités sur les flux RSS."
1004
 
1005
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1006
  msgid "Feed name"
1007
+ msgstr "Nom du flux"
1008
 
1009
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1010
  msgid ""
1011
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1012
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1013
+ msgstr "Cette option définie le nom du flux. La valeur par défaut est \"event-list\".<br />\n⇥ Ce nom sera utilisé dans l'URL du flux (i.e.. <code>domain.com/?feed=event-list</code> ou <code>domain.com/feed/eventlist</code> pour une installation avec des permaliens)"
1014
 
1015
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1016
  msgid "Feed Description"
1017
+ msgstr "Description du Flux"
1018
 
1019
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1020
  msgid ""
1021
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1022
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1023
+ msgstr "Cette option définie la description du flux. La valeur par défaut est \"EventList Feed\".<br/>\n⇥ Cette description sera utilisé dans le titre pour le liens vers le flux RSS dans l'entête de la page et dans la description du flux RSS."
1024
 
1025
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1026
  msgid "Listed events"
1027
+ msgstr "Evènements listés"
1028
 
1029
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1030
  msgid "Only show upcoming events in feed"
1031
+ msgstr "Voir seulement les prochains évènements dans le flux."
1032
 
1033
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1034
  msgid ""
1035
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1036
  "\t If disabled all events (upcoming and past) will be listed."
1037
+ msgstr "Si cette option est activé, seulement les prochains évènements seront listés dans le flux.<br/>\n⇥ Si désactivé, tous les évènements (prochain et passé) seront listés."
1038
 
1039
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1040
  msgid "Add RSS feed link in head"
1041
+ msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
1042
 
1043
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1044
  msgid "Add RSS feed link in the html head"
1045
+ msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
1046
 
1047
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1048
  msgid ""
1049
  "This option adds a RSS feed in the html head for the events.<br />\n"
1050
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1051
  "\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
1052
  "\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
1053
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1054
+ msgstr "Cette option ajoute un lien vers le flux RSS dans l'entête de la page HTML.<br/>\n⇥ Vous avez 2 possibilités pour inclure un flux RSS:<br/>\n⇥ La première option est d'utiliser cette option pour inclure un lien dans l'entête HTML. Ce lien sera reconnue par les navigateurs ou les lecteurs RSS.<br/>\n⇥ La seconde possibilité est d'inclure un lien visible vers le flux directement dans la liste des évènements. Cela peut se faire en ajoutant l'attribut add_feed_link=true dans le shortcode.<br/>\n⇥ Cette option est seulement valable si l'option \"Activer le flux RSS\" est actif."
1055
 
1056
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1057
  msgid "Position of the RSS feed link"
1058
+ msgstr "Position du flux RSS"
1059
 
1060
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1061
  msgid ""
1062
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1063
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1064
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1065
+ msgstr "Cette option spécifie la position du lien vers le flux RSS dans la liste des évènements.<br/>\n⇥ Cette option permet d'afficher un lien au dessus, en dessous ou entre la bare de navigation et la liste d'évènement.<br/>\n⇥ Vous devez ajouter l'attribut add_feed_link=true is vous voulez voir ce lien."
1066
 
1067
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1068
  msgid "Align of the RSS feed link"
1069
+ msgstr "Alignement du lien RSS"
1070
 
1071
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1072
  msgid ""
1073
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1074
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1075
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1076
+ msgstr "Cette option spécifie l'alignement du lien RSS dans la liste des évènements.<br/>\n⇥ Ce lien sera aligné à gauche, à droite ou centré.<br/>\n⇥ Vous devez ajouter l'attribut add_feed_link=true au shortcode si vous voulez voir ce lien."
1077
 
1078
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1079
  msgid "Feed link text"
1080
+ msgstr "Text du lien du flux"
1081
 
1082
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1083
  msgid ""
1084
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1085
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1086
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1087
+ msgstr "Cette option spécifie le texte du lien vers le flux RSS des évènements dans la liste.<br/>\n⇥ Insérer un text vide pour cacher le texte du lien si vous voulez seulement afficher l'image.<br/>\n⇥ Vous devez ajouter l'attribut add_feed_link=true au shortcode si vous voulez voir ce lien."
1088
 
1089
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1090
  msgid "Feed link image"
1091
+ msgstr "Image du flux RSS"
1092
 
1093
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1094
  msgid "Show rss image in feed link"
1095
+ msgstr "Afficher l'image dans le lien vers le flux RSS"
1096
 
1097
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1098
  msgid ""
1099
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1100
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1101
+ msgstr "Cette option indique si l'image doit être affiché devant le texte dans le lien vers le flux RSS.<br/>\n⇥ Vous devez ajouter l'attribut add_feed_link=true au shortcode si vous voulez voir ce lien."
1102
 
1103
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1104
  msgid "Show details"
1105
+ msgstr "Afficher les détails"
1106
 
1107
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1108
  msgid "Hide details"
1109
+ msgstr "Cacher les détails"
1110
 
1111
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1112
  msgid ""
1113
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1114
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1115
+ msgstr "Avec cette attribut vous indiquer si l'évènement que vous spécifiez doit afficher son détail à la place de la liste des évènements. Par défaut c'est la liste des évènements qui est affichée.<br/>\n⇥ Spécifiez un identifiant d'évènement i.e. \"13\" pour changer ce comportement. Il est toujours possible de revenir à la liste des évènements via la bare de filtrage ou les paramètres de l'URL."
1116
 
1117
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1118
  msgid ""
1119
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1120
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1121
+ msgstr "Cet attribut spécifie quels évènements sont affichés initialement. Par défaut, les prochains évènements sont affichés.<br/>\n⇥ Spécifiez une année i.e. \"2014\" pour changer ce comportement. Il est toujours possible de changer la période d'affichage via la bare de filtrage ou les paramètres de l'URL."
1122
 
1123
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1124
  msgid ""
1125
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1126
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1127
+ msgstr "Cet attribut spécifie la catégorie des évènements qui sont initialement affiché. Par défaut tous les évènements de toutes les catégories sont affichés.<br/>\n⇥ Spécifiez un slug de catégorie pour changer ce comportement. Il est toujours possible de changer ce comportement via la bare de filtrage ou les paramètres de l'URL."
1128
 
1129
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1130
  msgid ""
1131
  "This attribute specifies the initial order of the events.<br />\n"
1132
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1133
+ msgstr "Cet attribut spécifie le trie initiale des évènements.<br/>\n⇥ Avec \"date_asc\" (par défaut) les évènements sont triés par les plus anciens au plus récent, avec \"date_desc\" les évènements sont triés dans l'autre sens (du plus récent au plus ancien)."
1134
 
1135
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1136
  msgid ""
1137
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1138
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1139
  "\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
1140
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1141
+ msgstr "Cet attribut spécifie les dates et la période des évènements qui seront affichés. La valeur par défaut est \"all\" pour afficher tous les évènments.<br/>\n⇥ Les évènements filtrés selon la valeur de ce filtre ne seront pas affiché dans la liste des évènements.\n⇥ Vous pouvez trouver toutes les valeurs disponible avec une description et des exemples dans les sections \"Format de date disponible\" et \"Format de période de date disponible\" ci-dessous.\n⇥ Voir la section \"Syntaxe des filtres\" si vous voulez définir des filtres complexes."
1142
 
1143
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1144
  msgid ""
1145
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1146
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1147
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1148
+ msgstr "Cet attribut spécifie les catégories des évènements qui seront affichés. La valeur par défaut est \"all\" ou une chaine vide pour afficher tous les évènements.<br/>\n⇥ Les évènements filtrés selon la valeur de ce filtre ne seront pas affiché dans la liste des évènements. Ils ne seront pas disponible si un paramètre dans l'URL est ajouté manuellement.\n⇥ Le filtre utilise les sluf de catégories.\n⇥ Voir la section \"Syntaxe des filtres\" si vous voulez définir des filtres complexes."
1149
 
1150
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1151
  msgid ""
1152
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1153
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1154
  "\t Please not that in the actual version there is no pagination of the events available."
1155
+ msgstr "Cet attribut définie combien d'évènements sont affiché si l'option prochain évènements est selectionné.<br/>\n⇥ 0 est la valeur par défaut et signifie que tous les évènements sont affichés.\n⇥ Veuillez noter que dans cette version actuel il n'y a pas de pagination de disponible."
1156
 
1157
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1158
  msgid ""
1159
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1160
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1161
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1162
+ msgstr "Cet attribut spécifie si la barre de filtre doit être affiché. La bare de filtre permet à l'utilisateur de sélectionner le filtre pour limiter les évènements affichés.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la barre de filtre.<br/>\n⇥ Avec la valeur \"event_list_only\" la barre de filtre est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la barre de filtre est visible seulement sur l'affichage d'un évènement simple."
1163
+
1164
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1166
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1167
+ msgid "number"
1168
  msgstr ""
1169
 
1170
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1171
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1172
+ msgid ""
1173
+ "This attribute specifies if the title should be truncated to the given "
1174
+ "number of characters in the event list."
1175
+ msgstr ""
1176
+
1177
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1178
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1179
+ #, php-format
1180
+ msgid ""
1181
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1182
+ "is automatically truncated via css."
1183
+ msgstr ""
1184
+
1185
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1187
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1188
+ msgid "This attribute has no influence if only a single event is shown."
1189
+ msgstr ""
1190
+
1191
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1192
  msgid ""
1193
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1194
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1195
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1196
+ msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
1197
 
1198
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1199
  msgid ""
1200
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1201
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1202
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1203
+ msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
1204
 
1205
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1206
  msgid ""
1207
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1208
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1209
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1210
+ msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
1211
 
1212
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1213
  msgid ""
1214
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1215
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1216
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1217
+ msgstr "Cet attribut spécifie si le détail doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le détail est visible seulement sur l'affichage d'un évènement simple."
1218
 
1219
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1220
  msgid ""
1221
+ "This attribute specifies if the details should be truncate to the given "
1222
+ "number of characters in the event list."
 
1223
  msgstr ""
1224
 
1225
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1226
+ #, php-format
1227
+ msgid "With the standard value %1$s the full text is displayed."
1228
+ msgstr ""
1229
+
1230
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1231
  msgid ""
1232
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1233
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1234
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
1235
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1236
+ msgstr "Cet attribut spécifie si le détail doit être initialement replier.<br/>\n⇥ Alors un lien apparaitra à la place du détail. En cliquant sur le lien le détails sera visible.<br/>\n⇥ Choisissez \"false\" pour désactiver et \"true\" pour activer l'option pour replier le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement replié sur la liste des évènements, avec la valeur \"single_event_only\" le détail est replié seulement sur l'affichage d'un évènement simple."
1237
 
1238
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1239
  msgid ""
1240
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1241
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1242
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1243
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1244
+ msgstr "Cet attribut spécifie si un lien vers l'évènement simple doit être ajouté sur le nom de l'évènement dans la liste des évènements.<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
1245
 
1246
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1247
  msgid ""
1248
  "This attribute specifies if a rss feed link should be added.<br />\n"
1249
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1250
  "\t On that page you can also find some settings to modify the output.<br />\n"
1251
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1252
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1253
+ msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
1254
 
1255
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1256
  msgid ""
1257
  "This attribute specifies the page or post url for event links.<br />\n"
1258
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1259
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1260
+ msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
 
 
 
 
 
 
 
 
1261
 
1262
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
1263
  msgid ""
1264
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1265
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1266
+ msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
1267
 
1268
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1269
  msgid "Event Information:"
1270
+ msgstr "Information sur l'évènement"
1271
 
1272
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1273
  msgid "(more&hellip;)"
1274
+ msgstr "(plus&hellip;)"
1275
 
1276
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1277
  msgid "This option defines the displayed title for the widget."
1278
+ msgstr "Cette option définie le titre affiché pour le widget"
1279
 
1280
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1281
  msgid "Category Filter"
1282
+ msgstr "Filtre par catégories"
1283
 
1284
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1285
  msgid ""
1286
  "This option defines the categories of which events are shown. The standard "
1287
  "is all or an empty string to show all events. Specify a category slug or a "
1288
  "list of category slugs to only show events of the specified categories. See "
1289
  "description of the shortcode attribute cat_filter for detailed info about "
1290
  "all possibilities."
1291
+ msgstr "Cette option définie la catégorie d'évènement qui doit être affiché. Par défaut est \"all\" ou une chaîne vide pour afficher tous les évènements.\nSpécifiez un slug de catégorie ou une liste de slug de catégories pour afficher seulement les évènements de ces catégories.\nVoir la description des attributs du shortcode cat_filter pour avoir les informations détaillées de toutes les possibilités."
1292
 
1293
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1294
  msgid "Number of listed events"
1295
+ msgstr "Nombre d'événement listés."
1296
 
1297
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1298
  msgid "The number of upcoming events to display"
1299
+ msgstr "Le nombre des prochains d'évènements à afficher."
1300
 
1301
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1302
  msgid "Truncate event title to"
1303
+ msgstr "Tronquer le titre à"
1304
 
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1307
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1308
  msgid "characters"
1309
+ msgstr "caractères"
1310
+
1311
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1312
+ msgid ""
1313
+ "This option defines the number of displayed characters for the event title."
1314
  msgstr ""
1315
 
1316
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1317
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1318
+ #, php-format
1319
  msgid ""
1320
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1321
+ "automatically truncate the text via css."
1322
  msgstr ""
1323
 
1324
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1325
  msgid "Show event starttime"
1326
+ msgstr "Afficher l'horaire de début de l'évènement"
1327
 
1328
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1329
  msgid "This option defines if the event start time will be displayed."
1330
+ msgstr "Cette option définie si l’horaire de début doit être affiché."
1331
 
1332
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1333
  msgid "Show event location"
1334
+ msgstr "Afficher la localisation de l'évènement"
1335
 
1336
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1337
  msgid "This option defines if the event location will be displayed."
1338
+ msgstr "Cette option définie si la localisation de l'évènement doit être affiché."
1339
 
1340
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1341
  msgid "Truncate location to"
1342
+ msgstr "Tronquer la localisation à"
1343
 
1344
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1345
  msgid ""
1346
  "If the event location is diplayed this option defines the number of "
1347
+ "displayed characters."
1348
  msgstr ""
1349
 
1350
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1351
  msgid "Show event details"
1352
+ msgstr "Afficher les détails de l'évènements"
1353
 
1354
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1355
  msgid "This option defines if the event details will be displayed."
1356
+ msgstr "Cette option définie si les détails des évènements doit être affiché."
1357
 
1358
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1359
  msgid "Truncate details to"
1360
+ msgstr "Tronquer les détails à "
1361
 
1362
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1363
  msgid ""
1364
  "If the event details are diplayed this option defines the number of diplayed"
1365
+ " characters."
1366
  msgstr ""
1367
 
1368
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1369
+ #, php-format
1370
+ msgid "Set this value to %1$s to view the full text."
1371
  msgstr ""
1372
 
1373
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1374
+ msgid "URL to the linked Event List page"
1375
+ msgstr "URL vers la page d'évènement"
1376
+
1377
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1378
  msgid ""
1379
  "This option defines the url to the linked Event List page. This option is "
1380
  "required if you want to use one of the options below."
1381
+ msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
1382
 
1383
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1384
  msgid "Shortcode ID on linked page"
1385
+ msgstr "Identifiant du shortcode sur la page lié"
1386
 
1387
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1388
  msgid ""
1389
  "This option defines the shortcode-id for the Event List on the linked page. "
1390
  "Normally the standard value 1 is correct, you only have to change it if you "
1391
  "use multiple event-list shortcodes on the linked page."
1392
+ msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
1393
 
1394
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1395
  msgid ""
1396
  "With this option you can add a link to the single event page for every "
1397
  "displayed event. You have to specify the url to the page and the shortcode "
1398
  "id option if you want to use it."
1399
+ msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
1400
 
1401
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1402
  msgid ""
1403
  "With this option you can add a link to the event-list page below the "
1404
  "diplayed events. You have to specify the url to page option if you want to "
1405
  "use it."
1406
+ msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
1407
 
1408
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1409
  msgid "Caption for the link"
1410
+ msgstr "Texte du lien."
1411
 
1412
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1413
  msgid ""
1414
  "This option defines the text for the link to the Event List page if the "
1415
  "approriate option is selected."
1416
+ msgstr "Cette option définie le texte du lien vers la liste des évènements si l'option est activé."
1417
 
1418
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1419
  msgid "With this widget a list of upcoming events can be displayed."
1420
+ msgstr "Avec ce widget une liste des prochains évènements peut être affichées."
1421
 
1422
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1423
  msgid "Upcoming events"
1424
+ msgstr "Prochains évènements"
1425
 
1426
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1427
  msgid "show events page"
1428
+ msgstr "Voir tous les évènements"
languages/event-list-it_IT.mo CHANGED
Binary file
languages/event-list-it_IT.po CHANGED
@@ -1,5 +1,5 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
12
- "PO-Revision-Date: 2015-12-13 20:43+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,128 +18,128 @@ msgstr ""
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Lista Eventi"
24
 
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Eventi"
31
 
32
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
33
  msgid "All Events"
34
  msgstr "Tutti gli eventi"
35
 
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
  msgstr "Aggiungi un nuovo evento"
40
 
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
43
  msgid "Add New"
44
  msgstr "Aggiungi nuovo"
45
 
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
  msgstr "Categorie Lista Eventi"
50
 
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
55
  msgid "Categories"
56
  msgstr "Categorie"
57
 
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
  msgstr "Impostazioni Eventi Lista"
62
 
63
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
64
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
  msgstr "Impostazioni"
67
 
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
  msgstr "Informazioni su Lista Eventi"
72
 
73
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
74
  msgid "About"
75
  msgstr "Informazioni su"
76
 
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
  msgstr "Non possiedi autorizzazioni sufficienti per accedere a questa pagina"
85
 
86
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
  msgstr "Aiuto e Istruzioni"
89
 
90
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
  msgstr "Puoi gestire i tuoi eventi %1$shere%2$s"
94
 
95
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
  msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità"
98
 
99
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
  msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo"
103
 
104
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
  msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar"
108
 
109
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
  msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode"
114
 
115
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
  msgstr "Un elenco di tutti gli attributi dello shortcode disponibili con la loro descrizione è disponibile di seguito"
120
 
121
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
  msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text"
124
 
125
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
  msgstr "Per il widget è importante sapere che è necessario inserire un URL alla pagina del Lista Evento collegata se si attiva una delle opzioni link \n⇥⇥⇥⇥⇥(%1$s or %2$s). Ciò è richiesto perché il widget non sa in quale pagina o post lo shortcode è stato inserito."
131
 
132
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
134
  msgid "Add links to the single events"
135
  msgstr "Aggiungi link ai singoli eventi"
136
 
137
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
138
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
139
  msgid "Add a link to the Event List page"
140
  msgstr "Aggiungi un link alla pagina Elenco eventi"
141
 
142
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -147,903 +147,903 @@ msgid ""
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
  msgstr "Inoltre devi inserire il corretto Shortcode ID sulla pagina collegata.\nQuesto ID descrive quale shortcode deve essere usato sulla pagina o sull'articolo se ne hai più di una.\nQuindi il valore standard \"1\" è normalmente o.k., ma se richiesto puoi selezionare l'ID cercandolo nella URL di un evento collegato alla tua pagina o post collegato.\nL' ID sarà aggiunto alla fine dei parametri della query (e.g. %1$s)."
149
 
150
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
  msgstr "Sii certo inoltre di selezionare il %1$sSettings page%2$s per ottenere Elenco Eventi comportandosi proprio come vuoi tu."
156
 
157
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
  msgstr "Attributi dello Shortcode"
160
 
161
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
  msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
166
 
167
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
  msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
173
 
174
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
  msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
179
 
180
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
  msgstr "Nome attributo"
183
 
184
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
  msgstr "Valore opzioni"
187
 
188
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
  msgstr "Valore di default"
191
 
192
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
195
  msgid "Description"
196
  msgstr "Descrizione"
197
 
198
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
  msgstr "Sintassi del filtro"
201
 
202
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
  msgstr ""
207
 
208
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
  msgstr ""
214
 
215
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
216
  msgid "AND"
217
  msgstr "E"
218
 
219
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
220
  msgid "OR"
221
  msgstr "O"
222
 
223
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
224
  msgid "or"
225
  msgstr "o"
226
 
227
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
228
  msgid "and"
229
  msgstr "e"
230
 
231
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
  msgstr "Esempio per il filtro di categorie:"
234
 
235
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
  msgstr "Mostra tutti gli eventi aventi categoria %1$s."
239
 
240
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
  msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
244
 
245
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
  msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
251
 
252
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
  msgstr "Formati data disponibili"
255
 
256
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
259
 
260
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
  msgstr "Formati intervallo date disponibili"
263
 
264
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
267
 
268
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
269
  msgid "Value"
270
  msgstr "Valore"
271
 
272
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
273
  msgid "Example"
274
  msgstr "Esempio"
275
 
276
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
  msgstr "Modifica categoria"
279
 
280
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
  msgstr "Categoria aggiornata"
283
 
284
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
  msgstr "Aggiunta nuova categoria"
287
 
288
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
  msgstr "Categoria \"%s\" cancellata."
292
 
293
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
  msgstr "Questa categoria è stato rimossa anche da %d eventi."
297
 
298
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
  msgstr "Errore durante la cancellazione della categoria \"%s\""
302
 
303
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
  msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
306
 
307
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
  msgstr "Sincronizzazione con le categorie dei post abilitata"
310
 
311
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
  msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
314
 
315
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
  msgstr "La nuova categoria \"%s\" è stata aggiunta"
319
 
320
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
  msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
324
 
325
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
  msgstr "Categoria \"%s\" è stata modificata"
329
 
330
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
  msgstr "Errore: Categoria \"%s\" non può essere modificata"
334
 
335
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
  msgstr ""
341
 
342
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
344
  msgid "Name"
345
  msgstr "Nome"
346
 
347
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
  msgstr "Il nome è come appare sul tuo sito."
350
 
351
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
353
  msgid "Slug"
354
  msgstr "Slug"
355
 
356
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
  msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini."
361
 
362
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
  msgstr "Genitore"
365
 
366
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
367
  msgid "None"
368
  msgstr "Nessuno"
369
 
370
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
  msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale."
375
 
376
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
  msgstr "Applica"
379
 
380
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
  msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
383
 
384
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
  msgstr "Importazione Eventi"
387
 
388
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
390
  msgid "Step"
391
  msgstr "Passo"
392
 
393
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
  msgstr "Insieme dei file e delle opzioni di importazione"
396
 
397
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
  msgstr "Importazione dati Eventi"
400
 
401
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
  msgstr "File di esempio"
404
 
405
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
  msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
410
 
411
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
412
  msgid "Note"
413
  msgstr "Nota"
414
 
415
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
  msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
420
 
421
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
  msgstr "Siamo spiacenti, si è verificato un errore."
426
 
427
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
  msgstr "Il file non esiste, riprova."
430
 
431
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
  msgstr "Il file non è un file CSV."
434
 
435
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
  msgstr "Rassegna di eventi e di selezione della categoria"
438
 
439
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
442
  msgid "Import"
443
  msgstr "Importazione"
444
 
445
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
  msgstr "Importazione avvenuta con errori!"
448
 
449
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
  msgstr "Si è verificato un errore durante l'importazione! Si prega di inviare il file di importazione %1$s all' amministratore %2$s per l'analisi."
455
 
456
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
  msgstr "Importazione avvenuta con successo"
459
 
460
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
  msgstr "Torna a Tutti gli Eventi"
463
 
464
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
467
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
468
  msgid "Title"
469
  msgstr "Titolo"
470
 
471
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
  msgstr "Data di inizio"
474
 
475
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
  msgstr "Data di fine"
478
 
479
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
481
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
483
  msgid "Time"
484
  msgstr "Ora"
485
 
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
489
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
491
  msgid "Location"
492
  msgstr "Ubicazione"
493
 
494
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
497
  msgid "Details"
498
  msgstr "Dettagli"
499
 
500
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
  msgstr "Errore durante la lettura del file CSV"
503
 
504
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
  msgstr "Annulla"
508
 
509
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
  msgstr "Nessuna categoria disponibile"
513
 
514
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
515
  msgid "Edit Event"
516
  msgstr "Modifica Evento"
517
 
518
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
  msgstr "Duplica"
522
 
523
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
  msgstr "Duplicazione di evento avente id: %d"
527
 
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
530
  msgid "required"
531
  msgstr "richiesto"
532
 
533
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
535
  msgid "Date"
536
  msgstr "Data"
537
 
538
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
  msgstr "Evento multi giornaliero"
541
 
542
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
  msgstr "Pubblica"
546
 
547
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
548
  msgid "Update"
549
  msgstr "Aggiorna"
550
 
551
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
  msgstr "Vai alle impostazioni delle categorie"
554
 
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
559
  msgid "Y/m/d"
560
  msgstr "Y/m/d"
561
 
562
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
  msgstr "Impostazioni salvate."
565
 
566
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
567
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
568
  msgid "General"
569
  msgstr "Generico"
570
 
571
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
  msgstr "Impostazioni interfaccia grafica"
574
 
575
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
  msgstr "Impostazioni di amministrazione"
578
 
579
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
  msgstr "Impostazioni Feed"
582
 
583
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
585
  msgid "event"
586
  msgstr "evento"
587
 
588
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
590
  msgid "events"
591
  msgstr "eventi"
592
 
593
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
595
  msgid "Edit"
596
  msgstr "Modifica"
597
 
598
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
602
  msgid "Delete"
603
  msgstr "Cancella"
604
 
605
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
606
  msgid "Author"
607
  msgstr "Autore"
608
 
609
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
610
  msgid "Published"
611
  msgstr "Pubblicato"
612
 
613
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
614
  msgid "Filter"
615
  msgstr "Filtro"
616
 
617
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
618
  #, php-format
619
  msgid "%s ago"
620
  msgstr "%s fa"
621
 
622
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
623
  msgid "Y/m/d g:i:s A"
624
  msgstr "Y/m/d g:i:s A"
625
 
626
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
  msgstr "Anno"
629
 
630
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
  msgstr "Un anno può essere specificato in un formato a 4 cifre."
633
 
634
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
  msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
642
 
643
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
  msgstr "L' anno risultante"
646
 
647
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
  msgstr "Mese"
650
 
651
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
  msgstr ""
656
 
657
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
  msgstr "Il mese risultante"
660
 
661
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
  msgstr "Giorno"
664
 
665
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
  msgstr "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
670
 
671
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
  msgstr "Anno relativo"
674
 
675
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
  msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
682
 
683
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
  msgstr "Un anno relativo"
686
 
687
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
  msgstr ""
696
 
697
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
  msgstr "Numero di anni"
700
 
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
  msgstr "Inoltre sono disponibili i seguenti valori: %1$s"
708
 
709
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
  msgstr "Mese relativo"
712
 
713
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
  msgstr "Un mese relativo"
716
 
717
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
  msgstr "Numero di mesi"
720
 
721
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
  msgstr "Settimana relativa"
724
 
725
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
  msgstr "Una settimana relativa"
728
 
729
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
  msgstr "numero di settimane"
732
 
733
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
  msgstr "La settimana risultante"
736
 
737
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
  msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
743
 
744
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
  msgstr "Inizio settimana"
747
 
748
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
  msgstr "Giorno relativo"
751
 
752
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
  msgstr "Un giorno relativo"
755
 
756
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
  msgstr "Numero di giorni"
759
 
760
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
  msgstr "Intervallo date"
763
 
764
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
  msgstr ""
769
 
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
772
  msgid "All"
773
  msgstr "Tutti"
774
 
775
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
  msgstr ""
778
 
779
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
  msgstr "Il corrispondente formato intervallo date è: %1$s"
785
 
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
788
  msgid "Upcoming"
789
  msgstr "Prossimi"
790
 
791
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
  msgstr ""
794
 
795
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
797
  msgid "Past"
798
  msgstr "Passati"
799
 
800
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
  msgstr ""
803
 
804
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
805
  msgid "Show all dates"
806
  msgstr "Visualizza tutte le date"
807
 
808
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
809
  msgid "Show all categories"
810
  msgstr "Visualizza tutte le categorie"
811
 
812
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
  msgstr "Categorie evento"
815
 
816
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
  msgstr ""
819
 
820
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
  msgstr "Sincronizza categorie"
823
 
824
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
  msgstr ""
827
 
828
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
829
  msgid "Attention"
830
  msgstr "Attenzione"
831
 
832
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
  msgstr ""
838
 
839
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
  msgstr "File CSV da importare"
842
 
843
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
  msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV."
846
 
847
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
  msgstr "Formato data utilizzato"
850
 
851
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
  msgstr ""
856
 
857
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
  msgstr "Testo per assenza di eventi"
860
 
861
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
  msgstr ""
866
 
867
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
  msgstr "Filtro intervallo multi giornaliero"
870
 
871
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
  msgstr ""
874
 
875
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
  msgstr ""
880
 
881
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
  msgstr ""
885
 
886
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
  msgstr ""
892
 
893
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
894
  msgid "Date display"
895
  msgstr "Visualizza data"
896
 
897
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
  msgstr ""
900
 
901
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
  msgstr ""
906
 
907
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
  msgstr ""
912
 
913
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
  msgstr "HTML tags"
916
 
917
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
  msgstr ""
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
  msgstr ""
929
 
930
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
  msgstr ""
933
 
934
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
  msgstr ""
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
  msgstr ""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
  msgstr ""
949
 
950
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
  msgstr "Disabilita file CSS"
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
  msgstr ""
958
 
959
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
  msgstr ""
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
  msgstr ""
969
 
970
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
  msgstr ""
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
  msgstr ""
979
 
980
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
  msgstr ""
983
 
984
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
  msgstr ""
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
  msgstr "Abilita feed RSS"
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
  msgstr ""
997
 
998
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
  msgstr ""
1003
 
1004
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
  msgstr "Nome del Feed"
1007
 
1008
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
  msgstr ""
1013
 
1014
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
  msgstr "Descrizione del Feed"
1017
 
1018
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
  msgstr ""
1023
 
1024
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
  msgstr "Eventi elencati"
1027
 
1028
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
  msgstr "Mostra solo i prossimi eventi nel Feed"
1031
 
1032
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
  msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
  msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
  msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1052,86 +1052,86 @@ msgid ""
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
  msgstr ""
1054
 
1055
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
  msgstr ""
1058
 
1059
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
  msgstr ""
1065
 
1066
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
  msgstr ""
1069
 
1070
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
  msgstr ""
1076
 
1077
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
  msgstr ""
1080
 
1081
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
  msgstr ""
1087
 
1088
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
  msgstr ""
1091
 
1092
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
  msgstr ""
1095
 
1096
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
  msgstr ""
1101
 
1102
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1103
  msgid "Show details"
1104
  msgstr ""
1105
 
1106
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1107
  msgid "Hide details"
1108
  msgstr ""
1109
 
1110
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
  msgstr ""
1115
 
1116
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
  msgstr ""
1121
 
1122
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
  msgstr ""
1127
 
1128
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
  msgstr ""
1133
 
1134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1139,63 +1139,94 @@ msgid ""
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
  msgstr ""
1141
 
1142
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
  msgstr ""
1148
 
1149
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
  msgstr ""
1155
 
1156
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1161
  msgstr ""
1162
 
1163
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
  msgid ""
1165
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1166
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1167
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1168
  msgstr ""
1169
 
1170
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1171
  msgid ""
1172
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1173
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1174
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1175
  msgstr ""
1176
 
1177
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1178
  msgid ""
1179
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1180
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1181
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1182
  msgstr ""
1183
 
1184
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1185
  msgid ""
1186
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1187
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1188
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1189
  msgstr ""
1190
 
1191
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1192
  msgid ""
1193
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1194
- "\t With the standard value 0 the full details are displayed.<br />\n"
1195
- "\t This attribute has no influence if only a single event is shown."
1196
  msgstr ""
1197
 
1198
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
 
 
 
 
 
1199
  msgid ""
1200
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1201
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1203,7 +1234,7 @@ msgid ""
1203
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1204
  msgstr ""
1205
 
1206
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1207
  msgid ""
1208
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1209
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1211,7 +1242,7 @@ msgid ""
1211
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1212
  msgstr ""
1213
 
1214
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1215
  msgid ""
1216
  "This attribute specifies if a rss feed link should be added.<br />\n"
1217
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1220,44 +1251,36 @@ msgid ""
1220
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1221
  msgstr ""
1222
 
1223
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1224
  msgid ""
1225
  "This attribute specifies the page or post url for event links.<br />\n"
1226
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1227
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1228
  msgstr ""
1229
 
1230
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1232
- msgid ""
1233
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1234
- "\t With the standard value 0 the full details are displayed.<br />\n"
1235
- "\t This attribute has no influence if only a single event is shown."
1236
- msgstr ""
1237
-
1238
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1239
  msgid ""
1240
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1241
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1242
  msgstr ""
1243
 
1244
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1245
  msgid "Event Information:"
1246
  msgstr "Informazioni Evento"
1247
 
1248
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1249
  msgid "(more&hellip;)"
1250
  msgstr ""
1251
 
1252
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1253
  msgid "This option defines the displayed title for the widget."
1254
  msgstr ""
1255
 
1256
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1257
  msgid "Category Filter"
1258
  msgstr "Filtro per categoria"
1259
 
1260
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1261
  msgid ""
1262
  "This option defines the categories of which events are shown. The standard "
1263
  "is all or an empty string to show all events. Specify a category slug or a "
@@ -1266,127 +1289,139 @@ msgid ""
1266
  "all possibilities."
1267
  msgstr ""
1268
 
1269
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1270
  msgid "Number of listed events"
1271
  msgstr "Il numero degli eventi elencati"
1272
 
1273
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1274
  msgid "The number of upcoming events to display"
1275
  msgstr "Il numero degli eventi prossimi da visualizzare"
1276
 
1277
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1278
  msgid "Truncate event title to"
1279
  msgstr "Tronca il titolo dell'evento al"
1280
 
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1284
  msgid "characters"
1285
  msgstr "caratteri"
1286
 
1287
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
 
 
 
 
 
1288
  msgid ""
1289
- "This option defines the number of displayed characters for the event title. "
1290
- "Set this value to 0 to view the full title."
1291
- msgstr "Questa opzione definisce il numero di caratteri visualizzati per il titolo dell'evento. Imposta questo valore a 0 per vedere il titolo completo."
1292
 
1293
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1294
  msgid "Show event starttime"
1295
  msgstr "Mostra l'ora di inizio dell'evento"
1296
 
1297
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1298
  msgid "This option defines if the event start time will be displayed."
1299
  msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
1300
 
1301
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1302
  msgid "Show event location"
1303
  msgstr "Mostra ubicazione evento"
1304
 
1305
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1306
  msgid "This option defines if the event location will be displayed."
1307
  msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
1308
 
1309
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1310
  msgid "Truncate location to"
1311
  msgstr "Tronca ubicazione al"
1312
 
1313
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1314
  msgid ""
1315
  "If the event location is diplayed this option defines the number of "
1316
- "displayed characters. Set this value to 0 to view the full location."
1317
  msgstr ""
1318
 
1319
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1320
  msgid "Show event details"
1321
  msgstr "Mostra i dettagli dell'evento"
1322
 
1323
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1324
  msgid "This option defines if the event details will be displayed."
1325
  msgstr "Questa opzione definisce se i dettagli dell'evento saranno visualizzati."
1326
 
1327
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1328
  msgid "Truncate details to"
1329
  msgstr "Tronca i dettagli al"
1330
 
1331
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1332
  msgid ""
1333
  "If the event details are diplayed this option defines the number of diplayed"
1334
- " characters. Set this value to 0 to view the full details."
 
 
 
 
 
1335
  msgstr ""
1336
 
1337
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1338
  msgid "URL to the linked Event List page"
1339
  msgstr ""
1340
 
1341
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1342
  msgid ""
1343
  "This option defines the url to the linked Event List page. This option is "
1344
  "required if you want to use one of the options below."
1345
  msgstr ""
1346
 
1347
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1348
  msgid "Shortcode ID on linked page"
1349
  msgstr ""
1350
 
1351
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1352
  msgid ""
1353
  "This option defines the shortcode-id for the Event List on the linked page. "
1354
  "Normally the standard value 1 is correct, you only have to change it if you "
1355
  "use multiple event-list shortcodes on the linked page."
1356
  msgstr ""
1357
 
1358
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1359
  msgid ""
1360
  "With this option you can add a link to the single event page for every "
1361
  "displayed event. You have to specify the url to the page and the shortcode "
1362
  "id option if you want to use it."
1363
  msgstr ""
1364
 
1365
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1366
  msgid ""
1367
  "With this option you can add a link to the event-list page below the "
1368
  "diplayed events. You have to specify the url to page option if you want to "
1369
  "use it."
1370
  msgstr ""
1371
 
1372
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1373
  msgid "Caption for the link"
1374
  msgstr "Didascalia per il link"
1375
 
1376
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1377
  msgid ""
1378
  "This option defines the text for the link to the Event List page if the "
1379
  "approriate option is selected."
1380
  msgstr ""
1381
 
1382
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1383
  msgid "With this widget a list of upcoming events can be displayed."
1384
  msgstr "Con questo widget può essere mostrata una lista di eventi"
1385
 
1386
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1387
  msgid "Upcoming events"
1388
  msgstr "Prossimi eventi"
1389
 
1390
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1391
  msgid "show events page"
1392
  msgstr "mostra pagina eventi"
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
12
+ "PO-Revision-Date: 2017-01-07 20:34+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
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Lista Eventi"
24
 
25
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Eventi"
31
 
32
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
33
  msgid "All Events"
34
  msgstr "Tutti gli eventi"
35
 
36
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
37
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
  msgstr "Aggiungi un nuovo evento"
40
 
41
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
42
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
43
  msgid "Add New"
44
  msgstr "Aggiungi nuovo"
45
 
46
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
47
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
  msgstr "Categorie Lista Eventi"
50
 
51
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
55
  msgid "Categories"
56
  msgstr "Categorie"
57
 
58
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
59
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
  msgstr "Impostazioni Eventi Lista"
62
 
63
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
64
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
  msgstr "Impostazioni"
67
 
68
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
69
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
  msgstr "Informazioni su Lista Eventi"
72
 
73
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
74
  msgid "About"
75
  msgstr "Informazioni su"
76
 
77
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
  msgstr "Non possiedi autorizzazioni sufficienti per accedere a questa pagina"
85
 
86
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
  msgstr "Aiuto e Istruzioni"
89
 
90
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
  msgstr "Puoi gestire i tuoi eventi %1$shere%2$s"
94
 
95
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
  msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità"
98
 
99
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
  msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo"
103
 
104
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
  msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar"
108
 
109
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
  msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode"
114
 
115
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
  msgstr "Un elenco di tutti gli attributi dello shortcode disponibili con la loro descrizione è disponibile di seguito"
120
 
121
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
  msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text"
124
 
125
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
  msgstr "Per il widget è importante sapere che è necessario inserire un URL alla pagina del Lista Evento collegata se si attiva una delle opzioni link \n⇥⇥⇥⇥⇥(%1$s or %2$s). Ciò è richiesto perché il widget non sa in quale pagina o post lo shortcode è stato inserito."
131
 
132
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
133
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
134
  msgid "Add links to the single events"
135
  msgstr "Aggiungi link ai singoli eventi"
136
 
137
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
138
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
139
  msgid "Add a link to the Event List page"
140
  msgstr "Aggiungi un link alla pagina Elenco eventi"
141
 
142
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
  msgstr "Inoltre devi inserire il corretto Shortcode ID sulla pagina collegata.\nQuesto ID descrive quale shortcode deve essere usato sulla pagina o sull'articolo se ne hai più di una.\nQuindi il valore standard \"1\" è normalmente o.k., ma se richiesto puoi selezionare l'ID cercandolo nella URL di un evento collegato alla tua pagina o post collegato.\nL' ID sarà aggiunto alla fine dei parametri della query (e.g. %1$s)."
149
 
150
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
  msgstr "Sii certo inoltre di selezionare il %1$sSettings page%2$s per ottenere Elenco Eventi comportandosi proprio come vuoi tu."
156
 
157
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
  msgstr "Attributi dello Shortcode"
160
 
161
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
  msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
166
 
167
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
  msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
173
 
174
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
  msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
179
 
180
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
  msgstr "Nome attributo"
183
 
184
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
  msgstr "Valore opzioni"
187
 
188
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
  msgstr "Valore di default"
191
 
192
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
195
  msgid "Description"
196
  msgstr "Descrizione"
197
 
198
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
  msgstr "Sintassi del filtro"
201
 
202
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
  msgstr ""
207
 
208
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
  msgstr ""
214
 
215
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
216
  msgid "AND"
217
  msgstr "E"
218
 
219
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
220
  msgid "OR"
221
  msgstr "O"
222
 
223
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
224
  msgid "or"
225
  msgstr "o"
226
 
227
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
228
  msgid "and"
229
  msgstr "e"
230
 
231
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
  msgstr "Esempio per il filtro di categorie:"
234
 
235
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
  msgstr "Mostra tutti gli eventi aventi categoria %1$s."
239
 
240
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
  msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
244
 
245
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
  msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
251
 
252
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
  msgstr "Formati data disponibili"
255
 
256
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
259
 
260
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
  msgstr "Formati intervallo date disponibili"
263
 
264
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
267
 
268
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
269
  msgid "Value"
270
  msgstr "Valore"
271
 
272
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
273
  msgid "Example"
274
  msgstr "Esempio"
275
 
276
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
  msgstr "Modifica categoria"
279
 
280
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
  msgstr "Categoria aggiornata"
283
 
284
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
  msgstr "Aggiunta nuova categoria"
287
 
288
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
  msgstr "Categoria \"%s\" cancellata."
292
 
293
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
  msgstr "Questa categoria è stato rimossa anche da %d eventi."
297
 
298
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
  msgstr "Errore durante la cancellazione della categoria \"%s\""
302
 
303
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
  msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
306
 
307
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
  msgstr "Sincronizzazione con le categorie dei post abilitata"
310
 
311
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
  msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
314
 
315
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
  msgstr "La nuova categoria \"%s\" è stata aggiunta"
319
 
320
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
  msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
324
 
325
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
  msgstr "Categoria \"%s\" è stata modificata"
329
 
330
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
  msgstr "Errore: Categoria \"%s\" non può essere modificata"
334
 
335
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
  msgstr ""
341
 
342
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
343
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
344
  msgid "Name"
345
  msgstr "Nome"
346
 
347
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
  msgstr "Il nome è come appare sul tuo sito."
350
 
351
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
352
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
353
  msgid "Slug"
354
  msgstr "Slug"
355
 
356
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
  msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini."
361
 
362
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
  msgstr "Genitore"
365
 
366
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
367
  msgid "None"
368
  msgstr "Nessuno"
369
 
370
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
  msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale."
375
 
376
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
  msgstr "Applica"
379
 
380
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
  msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
383
 
384
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
  msgstr "Importazione Eventi"
387
 
388
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
389
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
390
  msgid "Step"
391
  msgstr "Passo"
392
 
393
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
  msgstr "Insieme dei file e delle opzioni di importazione"
396
 
397
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
  msgstr "Importazione dati Eventi"
400
 
401
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
  msgstr "File di esempio"
404
 
405
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
  msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
410
 
411
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
412
  msgid "Note"
413
  msgstr "Nota"
414
 
415
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
  msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
420
 
421
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
422
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
  msgstr "Siamo spiacenti, si è verificato un errore."
426
 
427
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
  msgstr "Il file non esiste, riprova."
430
 
431
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
  msgstr "Il file non è un file CSV."
434
 
435
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
  msgstr "Rassegna di eventi e di selezione della categoria"
438
 
439
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
440
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
442
  msgid "Import"
443
  msgstr "Importazione"
444
 
445
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
  msgstr "Importazione avvenuta con errori!"
448
 
449
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
  msgstr "Si è verificato un errore durante l'importazione! Si prega di inviare il file di importazione %1$s all' amministratore %2$s per l'analisi."
455
 
456
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
  msgstr "Importazione avvenuta con successo"
459
 
460
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
  msgstr "Torna a Tutti gli Eventi"
463
 
464
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
465
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
467
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
468
  msgid "Title"
469
  msgstr "Titolo"
470
 
471
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
  msgstr "Data di inizio"
474
 
475
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
  msgstr "Data di fine"
478
 
479
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
480
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
481
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
482
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
483
  msgid "Time"
484
  msgstr "Ora"
485
 
486
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
487
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
489
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
490
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
491
  msgid "Location"
492
  msgstr "Ubicazione"
493
 
494
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
497
  msgid "Details"
498
  msgstr "Dettagli"
499
 
500
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
  msgstr "Errore durante la lettura del file CSV"
503
 
504
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
505
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
  msgstr "Annulla"
508
 
509
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
510
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
  msgstr "Nessuna categoria disponibile"
513
 
514
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
515
  msgid "Edit Event"
516
  msgstr "Modifica Evento"
517
 
518
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
519
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
  msgstr "Duplica"
522
 
523
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
  msgstr "Duplicazione di evento avente id: %d"
527
 
528
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
529
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
530
  msgid "required"
531
  msgstr "richiesto"
532
 
533
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
534
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
535
  msgid "Date"
536
  msgstr "Data"
537
 
538
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
  msgstr "Evento multi giornaliero"
541
 
542
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
543
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
  msgstr "Pubblica"
546
 
547
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
548
  msgid "Update"
549
  msgstr "Aggiorna"
550
 
551
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
  msgstr "Vai alle impostazioni delle categorie"
554
 
555
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
559
  msgid "Y/m/d"
560
  msgstr "Y/m/d"
561
 
562
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
  msgstr "Impostazioni salvate."
565
 
566
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
567
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
568
  msgid "General"
569
  msgstr "Generico"
570
 
571
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
  msgstr "Impostazioni interfaccia grafica"
574
 
575
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
  msgstr "Impostazioni di amministrazione"
578
 
579
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
  msgstr "Impostazioni Feed"
582
 
583
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
584
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
585
  msgid "event"
586
  msgstr "evento"
587
 
588
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
589
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
590
  msgid "events"
591
  msgstr "eventi"
592
 
593
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
594
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
595
  msgid "Edit"
596
  msgstr "Modifica"
597
 
598
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
599
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
602
  msgid "Delete"
603
  msgstr "Cancella"
604
 
605
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
606
  msgid "Author"
607
  msgstr "Autore"
608
 
609
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
610
  msgid "Published"
611
  msgstr "Pubblicato"
612
 
613
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
614
  msgid "Filter"
615
  msgstr "Filtro"
616
 
617
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
618
  #, php-format
619
  msgid "%s ago"
620
  msgstr "%s fa"
621
 
622
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
623
  msgid "Y/m/d g:i:s A"
624
  msgstr "Y/m/d g:i:s A"
625
 
626
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
  msgstr "Anno"
629
 
630
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
  msgstr "Un anno può essere specificato in un formato a 4 cifre."
633
 
634
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
635
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
  msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
642
 
643
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
  msgstr "L' anno risultante"
646
 
647
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
  msgstr "Mese"
650
 
651
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
  msgstr ""
656
 
657
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
  msgstr "Il mese risultante"
660
 
661
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
  msgstr "Giorno"
664
 
665
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
  msgstr "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
670
 
671
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
  msgstr "Anno relativo"
674
 
675
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
676
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
  msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
682
 
683
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
  msgstr "Un anno relativo"
686
 
687
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
688
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
  msgstr ""
696
 
697
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
  msgstr "Numero di anni"
700
 
701
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
702
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
  msgstr "Inoltre sono disponibili i seguenti valori: %1$s"
708
 
709
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
  msgstr "Mese relativo"
712
 
713
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
  msgstr "Un mese relativo"
716
 
717
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
  msgstr "Numero di mesi"
720
 
721
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
  msgstr "Settimana relativa"
724
 
725
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
  msgstr "Una settimana relativa"
728
 
729
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
  msgstr "numero di settimane"
732
 
733
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
  msgstr "La settimana risultante"
736
 
737
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
  msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
743
 
744
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
  msgstr "Inizio settimana"
747
 
748
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
  msgstr "Giorno relativo"
751
 
752
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
  msgstr "Un giorno relativo"
755
 
756
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
  msgstr "Numero di giorni"
759
 
760
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
  msgstr "Intervallo date"
763
 
764
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
  msgstr ""
769
 
770
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
771
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
772
  msgid "All"
773
  msgstr "Tutti"
774
 
775
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
  msgstr ""
778
 
779
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
780
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
  msgstr "Il corrispondente formato intervallo date è: %1$s"
785
 
786
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
787
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
788
  msgid "Upcoming"
789
  msgstr "Prossimi"
790
 
791
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
  msgstr ""
794
 
795
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
796
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
797
  msgid "Past"
798
  msgstr "Passati"
799
 
800
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
  msgstr ""
803
 
804
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
805
  msgid "Show all dates"
806
  msgstr "Visualizza tutte le date"
807
 
808
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
809
  msgid "Show all categories"
810
  msgstr "Visualizza tutte le categorie"
811
 
812
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
  msgstr "Categorie evento"
815
 
816
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
  msgstr ""
819
 
820
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
  msgstr "Sincronizza categorie"
823
 
824
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
  msgstr ""
827
 
828
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
829
  msgid "Attention"
830
  msgstr "Attenzione"
831
 
832
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
  msgstr ""
838
 
839
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
  msgstr "File CSV da importare"
842
 
843
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
  msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV."
846
 
847
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
  msgstr "Formato data utilizzato"
850
 
851
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
  msgstr ""
856
 
857
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
  msgstr "Testo per assenza di eventi"
860
 
861
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
  msgstr ""
866
 
867
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
  msgstr "Filtro intervallo multi giornaliero"
870
 
871
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
  msgstr ""
874
 
875
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
  msgstr ""
880
 
881
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
  msgstr ""
885
 
886
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
  msgstr ""
892
 
893
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
894
  msgid "Date display"
895
  msgstr "Visualizza data"
896
 
897
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
  msgstr ""
900
 
901
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
  msgstr ""
906
 
907
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
  msgstr ""
912
 
913
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
  msgstr "HTML tags"
916
 
917
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
918
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
  msgstr ""
922
 
923
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
924
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
  msgstr ""
929
 
930
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
  msgstr ""
933
 
934
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
  msgstr ""
939
 
940
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
  msgstr ""
943
 
944
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
  msgstr ""
949
 
950
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
  msgstr "Disabilita file CSS"
953
 
954
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
  msgstr ""
958
 
959
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
  msgstr ""
963
 
964
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
  msgstr ""
969
 
970
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
  msgstr ""
973
 
974
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
  msgstr ""
979
 
980
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
  msgstr ""
983
 
984
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
  msgstr ""
989
 
990
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
  msgstr "Abilita feed RSS"
993
 
994
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
  msgstr ""
997
 
998
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
  msgstr ""
1003
 
1004
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
  msgstr "Nome del Feed"
1007
 
1008
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
  msgstr ""
1013
 
1014
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
  msgstr "Descrizione del Feed"
1017
 
1018
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
  msgstr ""
1023
 
1024
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
  msgstr "Eventi elencati"
1027
 
1028
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
  msgstr "Mostra solo i prossimi eventi nel Feed"
1031
 
1032
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
  msgstr ""
1037
 
1038
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
  msgstr ""
1041
 
1042
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
  msgstr ""
1045
 
1046
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
  msgstr ""
1054
 
1055
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
  msgstr ""
1058
 
1059
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
  msgstr ""
1065
 
1066
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
  msgstr ""
1069
 
1070
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
  msgstr ""
1076
 
1077
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
  msgstr ""
1080
 
1081
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
  msgstr ""
1087
 
1088
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
  msgstr ""
1091
 
1092
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
  msgstr ""
1095
 
1096
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
  msgstr ""
1101
 
1102
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1103
  msgid "Show details"
1104
  msgstr ""
1105
 
1106
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1107
  msgid "Hide details"
1108
  msgstr ""
1109
 
1110
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
  msgstr ""
1115
 
1116
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
  msgstr ""
1121
 
1122
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
  msgstr ""
1127
 
1128
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
  msgstr ""
1133
 
1134
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
  msgstr ""
1141
 
1142
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
  msgstr ""
1148
 
1149
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
  msgstr ""
1155
 
1156
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1161
  msgstr ""
1162
 
1163
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1164
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1166
+ msgid "number"
1167
+ msgstr ""
1168
+
1169
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1170
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1171
+ msgid ""
1172
+ "This attribute specifies if the title should be truncated to the given "
1173
+ "number of characters in the event list."
1174
+ msgstr ""
1175
+
1176
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1177
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1178
+ #, php-format
1179
+ msgid ""
1180
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1181
+ "is automatically truncated via css."
1182
+ msgstr ""
1183
+
1184
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1185
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1187
+ msgid "This attribute has no influence if only a single event is shown."
1188
+ msgstr ""
1189
+
1190
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1191
  msgid ""
1192
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1193
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1194
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1195
  msgstr ""
1196
 
1197
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1198
  msgid ""
1199
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1200
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1201
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1202
  msgstr ""
1203
 
1204
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1205
  msgid ""
1206
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1207
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1208
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1209
  msgstr ""
1210
 
1211
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1212
  msgid ""
1213
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1214
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1215
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1216
  msgstr ""
1217
 
1218
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1219
  msgid ""
1220
+ "This attribute specifies if the details should be truncate to the given "
1221
+ "number of characters in the event list."
 
1222
  msgstr ""
1223
 
1224
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1225
+ #, php-format
1226
+ msgid "With the standard value %1$s the full text is displayed."
1227
+ msgstr ""
1228
+
1229
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1230
  msgid ""
1231
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1232
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1234
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1235
  msgstr ""
1236
 
1237
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1238
  msgid ""
1239
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1240
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1242
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1243
  msgstr ""
1244
 
1245
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1246
  msgid ""
1247
  "This attribute specifies if a rss feed link should be added.<br />\n"
1248
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1251
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1252
  msgstr ""
1253
 
1254
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1255
  msgid ""
1256
  "This attribute specifies the page or post url for event links.<br />\n"
1257
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1258
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1259
  msgstr ""
1260
 
1261
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1262
  msgid ""
1263
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1264
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1265
  msgstr ""
1266
 
1267
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1268
  msgid "Event Information:"
1269
  msgstr "Informazioni Evento"
1270
 
1271
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1272
  msgid "(more&hellip;)"
1273
  msgstr ""
1274
 
1275
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1276
  msgid "This option defines the displayed title for the widget."
1277
  msgstr ""
1278
 
1279
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1280
  msgid "Category Filter"
1281
  msgstr "Filtro per categoria"
1282
 
1283
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1284
  msgid ""
1285
  "This option defines the categories of which events are shown. The standard "
1286
  "is all or an empty string to show all events. Specify a category slug or a "
1289
  "all possibilities."
1290
  msgstr ""
1291
 
1292
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1293
  msgid "Number of listed events"
1294
  msgstr "Il numero degli eventi elencati"
1295
 
1296
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1297
  msgid "The number of upcoming events to display"
1298
  msgstr "Il numero degli eventi prossimi da visualizzare"
1299
 
1300
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1301
  msgid "Truncate event title to"
1302
  msgstr "Tronca il titolo dell'evento al"
1303
 
1304
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1307
  msgid "characters"
1308
  msgstr "caratteri"
1309
 
1310
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1311
+ msgid ""
1312
+ "This option defines the number of displayed characters for the event title."
1313
+ msgstr ""
1314
+
1315
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1316
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1317
+ #, php-format
1318
  msgid ""
1319
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1320
+ "automatically truncate the text via css."
1321
+ msgstr ""
1322
 
1323
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1324
  msgid "Show event starttime"
1325
  msgstr "Mostra l'ora di inizio dell'evento"
1326
 
1327
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1328
  msgid "This option defines if the event start time will be displayed."
1329
  msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
1330
 
1331
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1332
  msgid "Show event location"
1333
  msgstr "Mostra ubicazione evento"
1334
 
1335
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1336
  msgid "This option defines if the event location will be displayed."
1337
  msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
1338
 
1339
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1340
  msgid "Truncate location to"
1341
  msgstr "Tronca ubicazione al"
1342
 
1343
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1344
  msgid ""
1345
  "If the event location is diplayed this option defines the number of "
1346
+ "displayed characters."
1347
  msgstr ""
1348
 
1349
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1350
  msgid "Show event details"
1351
  msgstr "Mostra i dettagli dell'evento"
1352
 
1353
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1354
  msgid "This option defines if the event details will be displayed."
1355
  msgstr "Questa opzione definisce se i dettagli dell'evento saranno visualizzati."
1356
 
1357
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1358
  msgid "Truncate details to"
1359
  msgstr "Tronca i dettagli al"
1360
 
1361
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1362
  msgid ""
1363
  "If the event details are diplayed this option defines the number of diplayed"
1364
+ " characters."
1365
+ msgstr ""
1366
+
1367
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1368
+ #, php-format
1369
+ msgid "Set this value to %1$s to view the full text."
1370
  msgstr ""
1371
 
1372
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1373
  msgid "URL to the linked Event List page"
1374
  msgstr ""
1375
 
1376
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1377
  msgid ""
1378
  "This option defines the url to the linked Event List page. This option is "
1379
  "required if you want to use one of the options below."
1380
  msgstr ""
1381
 
1382
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1383
  msgid "Shortcode ID on linked page"
1384
  msgstr ""
1385
 
1386
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1387
  msgid ""
1388
  "This option defines the shortcode-id for the Event List on the linked page. "
1389
  "Normally the standard value 1 is correct, you only have to change it if you "
1390
  "use multiple event-list shortcodes on the linked page."
1391
  msgstr ""
1392
 
1393
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1394
  msgid ""
1395
  "With this option you can add a link to the single event page for every "
1396
  "displayed event. You have to specify the url to the page and the shortcode "
1397
  "id option if you want to use it."
1398
  msgstr ""
1399
 
1400
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1401
  msgid ""
1402
  "With this option you can add a link to the event-list page below the "
1403
  "diplayed events. You have to specify the url to page option if you want to "
1404
  "use it."
1405
  msgstr ""
1406
 
1407
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1408
  msgid "Caption for the link"
1409
  msgstr "Didascalia per il link"
1410
 
1411
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1412
  msgid ""
1413
  "This option defines the text for the link to the Event List page if the "
1414
  "approriate option is selected."
1415
  msgstr ""
1416
 
1417
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1418
  msgid "With this widget a list of upcoming events can be displayed."
1419
  msgstr "Con questo widget può essere mostrata una lista di eventi"
1420
 
1421
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1422
  msgid "Upcoming events"
1423
  msgstr "Prossimi eventi"
1424
 
1425
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1426
  msgid "show events page"
1427
  msgstr "mostra pagina eventi"
languages/event-list-nl_NL.mo CHANGED
Binary file
languages/event-list-nl_NL.po CHANGED
@@ -1,15 +1,17 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
 
6
  # Niels Aust <nielsaust@gmail.com>, 2015
 
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
12
- "PO-Revision-Date: 2015-12-13 20:43+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,128 +20,128 @@ msgstr ""
18
  "Language: nl_NL\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
22
  msgid "Event List"
23
  msgstr "Gebeurtenislijst"
24
 
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
29
  msgid "Events"
30
  msgstr "Gebeurtenissen"
31
 
32
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
33
  msgid "All Events"
34
  msgstr "Alle gebeurtenissen"
35
 
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
38
  msgid "Add New Event"
39
  msgstr "Maak een nieuwe gebeurtenis"
40
 
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
43
  msgid "Add New"
44
  msgstr "Nieuwe toevoegen"
45
 
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
48
  msgid "Event List Categories"
49
  msgstr "Gebeurtenislijst Categorieën "
50
 
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
55
  msgid "Categories"
56
  msgstr "Categorieën"
57
 
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
60
  msgid "Event List Settings"
61
  msgstr "Gebeurtenislijst Instellingen"
62
 
63
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
64
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
65
  msgid "Settings"
66
  msgstr "Instellingen"
67
 
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
70
  msgid "About Event List"
71
  msgstr "Over Gebeurtenislijst"
72
 
73
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
74
  msgid "About"
75
  msgstr "Over"
76
 
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
83
  msgid "You do not have sufficient permissions to access this page."
84
  msgstr "Je hebt niet genoeg toestemming om deze pagina te raadplegen."
85
 
86
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
87
  msgid "Help and Instructions"
88
  msgstr "Hulp en instructies"
89
 
90
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
91
  #, php-format
92
  msgid "You can manage your events %1$shere%2$s"
93
  msgstr "Je kunt je gebeurtenissen %1$shier%2$s beheren"
94
 
95
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
96
  msgid "To show the events on your site you have 2 possibilities"
97
  msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden"
98
 
99
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
100
  #, php-format
101
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
102
  msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen"
103
 
104
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
105
  #, php-format
106
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
107
  msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen"
108
 
109
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
110
  msgid ""
111
  "The displayed events and their style can be modified with the available "
112
  "widget settings and the available attributes for the shortcode."
113
  msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode."
114
 
115
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
116
  msgid ""
117
  "A list of all available shortcode attributes with their description is "
118
  "available below."
119
  msgstr "Een lijst van alle beschikbare shortcode attributen met hun beschrijving is hieronder beschikbaar."
120
 
121
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
122
  msgid "The available widget options are described in their tooltip text."
123
  msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst."
124
 
125
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
126
  #, php-format
127
  msgid ""
128
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
129
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
130
  msgstr "Voor de widget is het belangrijk te weten dat je een URL naar de gelinkte gebeurtenislijst pagina toevoegt als je een van de link opties inschakelt\n\t\t\t\t\t(%1$s of %2$s). Dit is verplicht omdat de widget niet weet in welke pagina of bericht de shortcode geplaatst was."
131
 
132
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
134
  msgid "Add links to the single events"
135
  msgstr "Voeg links toe aan de enkele gebeurtenis"
136
 
137
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
138
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
139
  msgid "Add a link to the Event List page"
140
  msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
141
 
142
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
143
  #, php-format
144
  msgid ""
145
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -147,1246 +149,1281 @@ msgid ""
147
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
148
  msgstr "Daarnaast moet je de juiste Shortcode ID toevoegen op de gelinkte pagina. Deze ID omschrijft welke shortcode gebruikt moet worden op de pagina of bericht in kwestie als je er meer dan een hebt.\n\t\t\t\t\tDus de standaard waarde \"1\" is normaal gesproken ok, maar indien vereist kun je de ID controleren door de URL te bekijken van een gebeurtenis link op je gelinkte pagina of bericht.\n\t\t\t\t\tDe ID wordt aan het eind van de query parameter naam toegevoegd (bijvoorbeeld %1$s)."
149
 
150
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
154
  "just the way you want."
155
  msgstr "Zorg ook dat je de %1$sInstellingen pagina%2$s bekijkt zodat je Gebeurtenislijst zo kan laten gedragen als je wilt."
156
 
157
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
158
  msgid "Shortcode Attributes"
159
  msgstr "Shortcode Attributen"
160
 
161
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
162
  msgid ""
163
  "You have the possibility to modify the output if you add some of the "
164
  "following attributes to the shortcode."
165
  msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
166
 
167
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
168
  #, php-format
169
  msgid ""
170
  "You can combine and add as much attributes as you want. E.g. the shortcode "
171
  "including the attributes %1$s and %2$s would looks like this:"
172
  msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
173
 
174
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
175
  msgid ""
176
  "Below you can find a list of all supported attributes with their "
177
  "descriptions and available options:"
178
  msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
179
 
180
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
181
  msgid "Attribute name"
182
  msgstr "Attribuut naam"
183
 
184
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
185
  msgid "Value options"
186
  msgstr "Waarde opties"
187
 
188
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
189
  msgid "Default value"
190
  msgstr "Standaard waarde"
191
 
192
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
195
  msgid "Description"
196
  msgstr "Omschrijving"
197
 
198
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
199
  msgid "Filter Syntax"
200
  msgstr "Filter Syntax"
201
 
202
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
203
  msgid ""
204
  "For date and cat filters you can specify complex filters with the following "
205
  "syntax:"
206
  msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
207
 
208
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
209
  #, php-format
210
  msgid ""
211
  "You can use %1$s and %2$s connections to define complex filters. "
212
  "Additionally you can set brackets %3$s for nested queries."
213
  msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
214
 
215
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
216
  msgid "AND"
217
  msgstr "EN"
218
 
219
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
220
  msgid "OR"
221
  msgstr "OF"
222
 
223
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
224
  msgid "or"
225
  msgstr "of"
226
 
227
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
228
  msgid "and"
229
  msgstr "en"
230
 
231
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
232
  msgid "Examples for cat filters:"
233
  msgstr "Voorbeelden voor categorie filters:"
234
 
235
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
236
  #, php-format
237
  msgid "Show all events with category %1$s."
238
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
239
 
240
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
241
  #, php-format
242
  msgid "Show all events with category %1$s or %2$s."
243
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
244
 
245
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
246
  #, php-format
247
  msgid ""
248
  "Show all events with category %1$s and all events where category %2$s as "
249
  "well as %3$s is selected."
250
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
251
 
252
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
253
  msgid "Available Date Formats"
254
  msgstr "Beschikbare Datum Notaties"
255
 
256
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
257
  msgid "For date filters you can use the following date formats:"
258
  msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
259
 
260
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
261
  msgid "Available Date Range Formats"
262
  msgstr "Beschikbare Datum Bereik Notaties"
263
 
264
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
265
  msgid "For date filters you can use the following daterange formats:"
266
  msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
267
 
268
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
269
  msgid "Value"
270
  msgstr "Waarde"
271
 
272
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
273
  msgid "Example"
274
  msgstr "Voorbeeld"
275
 
276
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
277
  msgid "Edit Category"
278
  msgstr "Bewerk Categorie"
279
 
280
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
281
  msgid "Update Category"
282
  msgstr "Pas Categorie aan"
283
 
284
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
285
  msgid "Add New Category"
286
  msgstr "Voeg Nieuwe Categorie toe"
287
 
288
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
289
  #, php-format
290
  msgid "Category \"%s\" deleted."
291
  msgstr "Categorie \"%s\" verwijderd."
292
 
293
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
294
  #, php-format
295
  msgid "This Category was also removed from %d events."
296
  msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen."
297
 
298
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
299
  #, php-format
300
  msgid "Error while deleting category \"%s\""
301
  msgstr "Fout bij het verwijderen van categorie \"%s\""
302
 
303
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
304
  msgid "Sync with post categories enabled."
305
  msgstr "Synchronisatie met bericht categorieën ingeschakeld."
306
 
307
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
308
  msgid "Sync with post categories disabled."
309
  msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
310
 
311
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
312
  msgid "Manual sync with post categories sucessfully finished."
313
  msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
314
 
315
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
316
  #, php-format
317
  msgid "New Category \"%s\" was added"
318
  msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
319
 
320
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
321
  #, php-format
322
  msgid "Error: New Category \"%s\" could not be added"
323
  msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
324
 
325
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
326
  #, php-format
327
  msgid "Category \"%s\" was modified"
328
  msgstr "Categorie \"%s\" is aangepast"
329
 
330
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
331
  #, php-format
332
  msgid "Error: Category \"%s\" could not be modified"
333
  msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
334
 
335
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
336
  msgid ""
337
  "Categories are automatically synced with the post categories.<br />\n"
338
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
339
  "\t\t\t If you want to manually edit the categories you have to disable this option."
340
  msgstr "Categorieën worden automatisch gesynchroniseerd met de bericht-categorieën.<br/>\n\t\t\tHierdoor zijn alle opties om nieuwe categorieën toe te voegen of bestaande aan te passen uitgeschakeld.<br/>\n\t\t\tAls je handmatig categorieen wil aanpassen dien je deze optie uit te schakelen."
341
 
342
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
344
  msgid "Name"
345
  msgstr "Naam"
346
 
347
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
348
  msgid "The name is how it appears on your site."
349
  msgstr "De naam zoals deze verschijnt op de site"
350
 
351
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
353
  msgid "Slug"
354
  msgstr "Slug"
355
 
356
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
357
  msgid ""
358
  "The “slug” is the URL-friendly version of the name. It is usually all "
359
  "lowercase and contains only letters, numbers, and hyphens."
360
  msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes."
361
 
362
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
363
  msgid "Parent"
364
  msgstr "Bron"
365
 
366
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
367
  msgid "None"
368
  msgstr "Geen"
369
 
370
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
371
  msgid ""
372
  "Categories can have a hierarchy. You might have a Jazz category, and under "
373
  "that have children categories for Bebop and Big Band. Totally optional."
374
  msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel."
375
 
376
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
377
  msgid "Apply"
378
  msgstr "Toepassen"
379
 
380
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
381
  msgid "Do a manual sync with post categories"
382
  msgstr "Doe een handmatige synchronisatie met bericht categorieen"
383
 
384
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
385
  msgid "Import Events"
386
  msgstr "Importeer Gebeurtenissen"
387
 
388
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
390
  msgid "Step"
391
  msgstr "Stap"
392
 
393
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
394
  msgid "Set import file and options"
395
  msgstr "Stel het import bestand en opties in"
396
 
397
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
398
  msgid "Import Event Data"
399
  msgstr "Importeer Gebeurtenis Data"
400
 
401
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
402
  msgid "Example file"
403
  msgstr "Voorbeeld bestand"
404
 
405
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
406
  #, php-format
407
  msgid ""
408
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
409
  msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
410
 
411
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
412
  msgid "Note"
413
  msgstr "Aantekening"
414
 
415
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
416
  msgid ""
417
  "Do not change the column header and separator line (first two lines), "
418
  "otherwise the import will fail!"
419
  msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
420
 
421
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
424
  msgid "Sorry, there has been an error."
425
  msgstr "Sorry, er ging iets fout."
426
 
427
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
428
  msgid "The file does not exist, please try again."
429
  msgstr "Het bestand bestaat niet, probeer het nog eens."
430
 
431
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
432
  msgid "The file is not a CSV file."
433
  msgstr "Het bestand is geen CSV bestand."
434
 
435
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
436
  msgid "Event review and category selection"
437
  msgstr "Gebeurtenis overzicht en categorie selectie"
438
 
439
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
442
  msgid "Import"
443
  msgstr "Importeer"
444
 
445
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
446
  msgid "Import with errors!"
447
  msgstr "Import met fouten!"
448
 
449
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
450
  #, php-format
451
  msgid ""
452
  "An error occurred during import! Please send your import file to %1$sthe "
453
  "administrator%2$s for analysis."
454
  msgstr "Er heeft zich een fout voorgedaan tijdens de import! Verstuur je import bestand naar %1$sde administrator%2$s voor analyse."
455
 
456
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
457
  msgid "Import successful!"
458
  msgstr "Import succesvol!"
459
 
460
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
461
  msgid "Go back to All Events"
462
  msgstr "Ga terug naar Alle Gebeurtenissen"
463
 
464
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
467
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
468
  msgid "Title"
469
  msgstr "Titel"
470
 
471
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
472
  msgid "Start Date"
473
  msgstr "Start Datum"
474
 
475
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
476
  msgid "End Date"
477
  msgstr "Eind Datum"
478
 
479
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
481
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
483
  msgid "Time"
484
  msgstr "Tijd"
485
 
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
489
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
491
  msgid "Location"
492
  msgstr "Locatie"
493
 
494
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
497
  msgid "Details"
498
  msgstr "Details"
499
 
500
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
501
  msgid "There was an error when reading this CSV file."
502
  msgstr "Er deed zich een fout voor bij het lezen van het CSV bestand."
503
 
504
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
506
  msgid "Cancel"
507
  msgstr "Annuleer"
508
 
509
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
511
  msgid "No categories available."
512
  msgstr "Geen categorieen beschikbaar."
513
 
514
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
515
  msgid "Edit Event"
516
  msgstr "Gebeurtenis Aanpassen"
517
 
518
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
520
  msgid "Duplicate"
521
  msgstr "Maak een kopie"
522
 
523
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
524
  #, php-format
525
  msgid "Duplicate of event id:%d"
526
  msgstr "Kopie van gebeurtenis id:%d"
527
 
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
530
  msgid "required"
531
  msgstr "vereist"
532
 
533
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
535
  msgid "Date"
536
  msgstr "Datum"
537
 
538
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
539
  msgid "Multi-Day Event"
540
  msgstr "Meerdaagse gebeurtenis"
541
 
542
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
544
  msgid "Publish"
545
  msgstr "Publiceer"
546
 
547
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
548
  msgid "Update"
549
  msgstr "Bijwerken"
550
 
551
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
552
  msgid "Goto Category Settings"
553
  msgstr "Ga naar Categorie Instellingen"
554
 
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
559
  msgid "Y/m/d"
560
  msgstr "Y/m/d"
561
 
562
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
563
  msgid "Settings saved."
564
  msgstr "Instellingen bewaard."
565
 
566
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
567
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
568
  msgid "General"
569
  msgstr "Algemeen"
570
 
571
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
572
  msgid "Frontend Settings"
573
  msgstr "Frontend Instellingen"
574
 
575
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
576
  msgid "Admin Page Settings"
577
  msgstr "Admin Pagina Instellingen"
578
 
579
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
580
  msgid "Feed Settings"
581
  msgstr "Feed Instellingen"
582
 
583
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
585
  msgid "event"
586
  msgstr "gebeurtenis"
587
 
588
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
590
  msgid "events"
591
  msgstr "gebeurtenissen"
592
 
593
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
595
  msgid "Edit"
596
  msgstr "Aanpassen"
597
 
598
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
602
  msgid "Delete"
603
  msgstr "Verwijderen"
604
 
605
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
606
  msgid "Author"
607
  msgstr "Auteur"
608
 
609
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
610
  msgid "Published"
611
  msgstr "Gepubliceerd"
612
 
613
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
614
  msgid "Filter"
615
  msgstr "Filter"
616
 
617
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
618
  #, php-format
619
  msgid "%s ago"
620
  msgstr "%s geleden"
621
 
622
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
623
  msgid "Y/m/d g:i:s A"
624
  msgstr "Y/m/d g:i:s A"
625
 
626
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
627
  msgid "Year"
628
  msgstr "Jaar"
629
 
630
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
631
  msgid "A year can be specified in 4 digit format."
632
  msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
633
 
634
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
637
  #, php-format
638
  msgid ""
639
  "For a start date filter the first day of %1$s is used, in an end date the "
640
  "last day."
641
- msgstr ""
642
 
643
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
644
  msgid "the resulting year"
645
- msgstr ""
646
 
647
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
648
  msgid "Month"
649
- msgstr ""
650
 
651
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
652
  msgid ""
653
  "A month can be specified with 4 digits for the year and 2 digits for the "
654
  "month, seperated by a hyphen (-)."
655
- msgstr ""
656
 
657
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
658
  msgid "the resulting month"
659
- msgstr ""
660
 
661
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
662
  msgid "Day"
663
- msgstr ""
664
 
665
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
666
  msgid ""
667
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
668
  " month and 2 digets for the day, seperated by hyphens (-)."
669
- msgstr ""
670
 
671
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
672
  msgid "Relative Year"
673
- msgstr ""
674
 
675
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
679
  #, php-format
680
  msgid "%1$s from now can be specified in the following notation: %2$s"
681
- msgstr ""
682
 
683
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
684
  msgid "A relative year"
685
- msgstr ""
686
 
687
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
691
  #, php-format
692
  msgid ""
693
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
694
  "%3$s or %4$s attached (see also the example below)."
695
- msgstr ""
696
 
697
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
698
  msgid "number of years"
699
- msgstr ""
700
 
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
705
  #, php-format
706
  msgid "Additionally the following values are available: %1$s"
707
- msgstr ""
708
 
709
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
710
  msgid "Relative Month"
711
- msgstr ""
712
 
713
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
714
  msgid "A relative month"
715
- msgstr ""
716
 
717
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
718
  msgid "number of months"
719
- msgstr ""
720
 
721
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
722
  msgid "Relative Week"
723
- msgstr ""
724
 
725
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
726
  msgid "A relative week"
727
- msgstr ""
728
 
729
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
730
  msgid "number of weeks"
731
- msgstr ""
732
 
733
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
734
  msgid "the resulting week"
735
- msgstr ""
736
 
737
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
738
  #, php-format
739
  msgid ""
740
  "The first day of the week is depending on the option %1$s which can be found"
741
  " and changed in %2$s."
742
- msgstr ""
743
 
744
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
745
  msgid "Week Starts On"
746
- msgstr ""
747
 
748
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
749
  msgid "Relative Day"
750
- msgstr ""
751
 
752
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
753
  msgid "A relative day"
754
- msgstr ""
755
 
756
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
757
  msgid "number of days"
758
- msgstr ""
759
 
760
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
761
  msgid "Date range"
762
- msgstr ""
763
 
764
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
765
  msgid ""
766
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
767
  "\t For the start and end date any available date format can be used."
768
- msgstr ""
769
 
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
772
  msgid "All"
773
- msgstr ""
774
 
775
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
776
  msgid "This value defines a range without any limits."
777
- msgstr ""
778
 
779
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
782
  #, php-format
783
  msgid "The corresponding date_range format is: %1$s"
784
- msgstr ""
785
 
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
788
  msgid "Upcoming"
789
- msgstr ""
790
 
791
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
792
  msgid "This value defines a range from the actual day to the future."
793
- msgstr ""
794
 
795
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
797
  msgid "Past"
798
- msgstr ""
799
 
800
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
801
  msgid "This value defines a range from the past to the previous day."
802
- msgstr ""
803
 
804
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
805
  msgid "Show all dates"
806
- msgstr ""
807
 
808
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
809
  msgid "Show all categories"
810
- msgstr ""
811
 
812
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
813
  msgid "Event Categories"
814
- msgstr ""
815
 
816
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
817
  msgid "This option specifies all event category data."
818
  msgstr ""
819
 
820
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
821
  msgid "Sync Categories"
822
- msgstr ""
823
 
824
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
825
  msgid "Keep event categories in sync with post categories automatically"
826
- msgstr ""
827
 
828
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
829
  msgid "Attention"
830
- msgstr ""
831
 
832
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
833
  msgid ""
834
  "Please note that this option will delete all categories which are not "
835
  "available in the post categories! Existing Categories with the same slug "
836
  "will be updated."
837
- msgstr ""
838
 
839
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
840
  msgid "CSV File to import"
841
- msgstr ""
842
 
843
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
844
  msgid "Please select the file which contains the event data in CSV format."
845
- msgstr ""
846
 
847
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
848
  msgid "Used date format"
849
- msgstr ""
850
 
851
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
852
  msgid ""
853
  "With this option the used date format for event start and end date given in "
854
  "the CSV file can be specified."
855
- msgstr ""
856
 
857
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
858
  msgid "Text for no events"
859
- msgstr ""
860
 
861
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
862
  msgid ""
863
  "This option defines the displayed text when no events are available for the "
864
  "selected view."
865
- msgstr ""
866
 
867
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
868
  msgid "Multiday filter range"
869
- msgstr ""
870
 
871
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
872
  msgid "Use the complete event range in the date filter"
873
- msgstr ""
874
 
875
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
876
  msgid ""
877
  "This option defines if the complete range of a multiday event shall be "
878
  "considered in the date filter."
879
- msgstr ""
880
 
881
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
882
  msgid ""
883
  "If disabled, only the start day of an event is considered in the filter."
884
- msgstr ""
885
 
886
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
887
  msgid ""
888
  "For an example multiday event which started yesterday and ends tomorrow this"
889
  " means, that it is displayed in umcoming dates when this option is enabled, "
890
  "but it is hidden when the option is disabled."
891
- msgstr ""
892
 
893
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
894
  msgid "Date display"
895
- msgstr ""
896
 
897
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
898
  msgid "Show the date only once per day"
899
- msgstr ""
900
 
901
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
902
  msgid ""
903
  "With this option enabled the date is only displayed once per day if more "
904
  "than one event is available on the same day."
905
- msgstr ""
906
 
907
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
908
  msgid ""
909
  "If enabled, the events are ordered in a different way (end date before start"
910
  " time) to allow using the same date for as much events as possible."
911
- msgstr ""
912
 
913
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
914
  msgid "HTML tags"
915
- msgstr ""
916
 
917
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
919
  #, php-format
920
  msgid "Allow HTML tags in the event field \"%1$s\""
921
- msgstr ""
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
925
  #, php-format
926
  msgid ""
927
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
928
- msgstr ""
929
 
930
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
931
  msgid "Text for \"Show details\""
932
- msgstr ""
933
 
934
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
935
  msgid ""
936
  "With this option the displayed text for the link to show the event details "
937
  "can be changed, when collapsing is enabled."
938
- msgstr ""
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
941
  msgid "Text for \"Hide details\""
942
- msgstr ""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
945
  msgid ""
946
  "With this option the displayed text for the link to hide the event details "
947
  "can be changed, when collapsing is enabled."
948
- msgstr ""
949
 
950
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
951
  msgid "Disable CSS file"
952
- msgstr ""
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
955
  #, php-format
956
  msgid "Disable the %1$s file."
957
- msgstr ""
958
 
959
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
960
  #, php-format
961
  msgid "With this option you can disable the inclusion of the %1$s file."
962
- msgstr ""
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
965
  msgid ""
966
  "This normally only make sense if you have css conflicts with your theme and "
967
  "want to set all required css styles somewhere else (e.g. in the theme css)."
968
- msgstr ""
969
 
970
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
971
  msgid "Date format in edit form"
972
- msgstr ""
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
975
  msgid ""
976
  "This option sets the displayed date format for the event date fields in the "
977
  "event new / edit form."
978
- msgstr ""
979
 
980
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
981
  msgid "The standard is an empty string to use the Wordpress standard setting."
982
- msgstr ""
983
 
984
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
985
  #, php-format
986
  msgid ""
987
  "All available options to specify the date format can be found %1$shere%2$s."
988
- msgstr ""
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
991
  msgid "Enable RSS feed"
992
- msgstr ""
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
995
  msgid "Enable support for an event RSS feed"
996
- msgstr ""
997
 
998
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
999
  msgid ""
1000
  "This option activates a RSS feed for the events.<br />\n"
1001
  "\t You have to enable this option if you want to use one of the RSS feed features."
1002
- msgstr ""
1003
 
1004
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1005
  msgid "Feed name"
1006
- msgstr ""
1007
 
1008
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1009
  msgid ""
1010
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1011
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1012
- msgstr ""
1013
 
1014
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1015
  msgid "Feed Description"
1016
- msgstr ""
1017
 
1018
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1019
  msgid ""
1020
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1021
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1022
- msgstr ""
1023
 
1024
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1025
  msgid "Listed events"
1026
- msgstr ""
1027
 
1028
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1029
  msgid "Only show upcoming events in feed"
1030
- msgstr ""
1031
 
1032
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1033
  msgid ""
1034
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1035
  "\t If disabled all events (upcoming and past) will be listed."
1036
- msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1039
  msgid "Add RSS feed link in head"
1040
- msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1043
  msgid "Add RSS feed link in the html head"
1044
- msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1047
  msgid ""
1048
  "This option adds a RSS feed in the html head for the events.<br />\n"
1049
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1050
  "\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
1051
  "\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
1052
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1053
- msgstr ""
1054
 
1055
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1056
  msgid "Position of the RSS feed link"
1057
- msgstr ""
1058
 
1059
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1060
  msgid ""
1061
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1062
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1063
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1064
- msgstr ""
1065
 
1066
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1067
  msgid "Align of the RSS feed link"
1068
- msgstr ""
1069
 
1070
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1071
  msgid ""
1072
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1073
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1074
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1075
- msgstr ""
1076
 
1077
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1078
  msgid "Feed link text"
1079
- msgstr ""
1080
 
1081
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1082
  msgid ""
1083
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1084
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1085
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1086
- msgstr ""
1087
 
1088
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1089
  msgid "Feed link image"
1090
- msgstr ""
1091
 
1092
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1093
  msgid "Show rss image in feed link"
1094
- msgstr ""
1095
 
1096
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1097
  msgid ""
1098
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1099
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1100
- msgstr ""
1101
 
1102
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1103
  msgid "Show details"
1104
- msgstr ""
1105
 
1106
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1107
  msgid "Hide details"
1108
- msgstr ""
1109
 
1110
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1111
  msgid ""
1112
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1113
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1114
- msgstr ""
1115
 
1116
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1117
  msgid ""
1118
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1119
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1120
- msgstr ""
1121
 
1122
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1123
  msgid ""
1124
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1125
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1126
- msgstr ""
1127
 
1128
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1129
  msgid ""
1130
  "This attribute specifies the initial order of the events.<br />\n"
1131
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1132
- msgstr ""
1133
 
1134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1135
  msgid ""
1136
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1137
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1138
  "\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
1139
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1140
- msgstr ""
1141
 
1142
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1143
  msgid ""
1144
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1145
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1146
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1147
- msgstr ""
1148
 
1149
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1150
  msgid ""
1151
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1152
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1153
  "\t Please not that in the actual version there is no pagination of the events available."
1154
- msgstr ""
1155
 
1156
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1157
  msgid ""
1158
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1159
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1160
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1161
  msgstr ""
1162
 
1163
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
1164
  msgid ""
1165
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1166
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1167
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1168
- msgstr ""
1169
 
1170
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1171
  msgid ""
1172
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1173
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1174
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1175
- msgstr ""
1176
 
1177
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1178
  msgid ""
1179
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1180
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1181
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1182
- msgstr ""
1183
 
1184
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1185
  msgid ""
1186
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1187
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1188
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1189
- msgstr ""
1190
 
1191
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1192
  msgid ""
1193
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1194
- "\t With the standard value 0 the full details are displayed.<br />\n"
1195
- "\t This attribute has no influence if only a single event is shown."
1196
  msgstr ""
1197
 
1198
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
 
 
 
 
 
1199
  msgid ""
1200
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1201
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1202
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
1203
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1204
- msgstr ""
1205
 
1206
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1207
  msgid ""
1208
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1209
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1210
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1211
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1212
- msgstr ""
1213
 
1214
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1215
  msgid ""
1216
  "This attribute specifies if a rss feed link should be added.<br />\n"
1217
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1218
  "\t On that page you can also find some settings to modify the output.<br />\n"
1219
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1220
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1221
- msgstr ""
1222
 
1223
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1224
  msgid ""
1225
  "This attribute specifies the page or post url for event links.<br />\n"
1226
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1227
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1228
- msgstr ""
1229
-
1230
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1232
- msgid ""
1233
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1234
- "\t With the standard value 0 the full details are displayed.<br />\n"
1235
- "\t This attribute has no influence if only a single event is shown."
1236
- msgstr ""
1237
 
1238
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1239
  msgid ""
1240
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1241
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1242
  msgstr ""
1243
 
1244
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1245
  msgid "Event Information:"
1246
- msgstr ""
1247
 
1248
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1249
  msgid "(more&hellip;)"
1250
- msgstr ""
1251
 
1252
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1253
  msgid "This option defines the displayed title for the widget."
1254
- msgstr ""
1255
 
1256
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1257
  msgid "Category Filter"
1258
- msgstr ""
1259
 
1260
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1261
  msgid ""
1262
  "This option defines the categories of which events are shown. The standard "
1263
  "is all or an empty string to show all events. Specify a category slug or a "
1264
  "list of category slugs to only show events of the specified categories. See "
1265
  "description of the shortcode attribute cat_filter for detailed info about "
1266
  "all possibilities."
1267
- msgstr ""
1268
 
1269
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1270
  msgid "Number of listed events"
1271
- msgstr ""
1272
 
1273
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1274
  msgid "The number of upcoming events to display"
1275
- msgstr ""
1276
 
1277
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1278
  msgid "Truncate event title to"
1279
- msgstr ""
1280
 
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1284
  msgid "characters"
 
 
 
 
 
1285
  msgstr ""
1286
 
1287
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
1288
  msgid ""
1289
- "This option defines the number of displayed characters for the event title. "
1290
- "Set this value to 0 to view the full title."
1291
  msgstr ""
1292
 
1293
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1294
  msgid "Show event starttime"
1295
- msgstr ""
1296
 
1297
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1298
  msgid "This option defines if the event start time will be displayed."
1299
- msgstr ""
1300
 
1301
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1302
  msgid "Show event location"
1303
- msgstr ""
1304
 
1305
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1306
  msgid "This option defines if the event location will be displayed."
1307
- msgstr ""
1308
 
1309
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1310
  msgid "Truncate location to"
1311
- msgstr ""
1312
 
1313
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1314
  msgid ""
1315
  "If the event location is diplayed this option defines the number of "
1316
- "displayed characters. Set this value to 0 to view the full location."
1317
  msgstr ""
1318
 
1319
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1320
  msgid "Show event details"
1321
- msgstr ""
1322
 
1323
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1324
  msgid "This option defines if the event details will be displayed."
1325
- msgstr ""
1326
 
1327
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1328
  msgid "Truncate details to"
1329
- msgstr ""
1330
 
1331
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1332
  msgid ""
1333
  "If the event details are diplayed this option defines the number of diplayed"
1334
- " characters. Set this value to 0 to view the full details."
1335
  msgstr ""
1336
 
1337
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1338
- msgid "URL to the linked Event List page"
 
1339
  msgstr ""
1340
 
1341
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
 
 
 
 
1342
  msgid ""
1343
  "This option defines the url to the linked Event List page. This option is "
1344
  "required if you want to use one of the options below."
1345
- msgstr ""
1346
 
1347
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1348
  msgid "Shortcode ID on linked page"
1349
- msgstr ""
1350
 
1351
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1352
  msgid ""
1353
  "This option defines the shortcode-id for the Event List on the linked page. "
1354
  "Normally the standard value 1 is correct, you only have to change it if you "
1355
  "use multiple event-list shortcodes on the linked page."
1356
- msgstr ""
1357
 
1358
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1359
  msgid ""
1360
  "With this option you can add a link to the single event page for every "
1361
  "displayed event. You have to specify the url to the page and the shortcode "
1362
  "id option if you want to use it."
1363
- msgstr ""
1364
 
1365
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1366
  msgid ""
1367
  "With this option you can add a link to the event-list page below the "
1368
  "diplayed events. You have to specify the url to page option if you want to "
1369
  "use it."
1370
- msgstr ""
1371
 
1372
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1373
  msgid "Caption for the link"
1374
- msgstr ""
1375
 
1376
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1377
  msgid ""
1378
  "This option defines the text for the link to the Event List page if the "
1379
  "approriate option is selected."
1380
- msgstr ""
1381
 
1382
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1383
  msgid "With this widget a list of upcoming events can be displayed."
1384
- msgstr ""
1385
 
1386
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1387
  msgid "Upcoming events"
1388
- msgstr ""
1389
 
1390
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1391
  msgid "show events page"
1392
- msgstr ""
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
6
+ # Buggi, 2016
7
  # Niels Aust <nielsaust@gmail.com>, 2015
8
+ # Rick Morsink <rick@laanve.eu>, 2015
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
14
+ "PO-Revision-Date: 2017-01-07 20:39+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: nl_NL\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
24
  msgid "Event List"
25
  msgstr "Gebeurtenislijst"
26
 
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
29
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
30
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
31
  msgid "Events"
32
  msgstr "Gebeurtenissen"
33
 
34
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
35
  msgid "All Events"
36
  msgstr "Alle gebeurtenissen"
37
 
38
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
39
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
40
  msgid "Add New Event"
41
  msgstr "Maak een nieuwe gebeurtenis"
42
 
43
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
44
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
45
  msgid "Add New"
46
  msgstr "Nieuwe toevoegen"
47
 
48
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
49
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
50
  msgid "Event List Categories"
51
  msgstr "Gebeurtenislijst Categorieën "
52
 
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
55
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
56
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
57
  msgid "Categories"
58
  msgstr "Categorieën"
59
 
60
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
61
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
62
  msgid "Event List Settings"
63
  msgstr "Gebeurtenislijst Instellingen"
64
 
65
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
66
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
67
  msgid "Settings"
68
  msgstr "Instellingen"
69
 
70
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
71
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
72
  msgid "About Event List"
73
  msgstr "Over Gebeurtenislijst"
74
 
75
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
76
  msgid "About"
77
  msgstr "Over"
78
 
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
83
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
84
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
85
  msgid "You do not have sufficient permissions to access this page."
86
  msgstr "Je hebt niet genoeg toestemming om deze pagina te raadplegen."
87
 
88
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
89
  msgid "Help and Instructions"
90
  msgstr "Hulp en instructies"
91
 
92
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
93
  #, php-format
94
  msgid "You can manage your events %1$shere%2$s"
95
  msgstr "Je kunt je gebeurtenissen %1$shier%2$s beheren"
96
 
97
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
98
  msgid "To show the events on your site you have 2 possibilities"
99
  msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden"
100
 
101
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
102
  #, php-format
103
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
104
  msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen"
105
 
106
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
107
  #, php-format
108
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
109
  msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen"
110
 
111
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
112
  msgid ""
113
  "The displayed events and their style can be modified with the available "
114
  "widget settings and the available attributes for the shortcode."
115
  msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode."
116
 
117
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
118
  msgid ""
119
  "A list of all available shortcode attributes with their description is "
120
  "available below."
121
  msgstr "Een lijst van alle beschikbare shortcode attributen met hun beschrijving is hieronder beschikbaar."
122
 
123
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
124
  msgid "The available widget options are described in their tooltip text."
125
  msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst."
126
 
127
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
128
  #, php-format
129
  msgid ""
130
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
131
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
132
  msgstr "Voor de widget is het belangrijk te weten dat je een URL naar de gelinkte gebeurtenislijst pagina toevoegt als je een van de link opties inschakelt\n\t\t\t\t\t(%1$s of %2$s). Dit is verplicht omdat de widget niet weet in welke pagina of bericht de shortcode geplaatst was."
133
 
134
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
135
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
136
  msgid "Add links to the single events"
137
  msgstr "Voeg links toe aan de enkele gebeurtenis"
138
 
139
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
140
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
141
  msgid "Add a link to the Event List page"
142
  msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
143
 
144
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
145
  #, php-format
146
  msgid ""
147
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
149
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
150
  msgstr "Daarnaast moet je de juiste Shortcode ID toevoegen op de gelinkte pagina. Deze ID omschrijft welke shortcode gebruikt moet worden op de pagina of bericht in kwestie als je er meer dan een hebt.\n\t\t\t\t\tDus de standaard waarde \"1\" is normaal gesproken ok, maar indien vereist kun je de ID controleren door de URL te bekijken van een gebeurtenis link op je gelinkte pagina of bericht.\n\t\t\t\t\tDe ID wordt aan het eind van de query parameter naam toegevoegd (bijvoorbeeld %1$s)."
151
 
152
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
153
  #, php-format
154
  msgid ""
155
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
156
  "just the way you want."
157
  msgstr "Zorg ook dat je de %1$sInstellingen pagina%2$s bekijkt zodat je Gebeurtenislijst zo kan laten gedragen als je wilt."
158
 
159
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
160
  msgid "Shortcode Attributes"
161
  msgstr "Shortcode Attributen"
162
 
163
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
164
  msgid ""
165
  "You have the possibility to modify the output if you add some of the "
166
  "following attributes to the shortcode."
167
  msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
168
 
169
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
170
  #, php-format
171
  msgid ""
172
  "You can combine and add as much attributes as you want. E.g. the shortcode "
173
  "including the attributes %1$s and %2$s would looks like this:"
174
  msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
175
 
176
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
177
  msgid ""
178
  "Below you can find a list of all supported attributes with their "
179
  "descriptions and available options:"
180
  msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
181
 
182
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
183
  msgid "Attribute name"
184
  msgstr "Attribuut naam"
185
 
186
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
187
  msgid "Value options"
188
  msgstr "Waarde opties"
189
 
190
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
191
  msgid "Default value"
192
  msgstr "Standaard waarde"
193
 
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
195
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
196
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
197
  msgid "Description"
198
  msgstr "Omschrijving"
199
 
200
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
201
  msgid "Filter Syntax"
202
  msgstr "Filter Syntax"
203
 
204
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
205
  msgid ""
206
  "For date and cat filters you can specify complex filters with the following "
207
  "syntax:"
208
  msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
209
 
210
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
211
  #, php-format
212
  msgid ""
213
  "You can use %1$s and %2$s connections to define complex filters. "
214
  "Additionally you can set brackets %3$s for nested queries."
215
  msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
216
 
217
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
218
  msgid "AND"
219
  msgstr "EN"
220
 
221
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
222
  msgid "OR"
223
  msgstr "OF"
224
 
225
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
226
  msgid "or"
227
  msgstr "of"
228
 
229
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
230
  msgid "and"
231
  msgstr "en"
232
 
233
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
234
  msgid "Examples for cat filters:"
235
  msgstr "Voorbeelden voor categorie filters:"
236
 
237
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
238
  #, php-format
239
  msgid "Show all events with category %1$s."
240
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
241
 
242
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
243
  #, php-format
244
  msgid "Show all events with category %1$s or %2$s."
245
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
246
 
247
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
248
  #, php-format
249
  msgid ""
250
  "Show all events with category %1$s and all events where category %2$s as "
251
  "well as %3$s is selected."
252
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
253
 
254
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
255
  msgid "Available Date Formats"
256
  msgstr "Beschikbare Datum Notaties"
257
 
258
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
259
  msgid "For date filters you can use the following date formats:"
260
  msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
261
 
262
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
263
  msgid "Available Date Range Formats"
264
  msgstr "Beschikbare Datum Bereik Notaties"
265
 
266
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
267
  msgid "For date filters you can use the following daterange formats:"
268
  msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
269
 
270
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
271
  msgid "Value"
272
  msgstr "Waarde"
273
 
274
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
275
  msgid "Example"
276
  msgstr "Voorbeeld"
277
 
278
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
279
  msgid "Edit Category"
280
  msgstr "Bewerk Categorie"
281
 
282
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
283
  msgid "Update Category"
284
  msgstr "Pas Categorie aan"
285
 
286
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
287
  msgid "Add New Category"
288
  msgstr "Voeg Nieuwe Categorie toe"
289
 
290
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
291
  #, php-format
292
  msgid "Category \"%s\" deleted."
293
  msgstr "Categorie \"%s\" verwijderd."
294
 
295
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
296
  #, php-format
297
  msgid "This Category was also removed from %d events."
298
  msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen."
299
 
300
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
301
  #, php-format
302
  msgid "Error while deleting category \"%s\""
303
  msgstr "Fout bij het verwijderen van categorie \"%s\""
304
 
305
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
306
  msgid "Sync with post categories enabled."
307
  msgstr "Synchronisatie met bericht categorieën ingeschakeld."
308
 
309
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
310
  msgid "Sync with post categories disabled."
311
  msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
312
 
313
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
314
  msgid "Manual sync with post categories sucessfully finished."
315
  msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
316
 
317
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
318
  #, php-format
319
  msgid "New Category \"%s\" was added"
320
  msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
321
 
322
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
323
  #, php-format
324
  msgid "Error: New Category \"%s\" could not be added"
325
  msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
326
 
327
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
328
  #, php-format
329
  msgid "Category \"%s\" was modified"
330
  msgstr "Categorie \"%s\" is aangepast"
331
 
332
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
333
  #, php-format
334
  msgid "Error: Category \"%s\" could not be modified"
335
  msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
336
 
337
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
338
  msgid ""
339
  "Categories are automatically synced with the post categories.<br />\n"
340
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
341
  "\t\t\t If you want to manually edit the categories you have to disable this option."
342
  msgstr "Categorieën worden automatisch gesynchroniseerd met de bericht-categorieën.<br/>\n\t\t\tHierdoor zijn alle opties om nieuwe categorieën toe te voegen of bestaande aan te passen uitgeschakeld.<br/>\n\t\t\tAls je handmatig categorieen wil aanpassen dien je deze optie uit te schakelen."
343
 
344
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
345
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
346
  msgid "Name"
347
  msgstr "Naam"
348
 
349
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
350
  msgid "The name is how it appears on your site."
351
  msgstr "De naam zoals deze verschijnt op de site"
352
 
353
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
354
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
355
  msgid "Slug"
356
  msgstr "Slug"
357
 
358
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
359
  msgid ""
360
  "The “slug” is the URL-friendly version of the name. It is usually all "
361
  "lowercase and contains only letters, numbers, and hyphens."
362
  msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes."
363
 
364
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
365
  msgid "Parent"
366
  msgstr "Bron"
367
 
368
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
369
  msgid "None"
370
  msgstr "Geen"
371
 
372
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
373
  msgid ""
374
  "Categories can have a hierarchy. You might have a Jazz category, and under "
375
  "that have children categories for Bebop and Big Band. Totally optional."
376
  msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel."
377
 
378
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
379
  msgid "Apply"
380
  msgstr "Toepassen"
381
 
382
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
383
  msgid "Do a manual sync with post categories"
384
  msgstr "Doe een handmatige synchronisatie met bericht categorieen"
385
 
386
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
387
  msgid "Import Events"
388
  msgstr "Importeer Gebeurtenissen"
389
 
390
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
391
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
392
  msgid "Step"
393
  msgstr "Stap"
394
 
395
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
396
  msgid "Set import file and options"
397
  msgstr "Stel het import bestand en opties in"
398
 
399
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
400
  msgid "Import Event Data"
401
  msgstr "Importeer Gebeurtenis Data"
402
 
403
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
404
  msgid "Example file"
405
  msgstr "Voorbeeld bestand"
406
 
407
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
408
  #, php-format
409
  msgid ""
410
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
411
  msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
412
 
413
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
414
  msgid "Note"
415
  msgstr "Aantekening"
416
 
417
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
418
  msgid ""
419
  "Do not change the column header and separator line (first two lines), "
420
  "otherwise the import will fail!"
421
  msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
422
 
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
424
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
425
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
426
  msgid "Sorry, there has been an error."
427
  msgstr "Sorry, er ging iets fout."
428
 
429
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
430
  msgid "The file does not exist, please try again."
431
  msgstr "Het bestand bestaat niet, probeer het nog eens."
432
 
433
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
434
  msgid "The file is not a CSV file."
435
  msgstr "Het bestand is geen CSV bestand."
436
 
437
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
438
  msgid "Event review and category selection"
439
  msgstr "Gebeurtenis overzicht en categorie selectie"
440
 
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
442
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
443
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
444
  msgid "Import"
445
  msgstr "Importeer"
446
 
447
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
448
  msgid "Import with errors!"
449
  msgstr "Import met fouten!"
450
 
451
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
452
  #, php-format
453
  msgid ""
454
  "An error occurred during import! Please send your import file to %1$sthe "
455
  "administrator%2$s for analysis."
456
  msgstr "Er heeft zich een fout voorgedaan tijdens de import! Verstuur je import bestand naar %1$sde administrator%2$s voor analyse."
457
 
458
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
459
  msgid "Import successful!"
460
  msgstr "Import succesvol!"
461
 
462
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
463
  msgid "Go back to All Events"
464
  msgstr "Ga terug naar Alle Gebeurtenissen"
465
 
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
467
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
468
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
469
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
470
  msgid "Title"
471
  msgstr "Titel"
472
 
473
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
474
  msgid "Start Date"
475
  msgstr "Start Datum"
476
 
477
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
478
  msgid "End Date"
479
  msgstr "Eind Datum"
480
 
481
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
482
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
483
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
484
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
485
  msgid "Time"
486
  msgstr "Tijd"
487
 
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
489
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
490
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
491
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
492
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
493
  msgid "Location"
494
  msgstr "Locatie"
495
 
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
497
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
498
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
499
  msgid "Details"
500
  msgstr "Details"
501
 
502
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
503
  msgid "There was an error when reading this CSV file."
504
  msgstr "Er deed zich een fout voor bij het lezen van het CSV bestand."
505
 
506
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
507
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
508
  msgid "Cancel"
509
  msgstr "Annuleer"
510
 
511
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
512
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
513
  msgid "No categories available."
514
  msgstr "Geen categorieen beschikbaar."
515
 
516
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
517
  msgid "Edit Event"
518
  msgstr "Gebeurtenis Aanpassen"
519
 
520
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
521
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
522
  msgid "Duplicate"
523
  msgstr "Maak een kopie"
524
 
525
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
526
  #, php-format
527
  msgid "Duplicate of event id:%d"
528
  msgstr "Kopie van gebeurtenis id:%d"
529
 
530
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
531
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
532
  msgid "required"
533
  msgstr "vereist"
534
 
535
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
536
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
537
  msgid "Date"
538
  msgstr "Datum"
539
 
540
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
541
  msgid "Multi-Day Event"
542
  msgstr "Meerdaagse gebeurtenis"
543
 
544
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
545
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
546
  msgid "Publish"
547
  msgstr "Publiceer"
548
 
549
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
550
  msgid "Update"
551
  msgstr "Bijwerken"
552
 
553
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
554
  msgid "Goto Category Settings"
555
  msgstr "Ga naar Categorie Instellingen"
556
 
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
559
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
560
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
561
  msgid "Y/m/d"
562
  msgstr "Y/m/d"
563
 
564
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
565
  msgid "Settings saved."
566
  msgstr "Instellingen bewaard."
567
 
568
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
569
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
570
  msgid "General"
571
  msgstr "Algemeen"
572
 
573
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
574
  msgid "Frontend Settings"
575
  msgstr "Frontend Instellingen"
576
 
577
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
578
  msgid "Admin Page Settings"
579
  msgstr "Admin Pagina Instellingen"
580
 
581
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
582
  msgid "Feed Settings"
583
  msgstr "Feed Instellingen"
584
 
585
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
586
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
587
  msgid "event"
588
  msgstr "gebeurtenis"
589
 
590
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
591
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
592
  msgid "events"
593
  msgstr "gebeurtenissen"
594
 
595
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
596
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
597
  msgid "Edit"
598
  msgstr "Aanpassen"
599
 
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
602
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
603
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
604
  msgid "Delete"
605
  msgstr "Verwijderen"
606
 
607
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
608
  msgid "Author"
609
  msgstr "Auteur"
610
 
611
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
612
  msgid "Published"
613
  msgstr "Gepubliceerd"
614
 
615
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
616
  msgid "Filter"
617
  msgstr "Filter"
618
 
619
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
620
  #, php-format
621
  msgid "%s ago"
622
  msgstr "%s geleden"
623
 
624
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
625
  msgid "Y/m/d g:i:s A"
626
  msgstr "Y/m/d g:i:s A"
627
 
628
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
629
  msgid "Year"
630
  msgstr "Jaar"
631
 
632
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
633
  msgid "A year can be specified in 4 digit format."
634
  msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
635
 
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
637
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
638
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
639
  #, php-format
640
  msgid ""
641
  "For a start date filter the first day of %1$s is used, in an end date the "
642
  "last day."
643
+ msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag"
644
 
645
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
646
  msgid "the resulting year"
647
+ msgstr "het betreffende jaar"
648
 
649
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
650
  msgid "Month"
651
+ msgstr "Maand"
652
 
653
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
654
  msgid ""
655
  "A month can be specified with 4 digits for the year and 2 digits for the "
656
  "month, seperated by a hyphen (-)."
657
+ msgstr "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)"
658
 
659
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
660
  msgid "the resulting month"
661
+ msgstr "de betreffende maand"
662
 
663
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
664
  msgid "Day"
665
+ msgstr "Dag"
666
 
667
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
668
  msgid ""
669
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
670
  " month and 2 digets for the day, seperated by hyphens (-)."
671
+ msgstr "Een dag kan aangegeven worden met 4 cijfers voor het jaar, 2 cijfers voor de maand en 2 cijfers voor de dag, gescheiden door een streepje (-)"
672
 
673
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
674
  msgid "Relative Year"
675
+ msgstr "Relatief Jaar"
676
 
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
679
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
680
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
681
  #, php-format
682
  msgid "%1$s from now can be specified in the following notation: %2$s"
683
+ msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s"
684
 
685
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
686
  msgid "A relative year"
687
+ msgstr "Een relatief jaar"
688
 
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
691
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
692
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
693
  #, php-format
694
  msgid ""
695
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
696
  "%3$s or %4$s attached (see also the example below)."
697
+ msgstr "Dit betekent dat je een een positief of negatief (%1$s) %2$s vanaf nu kan aangeven met %3$s of %4$s erachter gevoegd (zie ook het voorbeeld hieronder)."
698
 
699
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
700
  msgid "number of years"
701
+ msgstr "aantal jaar"
702
 
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
705
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
706
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
707
  #, php-format
708
  msgid "Additionally the following values are available: %1$s"
709
+ msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s"
710
 
711
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
712
  msgid "Relative Month"
713
+ msgstr "Relatieve Maand"
714
 
715
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
716
  msgid "A relative month"
717
+ msgstr "Een relatieve maand"
718
 
719
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
720
  msgid "number of months"
721
+ msgstr "aantal maand"
722
 
723
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
724
  msgid "Relative Week"
725
+ msgstr "Relatieve Week"
726
 
727
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
728
  msgid "A relative week"
729
+ msgstr "Een relatieve week"
730
 
731
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
732
  msgid "number of weeks"
733
+ msgstr "aantal weken"
734
 
735
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
736
  msgid "the resulting week"
737
+ msgstr "de betreffende week"
738
 
739
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
740
  #, php-format
741
  msgid ""
742
  "The first day of the week is depending on the option %1$s which can be found"
743
  " and changed in %2$s."
744
+ msgstr "De eerste dag van de week is afhankelijk van de optie %1$s, die terug te vinden en aan te passen is bij %2$s."
745
 
746
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
747
  msgid "Week Starts On"
748
+ msgstr "Week begint op"
749
 
750
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
751
  msgid "Relative Day"
752
+ msgstr "Relatieve Dag"
753
 
754
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
755
  msgid "A relative day"
756
+ msgstr "Een relatieve dag"
757
 
758
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
759
  msgid "number of days"
760
+ msgstr "aantal dagen"
761
 
762
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
763
  msgid "Date range"
764
+ msgstr "Datumbereik"
765
 
766
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
767
  msgid ""
768
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
769
  "\t For the start and end date any available date format can be used."
770
+ msgstr "Een datumbereik kan aangegeven worden via een startdatum en einddatum gescheiden door een tilde (~).<br />\n\t Voor de start- en einddatum kan elk datumnotatie gebruikt worden."
771
 
772
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
773
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
774
  msgid "All"
775
+ msgstr "Alles"
776
 
777
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
778
  msgid "This value defines a range without any limits."
779
+ msgstr "Deze waarde geeft een bereik zonder einde aan."
780
 
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
782
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
783
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
784
  #, php-format
785
  msgid "The corresponding date_range format is: %1$s"
786
+ msgstr "De bijbehorende date_range instelling is: %1$s"
787
 
788
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
789
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
790
  msgid "Upcoming"
791
+ msgstr "Komende"
792
 
793
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
794
  msgid "This value defines a range from the actual day to the future."
795
+ msgstr "De waarde geeft een bereik aan van vandaag tot in de toekomst."
796
 
797
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
798
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
799
  msgid "Past"
800
+ msgstr "Eerdere"
801
 
802
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
803
  msgid "This value defines a range from the past to the previous day."
804
+ msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
805
 
806
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
807
  msgid "Show all dates"
808
+ msgstr "Toon alle data"
809
 
810
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
811
  msgid "Show all categories"
812
+ msgstr "Toon alle categoriën"
813
 
814
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
815
  msgid "Event Categories"
816
+ msgstr "Evenementencategoriën"
817
 
818
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
819
  msgid "This option specifies all event category data."
820
  msgstr ""
821
 
822
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
823
  msgid "Sync Categories"
824
+ msgstr "Synchroniseer categoriën"
825
 
826
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
827
  msgid "Keep event categories in sync with post categories automatically"
828
+ msgstr "Houd evenementen categoriën gelijk met bericht categorieën"
829
 
830
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
831
  msgid "Attention"
832
+ msgstr "Let op"
833
 
834
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
835
  msgid ""
836
  "Please note that this option will delete all categories which are not "
837
  "available in the post categories! Existing Categories with the same slug "
838
  "will be updated."
839
+ msgstr "Let op dat deze optie alle categorieën verwijdert die niet bestaan bij de bericht categorieën! Bestaande categorieën met dezelfde slug worden geüpdatet."
840
 
841
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
842
  msgid "CSV File to import"
843
+ msgstr "CSV-bestand om te importeren"
844
 
845
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
846
  msgid "Please select the file which contains the event data in CSV format."
847
+ msgstr "Selecteer het bestand dat de evenementen data bevat in CSV-format."
848
 
849
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
850
  msgid "Used date format"
851
+ msgstr "Gebruikte datumweergave"
852
 
853
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
854
  msgid ""
855
  "With this option the used date format for event start and end date given in "
856
  "the CSV file can be specified."
857
+ msgstr "Met deze optie wordt de gebruikte datumnotatie voor de start- en einddatum van een evenement in het CSV-bestand bepaald."
858
 
859
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
860
  msgid "Text for no events"
861
+ msgstr "Tekst indien geen evenementen"
862
 
863
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
864
  msgid ""
865
  "This option defines the displayed text when no events are available for the "
866
  "selected view."
867
+ msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
868
 
869
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
870
  msgid "Multiday filter range"
871
+ msgstr "Meerdaags filter bereik"
872
 
873
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
874
  msgid "Use the complete event range in the date filter"
875
+ msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
876
 
877
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
878
  msgid ""
879
  "This option defines if the complete range of a multiday event shall be "
880
  "considered in the date filter."
881
+ msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
882
 
883
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
884
  msgid ""
885
  "If disabled, only the start day of an event is considered in the filter."
886
+ msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
887
 
888
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
889
  msgid ""
890
  "For an example multiday event which started yesterday and ends tomorrow this"
891
  " means, that it is displayed in umcoming dates when this option is enabled, "
892
  "but it is hidden when the option is disabled."
893
+ msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
894
 
895
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
896
  msgid "Date display"
897
+ msgstr "Datumweergave"
898
 
899
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
900
  msgid "Show the date only once per day"
901
+ msgstr "Toon de datum slechts één keer per dag"
902
 
903
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
904
  msgid ""
905
  "With this option enabled the date is only displayed once per day if more "
906
  "than one event is available on the same day."
907
+ msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
908
 
909
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
910
  msgid ""
911
  "If enabled, the events are ordered in a different way (end date before start"
912
  " time) to allow using the same date for as much events as possible."
913
+ msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
914
 
915
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
916
  msgid "HTML tags"
917
+ msgstr "HTML-elementen"
918
 
919
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
920
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
921
  #, php-format
922
  msgid "Allow HTML tags in the event field \"%1$s\""
923
+ msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
924
 
925
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
926
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
927
  #, php-format
928
  msgid ""
929
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
930
+ msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
931
 
932
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
933
  msgid "Text for \"Show details\""
934
+ msgstr "Tekst voor \"Toon details\""
935
 
936
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
937
  msgid ""
938
  "With this option the displayed text for the link to show the event details "
939
  "can be changed, when collapsing is enabled."
940
+ msgstr "Met deze optie kan de weergegeven tekst voor de link naar de evenement details worden aangepast, als uitklappen is ingeschakeld."
941
 
942
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
943
  msgid "Text for \"Hide details\""
944
+ msgstr "Tekst voor \"Verberg details\""
945
 
946
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
947
  msgid ""
948
  "With this option the displayed text for the link to hide the event details "
949
  "can be changed, when collapsing is enabled."
950
+ msgstr "Met deze optie kan de weergegeven tekst voor de link om de evenement details te verbergen worden aangepast, als uitklappen is ingeschakeld."
951
 
952
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
953
  msgid "Disable CSS file"
954
+ msgstr "CSS-bestand uitschakelen"
955
 
956
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
957
  #, php-format
958
  msgid "Disable the %1$s file."
959
+ msgstr "Schakel het %1$s bestand uit."
960
 
961
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
962
  #, php-format
963
  msgid "With this option you can disable the inclusion of the %1$s file."
964
+ msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
965
 
966
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
967
  msgid ""
968
  "This normally only make sense if you have css conflicts with your theme and "
969
  "want to set all required css styles somewhere else (e.g. in the theme css)."
970
+ msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
971
 
972
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
973
  msgid "Date format in edit form"
974
+ msgstr "Datumweergave in formulieren"
975
 
976
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
977
  msgid ""
978
  "This option sets the displayed date format for the event date fields in the "
979
  "event new / edit form."
980
+ msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
981
 
982
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
983
  msgid "The standard is an empty string to use the Wordpress standard setting."
984
+ msgstr "Standaard is dit veld leeg om de standaardwaarde van Wordpress te gebruiken."
985
 
986
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
987
  #, php-format
988
  msgid ""
989
  "All available options to specify the date format can be found %1$shere%2$s."
990
+ msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
991
 
992
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
993
  msgid "Enable RSS feed"
994
+ msgstr "RSS feed inschakelen"
995
 
996
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
997
  msgid "Enable support for an event RSS feed"
998
+ msgstr "Ondersteuning voor een RSS feed inschakelen"
999
 
1000
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
1001
  msgid ""
1002
  "This option activates a RSS feed for the events.<br />\n"
1003
  "\t You have to enable this option if you want to use one of the RSS feed features."
1004
+ msgstr "Deze optie activeert een RSS feed voor de evenementen.<br />\n\t Je moet deze optie inschakelen als je gebruik wil maken van de RSS feed functies."
1005
 
1006
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1007
  msgid "Feed name"
1008
+ msgstr "Feed naam"
1009
 
1010
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1011
  msgid ""
1012
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1013
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1014
+ msgstr "Deze optie bepaalt de naam van de feed. De standaardwaarde is \"event-list\".<br />\n\t Deze naam wordt gebruikt in het adres (URL) van de feed (bijv. <code>domein.com/?feed=event-list</code> of <code>domein.com/feed/eventlist</code> bij het gebruik van permalinks."
1015
 
1016
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1017
  msgid "Feed Description"
1018
+ msgstr "Feed beschrijving"
1019
 
1020
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1021
  msgid ""
1022
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1023
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1024
+ msgstr "Deze optie bepaalt de beschrijving van de feed. De standaardwaarde is \"Eventlist Feed\".<br />\n\t Deze beschrijving wordt gebruikt in de titel van de feed link, in de HTML 'head' en voor de beschrijving van de feed zelf."
1025
 
1026
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1027
  msgid "Listed events"
1028
+ msgstr "Vermeldde evenementen"
1029
 
1030
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1031
  msgid "Only show upcoming events in feed"
1032
+ msgstr "Toon alleen komende evenementen in feed"
1033
 
1034
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1035
  msgid ""
1036
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1037
  "\t If disabled all events (upcoming and past) will be listed."
1038
+ msgstr "Indien ingeschakeld, worden alleen komende evenementen in de feed vermeld.<br />\n\t Indien uitgeschakeld, worden alle evenementen (komende en eerdere) vermeld."
1039
 
1040
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1041
  msgid "Add RSS feed link in head"
1042
+ msgstr "Voeg RSS feed toe in kop"
1043
 
1044
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1045
  msgid "Add RSS feed link in the html head"
1046
+ msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
1047
 
1048
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1049
  msgid ""
1050
  "This option adds a RSS feed in the html head for the events.<br />\n"
1051
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1052
  "\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
1053
  "\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
1054
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1055
+ msgstr "Deze optie voegt een RSS feed toe aan de HTML head voor de evenementen.<br />\n\t Je hebt 2 mogelijkheden om de RSS feed in te voegen:<br />\n\t Deze eerste mogelijkheid is om via deze optie een link in de HTML head toe te voegen. Deze link zal worden herkend door browsers of RSS feed lezers.<br />\n\t De tweede optie is om een zichtbare feed link toe te voegen in de evenementenlijst. Dit kan door in de shortcode het attribuut \"add_feed_link=true\" toe te voegen.<br />\n\t Deze optie werkt alleen als \"RSS feed inschakelen\" is ingeschakeld."
1056
 
1057
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1058
  msgid "Position of the RSS feed link"
1059
+ msgstr "Plek van de RSS feed link"
1060
 
1061
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1062
  msgid ""
1063
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1064
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1065
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1066
+ msgstr "Deze optie bepaalt de positie van de RSS feed link in de evenementenlijst.<br />\n\t De link kan bovenaan, onderaan of tussen de navigatiebalk en de evenentenlijst weergegeven worden.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
1067
 
1068
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1069
  msgid "Align of the RSS feed link"
1070
+ msgstr "Uitlijning van RSS feed link"
1071
 
1072
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1073
  msgid ""
1074
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1075
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1076
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1077
+ msgstr "Deze optie bepaalt de uitlijning van de RSS feed link in de evenementenlijst.<br />\n\t De link kan links, in het midden of rechts weergegeven worden.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
1078
 
1079
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1080
  msgid "Feed link text"
1081
+ msgstr "Tekst feed link"
1082
 
1083
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1084
  msgid ""
1085
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1086
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1087
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1088
+ msgstr "Deze optie bepaalt de tekst van de RSS feed link in de evenementenlijst.<br />\n\t Laat dit veld leeg als je geen tekst, maar alleen het RSS logo wil weergeven.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
1089
 
1090
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1091
  msgid "Feed link image"
1092
+ msgstr "Afbeelding feed link"
1093
 
1094
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1095
  msgid "Show rss image in feed link"
1096
+ msgstr "Toon RSS afbeelding in feed link"
1097
 
1098
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1099
  msgid ""
1100
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1101
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1102
+ msgstr "Deze optie bepaalt of in de feed link vóór de tekst een afbeelding moet worden weergegeven.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
1103
 
1104
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1105
  msgid "Show details"
1106
+ msgstr "Toon details"
1107
 
1108
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1109
  msgid "Hide details"
1110
+ msgstr "Verberg details"
1111
 
1112
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1113
  msgid ""
1114
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1115
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1116
+ msgstr "Met dit attribuut kan je een evenement aangeven dat in eerste instantie moet worden getoond. Standaard wordt de hele evenementenlijst weergegeven.<br />\n\t Specificeer een evenement ID, bijv. 13, om dit aan te passen. Het is nog steeds mogelijk om terug te gaan naar de evenementenlijst via de filterbar of via URL parameters."
1117
 
1118
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1119
  msgid ""
1120
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1121
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1122
+ msgstr "Dit attribuut bepaalt welke evenementen in eerste instantie getoond worden. Standaard worden de komende evenementen getoond.<br />\n\t Specificeer een jaar, bijv. 2014, om dit aan te passen. Het is nog steeds mogelijk om terug te gaan naar de evenementenlijst via de filterbar of via URL parameters."
1123
 
1124
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1125
  msgid ""
1126
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1127
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1128
+ msgstr "Dit attribuut bepaalt de categorie evenementen die in eerste instantie getoond worden. Standaard worden evenementen van alle categorieën getoond.<br />\n\t Specificeer een categorie-slug om dit aan te passen. Het is nog steeds mogelijk om terug te gaan naar de evenementenlijst via de filterbar of via URL parameters."
1129
 
1130
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1131
  msgid ""
1132
  "This attribute specifies the initial order of the events.<br />\n"
1133
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1134
+ msgstr "Dit attribuut bepaalt de volgorde van de evenementen in eerste instantie.<br />\n\t Met \"date_asc\" (standaard waarde) worden de evenementen van oud naar nieuw gesorteerd, met \"date_desc\" in omgekeerde volgorde (van nieuw naar oud)."
1135
 
1136
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1137
  msgid ""
1138
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1139
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1140
  "\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
1141
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1142
+ msgstr "Dit attribuut bepaalt de datum en het datumbereik van de getoonde evenementen. Standaard is 'all', waarmee alle evenementen worden getoond.<br />\n\t Evenementen gefilterd door 'date_filter' zijn niet zichtbaar in de evenementenlijst.<br />\n\t Je kan alle beschikbare waarden met beschrijving en voorbeelden terugvinden bij 'Beschikbare datumnotaties' en 'Beschikbare Datumbereik-notaties'<br />\n\t Zie 'Filter Syntax' voor het definiëren van complexe filters."
1143
 
1144
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1145
  msgid ""
1146
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1147
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1148
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1149
+ msgstr "Dit attribuut bepaalt welke categorieën evenementen worden getoond. Standaard is 'all', waarmee alle evenementen worden getoond.<br />\n\t Evenementen in categorieën anders dan gedefinieerd bij 'cat_filter' zijn niet zichtbaar in de evenementenlijst. Ze zijn ook niet te bereiken door het toevoegen van handmatige URL parameters.<br />\n\t Het filter wordt gespecificeerd door een categorie-slug. Zie 'Filter Syntax' voor het definiëren van complexe filters."
1150
 
1151
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1152
  msgid ""
1153
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1154
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1155
  "\t Please not that in the actual version there is no pagination of the events available."
1156
+ msgstr "Dit attribuut bepaalt hoe veel evenementen getoond moeten worden als gekozen is voor komende evenementen.<br />\n\t De standaardwaarde is 0, waarmee alle evenementen worden getoond.<br />\n\t Let op dat er in de evenementenlijst geen onderverdeling in pagina's mogelijk is."
1157
 
1158
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1159
  msgid ""
1160
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1161
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1162
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1163
+ msgstr "Dit attribuut bepaalt of de filterbar zichtbaar is. De filterbar geeft de mogelijkheid om filters te selecteren om het aantal zichtbare evenementen te beperken.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de filterbar.<br />\n\t Met 'event_list_only' is de filterbar alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1164
+
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1166
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1167
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1168
+ msgid "number"
1169
+ msgstr ""
1170
+
1171
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1172
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1173
+ msgid ""
1174
+ "This attribute specifies if the title should be truncated to the given "
1175
+ "number of characters in the event list."
1176
+ msgstr ""
1177
+
1178
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1179
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1180
+ #, php-format
1181
+ msgid ""
1182
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1183
+ "is automatically truncated via css."
1184
  msgstr ""
1185
 
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1187
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1188
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1189
+ msgid "This attribute has no influence if only a single event is shown."
1190
+ msgstr ""
1191
+
1192
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1193
  msgid ""
1194
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1195
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1196
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1197
+ msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1198
 
1199
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1200
  msgid ""
1201
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1202
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1203
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1204
+ msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1205
 
1206
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1207
  msgid ""
1208
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1209
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1210
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1211
+ msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1212
 
1213
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1214
  msgid ""
1215
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1216
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1217
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1218
+ msgstr "Dit attribuut bepaalt of de details worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de details.<br />\n\t Met 'event_list_only' zijn de details alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1219
 
1220
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1221
  msgid ""
1222
+ "This attribute specifies if the details should be truncate to the given "
1223
+ "number of characters in the event list."
 
1224
  msgstr ""
1225
 
1226
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1227
+ #, php-format
1228
+ msgid "With the standard value %1$s the full text is displayed."
1229
+ msgstr ""
1230
+
1231
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1232
  msgid ""
1233
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1234
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1235
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
1236
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1237
+ msgstr "Dit attribuut bepaalt of de details in eerste instantie ingeklapt moeten zijn.<br />\n\t In dat geval wordt er een link getoond in plaats van de details. Door op deze link te klikken worden de details zichtbaar.<br />\n\t Gebruik 'false' om uitklappen van details uit te schakelen en 'true' om het in te schakelen.<br />\n\t Met 'event_list_only' zijn de details alleen ingeklapt in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1238
 
1239
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1240
  msgid ""
1241
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1242
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1243
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1244
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1245
+ msgstr "Dit attribuut bepaalt of een link naar een los evenement moet worden toegevoegd aan de evenementnaam in de evenementenlijst.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen.<br />\n\t Met 'events_with_details_only' wordt de link alleen toegevoegd in de evenementenlijst als er bij een evenement details beschikbaar zijn."
1246
 
1247
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1248
  msgid ""
1249
  "This attribute specifies if a rss feed link should be added.<br />\n"
1250
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1251
  "\t On that page you can also find some settings to modify the output.<br />\n"
1252
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1253
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1254
+ msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1255
 
1256
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1257
  msgid ""
1258
  "This attribute specifies the page or post url for event links.<br />\n"
1259
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1260
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1261
+ msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
 
 
 
 
 
 
 
 
1262
 
1263
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
1264
  msgid ""
1265
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1266
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1267
  msgstr ""
1268
 
1269
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1270
  msgid "Event Information:"
1271
+ msgstr "Evenement details:"
1272
 
1273
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1274
  msgid "(more&hellip;)"
1275
+ msgstr "(meer&hellip;)"
1276
 
1277
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1278
  msgid "This option defines the displayed title for the widget."
1279
+ msgstr "Deze optie bepaalt de getoonde titel voor de widget."
1280
 
1281
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1282
  msgid "Category Filter"
1283
+ msgstr "Categoriefilter"
1284
 
1285
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1286
  msgid ""
1287
  "This option defines the categories of which events are shown. The standard "
1288
  "is all or an empty string to show all events. Specify a category slug or a "
1289
  "list of category slugs to only show events of the specified categories. See "
1290
  "description of the shortcode attribute cat_filter for detailed info about "
1291
  "all possibilities."
1292
+ msgstr "Deze optie bepaalt welke categorieën evenementen worden getoond. Standaard is 'all' of geen waarde om alle evenementen te tonen. Gebruikt een categorie-slug of een lijst van slugs om alleen evenementen uit bepaalde categorieën te tonen. Zie de beschrijving van het shortcode-attribuut 'cat_filter' voor meer informatie over de opties."
1293
 
1294
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1295
  msgid "Number of listed events"
1296
+ msgstr "Aantal getoonde events"
1297
 
1298
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1299
  msgid "The number of upcoming events to display"
1300
+ msgstr "Het aantal komende evenementen om te tonen"
1301
 
1302
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1303
  msgid "Truncate event title to"
1304
+ msgstr "Kort evenementtitel in tot"
1305
 
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1307
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1308
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1309
  msgid "characters"
1310
+ msgstr "tekens"
1311
+
1312
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1313
+ msgid ""
1314
+ "This option defines the number of displayed characters for the event title."
1315
  msgstr ""
1316
 
1317
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1318
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1319
+ #, php-format
1320
  msgid ""
1321
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1322
+ "automatically truncate the text via css."
1323
  msgstr ""
1324
 
1325
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1326
  msgid "Show event starttime"
1327
+ msgstr "Toon starttijd evenement"
1328
 
1329
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1330
  msgid "This option defines if the event start time will be displayed."
1331
+ msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond"
1332
 
1333
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1334
  msgid "Show event location"
1335
+ msgstr "Toon evenementlocatie"
1336
 
1337
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1338
  msgid "This option defines if the event location will be displayed."
1339
+ msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond."
1340
 
1341
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1342
  msgid "Truncate location to"
1343
+ msgstr "Kort de locatie in tot"
1344
 
1345
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1346
  msgid ""
1347
  "If the event location is diplayed this option defines the number of "
1348
+ "displayed characters."
1349
  msgstr ""
1350
 
1351
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1352
  msgid "Show event details"
1353
+ msgstr "Toon evenementdetails"
1354
 
1355
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1356
  msgid "This option defines if the event details will be displayed."
1357
+ msgstr "Deze optie bepaalt of de details van een evenement worden getoond."
1358
 
1359
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1360
  msgid "Truncate details to"
1361
+ msgstr "Kort de details in tot"
1362
 
1363
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1364
  msgid ""
1365
  "If the event details are diplayed this option defines the number of diplayed"
1366
+ " characters."
1367
  msgstr ""
1368
 
1369
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1370
+ #, php-format
1371
+ msgid "Set this value to %1$s to view the full text."
1372
  msgstr ""
1373
 
1374
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1375
+ msgid "URL to the linked Event List page"
1376
+ msgstr "URL naar de gelinkte evenementenlijst-pagina"
1377
+
1378
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1379
  msgid ""
1380
  "This option defines the url to the linked Event List page. This option is "
1381
  "required if you want to use one of the options below."
1382
+ msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
1383
 
1384
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1385
  msgid "Shortcode ID on linked page"
1386
+ msgstr "Shortcode ID op de gelinkte pagina"
1387
 
1388
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1389
  msgid ""
1390
  "This option defines the shortcode-id for the Event List on the linked page. "
1391
  "Normally the standard value 1 is correct, you only have to change it if you "
1392
  "use multiple event-list shortcodes on the linked page."
1393
+ msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
1394
 
1395
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1396
  msgid ""
1397
  "With this option you can add a link to the single event page for every "
1398
  "displayed event. You have to specify the url to the page and the shortcode "
1399
  "id option if you want to use it."
1400
+ msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
1401
 
1402
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1403
  msgid ""
1404
  "With this option you can add a link to the event-list page below the "
1405
  "diplayed events. You have to specify the url to page option if you want to "
1406
  "use it."
1407
+ msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
1408
 
1409
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1410
  msgid "Caption for the link"
1411
+ msgstr "Bijschrift bij de link"
1412
 
1413
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1414
  msgid ""
1415
  "This option defines the text for the link to the Event List page if the "
1416
  "approriate option is selected."
1417
+ msgstr "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd."
1418
 
1419
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1420
  msgid "With this widget a list of upcoming events can be displayed."
1421
+ msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
1422
 
1423
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1424
  msgid "Upcoming events"
1425
+ msgstr "Komende evenementen"
1426
 
1427
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1428
  msgid "show events page"
1429
+ msgstr "toon evenementenpagina"
languages/event-list-pt_BR.mo CHANGED
Binary file
languages/event-list-pt_BR.po CHANGED
@@ -1,5 +1,5 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
@@ -9,8 +9,8 @@ msgid ""
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
13
- "PO-Revision-Date: 2015-12-13 20:44+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
16
  "MIME-Version: 1.0\n"
@@ -19,128 +19,128 @@ msgstr ""
19
  "Language: pt_BR\n"
20
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
 
22
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
23
  msgid "Event List"
24
  msgstr "Lista de Eventos"
25
 
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
28
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
29
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
30
  msgid "Events"
31
  msgstr "Eventos"
32
 
33
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
34
  msgid "All Events"
35
  msgstr "Todos os Eventos"
36
 
37
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
38
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
39
  msgid "Add New Event"
40
  msgstr "Adicionar Novo Evento"
41
 
42
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
43
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
44
  msgid "Add New"
45
  msgstr "Adicionar Novo"
46
 
47
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
48
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
49
  msgid "Event List Categories"
50
  msgstr "Categorias da Lista de Eventos"
51
 
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
54
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
55
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
56
  msgid "Categories"
57
  msgstr "Categorias"
58
 
59
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
60
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
61
  msgid "Event List Settings"
62
  msgstr "Configurações da Lista de Eventos"
63
 
64
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
65
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
66
  msgid "Settings"
67
  msgstr "Configurações"
68
 
69
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
70
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
71
  msgid "About Event List"
72
  msgstr "Sobre o Lista de Eventos"
73
 
74
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
75
  msgid "About"
76
  msgstr "Sobre"
77
 
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
82
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
83
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
84
  msgid "You do not have sufficient permissions to access this page."
85
  msgstr "Você não tem permissões suficientes para acessar esta página"
86
 
87
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
88
  msgid "Help and Instructions"
89
  msgstr "Ajuda e Instruções"
90
 
91
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
92
  #, php-format
93
  msgid "You can manage your events %1$shere%2$s"
94
  msgstr "Você pode gerenciar seus eventos %1$saqui%2$s"
95
 
96
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
97
  msgid "To show the events on your site you have 2 possibilities"
98
  msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site"
99
 
100
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
101
  #, php-format
102
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
103
  msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post"
104
 
105
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
106
  #, php-format
107
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
108
  msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars"
109
 
110
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
111
  msgid ""
112
  "The displayed events and their style can be modified with the available "
113
  "widget settings and the available attributes for the shortcode."
114
  msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configurações disponíveis do widget e os atributos disponíveis para o shortcode."
115
 
116
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
117
  msgid ""
118
  "A list of all available shortcode attributes with their description is "
119
  "available below."
120
  msgstr "Uma lista de todos os atributos do shortcode com sua descrição está disponível abaixo."
121
 
122
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
123
  msgid "The available widget options are described in their tooltip text."
124
  msgstr "As opções de widgets disponíveis são descritas em suas dicas."
125
 
126
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
127
  #, php-format
128
  msgid ""
129
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
130
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
131
  msgstr "Para o widget é importante saber que você tem que inserir uma URL para a página de listagem de evento linkada se você ativar uma das opções de links\n\t\t\t\t\t(%1$s ou %2$s). Isso é necessário porque o widget não sabe em qual página ou post o shortcode foi incluído."
132
 
133
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
134
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
135
  msgid "Add links to the single events"
136
  msgstr "Adicionar links para os eventos individuais"
137
 
138
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
139
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
140
  msgid "Add a link to the Event List page"
141
  msgstr "Adicionar um link para a Página de Lista de Eventos"
142
 
143
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
144
  #, php-format
145
  msgid ""
146
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -148,903 +148,903 @@ msgid ""
148
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
149
  msgstr "Adicionalmente você tem que inserir o Shortcode ID na página linkada. Este ID descreve qual shortcode deve ser usado na página ou post se você possuir mais de um.\n\t\t\t\t\tO valor padrão \"1\" normalmente está o.k., mas se necessário você pode verificar o ID olhando a URL de um link de evento em sua página ou post.\n\t\t\t\t\tO ID estará adicionado no final do nome do parâmetro (e.g. %1$s)."
150
 
151
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
152
  #, php-format
153
  msgid ""
154
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
155
  "just the way you want."
156
  msgstr "Certifique de verificar a %1$sConfiguração%2$s para obter o comportamento do plugin Event List do jeito que você quiser."
157
 
158
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
159
  msgid "Shortcode Attributes"
160
  msgstr ""
161
 
162
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
163
  msgid ""
164
  "You have the possibility to modify the output if you add some of the "
165
  "following attributes to the shortcode."
166
  msgstr ""
167
 
168
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
169
  #, php-format
170
  msgid ""
171
  "You can combine and add as much attributes as you want. E.g. the shortcode "
172
  "including the attributes %1$s and %2$s would looks like this:"
173
  msgstr ""
174
 
175
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
176
  msgid ""
177
  "Below you can find a list of all supported attributes with their "
178
  "descriptions and available options:"
179
  msgstr ""
180
 
181
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
182
  msgid "Attribute name"
183
  msgstr "Nome do atributo"
184
 
185
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
186
  msgid "Value options"
187
  msgstr "Opções de valor"
188
 
189
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
190
  msgid "Default value"
191
  msgstr "Valor padrão"
192
 
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
194
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
195
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
196
  msgid "Description"
197
  msgstr "Descrição"
198
 
199
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
200
  msgid "Filter Syntax"
201
  msgstr "Sintaxe do Filtro"
202
 
203
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
204
  msgid ""
205
  "For date and cat filters you can specify complex filters with the following "
206
  "syntax:"
207
  msgstr ""
208
 
209
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
210
  #, php-format
211
  msgid ""
212
  "You can use %1$s and %2$s connections to define complex filters. "
213
  "Additionally you can set brackets %3$s for nested queries."
214
  msgstr ""
215
 
216
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
217
  msgid "AND"
218
  msgstr "E"
219
 
220
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
221
  msgid "OR"
222
  msgstr "OU"
223
 
224
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
225
  msgid "or"
226
  msgstr "ou"
227
 
228
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
229
  msgid "and"
230
  msgstr "e"
231
 
232
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
233
  msgid "Examples for cat filters:"
234
  msgstr ""
235
 
236
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
237
  #, php-format
238
  msgid "Show all events with category %1$s."
239
  msgstr ""
240
 
241
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
242
  #, php-format
243
  msgid "Show all events with category %1$s or %2$s."
244
  msgstr ""
245
 
246
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
247
  #, php-format
248
  msgid ""
249
  "Show all events with category %1$s and all events where category %2$s as "
250
  "well as %3$s is selected."
251
  msgstr ""
252
 
253
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
254
  msgid "Available Date Formats"
255
  msgstr ""
256
 
257
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
258
  msgid "For date filters you can use the following date formats:"
259
  msgstr ""
260
 
261
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
262
  msgid "Available Date Range Formats"
263
  msgstr ""
264
 
265
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
266
  msgid "For date filters you can use the following daterange formats:"
267
  msgstr ""
268
 
269
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
270
  msgid "Value"
271
  msgstr "Valor"
272
 
273
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
274
  msgid "Example"
275
  msgstr "Exemplo"
276
 
277
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
278
  msgid "Edit Category"
279
  msgstr "Editar Categoria"
280
 
281
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
282
  msgid "Update Category"
283
  msgstr "Atualizar Categoria"
284
 
285
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
286
  msgid "Add New Category"
287
  msgstr "Adicionar Nova Categoria"
288
 
289
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
290
  #, php-format
291
  msgid "Category \"%s\" deleted."
292
  msgstr "Categoria \"%s\" removida."
293
 
294
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
295
  #, php-format
296
  msgid "This Category was also removed from %d events."
297
  msgstr "Esta Categoria também foi removida de %d eventos."
298
 
299
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
300
  #, php-format
301
  msgid "Error while deleting category \"%s\""
302
  msgstr "Erro ao remover categoria \"%s\""
303
 
304
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
305
  msgid "Sync with post categories enabled."
306
  msgstr "Sincronizar com categorias de post habilitado."
307
 
308
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
309
  msgid "Sync with post categories disabled."
310
  msgstr "Sincronizar com categorias de post desabilitado"
311
 
312
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
313
  msgid "Manual sync with post categories sucessfully finished."
314
  msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
315
 
316
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
317
  #, php-format
318
  msgid "New Category \"%s\" was added"
319
  msgstr "Nova Categoria \"%s\" foi adicionada"
320
 
321
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
322
  #, php-format
323
  msgid "Error: New Category \"%s\" could not be added"
324
  msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
325
 
326
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
327
  #, php-format
328
  msgid "Category \"%s\" was modified"
329
  msgstr "Categoria \"%s\" foi modificada"
330
 
331
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
332
  #, php-format
333
  msgid "Error: Category \"%s\" could not be modified"
334
  msgstr "Erro: Categoria \"%s\" não pode ser modificada"
335
 
336
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
337
  msgid ""
338
  "Categories are automatically synced with the post categories.<br />\n"
339
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
340
  "\t\t\t If you want to manually edit the categories you have to disable this option."
341
  msgstr ""
342
 
343
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
344
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
345
  msgid "Name"
346
  msgstr "Nome"
347
 
348
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
349
  msgid "The name is how it appears on your site."
350
  msgstr "O nome é como é exibido em seu site."
351
 
352
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
353
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
354
  msgid "Slug"
355
  msgstr "Slug"
356
 
357
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
358
  msgid ""
359
  "The “slug” is the URL-friendly version of the name. It is usually all "
360
  "lowercase and contains only letters, numbers, and hyphens."
361
  msgstr ""
362
 
363
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
364
  msgid "Parent"
365
  msgstr "Pai"
366
 
367
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
368
  msgid "None"
369
  msgstr "Nenhum"
370
 
371
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
372
  msgid ""
373
  "Categories can have a hierarchy. You might have a Jazz category, and under "
374
  "that have children categories for Bebop and Big Band. Totally optional."
375
  msgstr ""
376
 
377
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
378
  msgid "Apply"
379
  msgstr "Aplicar"
380
 
381
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
382
  msgid "Do a manual sync with post categories"
383
  msgstr "Fazer sincronia manual com categorias de post"
384
 
385
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
386
  msgid "Import Events"
387
  msgstr "Importar Eventos"
388
 
389
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
390
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
391
  msgid "Step"
392
  msgstr "Passo"
393
 
394
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
395
  msgid "Set import file and options"
396
  msgstr "Informar arquivo de importação e opções"
397
 
398
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
399
  msgid "Import Event Data"
400
  msgstr "Importar Dados de Evento"
401
 
402
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
403
  msgid "Example file"
404
  msgstr "Arquivo de exemplo"
405
 
406
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
407
  #, php-format
408
  msgid ""
409
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
410
  msgstr ""
411
 
412
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
413
  msgid "Note"
414
  msgstr "Nota"
415
 
416
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
417
  msgid ""
418
  "Do not change the column header and separator line (first two lines), "
419
  "otherwise the import will fail!"
420
  msgstr ""
421
 
422
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
424
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
425
  msgid "Sorry, there has been an error."
426
  msgstr ""
427
 
428
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
429
  msgid "The file does not exist, please try again."
430
  msgstr ""
431
 
432
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
433
  msgid "The file is not a CSV file."
434
  msgstr ""
435
 
436
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
437
  msgid "Event review and category selection"
438
  msgstr ""
439
 
440
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
441
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
442
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
443
  msgid "Import"
444
  msgstr "Importar"
445
 
446
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
447
  msgid "Import with errors!"
448
  msgstr "Importar com erros!"
449
 
450
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
451
  #, php-format
452
  msgid ""
453
  "An error occurred during import! Please send your import file to %1$sthe "
454
  "administrator%2$s for analysis."
455
  msgstr ""
456
 
457
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
458
  msgid "Import successful!"
459
  msgstr "Importado com sucesso!"
460
 
461
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
462
  msgid "Go back to All Events"
463
  msgstr "Voltar para Todos os Eventos"
464
 
465
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
467
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
468
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
469
  msgid "Title"
470
  msgstr "Título"
471
 
472
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
473
  msgid "Start Date"
474
  msgstr "Início"
475
 
476
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
477
  msgid "End Date"
478
  msgstr "Término"
479
 
480
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
481
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
482
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
483
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
484
  msgid "Time"
485
  msgstr "Hora"
486
 
487
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
488
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
489
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
490
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
491
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
492
  msgid "Location"
493
  msgstr "Localização"
494
 
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
496
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
497
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
498
  msgid "Details"
499
  msgstr "Detalhes"
500
 
501
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
502
  msgid "There was an error when reading this CSV file."
503
  msgstr "Houve um erro ao ler este arquivo CSV."
504
 
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
506
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
507
  msgid "Cancel"
508
  msgstr "Cancelar"
509
 
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
511
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
512
  msgid "No categories available."
513
  msgstr "Nenhuma categoria disponível."
514
 
515
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
516
  msgid "Edit Event"
517
  msgstr "Editar Evento"
518
 
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
520
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
521
  msgid "Duplicate"
522
  msgstr "Duplicar"
523
 
524
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
525
  #, php-format
526
  msgid "Duplicate of event id:%d"
527
  msgstr "Duplicar evento id:%d"
528
 
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
530
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
531
  msgid "required"
532
  msgstr "obrigatório"
533
 
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
535
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
536
  msgid "Date"
537
  msgstr "Data"
538
 
539
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
540
  msgid "Multi-Day Event"
541
  msgstr "Evento de vários dias"
542
 
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
544
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
545
  msgid "Publish"
546
  msgstr "Publicar"
547
 
548
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
549
  msgid "Update"
550
  msgstr "Atualizar"
551
 
552
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
553
  msgid "Goto Category Settings"
554
  msgstr "Ir para Configurações de Categoria"
555
 
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
557
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
558
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
559
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
560
  msgid "Y/m/d"
561
  msgstr "d/m/Y"
562
 
563
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
564
  msgid "Settings saved."
565
  msgstr "Configurações salvas."
566
 
567
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
568
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
569
  msgid "General"
570
  msgstr "Geral"
571
 
572
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
573
  msgid "Frontend Settings"
574
  msgstr "Configurações de Frontend"
575
 
576
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
577
  msgid "Admin Page Settings"
578
  msgstr "Configurações do Administrador"
579
 
580
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
581
  msgid "Feed Settings"
582
  msgstr "Configurações de Feed"
583
 
584
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
585
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
586
  msgid "event"
587
  msgstr "evento"
588
 
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
590
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
591
  msgid "events"
592
  msgstr "eventos"
593
 
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
595
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
596
  msgid "Edit"
597
  msgstr "Editar"
598
 
599
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
600
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
601
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
602
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
603
  msgid "Delete"
604
  msgstr "Remover"
605
 
606
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
607
  msgid "Author"
608
  msgstr "Autor"
609
 
610
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
611
  msgid "Published"
612
  msgstr "Publicado"
613
 
614
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
615
  msgid "Filter"
616
  msgstr "Filtro"
617
 
618
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
619
  #, php-format
620
  msgid "%s ago"
621
  msgstr "%s atrás"
622
 
623
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
624
  msgid "Y/m/d g:i:s A"
625
  msgstr "d/m/Y g:i:s A"
626
 
627
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
628
  msgid "Year"
629
  msgstr "Ano"
630
 
631
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
632
  msgid "A year can be specified in 4 digit format."
633
  msgstr "Um ano pode ser especificado em formato de 4 dígitos."
634
 
635
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
636
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
637
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
638
  #, php-format
639
  msgid ""
640
  "For a start date filter the first day of %1$s is used, in an end date the "
641
  "last day."
642
  msgstr ""
643
 
644
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
645
  msgid "the resulting year"
646
  msgstr "o ano resultado"
647
 
648
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
649
  msgid "Month"
650
  msgstr "Mês"
651
 
652
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
653
  msgid ""
654
  "A month can be specified with 4 digits for the year and 2 digits for the "
655
  "month, seperated by a hyphen (-)."
656
  msgstr ""
657
 
658
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
659
  msgid "the resulting month"
660
  msgstr "o mês resultado"
661
 
662
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
663
  msgid "Day"
664
  msgstr "Dia"
665
 
666
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
667
  msgid ""
668
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
669
  " month and 2 digets for the day, seperated by hyphens (-)."
670
  msgstr ""
671
 
672
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
673
  msgid "Relative Year"
674
  msgstr "Ano Relativo"
675
 
676
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
678
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
679
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
680
  #, php-format
681
  msgid "%1$s from now can be specified in the following notation: %2$s"
682
  msgstr ""
683
 
684
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
685
  msgid "A relative year"
686
  msgstr "Um ano relativo"
687
 
688
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
690
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
691
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
692
  #, php-format
693
  msgid ""
694
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
695
  "%3$s or %4$s attached (see also the example below)."
696
  msgstr ""
697
 
698
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
699
  msgid "number of years"
700
  msgstr "número de anos"
701
 
702
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
703
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
704
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
705
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
706
  #, php-format
707
  msgid "Additionally the following values are available: %1$s"
708
  msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s"
709
 
710
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
711
  msgid "Relative Month"
712
  msgstr "Mês Relativo"
713
 
714
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
715
  msgid "A relative month"
716
  msgstr "Um mês relativo"
717
 
718
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
719
  msgid "number of months"
720
  msgstr "número de meses"
721
 
722
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
723
  msgid "Relative Week"
724
  msgstr "Semana Relativa"
725
 
726
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
727
  msgid "A relative week"
728
  msgstr "Uma semana relativa"
729
 
730
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
731
  msgid "number of weeks"
732
  msgstr "número de semanas"
733
 
734
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
735
  msgid "the resulting week"
736
  msgstr "a semana resultante"
737
 
738
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
739
  #, php-format
740
  msgid ""
741
  "The first day of the week is depending on the option %1$s which can be found"
742
  " and changed in %2$s."
743
  msgstr ""
744
 
745
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
746
  msgid "Week Starts On"
747
  msgstr "Semana Inicia Em"
748
 
749
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
750
  msgid "Relative Day"
751
  msgstr "Dia Relativo"
752
 
753
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
754
  msgid "A relative day"
755
  msgstr "Um dia relativo"
756
 
757
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
758
  msgid "number of days"
759
  msgstr "número de dias"
760
 
761
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
762
  msgid "Date range"
763
  msgstr "Intervalo de data"
764
 
765
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
766
  msgid ""
767
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
768
  "\t For the start and end date any available date format can be used."
769
  msgstr ""
770
 
771
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
772
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
773
  msgid "All"
774
  msgstr "Tudo"
775
 
776
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
777
  msgid "This value defines a range without any limits."
778
  msgstr "Este valor defina um intervalo sem qualquer limite."
779
 
780
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
781
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
782
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
783
  #, php-format
784
  msgid "The corresponding date_range format is: %1$s"
785
  msgstr ""
786
 
787
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
788
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
789
  msgid "Upcoming"
790
  msgstr "Próximos"
791
 
792
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
793
  msgid "This value defines a range from the actual day to the future."
794
  msgstr ""
795
 
796
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
797
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
798
  msgid "Past"
799
  msgstr "Passado"
800
 
801
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
802
  msgid "This value defines a range from the past to the previous day."
803
  msgstr ""
804
 
805
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
806
  msgid "Show all dates"
807
  msgstr "Exibir todas as datas"
808
 
809
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
810
  msgid "Show all categories"
811
  msgstr "Exibir todas as categorias"
812
 
813
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
814
  msgid "Event Categories"
815
  msgstr "Categorias de Evento"
816
 
817
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
818
  msgid "This option specifies all event category data."
819
  msgstr ""
820
 
821
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
822
  msgid "Sync Categories"
823
  msgstr "Sincronizar Categorias"
824
 
825
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
826
  msgid "Keep event categories in sync with post categories automatically"
827
  msgstr ""
828
 
829
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
830
  msgid "Attention"
831
  msgstr "Atenção"
832
 
833
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
834
  msgid ""
835
  "Please note that this option will delete all categories which are not "
836
  "available in the post categories! Existing Categories with the same slug "
837
  "will be updated."
838
  msgstr ""
839
 
840
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
841
  msgid "CSV File to import"
842
  msgstr "Arquivo CSV a importar"
843
 
844
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
845
  msgid "Please select the file which contains the event data in CSV format."
846
  msgstr ""
847
 
848
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
849
  msgid "Used date format"
850
  msgstr "Formato de data usado"
851
 
852
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
853
  msgid ""
854
  "With this option the used date format for event start and end date given in "
855
  "the CSV file can be specified."
856
  msgstr ""
857
 
858
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
859
  msgid "Text for no events"
860
  msgstr "Texto para \"nenhum evento\""
861
 
862
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
863
  msgid ""
864
  "This option defines the displayed text when no events are available for the "
865
  "selected view."
866
  msgstr ""
867
 
868
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
869
  msgid "Multiday filter range"
870
  msgstr ""
871
 
872
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
873
  msgid "Use the complete event range in the date filter"
874
  msgstr ""
875
 
876
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
877
  msgid ""
878
  "This option defines if the complete range of a multiday event shall be "
879
  "considered in the date filter."
880
  msgstr ""
881
 
882
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
883
  msgid ""
884
  "If disabled, only the start day of an event is considered in the filter."
885
  msgstr ""
886
 
887
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
888
  msgid ""
889
  "For an example multiday event which started yesterday and ends tomorrow this"
890
  " means, that it is displayed in umcoming dates when this option is enabled, "
891
  "but it is hidden when the option is disabled."
892
  msgstr ""
893
 
894
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
895
  msgid "Date display"
896
  msgstr "Exibição de data"
897
 
898
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
899
  msgid "Show the date only once per day"
900
  msgstr ""
901
 
902
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
903
  msgid ""
904
  "With this option enabled the date is only displayed once per day if more "
905
  "than one event is available on the same day."
906
  msgstr ""
907
 
908
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
909
  msgid ""
910
  "If enabled, the events are ordered in a different way (end date before start"
911
  " time) to allow using the same date for as much events as possible."
912
  msgstr ""
913
 
914
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
915
  msgid "HTML tags"
916
  msgstr "Tags HTML"
917
 
918
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
919
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
920
  #, php-format
921
  msgid "Allow HTML tags in the event field \"%1$s\""
922
  msgstr ""
923
 
924
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
925
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
926
  #, php-format
927
  msgid ""
928
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
929
  msgstr ""
930
 
931
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
932
  msgid "Text for \"Show details\""
933
  msgstr ""
934
 
935
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
936
  msgid ""
937
  "With this option the displayed text for the link to show the event details "
938
  "can be changed, when collapsing is enabled."
939
  msgstr ""
940
 
941
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
942
  msgid "Text for \"Hide details\""
943
  msgstr ""
944
 
945
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
946
  msgid ""
947
  "With this option the displayed text for the link to hide the event details "
948
  "can be changed, when collapsing is enabled."
949
  msgstr ""
950
 
951
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
952
  msgid "Disable CSS file"
953
  msgstr "Desativar arquivo CSS"
954
 
955
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
956
  #, php-format
957
  msgid "Disable the %1$s file."
958
  msgstr ""
959
 
960
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
961
  #, php-format
962
  msgid "With this option you can disable the inclusion of the %1$s file."
963
  msgstr ""
964
 
965
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
966
  msgid ""
967
  "This normally only make sense if you have css conflicts with your theme and "
968
  "want to set all required css styles somewhere else (e.g. in the theme css)."
969
  msgstr ""
970
 
971
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
972
  msgid "Date format in edit form"
973
  msgstr ""
974
 
975
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
976
  msgid ""
977
  "This option sets the displayed date format for the event date fields in the "
978
  "event new / edit form."
979
  msgstr ""
980
 
981
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
982
  msgid "The standard is an empty string to use the Wordpress standard setting."
983
  msgstr ""
984
 
985
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
986
  #, php-format
987
  msgid ""
988
  "All available options to specify the date format can be found %1$shere%2$s."
989
  msgstr ""
990
 
991
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
992
  msgid "Enable RSS feed"
993
  msgstr "Habilitar Feed RSS"
994
 
995
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
996
  msgid "Enable support for an event RSS feed"
997
  msgstr ""
998
 
999
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
1000
  msgid ""
1001
  "This option activates a RSS feed for the events.<br />\n"
1002
  "\t You have to enable this option if you want to use one of the RSS feed features."
1003
  msgstr ""
1004
 
1005
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
1006
  msgid "Feed name"
1007
  msgstr "Nome do feed"
1008
 
1009
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
1010
  msgid ""
1011
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1012
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1013
  msgstr ""
1014
 
1015
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
1016
  msgid "Feed Description"
1017
  msgstr "Descrição do feed"
1018
 
1019
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
1020
  msgid ""
1021
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1022
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1023
  msgstr ""
1024
 
1025
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
1026
  msgid "Listed events"
1027
  msgstr "Eventos listados"
1028
 
1029
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
1030
  msgid "Only show upcoming events in feed"
1031
  msgstr ""
1032
 
1033
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
1034
  msgid ""
1035
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1036
  "\t If disabled all events (upcoming and past) will be listed."
1037
  msgstr ""
1038
 
1039
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
1040
  msgid "Add RSS feed link in head"
1041
  msgstr ""
1042
 
1043
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
1044
  msgid "Add RSS feed link in the html head"
1045
  msgstr ""
1046
 
1047
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1048
  msgid ""
1049
  "This option adds a RSS feed in the html head for the events.<br />\n"
1050
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1053,86 +1053,86 @@ msgid ""
1053
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1054
  msgstr ""
1055
 
1056
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1057
  msgid "Position of the RSS feed link"
1058
  msgstr ""
1059
 
1060
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1061
  msgid ""
1062
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1063
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1064
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1065
  msgstr ""
1066
 
1067
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1068
  msgid "Align of the RSS feed link"
1069
  msgstr ""
1070
 
1071
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1072
  msgid ""
1073
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1074
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1075
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1076
  msgstr ""
1077
 
1078
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1079
  msgid "Feed link text"
1080
  msgstr "Texto do link do Feed"
1081
 
1082
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1083
  msgid ""
1084
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1085
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1086
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1087
  msgstr ""
1088
 
1089
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1090
  msgid "Feed link image"
1091
  msgstr "Imagem do link do Feed"
1092
 
1093
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1094
  msgid "Show rss image in feed link"
1095
  msgstr "Exibir imagem rss no link do feed"
1096
 
1097
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1098
  msgid ""
1099
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1100
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1101
  msgstr ""
1102
 
1103
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1104
  msgid "Show details"
1105
  msgstr ""
1106
 
1107
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1108
  msgid "Hide details"
1109
  msgstr ""
1110
 
1111
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1112
  msgid ""
1113
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1114
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1115
  msgstr ""
1116
 
1117
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1118
  msgid ""
1119
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1120
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1121
  msgstr ""
1122
 
1123
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1124
  msgid ""
1125
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1126
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1127
  msgstr ""
1128
 
1129
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1130
  msgid ""
1131
  "This attribute specifies the initial order of the events.<br />\n"
1132
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1133
  msgstr ""
1134
 
1135
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1136
  msgid ""
1137
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1138
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1140,63 +1140,94 @@ msgid ""
1140
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1141
  msgstr ""
1142
 
1143
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1144
  msgid ""
1145
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1146
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1147
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1148
  msgstr ""
1149
 
1150
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1151
  msgid ""
1152
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1153
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1154
  "\t Please not that in the actual version there is no pagination of the events available."
1155
  msgstr ""
1156
 
1157
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1158
  msgid ""
1159
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1160
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1161
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1162
  msgstr ""
1163
 
1164
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  msgid ""
1166
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1167
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1168
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1169
  msgstr ""
1170
 
1171
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1172
  msgid ""
1173
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1174
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1175
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1176
  msgstr ""
1177
 
1178
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1179
  msgid ""
1180
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1181
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1182
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1183
  msgstr ""
1184
 
1185
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1186
  msgid ""
1187
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1188
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1189
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1190
  msgstr ""
1191
 
1192
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1193
  msgid ""
1194
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1195
- "\t With the standard value 0 the full details are displayed.<br />\n"
1196
- "\t This attribute has no influence if only a single event is shown."
 
 
 
 
1197
  msgstr ""
1198
 
1199
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1200
  msgid ""
1201
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1202
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1204,7 +1235,7 @@ msgid ""
1204
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1205
  msgstr ""
1206
 
1207
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1208
  msgid ""
1209
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1210
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1212,7 +1243,7 @@ msgid ""
1212
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1213
  msgstr ""
1214
 
1215
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1216
  msgid ""
1217
  "This attribute specifies if a rss feed link should be added.<br />\n"
1218
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1221,44 +1252,36 @@ msgid ""
1221
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1222
  msgstr ""
1223
 
1224
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1225
  msgid ""
1226
  "This attribute specifies the page or post url for event links.<br />\n"
1227
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1228
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1229
  msgstr ""
1230
 
1231
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1232
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1233
- msgid ""
1234
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1235
- "\t With the standard value 0 the full details are displayed.<br />\n"
1236
- "\t This attribute has no influence if only a single event is shown."
1237
- msgstr ""
1238
-
1239
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1240
  msgid ""
1241
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1242
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1243
  msgstr ""
1244
 
1245
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1246
  msgid "Event Information:"
1247
  msgstr "Informação do Evento:"
1248
 
1249
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1250
  msgid "(more&hellip;)"
1251
  msgstr ""
1252
 
1253
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1254
  msgid "This option defines the displayed title for the widget."
1255
  msgstr ""
1256
 
1257
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1258
  msgid "Category Filter"
1259
  msgstr "Filtro de Categoria"
1260
 
1261
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1262
  msgid ""
1263
  "This option defines the categories of which events are shown. The standard "
1264
  "is all or an empty string to show all events. Specify a category slug or a "
@@ -1267,127 +1290,139 @@ msgid ""
1267
  "all possibilities."
1268
  msgstr ""
1269
 
1270
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1271
  msgid "Number of listed events"
1272
  msgstr "Número de eventos listados"
1273
 
1274
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1275
  msgid "The number of upcoming events to display"
1276
  msgstr "Número de próximos eventos a exibir"
1277
 
1278
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1279
  msgid "Truncate event title to"
1280
  msgstr "Truncar título do evento em"
1281
 
1282
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1283
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1284
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1285
  msgid "characters"
1286
  msgstr "caracteres"
1287
 
1288
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
 
 
 
 
 
 
 
1289
  msgid ""
1290
- "This option defines the number of displayed characters for the event title. "
1291
- "Set this value to 0 to view the full title."
1292
  msgstr ""
1293
 
1294
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
1295
  msgid "Show event starttime"
1296
  msgstr "Exibir data de início do evento"
1297
 
1298
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1299
  msgid "This option defines if the event start time will be displayed."
1300
  msgstr ""
1301
 
1302
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1303
  msgid "Show event location"
1304
  msgstr "Exibir localização do evento"
1305
 
1306
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1307
  msgid "This option defines if the event location will be displayed."
1308
  msgstr ""
1309
 
1310
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1311
  msgid "Truncate location to"
1312
  msgstr "Truncar localização em"
1313
 
1314
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1315
  msgid ""
1316
  "If the event location is diplayed this option defines the number of "
1317
- "displayed characters. Set this value to 0 to view the full location."
1318
  msgstr ""
1319
 
1320
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1321
  msgid "Show event details"
1322
  msgstr "Exibir detalhes do evento"
1323
 
1324
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1325
  msgid "This option defines if the event details will be displayed."
1326
  msgstr ""
1327
 
1328
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1329
  msgid "Truncate details to"
1330
  msgstr "Truncar detalhes em"
1331
 
1332
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1333
  msgid ""
1334
  "If the event details are diplayed this option defines the number of diplayed"
1335
- " characters. Set this value to 0 to view the full details."
 
 
 
 
 
1336
  msgstr ""
1337
 
1338
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1339
  msgid "URL to the linked Event List page"
1340
  msgstr "URL para página associada ao Event List"
1341
 
1342
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1343
  msgid ""
1344
  "This option defines the url to the linked Event List page. This option is "
1345
  "required if you want to use one of the options below."
1346
  msgstr ""
1347
 
1348
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1349
  msgid "Shortcode ID on linked page"
1350
  msgstr "ID do Shortcode na página associada"
1351
 
1352
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1353
  msgid ""
1354
  "This option defines the shortcode-id for the Event List on the linked page. "
1355
  "Normally the standard value 1 is correct, you only have to change it if you "
1356
  "use multiple event-list shortcodes on the linked page."
1357
  msgstr ""
1358
 
1359
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1360
  msgid ""
1361
  "With this option you can add a link to the single event page for every "
1362
  "displayed event. You have to specify the url to the page and the shortcode "
1363
  "id option if you want to use it."
1364
  msgstr ""
1365
 
1366
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1367
  msgid ""
1368
  "With this option you can add a link to the event-list page below the "
1369
  "diplayed events. You have to specify the url to page option if you want to "
1370
  "use it."
1371
  msgstr ""
1372
 
1373
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1374
  msgid "Caption for the link"
1375
  msgstr "Legenda para o link"
1376
 
1377
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1378
  msgid ""
1379
  "This option defines the text for the link to the Event List page if the "
1380
  "approriate option is selected."
1381
  msgstr ""
1382
 
1383
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1384
  msgid "With this widget a list of upcoming events can be displayed."
1385
  msgstr ""
1386
 
1387
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1388
  msgid "Upcoming events"
1389
  msgstr "Próximos eventos"
1390
 
1391
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1392
  msgid "show events page"
1393
  msgstr "exibir página de eventos"
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  #
5
  # Translators:
9
  msgstr ""
10
  "Project-Id-Version: wp-event-list\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
13
+ "PO-Revision-Date: 2017-01-07 20:34+0000\n"
14
  "Last-Translator: mibuthu\n"
15
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
16
  "MIME-Version: 1.0\n"
19
  "Language: pt_BR\n"
20
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
 
22
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
23
  msgid "Event List"
24
  msgstr "Lista de Eventos"
25
 
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
28
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
29
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
30
  msgid "Events"
31
  msgstr "Eventos"
32
 
33
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
34
  msgid "All Events"
35
  msgstr "Todos os Eventos"
36
 
37
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
38
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
39
  msgid "Add New Event"
40
  msgstr "Adicionar Novo Evento"
41
 
42
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
43
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
44
  msgid "Add New"
45
  msgstr "Adicionar Novo"
46
 
47
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
48
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
49
  msgid "Event List Categories"
50
  msgstr "Categorias da Lista de Eventos"
51
 
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
54
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
55
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
56
  msgid "Categories"
57
  msgstr "Categorias"
58
 
59
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
60
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
61
  msgid "Event List Settings"
62
  msgstr "Configurações da Lista de Eventos"
63
 
64
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
65
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
66
  msgid "Settings"
67
  msgstr "Configurações"
68
 
69
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
70
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
71
  msgid "About Event List"
72
  msgstr "Sobre o Lista de Eventos"
73
 
74
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
75
  msgid "About"
76
  msgstr "Sobre"
77
 
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
82
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
83
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
84
  msgid "You do not have sufficient permissions to access this page."
85
  msgstr "Você não tem permissões suficientes para acessar esta página"
86
 
87
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
88
  msgid "Help and Instructions"
89
  msgstr "Ajuda e Instruções"
90
 
91
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
92
  #, php-format
93
  msgid "You can manage your events %1$shere%2$s"
94
  msgstr "Você pode gerenciar seus eventos %1$saqui%2$s"
95
 
96
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
97
  msgid "To show the events on your site you have 2 possibilities"
98
  msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site"
99
 
100
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
101
  #, php-format
102
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
103
  msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post"
104
 
105
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
106
  #, php-format
107
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
108
  msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars"
109
 
110
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
111
  msgid ""
112
  "The displayed events and their style can be modified with the available "
113
  "widget settings and the available attributes for the shortcode."
114
  msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configurações disponíveis do widget e os atributos disponíveis para o shortcode."
115
 
116
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
117
  msgid ""
118
  "A list of all available shortcode attributes with their description is "
119
  "available below."
120
  msgstr "Uma lista de todos os atributos do shortcode com sua descrição está disponível abaixo."
121
 
122
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
123
  msgid "The available widget options are described in their tooltip text."
124
  msgstr "As opções de widgets disponíveis são descritas em suas dicas."
125
 
126
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
127
  #, php-format
128
  msgid ""
129
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
130
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
131
  msgstr "Para o widget é importante saber que você tem que inserir uma URL para a página de listagem de evento linkada se você ativar uma das opções de links\n\t\t\t\t\t(%1$s ou %2$s). Isso é necessário porque o widget não sabe em qual página ou post o shortcode foi incluído."
132
 
133
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
134
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
135
  msgid "Add links to the single events"
136
  msgstr "Adicionar links para os eventos individuais"
137
 
138
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
139
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
140
  msgid "Add a link to the Event List page"
141
  msgstr "Adicionar um link para a Página de Lista de Eventos"
142
 
143
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
144
  #, php-format
145
  msgid ""
146
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
148
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
149
  msgstr "Adicionalmente você tem que inserir o Shortcode ID na página linkada. Este ID descreve qual shortcode deve ser usado na página ou post se você possuir mais de um.\n\t\t\t\t\tO valor padrão \"1\" normalmente está o.k., mas se necessário você pode verificar o ID olhando a URL de um link de evento em sua página ou post.\n\t\t\t\t\tO ID estará adicionado no final do nome do parâmetro (e.g. %1$s)."
150
 
151
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
152
  #, php-format
153
  msgid ""
154
  "Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
155
  "just the way you want."
156
  msgstr "Certifique de verificar a %1$sConfiguração%2$s para obter o comportamento do plugin Event List do jeito que você quiser."
157
 
158
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
159
  msgid "Shortcode Attributes"
160
  msgstr ""
161
 
162
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
163
  msgid ""
164
  "You have the possibility to modify the output if you add some of the "
165
  "following attributes to the shortcode."
166
  msgstr ""
167
 
168
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
169
  #, php-format
170
  msgid ""
171
  "You can combine and add as much attributes as you want. E.g. the shortcode "
172
  "including the attributes %1$s and %2$s would looks like this:"
173
  msgstr ""
174
 
175
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
176
  msgid ""
177
  "Below you can find a list of all supported attributes with their "
178
  "descriptions and available options:"
179
  msgstr ""
180
 
181
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
182
  msgid "Attribute name"
183
  msgstr "Nome do atributo"
184
 
185
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
186
  msgid "Value options"
187
  msgstr "Opções de valor"
188
 
189
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
190
  msgid "Default value"
191
  msgstr "Valor padrão"
192
 
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
194
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
195
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
196
  msgid "Description"
197
  msgstr "Descrição"
198
 
199
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
200
  msgid "Filter Syntax"
201
  msgstr "Sintaxe do Filtro"
202
 
203
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
204
  msgid ""
205
  "For date and cat filters you can specify complex filters with the following "
206
  "syntax:"
207
  msgstr ""
208
 
209
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
210
  #, php-format
211
  msgid ""
212
  "You can use %1$s and %2$s connections to define complex filters. "
213
  "Additionally you can set brackets %3$s for nested queries."
214
  msgstr ""
215
 
216
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
217
  msgid "AND"
218
  msgstr "E"
219
 
220
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
221
  msgid "OR"
222
  msgstr "OU"
223
 
224
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
225
  msgid "or"
226
  msgstr "ou"
227
 
228
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
229
  msgid "and"
230
  msgstr "e"
231
 
232
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
233
  msgid "Examples for cat filters:"
234
  msgstr ""
235
 
236
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
237
  #, php-format
238
  msgid "Show all events with category %1$s."
239
  msgstr ""
240
 
241
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
242
  #, php-format
243
  msgid "Show all events with category %1$s or %2$s."
244
  msgstr ""
245
 
246
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
247
  #, php-format
248
  msgid ""
249
  "Show all events with category %1$s and all events where category %2$s as "
250
  "well as %3$s is selected."
251
  msgstr ""
252
 
253
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
254
  msgid "Available Date Formats"
255
  msgstr ""
256
 
257
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
258
  msgid "For date filters you can use the following date formats:"
259
  msgstr ""
260
 
261
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
262
  msgid "Available Date Range Formats"
263
  msgstr ""
264
 
265
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
266
  msgid "For date filters you can use the following daterange formats:"
267
  msgstr ""
268
 
269
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
270
  msgid "Value"
271
  msgstr "Valor"
272
 
273
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
274
  msgid "Example"
275
  msgstr "Exemplo"
276
 
277
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
278
  msgid "Edit Category"
279
  msgstr "Editar Categoria"
280
 
281
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
282
  msgid "Update Category"
283
  msgstr "Atualizar Categoria"
284
 
285
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
286
  msgid "Add New Category"
287
  msgstr "Adicionar Nova Categoria"
288
 
289
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
290
  #, php-format
291
  msgid "Category \"%s\" deleted."
292
  msgstr "Categoria \"%s\" removida."
293
 
294
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
295
  #, php-format
296
  msgid "This Category was also removed from %d events."
297
  msgstr "Esta Categoria também foi removida de %d eventos."
298
 
299
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
300
  #, php-format
301
  msgid "Error while deleting category \"%s\""
302
  msgstr "Erro ao remover categoria \"%s\""
303
 
304
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
305
  msgid "Sync with post categories enabled."
306
  msgstr "Sincronizar com categorias de post habilitado."
307
 
308
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
309
  msgid "Sync with post categories disabled."
310
  msgstr "Sincronizar com categorias de post desabilitado"
311
 
312
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
313
  msgid "Manual sync with post categories sucessfully finished."
314
  msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
315
 
316
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
317
  #, php-format
318
  msgid "New Category \"%s\" was added"
319
  msgstr "Nova Categoria \"%s\" foi adicionada"
320
 
321
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
322
  #, php-format
323
  msgid "Error: New Category \"%s\" could not be added"
324
  msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
325
 
326
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
327
  #, php-format
328
  msgid "Category \"%s\" was modified"
329
  msgstr "Categoria \"%s\" foi modificada"
330
 
331
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
332
  #, php-format
333
  msgid "Error: Category \"%s\" could not be modified"
334
  msgstr "Erro: Categoria \"%s\" não pode ser modificada"
335
 
336
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
337
  msgid ""
338
  "Categories are automatically synced with the post categories.<br />\n"
339
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
340
  "\t\t\t If you want to manually edit the categories you have to disable this option."
341
  msgstr ""
342
 
343
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
344
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
345
  msgid "Name"
346
  msgstr "Nome"
347
 
348
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
349
  msgid "The name is how it appears on your site."
350
  msgstr "O nome é como é exibido em seu site."
351
 
352
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
353
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
354
  msgid "Slug"
355
  msgstr "Slug"
356
 
357
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
358
  msgid ""
359
  "The “slug” is the URL-friendly version of the name. It is usually all "
360
  "lowercase and contains only letters, numbers, and hyphens."
361
  msgstr ""
362
 
363
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
364
  msgid "Parent"
365
  msgstr "Pai"
366
 
367
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
368
  msgid "None"
369
  msgstr "Nenhum"
370
 
371
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
372
  msgid ""
373
  "Categories can have a hierarchy. You might have a Jazz category, and under "
374
  "that have children categories for Bebop and Big Band. Totally optional."
375
  msgstr ""
376
 
377
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
378
  msgid "Apply"
379
  msgstr "Aplicar"
380
 
381
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
382
  msgid "Do a manual sync with post categories"
383
  msgstr "Fazer sincronia manual com categorias de post"
384
 
385
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
386
  msgid "Import Events"
387
  msgstr "Importar Eventos"
388
 
389
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
390
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
391
  msgid "Step"
392
  msgstr "Passo"
393
 
394
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
395
  msgid "Set import file and options"
396
  msgstr "Informar arquivo de importação e opções"
397
 
398
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
399
  msgid "Import Event Data"
400
  msgstr "Importar Dados de Evento"
401
 
402
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
403
  msgid "Example file"
404
  msgstr "Arquivo de exemplo"
405
 
406
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
407
  #, php-format
408
  msgid ""
409
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
410
  msgstr ""
411
 
412
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
413
  msgid "Note"
414
  msgstr "Nota"
415
 
416
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
417
  msgid ""
418
  "Do not change the column header and separator line (first two lines), "
419
  "otherwise the import will fail!"
420
  msgstr ""
421
 
422
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
424
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
425
  msgid "Sorry, there has been an error."
426
  msgstr ""
427
 
428
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
429
  msgid "The file does not exist, please try again."
430
  msgstr ""
431
 
432
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
433
  msgid "The file is not a CSV file."
434
  msgstr ""
435
 
436
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
437
  msgid "Event review and category selection"
438
  msgstr ""
439
 
440
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
441
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
442
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
443
  msgid "Import"
444
  msgstr "Importar"
445
 
446
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
447
  msgid "Import with errors!"
448
  msgstr "Importar com erros!"
449
 
450
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
451
  #, php-format
452
  msgid ""
453
  "An error occurred during import! Please send your import file to %1$sthe "
454
  "administrator%2$s for analysis."
455
  msgstr ""
456
 
457
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
458
  msgid "Import successful!"
459
  msgstr "Importado com sucesso!"
460
 
461
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
462
  msgid "Go back to All Events"
463
  msgstr "Voltar para Todos os Eventos"
464
 
465
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
467
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
468
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
469
  msgid "Title"
470
  msgstr "Título"
471
 
472
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
473
  msgid "Start Date"
474
  msgstr "Início"
475
 
476
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
477
  msgid "End Date"
478
  msgstr "Término"
479
 
480
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
481
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
482
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
483
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
484
  msgid "Time"
485
  msgstr "Hora"
486
 
487
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
488
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
489
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
490
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
491
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
492
  msgid "Location"
493
  msgstr "Localização"
494
 
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
496
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
497
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
498
  msgid "Details"
499
  msgstr "Detalhes"
500
 
501
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
502
  msgid "There was an error when reading this CSV file."
503
  msgstr "Houve um erro ao ler este arquivo CSV."
504
 
505
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
506
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
507
  msgid "Cancel"
508
  msgstr "Cancelar"
509
 
510
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
511
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
512
  msgid "No categories available."
513
  msgstr "Nenhuma categoria disponível."
514
 
515
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
516
  msgid "Edit Event"
517
  msgstr "Editar Evento"
518
 
519
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
520
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
521
  msgid "Duplicate"
522
  msgstr "Duplicar"
523
 
524
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
525
  #, php-format
526
  msgid "Duplicate of event id:%d"
527
  msgstr "Duplicar evento id:%d"
528
 
529
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
530
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
531
  msgid "required"
532
  msgstr "obrigatório"
533
 
534
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
535
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
536
  msgid "Date"
537
  msgstr "Data"
538
 
539
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
540
  msgid "Multi-Day Event"
541
  msgstr "Evento de vários dias"
542
 
543
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
544
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
545
  msgid "Publish"
546
  msgstr "Publicar"
547
 
548
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
549
  msgid "Update"
550
  msgstr "Atualizar"
551
 
552
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
553
  msgid "Goto Category Settings"
554
  msgstr "Ir para Configurações de Categoria"
555
 
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
557
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
558
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
559
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
560
  msgid "Y/m/d"
561
  msgstr "d/m/Y"
562
 
563
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
564
  msgid "Settings saved."
565
  msgstr "Configurações salvas."
566
 
567
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
568
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
569
  msgid "General"
570
  msgstr "Geral"
571
 
572
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
573
  msgid "Frontend Settings"
574
  msgstr "Configurações de Frontend"
575
 
576
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
577
  msgid "Admin Page Settings"
578
  msgstr "Configurações do Administrador"
579
 
580
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
581
  msgid "Feed Settings"
582
  msgstr "Configurações de Feed"
583
 
584
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
585
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
586
  msgid "event"
587
  msgstr "evento"
588
 
589
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
590
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
591
  msgid "events"
592
  msgstr "eventos"
593
 
594
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
595
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
596
  msgid "Edit"
597
  msgstr "Editar"
598
 
599
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
600
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
601
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
602
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
603
  msgid "Delete"
604
  msgstr "Remover"
605
 
606
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
607
  msgid "Author"
608
  msgstr "Autor"
609
 
610
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
611
  msgid "Published"
612
  msgstr "Publicado"
613
 
614
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
615
  msgid "Filter"
616
  msgstr "Filtro"
617
 
618
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
619
  #, php-format
620
  msgid "%s ago"
621
  msgstr "%s atrás"
622
 
623
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
624
  msgid "Y/m/d g:i:s A"
625
  msgstr "d/m/Y g:i:s A"
626
 
627
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
628
  msgid "Year"
629
  msgstr "Ano"
630
 
631
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
632
  msgid "A year can be specified in 4 digit format."
633
  msgstr "Um ano pode ser especificado em formato de 4 dígitos."
634
 
635
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
636
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
637
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
638
  #, php-format
639
  msgid ""
640
  "For a start date filter the first day of %1$s is used, in an end date the "
641
  "last day."
642
  msgstr ""
643
 
644
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
645
  msgid "the resulting year"
646
  msgstr "o ano resultado"
647
 
648
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
649
  msgid "Month"
650
  msgstr "Mês"
651
 
652
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
653
  msgid ""
654
  "A month can be specified with 4 digits for the year and 2 digits for the "
655
  "month, seperated by a hyphen (-)."
656
  msgstr ""
657
 
658
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
659
  msgid "the resulting month"
660
  msgstr "o mês resultado"
661
 
662
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
663
  msgid "Day"
664
  msgstr "Dia"
665
 
666
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
667
  msgid ""
668
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
669
  " month and 2 digets for the day, seperated by hyphens (-)."
670
  msgstr ""
671
 
672
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
673
  msgid "Relative Year"
674
  msgstr "Ano Relativo"
675
 
676
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
678
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
679
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
680
  #, php-format
681
  msgid "%1$s from now can be specified in the following notation: %2$s"
682
  msgstr ""
683
 
684
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
685
  msgid "A relative year"
686
  msgstr "Um ano relativo"
687
 
688
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
690
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
691
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
692
  #, php-format
693
  msgid ""
694
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
695
  "%3$s or %4$s attached (see also the example below)."
696
  msgstr ""
697
 
698
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
699
  msgid "number of years"
700
  msgstr "número de anos"
701
 
702
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
703
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
704
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
705
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
706
  #, php-format
707
  msgid "Additionally the following values are available: %1$s"
708
  msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s"
709
 
710
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
711
  msgid "Relative Month"
712
  msgstr "Mês Relativo"
713
 
714
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
715
  msgid "A relative month"
716
  msgstr "Um mês relativo"
717
 
718
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
719
  msgid "number of months"
720
  msgstr "número de meses"
721
 
722
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
723
  msgid "Relative Week"
724
  msgstr "Semana Relativa"
725
 
726
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
727
  msgid "A relative week"
728
  msgstr "Uma semana relativa"
729
 
730
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
731
  msgid "number of weeks"
732
  msgstr "número de semanas"
733
 
734
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
735
  msgid "the resulting week"
736
  msgstr "a semana resultante"
737
 
738
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
739
  #, php-format
740
  msgid ""
741
  "The first day of the week is depending on the option %1$s which can be found"
742
  " and changed in %2$s."
743
  msgstr ""
744
 
745
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
746
  msgid "Week Starts On"
747
  msgstr "Semana Inicia Em"
748
 
749
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
750
  msgid "Relative Day"
751
  msgstr "Dia Relativo"
752
 
753
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
754
  msgid "A relative day"
755
  msgstr "Um dia relativo"
756
 
757
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
758
  msgid "number of days"
759
  msgstr "número de dias"
760
 
761
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
762
  msgid "Date range"
763
  msgstr "Intervalo de data"
764
 
765
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
766
  msgid ""
767
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
768
  "\t For the start and end date any available date format can be used."
769
  msgstr ""
770
 
771
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
772
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
773
  msgid "All"
774
  msgstr "Tudo"
775
 
776
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
777
  msgid "This value defines a range without any limits."
778
  msgstr "Este valor defina um intervalo sem qualquer limite."
779
 
780
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
781
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
782
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
783
  #, php-format
784
  msgid "The corresponding date_range format is: %1$s"
785
  msgstr ""
786
 
787
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
788
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
789
  msgid "Upcoming"
790
  msgstr "Próximos"
791
 
792
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
793
  msgid "This value defines a range from the actual day to the future."
794
  msgstr ""
795
 
796
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
797
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
798
  msgid "Past"
799
  msgstr "Passado"
800
 
801
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
802
  msgid "This value defines a range from the past to the previous day."
803
  msgstr ""
804
 
805
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
806
  msgid "Show all dates"
807
  msgstr "Exibir todas as datas"
808
 
809
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
810
  msgid "Show all categories"
811
  msgstr "Exibir todas as categorias"
812
 
813
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
814
  msgid "Event Categories"
815
  msgstr "Categorias de Evento"
816
 
817
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
818
  msgid "This option specifies all event category data."
819
  msgstr ""
820
 
821
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
822
  msgid "Sync Categories"
823
  msgstr "Sincronizar Categorias"
824
 
825
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
826
  msgid "Keep event categories in sync with post categories automatically"
827
  msgstr ""
828
 
829
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
830
  msgid "Attention"
831
  msgstr "Atenção"
832
 
833
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
834
  msgid ""
835
  "Please note that this option will delete all categories which are not "
836
  "available in the post categories! Existing Categories with the same slug "
837
  "will be updated."
838
  msgstr ""
839
 
840
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
841
  msgid "CSV File to import"
842
  msgstr "Arquivo CSV a importar"
843
 
844
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
845
  msgid "Please select the file which contains the event data in CSV format."
846
  msgstr ""
847
 
848
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
849
  msgid "Used date format"
850
  msgstr "Formato de data usado"
851
 
852
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
853
  msgid ""
854
  "With this option the used date format for event start and end date given in "
855
  "the CSV file can be specified."
856
  msgstr ""
857
 
858
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
859
  msgid "Text for no events"
860
  msgstr "Texto para \"nenhum evento\""
861
 
862
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
863
  msgid ""
864
  "This option defines the displayed text when no events are available for the "
865
  "selected view."
866
  msgstr ""
867
 
868
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
869
  msgid "Multiday filter range"
870
  msgstr ""
871
 
872
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
873
  msgid "Use the complete event range in the date filter"
874
  msgstr ""
875
 
876
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
877
  msgid ""
878
  "This option defines if the complete range of a multiday event shall be "
879
  "considered in the date filter."
880
  msgstr ""
881
 
882
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
883
  msgid ""
884
  "If disabled, only the start day of an event is considered in the filter."
885
  msgstr ""
886
 
887
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
888
  msgid ""
889
  "For an example multiday event which started yesterday and ends tomorrow this"
890
  " means, that it is displayed in umcoming dates when this option is enabled, "
891
  "but it is hidden when the option is disabled."
892
  msgstr ""
893
 
894
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
895
  msgid "Date display"
896
  msgstr "Exibição de data"
897
 
898
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
899
  msgid "Show the date only once per day"
900
  msgstr ""
901
 
902
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
903
  msgid ""
904
  "With this option enabled the date is only displayed once per day if more "
905
  "than one event is available on the same day."
906
  msgstr ""
907
 
908
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
909
  msgid ""
910
  "If enabled, the events are ordered in a different way (end date before start"
911
  " time) to allow using the same date for as much events as possible."
912
  msgstr ""
913
 
914
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
915
  msgid "HTML tags"
916
  msgstr "Tags HTML"
917
 
918
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
919
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
920
  #, php-format
921
  msgid "Allow HTML tags in the event field \"%1$s\""
922
  msgstr ""
923
 
924
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
925
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
926
  #, php-format
927
  msgid ""
928
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
929
  msgstr ""
930
 
931
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
932
  msgid "Text for \"Show details\""
933
  msgstr ""
934
 
935
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
936
  msgid ""
937
  "With this option the displayed text for the link to show the event details "
938
  "can be changed, when collapsing is enabled."
939
  msgstr ""
940
 
941
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
942
  msgid "Text for \"Hide details\""
943
  msgstr ""
944
 
945
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
946
  msgid ""
947
  "With this option the displayed text for the link to hide the event details "
948
  "can be changed, when collapsing is enabled."
949
  msgstr ""
950
 
951
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
952
  msgid "Disable CSS file"
953
  msgstr "Desativar arquivo CSS"
954
 
955
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
956
  #, php-format
957
  msgid "Disable the %1$s file."
958
  msgstr ""
959
 
960
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
961
  #, php-format
962
  msgid "With this option you can disable the inclusion of the %1$s file."
963
  msgstr ""
964
 
965
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
966
  msgid ""
967
  "This normally only make sense if you have css conflicts with your theme and "
968
  "want to set all required css styles somewhere else (e.g. in the theme css)."
969
  msgstr ""
970
 
971
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
972
  msgid "Date format in edit form"
973
  msgstr ""
974
 
975
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
976
  msgid ""
977
  "This option sets the displayed date format for the event date fields in the "
978
  "event new / edit form."
979
  msgstr ""
980
 
981
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
982
  msgid "The standard is an empty string to use the Wordpress standard setting."
983
  msgstr ""
984
 
985
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
986
  #, php-format
987
  msgid ""
988
  "All available options to specify the date format can be found %1$shere%2$s."
989
  msgstr ""
990
 
991
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
992
  msgid "Enable RSS feed"
993
  msgstr "Habilitar Feed RSS"
994
 
995
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
996
  msgid "Enable support for an event RSS feed"
997
  msgstr ""
998
 
999
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
1000
  msgid ""
1001
  "This option activates a RSS feed for the events.<br />\n"
1002
  "\t You have to enable this option if you want to use one of the RSS feed features."
1003
  msgstr ""
1004
 
1005
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
1006
  msgid "Feed name"
1007
  msgstr "Nome do feed"
1008
 
1009
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
1010
  msgid ""
1011
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
1012
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
1013
  msgstr ""
1014
 
1015
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
1016
  msgid "Feed Description"
1017
  msgstr "Descrição do feed"
1018
 
1019
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
1020
  msgid ""
1021
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
1022
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1023
  msgstr ""
1024
 
1025
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
1026
  msgid "Listed events"
1027
  msgstr "Eventos listados"
1028
 
1029
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
1030
  msgid "Only show upcoming events in feed"
1031
  msgstr ""
1032
 
1033
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
1034
  msgid ""
1035
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
1036
  "\t If disabled all events (upcoming and past) will be listed."
1037
  msgstr ""
1038
 
1039
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
1040
  msgid "Add RSS feed link in head"
1041
  msgstr ""
1042
 
1043
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
1044
  msgid "Add RSS feed link in the html head"
1045
  msgstr ""
1046
 
1047
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
1048
  msgid ""
1049
  "This option adds a RSS feed in the html head for the events.<br />\n"
1050
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
1053
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1054
  msgstr ""
1055
 
1056
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
1057
  msgid "Position of the RSS feed link"
1058
  msgstr ""
1059
 
1060
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
1061
  msgid ""
1062
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1063
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
1064
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1065
  msgstr ""
1066
 
1067
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1068
  msgid "Align of the RSS feed link"
1069
  msgstr ""
1070
 
1071
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1072
  msgid ""
1073
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1074
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1075
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1076
  msgstr ""
1077
 
1078
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1079
  msgid "Feed link text"
1080
  msgstr "Texto do link do Feed"
1081
 
1082
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1083
  msgid ""
1084
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1085
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1086
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1087
  msgstr ""
1088
 
1089
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1090
  msgid "Feed link image"
1091
  msgstr "Imagem do link do Feed"
1092
 
1093
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1094
  msgid "Show rss image in feed link"
1095
  msgstr "Exibir imagem rss no link do feed"
1096
 
1097
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1098
  msgid ""
1099
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1100
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1101
  msgstr ""
1102
 
1103
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1104
  msgid "Show details"
1105
  msgstr ""
1106
 
1107
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1108
  msgid "Hide details"
1109
  msgstr ""
1110
 
1111
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1112
  msgid ""
1113
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1114
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1115
  msgstr ""
1116
 
1117
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1118
  msgid ""
1119
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1120
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1121
  msgstr ""
1122
 
1123
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1124
  msgid ""
1125
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1126
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1127
  msgstr ""
1128
 
1129
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1130
  msgid ""
1131
  "This attribute specifies the initial order of the events.<br />\n"
1132
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1133
  msgstr ""
1134
 
1135
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1136
  msgid ""
1137
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1138
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1140
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1141
  msgstr ""
1142
 
1143
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1144
  msgid ""
1145
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1146
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1147
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1148
  msgstr ""
1149
 
1150
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1151
  msgid ""
1152
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1153
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1154
  "\t Please not that in the actual version there is no pagination of the events available."
1155
  msgstr ""
1156
 
1157
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1158
  msgid ""
1159
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1160
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1161
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1162
  msgstr ""
1163
 
1164
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1165
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1166
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1167
+ msgid "number"
1168
+ msgstr ""
1169
+
1170
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1171
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1172
+ msgid ""
1173
+ "This attribute specifies if the title should be truncated to the given "
1174
+ "number of characters in the event list."
1175
+ msgstr ""
1176
+
1177
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1178
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1179
+ #, php-format
1180
+ msgid ""
1181
+ "With the standard value %1$s the full text is displayed, with %2$s the text "
1182
+ "is automatically truncated via css."
1183
+ msgstr ""
1184
+
1185
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1186
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1187
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1188
+ msgid "This attribute has no influence if only a single event is shown."
1189
+ msgstr ""
1190
+
1191
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1192
  msgid ""
1193
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1194
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1195
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1196
  msgstr ""
1197
 
1198
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1199
  msgid ""
1200
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1201
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1202
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1203
  msgstr ""
1204
 
1205
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1206
  msgid ""
1207
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1208
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1209
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1210
  msgstr ""
1211
 
1212
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1213
  msgid ""
1214
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1215
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1216
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1217
  msgstr ""
1218
 
1219
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1220
  msgid ""
1221
+ "This attribute specifies if the details should be truncate to the given "
1222
+ "number of characters in the event list."
1223
+ msgstr ""
1224
+
1225
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1226
+ #, php-format
1227
+ msgid "With the standard value %1$s the full text is displayed."
1228
  msgstr ""
1229
 
1230
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1231
  msgid ""
1232
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1233
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1235
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1236
  msgstr ""
1237
 
1238
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1239
  msgid ""
1240
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1241
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1243
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1244
  msgstr ""
1245
 
1246
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1247
  msgid ""
1248
  "This attribute specifies if a rss feed link should be added.<br />\n"
1249
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1252
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1253
  msgstr ""
1254
 
1255
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1256
  msgid ""
1257
  "This attribute specifies the page or post url for event links.<br />\n"
1258
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1259
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1260
  msgstr ""
1261
 
1262
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1263
  msgid ""
1264
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1265
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1266
  msgstr ""
1267
 
1268
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1269
  msgid "Event Information:"
1270
  msgstr "Informação do Evento:"
1271
 
1272
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1273
  msgid "(more&hellip;)"
1274
  msgstr ""
1275
 
1276
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1277
  msgid "This option defines the displayed title for the widget."
1278
  msgstr ""
1279
 
1280
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1281
  msgid "Category Filter"
1282
  msgstr "Filtro de Categoria"
1283
 
1284
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1285
  msgid ""
1286
  "This option defines the categories of which events are shown. The standard "
1287
  "is all or an empty string to show all events. Specify a category slug or a "
1290
  "all possibilities."
1291
  msgstr ""
1292
 
1293
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1294
  msgid "Number of listed events"
1295
  msgstr "Número de eventos listados"
1296
 
1297
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1298
  msgid "The number of upcoming events to display"
1299
  msgstr "Número de próximos eventos a exibir"
1300
 
1301
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1302
  msgid "Truncate event title to"
1303
  msgstr "Truncar título do evento em"
1304
 
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1306
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1307
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1308
  msgid "characters"
1309
  msgstr "caracteres"
1310
 
1311
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1312
+ msgid ""
1313
+ "This option defines the number of displayed characters for the event title."
1314
+ msgstr ""
1315
+
1316
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1317
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1318
+ #, php-format
1319
  msgid ""
1320
+ "Set this value to %1$s to view the full text, or set it to %2$s to "
1321
+ "automatically truncate the text via css."
1322
  msgstr ""
1323
 
1324
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1325
  msgid "Show event starttime"
1326
  msgstr "Exibir data de início do evento"
1327
 
1328
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1329
  msgid "This option defines if the event start time will be displayed."
1330
  msgstr ""
1331
 
1332
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1333
  msgid "Show event location"
1334
  msgstr "Exibir localização do evento"
1335
 
1336
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1337
  msgid "This option defines if the event location will be displayed."
1338
  msgstr ""
1339
 
1340
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1341
  msgid "Truncate location to"
1342
  msgstr "Truncar localização em"
1343
 
1344
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1345
  msgid ""
1346
  "If the event location is diplayed this option defines the number of "
1347
+ "displayed characters."
1348
  msgstr ""
1349
 
1350
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1351
  msgid "Show event details"
1352
  msgstr "Exibir detalhes do evento"
1353
 
1354
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1355
  msgid "This option defines if the event details will be displayed."
1356
  msgstr ""
1357
 
1358
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1359
  msgid "Truncate details to"
1360
  msgstr "Truncar detalhes em"
1361
 
1362
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1363
  msgid ""
1364
  "If the event details are diplayed this option defines the number of diplayed"
1365
+ " characters."
1366
+ msgstr ""
1367
+
1368
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1369
+ #, php-format
1370
+ msgid "Set this value to %1$s to view the full text."
1371
  msgstr ""
1372
 
1373
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1374
  msgid "URL to the linked Event List page"
1375
  msgstr "URL para página associada ao Event List"
1376
 
1377
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1378
  msgid ""
1379
  "This option defines the url to the linked Event List page. This option is "
1380
  "required if you want to use one of the options below."
1381
  msgstr ""
1382
 
1383
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1384
  msgid "Shortcode ID on linked page"
1385
  msgstr "ID do Shortcode na página associada"
1386
 
1387
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1388
  msgid ""
1389
  "This option defines the shortcode-id for the Event List on the linked page. "
1390
  "Normally the standard value 1 is correct, you only have to change it if you "
1391
  "use multiple event-list shortcodes on the linked page."
1392
  msgstr ""
1393
 
1394
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1395
  msgid ""
1396
  "With this option you can add a link to the single event page for every "
1397
  "displayed event. You have to specify the url to the page and the shortcode "
1398
  "id option if you want to use it."
1399
  msgstr ""
1400
 
1401
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1402
  msgid ""
1403
  "With this option you can add a link to the event-list page below the "
1404
  "diplayed events. You have to specify the url to page option if you want to "
1405
  "use it."
1406
  msgstr ""
1407
 
1408
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1409
  msgid "Caption for the link"
1410
  msgstr "Legenda para o link"
1411
 
1412
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1413
  msgid ""
1414
  "This option defines the text for the link to the Event List page if the "
1415
  "approriate option is selected."
1416
  msgstr ""
1417
 
1418
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1419
  msgid "With this widget a list of upcoming events can be displayed."
1420
  msgstr ""
1421
 
1422
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1423
  msgid "Upcoming events"
1424
  msgstr "Próximos eventos"
1425
 
1426
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1427
  msgid "show events page"
1428
  msgstr "exibir página de eventos"
languages/event-list.pot CHANGED
@@ -1,5 +1,5 @@
1
  # This is the translation template file for Event List.
2
- # Copyright (C) 2015 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
  #
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-12-13 21:31+0100\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,124 +17,124 @@ msgstr ""
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
 
20
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
21
  msgid "Event List"
22
  msgstr ""
23
 
24
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
25
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
26
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
27
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
28
  msgid "Events"
29
  msgstr ""
30
 
31
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
32
  msgid "All Events"
33
  msgstr ""
34
 
35
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
36
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
37
  msgid "Add New Event"
38
  msgstr ""
39
 
40
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
41
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
42
  msgid "Add New"
43
  msgstr ""
44
 
45
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
46
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
47
  msgid "Event List Categories"
48
  msgstr ""
49
 
50
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
51
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
52
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
53
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
54
  msgid "Categories"
55
  msgstr ""
56
 
57
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
58
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
59
  msgid "Event List Settings"
60
  msgstr ""
61
 
62
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
63
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
64
  msgid "Settings"
65
  msgstr ""
66
 
67
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
68
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
69
  msgid "About Event List"
70
  msgstr ""
71
 
72
- #: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
73
  msgid "About"
74
  msgstr ""
75
 
76
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
77
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
78
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
79
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
80
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
81
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
82
  msgid "You do not have sufficient permissions to access this page."
83
  msgstr ""
84
 
85
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
86
  msgid "Help and Instructions"
87
  msgstr ""
88
 
89
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
90
  #, php-format
91
  msgid "You can manage your events %1$shere%2$s"
92
  msgstr ""
93
 
94
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
95
  msgid "To show the events on your site you have 2 possibilities"
96
  msgstr ""
97
 
98
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
99
  #, php-format
100
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
101
  msgstr ""
102
 
103
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
104
  #, php-format
105
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
106
  msgstr ""
107
 
108
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
109
  msgid "The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode."
110
  msgstr ""
111
 
112
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
113
  msgid "A list of all available shortcode attributes with their description is available below."
114
  msgstr ""
115
 
116
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
117
  msgid "The available widget options are described in their tooltip text."
118
  msgstr ""
119
 
120
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
121
  #, php-format
122
  msgid ""
123
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
124
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
125
  msgstr ""
126
 
127
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
128
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
129
  msgid "Add links to the single events"
130
  msgstr ""
131
 
132
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
134
  msgid "Add a link to the Event List page"
135
  msgstr ""
136
 
137
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
138
  #, php-format
139
  msgid ""
140
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
@@ -142,843 +142,843 @@ msgid ""
142
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
143
  msgstr ""
144
 
145
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
146
  #, php-format
147
  msgid "Be sure to also check the %1$sSettings page%2$s to get Event List behaving just the way you want."
148
  msgstr ""
149
 
150
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
151
  msgid "Shortcode Attributes"
152
  msgstr ""
153
 
154
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
155
  msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode."
156
  msgstr ""
157
 
158
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
159
  #, php-format
160
  msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
161
  msgstr ""
162
 
163
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
164
  msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
165
  msgstr ""
166
 
167
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
168
  msgid "Attribute name"
169
  msgstr ""
170
 
171
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
172
  msgid "Value options"
173
  msgstr ""
174
 
175
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
176
  msgid "Default value"
177
  msgstr ""
178
 
179
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
180
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
181
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
182
  msgid "Description"
183
  msgstr ""
184
 
185
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
186
  msgid "Filter Syntax"
187
  msgstr ""
188
 
189
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
190
  msgid "For date and cat filters you can specify complex filters with the following syntax:"
191
  msgstr ""
192
 
193
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
194
  #, php-format
195
  msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
196
  msgstr ""
197
 
198
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
199
  msgid "AND"
200
  msgstr ""
201
 
202
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
203
  msgid "OR"
204
  msgstr ""
205
 
206
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
207
  msgid "or"
208
  msgstr ""
209
 
210
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
211
  msgid "and"
212
  msgstr ""
213
 
214
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
215
  msgid "Examples for cat filters:"
216
  msgstr ""
217
 
218
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
219
  #, php-format
220
  msgid "Show all events with category %1$s."
221
  msgstr ""
222
 
223
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
224
  #, php-format
225
  msgid "Show all events with category %1$s or %2$s."
226
  msgstr ""
227
 
228
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
229
  #, php-format
230
  msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
231
  msgstr ""
232
 
233
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
234
  msgid "Available Date Formats"
235
  msgstr ""
236
 
237
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
238
  msgid "For date filters you can use the following date formats:"
239
  msgstr ""
240
 
241
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
242
  msgid "Available Date Range Formats"
243
  msgstr ""
244
 
245
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
246
  msgid "For date filters you can use the following daterange formats:"
247
  msgstr ""
248
 
249
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
250
  msgid "Value"
251
  msgstr ""
252
 
253
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
254
  msgid "Example"
255
  msgstr ""
256
 
257
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
258
  msgid "Edit Category"
259
  msgstr ""
260
 
261
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
262
  msgid "Update Category"
263
  msgstr ""
264
 
265
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
266
  msgid "Add New Category"
267
  msgstr ""
268
 
269
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
270
  #, php-format
271
  msgid "Category \"%s\" deleted."
272
  msgstr ""
273
 
274
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
275
  #, php-format
276
  msgid "This Category was also removed from %d events."
277
  msgstr ""
278
 
279
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
280
  #, php-format
281
  msgid "Error while deleting category \"%s\""
282
  msgstr ""
283
 
284
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
285
  msgid "Sync with post categories enabled."
286
  msgstr ""
287
 
288
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
289
  msgid "Sync with post categories disabled."
290
  msgstr ""
291
 
292
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
293
  msgid "Manual sync with post categories sucessfully finished."
294
  msgstr ""
295
 
296
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
297
  #, php-format
298
  msgid "New Category \"%s\" was added"
299
  msgstr ""
300
 
301
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
302
  #, php-format
303
  msgid "Error: New Category \"%s\" could not be added"
304
  msgstr ""
305
 
306
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
307
  #, php-format
308
  msgid "Category \"%s\" was modified"
309
  msgstr ""
310
 
311
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
312
  #, php-format
313
  msgid "Error: Category \"%s\" could not be modified"
314
  msgstr ""
315
 
316
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
317
  msgid ""
318
  "Categories are automatically synced with the post categories.<br />\n"
319
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
320
  "\t\t\t If you want to manually edit the categories you have to disable this option."
321
  msgstr ""
322
 
323
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
324
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
325
  msgid "Name"
326
  msgstr ""
327
 
328
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
329
  msgid "The name is how it appears on your site."
330
  msgstr ""
331
 
332
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
333
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
334
  msgid "Slug"
335
  msgstr ""
336
 
337
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
338
  msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
339
  msgstr ""
340
 
341
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
342
  msgid "Parent"
343
  msgstr ""
344
 
345
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
346
  msgid "None"
347
  msgstr ""
348
 
349
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
350
  msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
351
  msgstr ""
352
 
353
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
354
  msgid "Apply"
355
  msgstr ""
356
 
357
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
358
  msgid "Do a manual sync with post categories"
359
  msgstr ""
360
 
361
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
362
  msgid "Import Events"
363
  msgstr ""
364
 
365
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
366
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
367
  msgid "Step"
368
  msgstr ""
369
 
370
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
371
  msgid "Set import file and options"
372
  msgstr ""
373
 
374
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
375
  msgid "Import Event Data"
376
  msgstr ""
377
 
378
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
379
  msgid "Example file"
380
  msgstr ""
381
 
382
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
383
  #, php-format
384
  msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
385
  msgstr ""
386
 
387
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
388
  msgid "Note"
389
  msgstr ""
390
 
391
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
392
  msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
393
  msgstr ""
394
 
395
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
396
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
397
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
398
  msgid "Sorry, there has been an error."
399
  msgstr ""
400
 
401
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
402
  msgid "The file does not exist, please try again."
403
  msgstr ""
404
 
405
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
406
  msgid "The file is not a CSV file."
407
  msgstr ""
408
 
409
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
410
  msgid "Event review and category selection"
411
  msgstr ""
412
 
413
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
414
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
415
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
416
  msgid "Import"
417
  msgstr ""
418
 
419
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
420
  msgid "Import with errors!"
421
  msgstr ""
422
 
423
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
424
  #, php-format
425
  msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
426
  msgstr ""
427
 
428
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
429
  msgid "Import successful!"
430
  msgstr ""
431
 
432
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
433
  msgid "Go back to All Events"
434
  msgstr ""
435
 
436
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
437
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
438
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
439
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
440
  msgid "Title"
441
  msgstr ""
442
 
443
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
444
  msgid "Start Date"
445
  msgstr ""
446
 
447
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
448
  msgid "End Date"
449
  msgstr ""
450
 
451
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
452
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
453
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
454
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
455
  msgid "Time"
456
  msgstr ""
457
 
458
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
459
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
460
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
461
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
462
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
463
  msgid "Location"
464
  msgstr ""
465
 
466
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
467
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
468
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
469
  msgid "Details"
470
  msgstr ""
471
 
472
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
473
  msgid "There was an error when reading this CSV file."
474
  msgstr ""
475
 
476
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
477
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
478
  msgid "Cancel"
479
  msgstr ""
480
 
481
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
482
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
483
  msgid "No categories available."
484
  msgstr ""
485
 
486
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
487
  msgid "Edit Event"
488
  msgstr ""
489
 
490
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
491
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
492
  msgid "Duplicate"
493
  msgstr ""
494
 
495
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
496
  #, php-format
497
  msgid "Duplicate of event id:%d"
498
  msgstr ""
499
 
500
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
501
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
502
  msgid "required"
503
  msgstr ""
504
 
505
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
506
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
507
  msgid "Date"
508
  msgstr ""
509
 
510
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
511
  msgid "Multi-Day Event"
512
  msgstr ""
513
 
514
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
515
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
516
  msgid "Publish"
517
  msgstr ""
518
 
519
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
520
  msgid "Update"
521
  msgstr ""
522
 
523
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
524
  msgid "Goto Category Settings"
525
  msgstr ""
526
 
527
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
528
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
529
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
530
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
531
  msgid "Y/m/d"
532
  msgstr ""
533
 
534
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
535
  msgid "Settings saved."
536
  msgstr ""
537
 
538
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
539
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
540
  msgid "General"
541
  msgstr ""
542
 
543
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
544
  msgid "Frontend Settings"
545
  msgstr ""
546
 
547
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
548
  msgid "Admin Page Settings"
549
  msgstr ""
550
 
551
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
552
  msgid "Feed Settings"
553
  msgstr ""
554
 
555
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
556
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
557
  msgid "event"
558
  msgstr ""
559
 
560
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
561
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
562
  msgid "events"
563
  msgstr ""
564
 
565
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
566
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
567
  msgid "Edit"
568
  msgstr ""
569
 
570
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
571
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
572
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
573
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
574
  msgid "Delete"
575
  msgstr ""
576
 
577
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
578
  msgid "Author"
579
  msgstr ""
580
 
581
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
582
  msgid "Published"
583
  msgstr ""
584
 
585
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
586
  msgid "Filter"
587
  msgstr ""
588
 
589
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
590
  #, php-format
591
  msgid "%s ago"
592
  msgstr ""
593
 
594
- #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
595
  msgid "Y/m/d g:i:s A"
596
  msgstr ""
597
 
598
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
599
  msgid "Year"
600
  msgstr ""
601
 
602
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
603
  msgid "A year can be specified in 4 digit format."
604
  msgstr ""
605
 
606
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
607
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
608
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
609
  #, php-format
610
  msgid "For a start date filter the first day of %1$s is used, in an end date the last day."
611
  msgstr ""
612
 
613
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
614
  msgid "the resulting year"
615
  msgstr ""
616
 
617
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
618
  msgid "Month"
619
  msgstr ""
620
 
621
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
622
  msgid "A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-)."
623
  msgstr ""
624
 
625
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
626
  msgid "the resulting month"
627
  msgstr ""
628
 
629
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
630
  msgid "Day"
631
  msgstr ""
632
 
633
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
634
  msgid "A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-)."
635
  msgstr ""
636
 
637
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
638
  msgid "Relative Year"
639
  msgstr ""
640
 
641
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
642
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
643
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
644
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
645
  #, php-format
646
  msgid "%1$s from now can be specified in the following notation: %2$s"
647
  msgstr ""
648
 
649
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
650
  msgid "A relative year"
651
  msgstr ""
652
 
653
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
654
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
655
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
656
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
657
  #, php-format
658
  msgid "This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below)."
659
  msgstr ""
660
 
661
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
662
  msgid "number of years"
663
  msgstr ""
664
 
665
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
666
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
667
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
668
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
669
  #, php-format
670
  msgid "Additionally the following values are available: %1$s"
671
  msgstr ""
672
 
673
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
674
  msgid "Relative Month"
675
  msgstr ""
676
 
677
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
678
  msgid "A relative month"
679
  msgstr ""
680
 
681
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
682
  msgid "number of months"
683
  msgstr ""
684
 
685
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
686
  msgid "Relative Week"
687
  msgstr ""
688
 
689
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
690
  msgid "A relative week"
691
  msgstr ""
692
 
693
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
694
  msgid "number of weeks"
695
  msgstr ""
696
 
697
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
698
  msgid "the resulting week"
699
  msgstr ""
700
 
701
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
702
  #, php-format
703
  msgid "The first day of the week is depending on the option %1$s which can be found and changed in %2$s."
704
  msgstr ""
705
 
706
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
707
  msgid "Week Starts On"
708
  msgstr ""
709
 
710
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
711
  msgid "Relative Day"
712
  msgstr ""
713
 
714
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
715
  msgid "A relative day"
716
  msgstr ""
717
 
718
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
719
  msgid "number of days"
720
  msgstr ""
721
 
722
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
723
  msgid "Date range"
724
  msgstr ""
725
 
726
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
727
  msgid ""
728
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
729
  "\t For the start and end date any available date format can be used."
730
  msgstr ""
731
 
732
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
733
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
734
  msgid "All"
735
  msgstr ""
736
 
737
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
738
  msgid "This value defines a range without any limits."
739
  msgstr ""
740
 
741
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
742
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
743
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
744
  #, php-format
745
  msgid "The corresponding date_range format is: %1$s"
746
  msgstr ""
747
 
748
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
749
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
750
  msgid "Upcoming"
751
  msgstr ""
752
 
753
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
754
  msgid "This value defines a range from the actual day to the future."
755
  msgstr ""
756
 
757
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
758
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
759
  msgid "Past"
760
  msgstr ""
761
 
762
- #: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
763
  msgid "This value defines a range from the past to the previous day."
764
  msgstr ""
765
 
766
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
767
  msgid "Show all dates"
768
  msgstr ""
769
 
770
- #: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
771
  msgid "Show all categories"
772
  msgstr ""
773
 
774
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
775
  msgid "Event Categories"
776
  msgstr ""
777
 
778
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
779
  msgid "This option specifies all event category data."
780
  msgstr ""
781
 
782
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
783
  msgid "Sync Categories"
784
  msgstr ""
785
 
786
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
787
  msgid "Keep event categories in sync with post categories automatically"
788
  msgstr ""
789
 
790
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
791
  msgid "Attention"
792
  msgstr ""
793
 
794
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
795
  msgid "Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated."
796
  msgstr ""
797
 
798
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
799
  msgid "CSV File to import"
800
  msgstr ""
801
 
802
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
803
  msgid "Please select the file which contains the event data in CSV format."
804
  msgstr ""
805
 
806
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
807
  msgid "Used date format"
808
  msgstr ""
809
 
810
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
811
  msgid "With this option the used date format for event start and end date given in the CSV file can be specified."
812
  msgstr ""
813
 
814
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
815
  msgid "Text for no events"
816
  msgstr ""
817
 
818
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
819
  msgid "This option defines the displayed text when no events are available for the selected view."
820
  msgstr ""
821
 
822
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
823
  msgid "Multiday filter range"
824
  msgstr ""
825
 
826
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
827
  msgid "Use the complete event range in the date filter"
828
  msgstr ""
829
 
830
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
831
  msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
832
  msgstr ""
833
 
834
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:40
835
  msgid "If disabled, only the start day of an event is considered in the filter."
836
  msgstr ""
837
 
838
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:41
839
  msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
840
  msgstr ""
841
 
842
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
843
  msgid "Date display"
844
  msgstr ""
845
 
846
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
847
  msgid "Show the date only once per day"
848
  msgstr ""
849
 
850
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
851
  msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
852
  msgstr ""
853
 
854
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:47
855
  msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
856
  msgstr ""
857
 
858
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
859
  msgid "HTML tags"
860
  msgstr ""
861
 
862
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
863
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
864
  #, php-format
865
  msgid "Allow HTML tags in the event field \"%1$s\""
866
  msgstr ""
867
 
868
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
869
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
870
  #, php-format
871
  msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
872
  msgstr ""
873
 
874
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
875
  msgid "Text for \"Show details\""
876
  msgstr ""
877
 
878
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
879
  msgid "With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled."
880
  msgstr ""
881
 
882
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:65
883
  msgid "Text for \"Hide details\""
884
  msgstr ""
885
 
886
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:66
887
  msgid "With this option the displayed text for the link to hide the event details can be changed, when collapsing is enabled."
888
  msgstr ""
889
 
890
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
891
  msgid "Disable CSS file"
892
  msgstr ""
893
 
894
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:70
895
  #, php-format
896
  msgid "Disable the %1$s file."
897
  msgstr ""
898
 
899
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:71
900
  #, php-format
901
  msgid "With this option you can disable the inclusion of the %1$s file."
902
  msgstr ""
903
 
904
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:72
905
  msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
906
  msgstr ""
907
 
908
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
909
  msgid "Date format in edit form"
910
  msgstr ""
911
 
912
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
913
  msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
914
  msgstr ""
915
 
916
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:78
917
  msgid "The standard is an empty string to use the Wordpress standard setting."
918
  msgstr ""
919
 
920
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:79
921
  #, php-format
922
  msgid "All available options to specify the date format can be found %1$shere%2$s."
923
  msgstr ""
924
 
925
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:83
926
  msgid "Enable RSS feed"
927
  msgstr ""
928
 
929
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:84
930
  msgid "Enable support for an event RSS feed"
931
  msgstr ""
932
 
933
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:85
934
  msgid ""
935
  "This option activates a RSS feed for the events.<br />\n"
936
  "\t You have to enable this option if you want to use one of the RSS feed features."
937
  msgstr ""
938
 
939
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:89
940
  msgid "Feed name"
941
  msgstr ""
942
 
943
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:90
944
  msgid ""
945
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
946
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
947
  msgstr ""
948
 
949
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
950
  msgid "Feed Description"
951
  msgstr ""
952
 
953
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:96
954
  msgid ""
955
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
956
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
957
  msgstr ""
958
 
959
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
960
  msgid "Listed events"
961
  msgstr ""
962
 
963
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
964
  msgid "Only show upcoming events in feed"
965
  msgstr ""
966
 
967
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:103
968
  msgid ""
969
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
970
  "\t If disabled all events (upcoming and past) will be listed."
971
  msgstr ""
972
 
973
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:108
974
  msgid "Add RSS feed link in head"
975
  msgstr ""
976
 
977
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:109
978
  msgid "Add RSS feed link in the html head"
979
  msgstr ""
980
 
981
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
982
  msgid ""
983
  "This option adds a RSS feed in the html head for the events.<br />\n"
984
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -987,86 +987,86 @@ msgid ""
987
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
988
  msgstr ""
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
991
  msgid "Position of the RSS feed link"
992
  msgstr ""
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
995
  msgid ""
996
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
997
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
998
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
999
  msgstr ""
1000
 
1001
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1002
  msgid "Align of the RSS feed link"
1003
  msgstr ""
1004
 
1005
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:128
1006
  msgid ""
1007
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1008
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1009
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1010
  msgstr ""
1011
 
1012
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1013
  msgid "Feed link text"
1014
  msgstr ""
1015
 
1016
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1017
  msgid ""
1018
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1019
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1020
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1021
  msgstr ""
1022
 
1023
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:141
1024
  msgid "Feed link image"
1025
  msgstr ""
1026
 
1027
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:142
1028
  msgid "Show rss image in feed link"
1029
  msgstr ""
1030
 
1031
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:143
1032
  msgid ""
1033
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1034
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1035
  msgstr ""
1036
 
1037
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:42
1038
  msgid "Show details"
1039
  msgstr ""
1040
 
1041
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options.php:43
1042
  msgid "Hide details"
1043
  msgstr ""
1044
 
1045
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1046
  msgid ""
1047
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1048
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1049
  msgstr ""
1050
 
1051
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
1052
  msgid ""
1053
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1054
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1055
  msgstr ""
1056
 
1057
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
1058
  msgid ""
1059
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1060
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1061
  msgstr ""
1062
 
1063
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
1064
  msgid ""
1065
  "This attribute specifies the initial order of the events.<br />\n"
1066
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1067
  msgstr ""
1068
 
1069
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
1070
  msgid ""
1071
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1072
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
@@ -1074,63 +1074,88 @@ msgid ""
1074
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1075
  msgstr ""
1076
 
1077
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
1078
  msgid ""
1079
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1080
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1081
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1082
  msgstr ""
1083
 
1084
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
1085
  msgid ""
1086
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1087
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1088
  "\t Please not that in the actual version there is no pagination of the events available."
1089
  msgstr ""
1090
 
1091
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
1092
  msgid ""
1093
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1094
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1095
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1096
  msgstr ""
1097
 
1098
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1099
  msgid ""
1100
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1101
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1102
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1103
  msgstr ""
1104
 
1105
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
1106
  msgid ""
1107
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1108
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1109
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1110
  msgstr ""
1111
 
1112
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
1113
  msgid ""
1114
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1115
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1116
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1117
  msgstr ""
1118
 
1119
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
1120
  msgid ""
1121
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1122
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1123
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1124
  msgstr ""
1125
 
1126
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
1127
- msgid ""
1128
- "This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
1129
- "\t With the standard value 0 the full details are displayed.<br />\n"
1130
- "\t This attribute has no influence if only a single event is shown."
 
 
1131
  msgstr ""
1132
 
1133
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1134
  msgid ""
1135
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1136
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
@@ -1138,7 +1163,7 @@ msgid ""
1138
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1139
  msgstr ""
1140
 
1141
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1142
  msgid ""
1143
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1144
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1146,7 +1171,7 @@ msgid ""
1146
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1147
  msgstr ""
1148
 
1149
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:116
1150
  msgid ""
1151
  "This attribute specifies if a rss feed link should be added.<br />\n"
1152
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1155,149 +1180,152 @@ msgid ""
1155
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1156
  msgstr ""
1157
 
1158
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:122
1159
  msgid ""
1160
  "This attribute specifies the page or post url for event links.<br />\n"
1161
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1162
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1163
  msgstr ""
1164
 
1165
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:129
1166
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:135
1167
- msgid ""
1168
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1169
- "\t With the standard value 0 the full details are displayed.<br />\n"
1170
- "\t This attribute has no influence if only a single event is shown."
1171
- msgstr ""
1172
-
1173
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:141
1174
  msgid ""
1175
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1176
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1177
  msgstr ""
1178
 
1179
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:138
1180
  msgid "Event Information:"
1181
  msgstr ""
1182
 
1183
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:405
1184
  msgid "(more&hellip;)"
1185
  msgstr ""
1186
 
1187
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1188
  msgid "This option defines the displayed title for the widget."
1189
  msgstr ""
1190
 
1191
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
1192
  msgid "Category Filter"
1193
  msgstr ""
1194
 
1195
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
1196
  msgid "This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities."
1197
  msgstr ""
1198
 
1199
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
1200
  msgid "Number of listed events"
1201
  msgstr ""
1202
 
1203
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
1204
  msgid "The number of upcoming events to display"
1205
  msgstr ""
1206
 
1207
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
1208
  msgid "Truncate event title to"
1209
  msgstr ""
1210
 
1211
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
1212
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
1213
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
1214
  msgid "characters"
1215
  msgstr ""
1216
 
1217
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
1218
- msgid "This option defines the number of displayed characters for the event title. Set this value to 0 to view the full title."
1219
  msgstr ""
1220
 
1221
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
 
 
 
 
 
 
1222
  msgid "Show event starttime"
1223
  msgstr ""
1224
 
1225
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
1226
  msgid "This option defines if the event start time will be displayed."
1227
  msgstr ""
1228
 
1229
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
1230
  msgid "Show event location"
1231
  msgstr ""
1232
 
1233
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
1234
  msgid "This option defines if the event location will be displayed."
1235
  msgstr ""
1236
 
1237
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
1238
  msgid "Truncate location to"
1239
  msgstr ""
1240
 
1241
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
1242
- msgid "If the event location is diplayed this option defines the number of displayed characters. Set this value to 0 to view the full location."
1243
  msgstr ""
1244
 
1245
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
1246
  msgid "Show event details"
1247
  msgstr ""
1248
 
1249
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
1250
  msgid "This option defines if the event details will be displayed."
1251
  msgstr ""
1252
 
1253
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
1254
  msgid "Truncate details to"
1255
  msgstr ""
1256
 
1257
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
1258
- msgid "If the event details are diplayed this option defines the number of diplayed characters. Set this value to 0 to view the full details."
 
 
 
 
 
1259
  msgstr ""
1260
 
1261
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
1262
  msgid "URL to the linked Event List page"
1263
  msgstr ""
1264
 
1265
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
1266
  msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
1267
  msgstr ""
1268
 
1269
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
1270
  msgid "Shortcode ID on linked page"
1271
  msgstr ""
1272
 
1273
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
1274
  msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
1275
  msgstr ""
1276
 
1277
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
1278
  msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
1279
  msgstr ""
1280
 
1281
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
1282
  msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
1283
  msgstr ""
1284
 
1285
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
1286
  msgid "Caption for the link"
1287
  msgstr ""
1288
 
1289
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
1290
  msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
1291
  msgstr ""
1292
 
1293
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
1294
  msgid "With this widget a list of upcoming events can be displayed."
1295
  msgstr ""
1296
 
1297
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
1298
  msgid "Upcoming events"
1299
  msgstr ""
1300
 
1301
- #: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
1302
  msgid "show events page"
1303
  msgstr ""
1
  # This is the translation template file for Event List.
2
+ # Copyright (C) 2017 Michael Burtscher
3
  # This file is distributed under the same license as the plugin.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
  #
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2017-01-07 21:13+0100\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
 
20
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:45
21
  msgid "Event List"
22
  msgstr ""
23
 
24
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
25
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:80
26
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
27
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
28
  msgid "Events"
29
  msgstr ""
30
 
31
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:48
32
  msgid "All Events"
33
  msgstr ""
34
 
35
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
36
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
37
  msgid "Add New Event"
38
  msgstr ""
39
 
40
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:52
41
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
42
  msgid "Add New"
43
  msgstr ""
44
 
45
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
46
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
47
  msgid "Event List Categories"
48
  msgstr ""
49
 
50
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:56
51
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:128
52
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
53
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
54
  msgid "Categories"
55
  msgstr ""
56
 
57
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
58
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
59
  msgid "Event List Settings"
60
  msgstr ""
61
 
62
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:60
63
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
64
  msgid "Settings"
65
  msgstr ""
66
 
67
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
68
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
69
  msgid "About Event List"
70
  msgstr ""
71
 
72
+ #: /home/zeus/mike/workspace/wp-event-list/admin/admin.php:64
73
  msgid "About"
74
  msgstr ""
75
 
76
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:31
77
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:37
78
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:40
79
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
80
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
81
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
82
  msgid "You do not have sufficient permissions to access this page."
83
  msgstr ""
84
 
85
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:35
86
  msgid "Help and Instructions"
87
  msgstr ""
88
 
89
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:36
90
  #, php-format
91
  msgid "You can manage your events %1$shere%2$s"
92
  msgstr ""
93
 
94
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:37
95
  msgid "To show the events on your site you have 2 possibilities"
96
  msgstr ""
97
 
98
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:38
99
  #, php-format
100
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
101
  msgstr ""
102
 
103
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:39
104
  #, php-format
105
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
106
  msgstr ""
107
 
108
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:40
109
  msgid "The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode."
110
  msgstr ""
111
 
112
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:41
113
  msgid "A list of all available shortcode attributes with their description is available below."
114
  msgstr ""
115
 
116
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:42
117
  msgid "The available widget options are described in their tooltip text."
118
  msgstr ""
119
 
120
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:43
121
  #, php-format
122
  msgid ""
123
  "For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
124
  "\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
125
  msgstr ""
126
 
127
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
128
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
129
  msgid "Add links to the single events"
130
  msgstr ""
131
 
132
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:44
133
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
134
  msgid "Add a link to the Event List page"
135
  msgstr ""
136
 
137
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:45
138
  #, php-format
139
  msgid ""
140
  "Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
142
  "\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
143
  msgstr ""
144
 
145
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:49
146
  #, php-format
147
  msgid "Be sure to also check the %1$sSettings page%2$s to get Event List behaving just the way you want."
148
  msgstr ""
149
 
150
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:63
151
  msgid "Shortcode Attributes"
152
  msgstr ""
153
 
154
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:65
155
  msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode."
156
  msgstr ""
157
 
158
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:66
159
  #, php-format
160
  msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
161
  msgstr ""
162
 
163
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:68
164
  msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
165
  msgstr ""
166
 
167
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:83
168
  msgid "Attribute name"
169
  msgstr ""
170
 
171
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:84
172
  msgid "Value options"
173
  msgstr ""
174
 
175
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:85
176
  msgid "Default value"
177
  msgstr ""
178
 
179
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:86
180
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:188
181
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
182
  msgid "Description"
183
  msgstr ""
184
 
185
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:104
186
  msgid "Filter Syntax"
187
  msgstr ""
188
 
189
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:105
190
  msgid "For date and cat filters you can specify complex filters with the following syntax:"
191
  msgstr ""
192
 
193
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
194
  #, php-format
195
  msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
196
  msgstr ""
197
 
198
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
199
  msgid "AND"
200
  msgstr ""
201
 
202
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
203
  msgid "OR"
204
  msgstr ""
205
 
206
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
207
  msgid "or"
208
  msgstr ""
209
 
210
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:106
211
  msgid "and"
212
  msgstr ""
213
 
214
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:107
215
  msgid "Examples for cat filters:"
216
  msgstr ""
217
 
218
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:108
219
  #, php-format
220
  msgid "Show all events with category %1$s."
221
  msgstr ""
222
 
223
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:109
224
  #, php-format
225
  msgid "Show all events with category %1$s or %2$s."
226
  msgstr ""
227
 
228
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:110
229
  #, php-format
230
  msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
231
  msgstr ""
232
 
233
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:115
234
  msgid "Available Date Formats"
235
  msgstr ""
236
 
237
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:116
238
  msgid "For date filters you can use the following date formats:"
239
  msgstr ""
240
 
241
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:124
242
  msgid "Available Date Range Formats"
243
  msgstr ""
244
 
245
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:125
246
  msgid "For date filters you can use the following daterange formats:"
247
  msgstr ""
248
 
249
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:137
250
  msgid "Value"
251
  msgstr ""
252
 
253
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:141
254
  msgid "Example"
255
  msgstr ""
256
 
257
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
258
  msgid "Edit Category"
259
  msgstr ""
260
 
261
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:53
262
  msgid "Update Category"
263
  msgstr ""
264
 
265
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:59
266
  msgid "Add New Category"
267
  msgstr ""
268
 
269
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:84
270
  #, php-format
271
  msgid "Category \"%s\" deleted."
272
  msgstr ""
273
 
274
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:86
275
  #, php-format
276
  msgid "This Category was also removed from %d events."
277
  msgstr ""
278
 
279
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:92
280
  #, php-format
281
  msgid "Error while deleting category \"%s\""
282
  msgstr ""
283
 
284
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:102
285
  msgid "Sync with post categories enabled."
286
  msgstr ""
287
 
288
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:105
289
  msgid "Sync with post categories disabled."
290
  msgstr ""
291
 
292
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:111
293
  msgid "Manual sync with post categories sucessfully finished."
294
  msgstr ""
295
 
296
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:119
297
  #, php-format
298
  msgid "New Category \"%s\" was added"
299
  msgstr ""
300
 
301
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:122
302
  #, php-format
303
  msgid "Error: New Category \"%s\" could not be added"
304
  msgstr ""
305
 
306
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:128
307
  #, php-format
308
  msgid "Category \"%s\" was modified"
309
  msgstr ""
310
 
311
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:131
312
  #, php-format
313
  msgid "Error: Category \"%s\" could not be modified"
314
  msgstr ""
315
 
316
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:138
317
  msgid ""
318
  "Categories are automatically synced with the post categories.<br />\n"
319
  "\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
320
  "\t\t\t If you want to manually edit the categories you have to disable this option."
321
  msgstr ""
322
 
323
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:165
324
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:107
325
  msgid "Name"
326
  msgstr ""
327
 
328
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:167
329
  msgid "The name is how it appears on your site."
330
  msgstr ""
331
 
332
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:170
333
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
334
  msgid "Slug"
335
  msgstr ""
336
 
337
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
338
  msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
339
  msgstr ""
340
 
341
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:175
342
  msgid "Parent"
343
  msgstr ""
344
 
345
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
346
  msgid "None"
347
  msgstr ""
348
 
349
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
350
  msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
351
  msgstr ""
352
 
353
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:232
354
  msgid "Apply"
355
  msgstr ""
356
 
357
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:242
358
  msgid "Do a manual sync with post categories"
359
  msgstr ""
360
 
361
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:45
362
  msgid "Import Events"
363
  msgstr ""
364
 
365
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
366
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
367
  msgid "Step"
368
  msgstr ""
369
 
370
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:65
371
  msgid "Set import file and options"
372
  msgstr ""
373
 
374
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:68
375
  msgid "Import Event Data"
376
  msgstr ""
377
 
378
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:71
379
  msgid "Example file"
380
  msgstr ""
381
 
382
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:72
383
  #, php-format
384
  msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
385
  msgstr ""
386
 
387
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
388
  msgid "Note"
389
  msgstr ""
390
 
391
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:73
392
  msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
393
  msgstr ""
394
 
395
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:80
396
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:88
397
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
398
  msgid "Sorry, there has been an error."
399
  msgstr ""
400
 
401
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:81
402
  msgid "The file does not exist, please try again."
403
  msgstr ""
404
 
405
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:89
406
  msgid "The file is not a CSV file."
407
  msgstr ""
408
 
409
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
410
  msgid "Event review and category selection"
411
  msgstr ""
412
 
413
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:129
414
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:226
415
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:120
416
  msgid "Import"
417
  msgstr ""
418
 
419
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:143
420
  msgid "Import with errors!"
421
  msgstr ""
422
 
423
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:144
424
  #, php-format
425
  msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
426
  msgstr ""
427
 
428
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:148
429
  msgid "Import successful!"
430
  msgstr ""
431
 
432
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:149
433
  msgid "Go back to All Events"
434
  msgstr ""
435
 
436
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:156
437
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
438
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
439
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
440
  msgid "Title"
441
  msgstr ""
442
 
443
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:157
444
  msgid "Start Date"
445
  msgstr ""
446
 
447
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:158
448
  msgid "End Date"
449
  msgstr ""
450
 
451
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:159
452
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:110
453
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
454
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
455
  msgid "Time"
456
  msgstr ""
457
 
458
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:160
459
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:114
460
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:109
461
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
462
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
463
  msgid "Location"
464
  msgstr ""
465
 
466
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:161
467
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:118
468
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
469
  msgid "Details"
470
  msgstr ""
471
 
472
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:196
473
  msgid "There was an error when reading this CSV file."
474
  msgstr ""
475
 
476
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:225
477
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:153
478
  msgid "Cancel"
479
  msgstr ""
480
 
481
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
482
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
483
  msgid "No categories available."
484
  msgstr ""
485
 
486
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
487
  msgid "Edit Event"
488
  msgstr ""
489
 
490
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:114
491
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
492
  msgid "Duplicate"
493
  msgstr ""
494
 
495
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:43
496
  #, php-format
497
  msgid "Duplicate of event id:%d"
498
  msgstr ""
499
 
500
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:97
501
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
502
  msgid "required"
503
  msgstr ""
504
 
505
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
506
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
507
  msgid "Date"
508
  msgstr ""
509
 
510
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:104
511
  msgid "Multi-Day Event"
512
  msgstr ""
513
 
514
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:134
515
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
516
  msgid "Publish"
517
  msgstr ""
518
 
519
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
520
  msgid "Update"
521
  msgstr ""
522
 
523
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:212
524
  msgid "Goto Category Settings"
525
  msgstr ""
526
 
527
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:220
528
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
529
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
530
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
531
  msgid "Y/m/d"
532
  msgstr ""
533
 
534
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
535
  msgid "Settings saved."
536
  msgstr ""
537
 
538
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:68
539
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
540
  msgid "General"
541
  msgstr ""
542
 
543
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
544
  msgid "Frontend Settings"
545
  msgstr ""
546
 
547
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:70
548
  msgid "Admin Page Settings"
549
  msgstr ""
550
 
551
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:71
552
  msgid "Feed Settings"
553
  msgstr ""
554
 
555
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:27
556
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
557
  msgid "event"
558
  msgstr ""
559
 
560
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:28
561
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
562
  msgid "events"
563
  msgstr ""
564
 
565
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:70
566
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
567
  msgid "Edit"
568
  msgstr ""
569
 
570
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:71
571
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:145
572
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
573
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
574
  msgid "Delete"
575
  msgstr ""
576
 
577
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:112
578
  msgid "Author"
579
  msgstr ""
580
 
581
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:113
582
  msgid "Published"
583
  msgstr ""
584
 
585
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:175
586
  msgid "Filter"
587
  msgstr ""
588
 
589
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:297
590
  #, php-format
591
  msgid "%s ago"
592
  msgstr ""
593
 
594
+ #: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:302
595
  msgid "Y/m/d g:i:s A"
596
  msgstr ""
597
 
598
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
599
  msgid "Year"
600
  msgstr ""
601
 
602
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:8
603
  msgid "A year can be specified in 4 digit format."
604
  msgstr ""
605
 
606
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
607
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
608
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
609
  #, php-format
610
  msgid "For a start date filter the first day of %1$s is used, in an end date the last day."
611
  msgstr ""
612
 
613
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:9
614
  msgid "the resulting year"
615
  msgstr ""
616
 
617
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:12
618
  msgid "Month"
619
  msgstr ""
620
 
621
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:13
622
  msgid "A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-)."
623
  msgstr ""
624
 
625
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:14
626
  msgid "the resulting month"
627
  msgstr ""
628
 
629
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:17
630
  msgid "Day"
631
  msgstr ""
632
 
633
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:18
634
  msgid "A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-)."
635
  msgstr ""
636
 
637
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:21
638
  msgid "Relative Year"
639
  msgstr ""
640
 
641
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
642
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
643
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
644
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
645
  #, php-format
646
  msgid "%1$s from now can be specified in the following notation: %2$s"
647
  msgstr ""
648
 
649
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:22
650
  msgid "A relative year"
651
  msgstr ""
652
 
653
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
654
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
655
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
656
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
657
  #, php-format
658
  msgid "This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below)."
659
  msgstr ""
660
 
661
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:23
662
  msgid "number of years"
663
  msgstr ""
664
 
665
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:24
666
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:30
667
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
668
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
669
  #, php-format
670
  msgid "Additionally the following values are available: %1$s"
671
  msgstr ""
672
 
673
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:27
674
  msgid "Relative Month"
675
  msgstr ""
676
 
677
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:28
678
  msgid "A relative month"
679
  msgstr ""
680
 
681
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:29
682
  msgid "number of months"
683
  msgstr ""
684
 
685
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:33
686
  msgid "Relative Week"
687
  msgstr ""
688
 
689
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
690
  msgid "A relative week"
691
  msgstr ""
692
 
693
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
694
  msgid "number of weeks"
695
  msgstr ""
696
 
697
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
698
  msgid "the resulting week"
699
  msgstr ""
700
 
701
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
702
  #, php-format
703
  msgid "The first day of the week is depending on the option %1$s which can be found and changed in %2$s."
704
  msgstr ""
705
 
706
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
707
  msgid "Week Starts On"
708
  msgstr ""
709
 
710
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
711
  msgid "Relative Day"
712
  msgstr ""
713
 
714
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
715
  msgid "A relative day"
716
  msgstr ""
717
 
718
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
719
  msgid "number of days"
720
  msgstr ""
721
 
722
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:49
723
  msgid "Date range"
724
  msgstr ""
725
 
726
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:50
727
  msgid ""
728
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
729
  "\t For the start and end date any available date format can be used."
730
  msgstr ""
731
 
732
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:54
733
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
734
  msgid "All"
735
  msgstr ""
736
 
737
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
738
  msgid "This value defines a range without any limits."
739
  msgstr ""
740
 
741
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:56
742
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:61
743
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
744
  #, php-format
745
  msgid "The corresponding date_range format is: %1$s"
746
  msgstr ""
747
 
748
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:59
749
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
750
  msgid "Upcoming"
751
  msgstr ""
752
 
753
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:60
754
  msgid "This value defines a range from the actual day to the future."
755
  msgstr ""
756
 
757
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:64
758
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
759
  msgid "Past"
760
  msgstr ""
761
 
762
+ #: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:65
763
  msgid "This value defines a range from the past to the previous day."
764
  msgstr ""
765
 
766
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
767
  msgid "Show all dates"
768
  msgstr ""
769
 
770
+ #: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
771
  msgid "Show all categories"
772
  msgstr ""
773
 
774
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:9
775
  msgid "Event Categories"
776
  msgstr ""
777
 
778
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
779
  msgid "This option specifies all event category data."
780
  msgstr ""
781
 
782
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
783
  msgid "Sync Categories"
784
  msgstr ""
785
 
786
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:15
787
  msgid "Keep event categories in sync with post categories automatically"
788
  msgstr ""
789
 
790
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:16
791
  msgid "Attention"
792
  msgstr ""
793
 
794
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:17
795
  msgid "Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated."
796
  msgstr ""
797
 
798
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:21
799
  msgid "CSV File to import"
800
  msgstr ""
801
 
802
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:23
803
  msgid "Please select the file which contains the event data in CSV format."
804
  msgstr ""
805
 
806
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:26
807
  msgid "Used date format"
808
  msgstr ""
809
 
810
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:28
811
  msgid "With this option the used date format for event start and end date given in the CSV file can be specified."
812
  msgstr ""
813
 
814
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:32
815
  msgid "Text for no events"
816
  msgstr ""
817
 
818
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:34
819
  msgid "This option defines the displayed text when no events are available for the selected view."
820
  msgstr ""
821
 
822
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:37
823
  msgid "Multiday filter range"
824
  msgstr ""
825
 
826
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:38
827
  msgid "Use the complete event range in the date filter"
828
  msgstr ""
829
 
830
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:39
831
  msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
832
  msgstr ""
833
 
834
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:40
835
  msgid "If disabled, only the start day of an event is considered in the filter."
836
  msgstr ""
837
 
838
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:41
839
  msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
840
  msgstr ""
841
 
842
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:44
843
  msgid "Date display"
844
  msgstr ""
845
 
846
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:45
847
  msgid "Show the date only once per day"
848
  msgstr ""
849
 
850
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:46
851
  msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
852
  msgstr ""
853
 
854
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:47
855
  msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
856
  msgstr ""
857
 
858
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:50
859
  msgid "HTML tags"
860
  msgstr ""
861
 
862
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
863
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
864
  #, php-format
865
  msgid "Allow HTML tags in the event field \"%1$s\""
866
  msgstr ""
867
 
868
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
869
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
870
  #, php-format
871
  msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
872
  msgstr ""
873
 
874
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:61
875
  msgid "Text for \"Show details\""
876
  msgstr ""
877
 
878
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:62
879
  msgid "With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled."
880
  msgstr ""
881
 
882
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:65
883
  msgid "Text for \"Hide details\""
884
  msgstr ""
885
 
886
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:66
887
  msgid "With this option the displayed text for the link to hide the event details can be changed, when collapsing is enabled."
888
  msgstr ""
889
 
890
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:69
891
  msgid "Disable CSS file"
892
  msgstr ""
893
 
894
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:70
895
  #, php-format
896
  msgid "Disable the %1$s file."
897
  msgstr ""
898
 
899
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:71
900
  #, php-format
901
  msgid "With this option you can disable the inclusion of the %1$s file."
902
  msgstr ""
903
 
904
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:72
905
  msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
906
  msgstr ""
907
 
908
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:76
909
  msgid "Date format in edit form"
910
  msgstr ""
911
 
912
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:77
913
  msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
914
  msgstr ""
915
 
916
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:78
917
  msgid "The standard is an empty string to use the Wordpress standard setting."
918
  msgstr ""
919
 
920
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:79
921
  #, php-format
922
  msgid "All available options to specify the date format can be found %1$shere%2$s."
923
  msgstr ""
924
 
925
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:83
926
  msgid "Enable RSS feed"
927
  msgstr ""
928
 
929
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:84
930
  msgid "Enable support for an event RSS feed"
931
  msgstr ""
932
 
933
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:85
934
  msgid ""
935
  "This option activates a RSS feed for the events.<br />\n"
936
  "\t You have to enable this option if you want to use one of the RSS feed features."
937
  msgstr ""
938
 
939
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:89
940
  msgid "Feed name"
941
  msgstr ""
942
 
943
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:90
944
  msgid ""
945
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
946
  "\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
947
  msgstr ""
948
 
949
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:95
950
  msgid "Feed Description"
951
  msgstr ""
952
 
953
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:96
954
  msgid ""
955
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
956
  "\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
957
  msgstr ""
958
 
959
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:101
960
  msgid "Listed events"
961
  msgstr ""
962
 
963
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:102
964
  msgid "Only show upcoming events in feed"
965
  msgstr ""
966
 
967
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:103
968
  msgid ""
969
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
970
  "\t If disabled all events (upcoming and past) will be listed."
971
  msgstr ""
972
 
973
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:108
974
  msgid "Add RSS feed link in head"
975
  msgstr ""
976
 
977
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:109
978
  msgid "Add RSS feed link in the html head"
979
  msgstr ""
980
 
981
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:110
982
  msgid ""
983
  "This option adds a RSS feed in the html head for the events.<br />\n"
984
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
987
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
988
  msgstr ""
989
 
990
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:118
991
  msgid "Position of the RSS feed link"
992
  msgstr ""
993
 
994
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:120
995
  msgid ""
996
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
997
  "\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
998
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
999
  msgstr ""
1000
 
1001
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:126
1002
  msgid "Align of the RSS feed link"
1003
  msgstr ""
1004
 
1005
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:128
1006
  msgid ""
1007
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1008
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1009
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1010
  msgstr ""
1011
 
1012
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:134
1013
  msgid "Feed link text"
1014
  msgstr ""
1015
 
1016
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:135
1017
  msgid ""
1018
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1019
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1020
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1021
  msgstr ""
1022
 
1023
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:141
1024
  msgid "Feed link image"
1025
  msgstr ""
1026
 
1027
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:142
1028
  msgid "Show rss image in feed link"
1029
  msgstr ""
1030
 
1031
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:143
1032
  msgid ""
1033
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1034
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1035
  msgstr ""
1036
 
1037
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:42
1038
  msgid "Show details"
1039
  msgstr ""
1040
 
1041
+ #: /home/zeus/mike/workspace/wp-event-list/includes/options.php:43
1042
  msgid "Hide details"
1043
  msgstr ""
1044
 
1045
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:8
1046
  msgid ""
1047
  "With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
1048
  "\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
1049
  msgstr ""
1050
 
1051
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:12
1052
  msgid ""
1053
  "This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
1054
  "\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
1055
  msgstr ""
1056
 
1057
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:16
1058
  msgid ""
1059
  "This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
1060
  "\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
1061
  msgstr ""
1062
 
1063
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:20
1064
  msgid ""
1065
  "This attribute specifies the initial order of the events.<br />\n"
1066
  "\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
1067
  msgstr ""
1068
 
1069
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:24
1070
  msgid ""
1071
  "This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
1072
  "\t Filtered events according to date_filter value are not available in the event list.<br />\n"
1074
  "\t See \"Filter Syntax\" description if you want to define complex filters."
1075
  msgstr ""
1076
 
1077
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:30
1078
  msgid ""
1079
  "This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
1080
  "\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
1081
  "\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
1082
  msgstr ""
1083
 
1084
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:35
1085
  msgid ""
1086
  "This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
1087
  "\t 0 is the standard value which means that all events will be displayed.<br />\n"
1088
  "\t Please not that in the actual version there is no pagination of the events available."
1089
  msgstr ""
1090
 
1091
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:40
1092
  msgid ""
1093
  "This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
1094
  "\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
1095
  "\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
1096
  msgstr ""
1097
 
1098
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:78
1099
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:93
1100
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:108
1101
+ msgid "number"
1102
+ msgstr ""
1103
+
1104
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:79
1105
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:94
1106
+ msgid "This attribute specifies if the title should be truncated to the given number of characters in the event list."
1107
+ msgstr ""
1108
+
1109
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:80
1110
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:95
1111
+ #, php-format
1112
+ msgid "With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css."
1113
+ msgstr ""
1114
+
1115
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:81
1116
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:96
1117
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:111
1118
+ msgid "This attribute has no influence if only a single event is shown."
1119
+ msgstr ""
1120
+
1121
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:84
1122
  msgid ""
1123
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1124
  "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1125
  "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1126
  msgstr ""
1127
 
1128
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:89
1129
  msgid ""
1130
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1131
  "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1132
  "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1133
  msgstr ""
1134
 
1135
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:99
1136
  msgid ""
1137
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1138
  "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1139
  "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1140
  msgstr ""
1141
 
1142
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:104
1143
  msgid ""
1144
  "This attribute specifies if the details are displayed in the event list.<br />\n"
1145
  "\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
1146
  "\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
1147
  msgstr ""
1148
 
1149
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:109
1150
+ msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list."
1151
+ msgstr ""
1152
+
1153
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:110
1154
+ #, php-format
1155
+ msgid "With the standard value %1$s the full text is displayed."
1156
  msgstr ""
1157
 
1158
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:114
1159
  msgid ""
1160
  "This attribute specifies if the details should be collapsed initially.<br />\n"
1161
  "\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
1163
  "\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
1164
  msgstr ""
1165
 
1166
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:120
1167
  msgid ""
1168
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1169
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1171
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1172
  msgstr ""
1173
 
1174
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:126
1175
  msgid ""
1176
  "This attribute specifies if a rss feed link should be added.<br />\n"
1177
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1180
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1181
  msgstr ""
1182
 
1183
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:132
1184
  msgid ""
1185
  "This attribute specifies the page or post url for event links.<br />\n"
1186
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1187
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1188
  msgstr ""
1189
 
1190
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list_helptexts.php:139
 
 
 
 
 
 
 
 
1191
  msgid ""
1192
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1193
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1194
  msgstr ""
1195
 
1196
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:138
1197
  msgid "Event Information:"
1198
  msgstr ""
1199
 
1200
+ #: /home/zeus/mike/workspace/wp-event-list/includes/sc_event-list.php:408
1201
  msgid "(more&hellip;)"
1202
  msgstr ""
1203
 
1204
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
1205
  msgid "This option defines the displayed title for the widget."
1206
  msgstr ""
1207
 
1208
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:15
1209
  msgid "Category Filter"
1210
  msgstr ""
1211
 
1212
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:17
1213
  msgid "This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities."
1214
  msgstr ""
1215
 
1216
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:22
1217
  msgid "Number of listed events"
1218
  msgstr ""
1219
 
1220
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:24
1221
  msgid "The number of upcoming events to display"
1222
  msgstr ""
1223
 
1224
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:29
1225
  msgid "Truncate event title to"
1226
  msgstr ""
1227
 
1228
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:30
1229
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:52
1230
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
1231
  msgid "characters"
1232
  msgstr ""
1233
 
1234
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:31
1235
+ msgid "This option defines the number of displayed characters for the event title."
1236
  msgstr ""
1237
 
1238
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:32
1239
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
1240
+ #, php-format
1241
+ msgid "Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css."
1242
+ msgstr ""
1243
+
1244
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:37
1245
  msgid "Show event starttime"
1246
  msgstr ""
1247
 
1248
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:39
1249
  msgid "This option defines if the event start time will be displayed."
1250
  msgstr ""
1251
 
1252
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:44
1253
  msgid "Show event location"
1254
  msgstr ""
1255
 
1256
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:46
1257
  msgid "This option defines if the event location will be displayed."
1258
  msgstr ""
1259
 
1260
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:51
1261
  msgid "Truncate location to"
1262
  msgstr ""
1263
 
1264
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:53
1265
+ msgid "If the event location is diplayed this option defines the number of displayed characters."
1266
  msgstr ""
1267
 
1268
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:59
1269
  msgid "Show event details"
1270
  msgstr ""
1271
 
1272
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:61
1273
  msgid "This option defines if the event details will be displayed."
1274
  msgstr ""
1275
 
1276
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:66
1277
  msgid "Truncate details to"
1278
  msgstr ""
1279
 
1280
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:68
1281
+ msgid "If the event details are diplayed this option defines the number of diplayed characters."
1282
+ msgstr ""
1283
+
1284
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:69
1285
+ #, php-format
1286
+ msgid "Set this value to %1$s to view the full text."
1287
  msgstr ""
1288
 
1289
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:74
1290
  msgid "URL to the linked Event List page"
1291
  msgstr ""
1292
 
1293
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:76
1294
  msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
1295
  msgstr ""
1296
 
1297
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:81
1298
  msgid "Shortcode ID on linked page"
1299
  msgstr ""
1300
 
1301
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:83
1302
  msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
1303
  msgstr ""
1304
 
1305
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:90
1306
  msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
1307
  msgstr ""
1308
 
1309
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:97
1310
  msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
1311
  msgstr ""
1312
 
1313
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:102
1314
  msgid "Caption for the link"
1315
  msgstr ""
1316
 
1317
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:104
1318
  msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
1319
  msgstr ""
1320
 
1321
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:20
1322
  msgid "With this widget a list of upcoming events can be displayed."
1323
  msgstr ""
1324
 
1325
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:25
1326
  msgid "Upcoming events"
1327
  msgstr ""
1328
 
1329
+ #: /home/zeus/mike/workspace/wp-event-list/includes/widget.php:38
1330
  msgid "show events page"
1331
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mibuthu, clhunsen
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2
4
  Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
5
  Requires at least: 3.3
6
- Tested up to: 4.5
7
- Stable tag: 0.7.6
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
@@ -82,6 +82,15 @@ Another possibility would be to call the wordpress function "do_shortcode()".
82
 
83
  == Changelog ==
84
 
 
 
 
 
 
 
 
 
 
85
  = 0.7.6 (2015-12-13) =
86
  * added shortcode attribute "collapse_details"
87
  * correct handling of "more"-tag in event details
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2
4
  Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
5
  Requires at least: 3.3
6
+ Tested up to: 4.7
7
+ Stable tag: 0.7.7
8
  Plugin URI: http://wordpress.org/extend/plugins/event-list
9
  Licence: GPLv2
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
82
 
83
  == Changelog ==
84
 
85
+ = 0.7.7 (2017-01-13) =
86
+ * replaced custom admin menu icon with wordpress integrated icon for a consistent styling
87
+ * added support to truncate text via css to exactly 1 line (length='auto')
88
+ * added a link to the event at the ellipsis of a truncated details text
89
+ * improved code for deleting of events
90
+ * fixed some issues with the bulk action menu and button in admin event table
91
+ * improved security for external links
92
+ * updated translations
93
+
94
  = 0.7.6 (2015-12-13) =
95
  * added shortcode attribute "collapse_details"
96
  * correct handling of "more"-tag in event details