Event List - Version 0.7.6

Version Description

(2015-12-13) = * added shortcode attribute "collapse_details" * correct handling of "more"-tag in event details * show "url_to_page" shortcode attribute in the documentation * fixed wrong date format in events import sample * some help texts improvements * updated translation de_DE (78%) and fi_FI (35%) * added italian translation it_IT (69%) * added portuguese translation pt_BR (58%) * added dutch translation nl_NL (46%) * added spanish translation es_ES (39%) * added spanish translation es_AR (18%) * added frensh translation fr_FR (0%) * Thanks to all translators at transifex!

Download this release

Release Info

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

Code changes from version 0.7.5 to 0.7.6

event-list.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Event List
4
  Plugin URI: http://wordpress.org/extend/plugins/event-list/
5
  Description: Manage your events and show them in a list view on your site.
6
- Version: 0.7.5
7
  Author: Michael Burtscher
8
  Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
3
  Plugin Name: Event List
4
  Plugin URI: http://wordpress.org/extend/plugins/event-list/
5
  Description: Manage your events and show them in a list view on your site.
6
+ Version: 0.7.6
7
  Author: Michael Burtscher
8
  Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
files/events-import-example.csv CHANGED
@@ -1,4 +1,4 @@
1
  "sep=,"
2
  "title","start date","end date","time","location","details"
3
  "Cycling",2015-01-01,,17:00:00,"at home","This is a test entry."
4
- "Hiking",2020-02-02,04.10.2020,10:00:00,"in the mountains","TestTest?<br>2nd test entry."
1
  "sep=,"
2
  "title","start date","end date","time","location","details"
3
  "Cycling",2015-01-01,,17:00:00,"at home","This is a test entry."
4
+ "Hiking",2020-02-02,2020-02-04,10:00:00,"in the mountains","TestTest?<br>2nd test entry."
includes/css/event-list.css CHANGED
@@ -124,3 +124,7 @@ div.filterbar ul.hlist li + li:before {
124
  content: "|";
125
  padding: 0 1px;
126
  }
 
 
 
 
124
  content: "|";
125
  padding: 0 1px;
126
  }
127
+
128
+ div.el-hidden {
129
+ display: none;
130
+ }
includes/js/collapse_details.js ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ function toggle_event_details(event_id) {
2
+ var details_div = document.getElementById('event-details-'.concat(event_id));
3
+ var details_button = document.getElementById('event-detail-a'.concat(event_id));
4
+ if (details_div.style.display == 'block') {
5
+ details_div.style.display = 'none';
6
+ details_button.innerHTML = el_show_details_text;
7
+ }
8
+ else {
9
+ details_div.style.display = 'block';
10
+ details_button.innerHTML = el_hide_details_text;
11
+ }
12
+ return false;
13
+ }
includes/options.php CHANGED
@@ -39,6 +39,8 @@ class EL_Options {
39
  'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
40
  'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
41
 
 
 
42
  'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''),
43
 
44
  'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''),
39
  'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
40
  'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
41
 
42
+ 'el_show_details_text' => array('section' => 'frontend', 'std_val' => __('Show details','event-list')),
43
+ 'el_hide_details_text' => array('section' => 'frontend', 'std_val' => __('Hide details','event-list')),
44
  'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''),
45
 
46
  'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''),
includes/options_helptexts.php CHANGED
@@ -31,44 +31,52 @@ $options_helptexts = array(
31
  'el_no_event_text' => array('type' => 'text',
32
  'label' => __('Text for no events','event-list'),
33
  'caption' => '',
34
- 'desc' => __('This option defines the text which is displayed if no events are available for the selected view.','event-list')),
35
 
36
  'el_multiday_filterrange' => array('type' => 'checkbox',
37
  'label' => __('Multiday filter range','event-list'),
38
- 'caption' => __('Use complete range in date filter'),
39
- 'desc' => __('This option defines if the complete range of a multiday event shall be considered in the date filter.<br />
40
- If disabled only the start day of an event is considered in the filter.<br />
41
- For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.','event-list')),
42
 
43
  'el_date_once_per_day' => array('type' => 'checkbox',
44
  'label' => __('Date display','event-list'),
45
- 'caption' => __('Show date only once per day','event-list'),
46
- 'desc' => __('With this option you can display the date only once per day if multiple events are available on the same day.<br />
47
- If this option is 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.')),
48
 
49
  'el_html_tags_in_time' => array('type' => 'checkbox',
50
  'label' => __('HTML tags','event-list'),
51
- 'caption' => __('Allow HTML tags in event time field','event-list'),
52
- 'desc' => __('This option specifies if HTML tags are allowed in the event start time field.','event-list')),
53
 
54
  'el_html_tags_in_loc' => array('type' => 'checkbox',
55
  'label' => '',
56
- 'caption' => __('Allow HTML tags in event location field','event-list'),
57
- 'desc' => __('This option specifies if HTML tags are allowed in the event location field.','event-list')),
58
 
59
  // Section: "frontend"
 
 
 
 
 
 
 
 
60
  'el_disable_css_file' => array('type' => 'checkbox',
61
- 'label' => __('Disable CSS file'),
62
- 'caption' => __('Disable the "event-list.css" file.'),
63
- 'desc' => __('With this option you can disable the inclusion of the "event-list.css" file.<br />
64
- This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css).')),
65
 
66
  // Section: "admin"
67
  'el_edit_dateformat' => array('type' => 'text',
68
  'label' => __('Date format in edit form','event-list'),
69
- 'desc' => __('This option sets a specific date format for the event date fields in the new/edit event form.<br />
70
- The standard is an empty string to use the wordpress standard setting.<br />
71
- All available options to specify the format can be found <a href="http://php.net/manual/en/function.date.php" target="_blank">here</a>')),
72
 
73
  // Section: "feed"
74
  'el_enable_feed' => array('type' => 'checkbox',
31
  'el_no_event_text' => array('type' => 'text',
32
  'label' => __('Text for no events','event-list'),
33
  'caption' => '',
34
+ 'desc' => __('This option defines the displayed text when no events are available for the selected view.','event-list')),
35
 
36
  'el_multiday_filterrange' => array('type' => 'checkbox',
37
  'label' => __('Multiday filter range','event-list'),
38
+ 'caption' => __('Use the complete event range in the date filter','event-list'),
39
+ 'desc' => __('This option defines if the complete range of a multiday event shall be considered in the date filter.','event-list').'<br />'.
40
+ __('If disabled, only the start day of an event is considered in the filter.','event-list').'<br />'.
41
+ __('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.','event-list')),
42
 
43
  'el_date_once_per_day' => array('type' => 'checkbox',
44
  'label' => __('Date display','event-list'),
45
+ 'caption' => __('Show the date only once per day','event-list'),
46
+ 'desc' => __('With this option enabled the date is only displayed once per day if more than one event is available on the same day.','event-list').'<br />'.
47
+ __('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.','event-list')),
48
 
49
  'el_html_tags_in_time' => array('type' => 'checkbox',
50
  'label' => __('HTML tags','event-list'),
51
+ 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Time','event-list')),
52
+ 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Time','event-list'))),
53
 
54
  'el_html_tags_in_loc' => array('type' => 'checkbox',
55
  'label' => '',
56
+ 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')),
57
+ 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))),
58
 
59
  // Section: "frontend"
60
+ 'el_show_details_text' => array('type' => 'text',
61
+ 'label' => __('Text for "Show details"','event-list'),
62
+ 'desc' => __('With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled.','event-list')),
63
+
64
+ 'el_hide_details_text' => array('type' => 'text',
65
+ 'label' => __('Text for "Hide details"','event-list'),
66
+ 'desc' => __('With this option the displayed text for the link to hide the event details can be changed, when collapsing is enabled.','event-list')),
67
+
68
  'el_disable_css_file' => array('type' => 'checkbox',
69
+ 'label' => __('Disable CSS file','event-list'),
70
+ 'caption' => sprintf(__('Disable the %1$s file.','event-list'), '"event-list.css"'),
71
+ 'desc' => sprintf(__('With this option you can disable the inclusion of the %1$s file.','event-list'), '"event-list.css"').'<br />'.
72
+ __('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).','event-list')),
73
 
74
  // Section: "admin"
75
  'el_edit_dateformat' => array('type' => 'text',
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',
includes/sc_event-list.php CHANGED
@@ -47,11 +47,12 @@ class SC_Event_List {
47
  'show_cat' => array('std_val' => 'false'),
48
  'show_details' => array('std_val' => 'true'),
49
  'details_length' => array('std_val' => '0'),
 
50
  'link_to_event' => array('std_val' => 'event_list_only'),
51
  'add_feed_link' => array('std_val' => 'false'),
 
52
  'title_length' => array('std_val' => '0'),
53
  'location_length' => array('std_val' => '0'),
54
- 'url_to_page' => array('std_val' => ''),
55
  'sc_id_for_url' => array('std_val' => ''),
56
  // Internal attributes: This parameters will be added by the script and are not available in the shortcode
57
  // 'sc_id'
@@ -205,8 +206,8 @@ class SC_Event_List {
205
  // event title
206
  $out .= '<div class="event-title"><h3>';
207
  $title = esc_attr($this->db->truncate($event->title, $a['title_length'], $this->single_event));
208
- if($this->is_visible($a['link_to_event']) || ('events_with_details_only' == $a['link_to_event'] && !$this->single_event && '' != $event->details)) {
209
- $out .= '<a href="'.esc_html(add_query_arg('event_id'.$a['sc_id_for_url'], $event->id, $this->get_url($a))).'">'.$title.'</a>';
210
  }
211
  else {
212
  $out .= $title;
@@ -239,7 +240,7 @@ class SC_Event_List {
239
  $out .= '<div class="event-cat">'.esc_attr($this->categories->convert_db_string($event->categories)).'</div>';
240
  }
241
  if( $this->is_visible( $a['show_details'] ) ) {
242
- $out .= '<div class="event-details">'.$this->db->truncate(do_shortcode(wpautop($event->details)), $a['details_length'], $this->single_event).'</div>';
243
  }
244
  $out .= '</div>
245
  </li>';
@@ -382,23 +383,69 @@ class SC_Event_List {
382
  }
383
  }
384
 
385
- private function get_url( &$a ) {
386
- if( '' !== $a['url_to_page'] ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  // use given url
388
  $url = $a['url_to_page'];
389
  }
390
  else {
391
  // use actual page
392
  $url = get_permalink();
393
- foreach( $_GET as $k => $v ) {
394
  if('date'.$a['sc_id'] !== $k && 'event_id'.$a['sc_id'] !== $k) {
395
- $url = add_query_arg( $k, $v, $url );
396
  }
397
  }
398
  }
399
  return $url;
400
  }
401
 
 
 
 
 
402
  private function is_single_day_only( &$events ) {
403
  foreach( $events as $event ) {
404
  if( $event->start_date !== $event->end_date ) {
@@ -408,20 +455,20 @@ class SC_Event_List {
408
  return true;
409
  }
410
 
411
- private function is_visible( $attribute_value ) {
412
  switch ($attribute_value) {
413
  case 'true':
414
  case '1': // = 'true'
415
  return true;
416
  case 'event_list_only':
417
- if( $this->single_event ) {
418
  return false;
419
  }
420
  else {
421
  return true;
422
  }
423
  case 'single_event_only':
424
- if( $this->single_event ) {
425
  return true;
426
  }
427
  else {
@@ -431,5 +478,16 @@ class SC_Event_List {
431
  return false;
432
  }
433
  }
 
 
 
 
 
 
 
 
 
 
 
434
  }
435
  ?>
47
  'show_cat' => array('std_val' => 'false'),
48
  'show_details' => array('std_val' => 'true'),
49
  'details_length' => array('std_val' => '0'),
50
+ 'collapse_details' => array('std_val' => 'false'),
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'
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;
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
  }
245
  $out .= '</div>
246
  </li>';
383
  }
384
  }
385
 
386
+ private function get_details(&$event, &$a) {
387
+ // check if details are available
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)) {
394
+ $part = explode($matches[0], $event->details, 2);
395
+ if(!$this->is_link_available($a, $event->details) || 0 < $a['details_length'] || $this->single_event) {
396
+ //details with removed more-tag
397
+ $details = $part[0].$part[1];
398
+ }
399
+ else {
400
+ //set more-link text
401
+ if(!empty($matches[1])) {
402
+ $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
403
+ }
404
+ else {
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);
420
+ add_action('wp_footer', array(&$this, 'print_collapse_details_script'));
421
+ return '<div class="event-details"><div id="event-details-'.$event->id.'" class="el-hidden">'.$details.
422
+ '</div><a class="event-detail-link" id="event-detail-a'.$event->id.'" onclick="toggle_event_details('.$event->id.')" href="javascript:void(0)">'.$this->options->get('el_show_details_text').'</a></div>';
423
+ }
424
+ // return without collapsing
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
431
  $url = $a['url_to_page'];
432
  }
433
  else {
434
  // use actual page
435
  $url = get_permalink();
436
+ foreach($_GET as $k => $v) {
437
  if('date'.$a['sc_id'] !== $k && 'event_id'.$a['sc_id'] !== $k) {
438
+ $url = add_query_arg($k, $v, $url);
439
  }
440
  }
441
  }
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 ) {
455
  return true;
456
  }
457
 
458
+ private function is_visible($attribute_value) {
459
  switch ($attribute_value) {
460
  case 'true':
461
  case '1': // = 'true'
462
  return true;
463
  case 'event_list_only':
464
+ if($this->single_event) {
465
  return false;
466
  }
467
  else {
468
  return true;
469
  }
470
  case 'single_event_only':
471
+ if($this->single_event) {
472
  return true;
473
  }
474
  else {
478
  return false;
479
  }
480
  }
481
+
482
+ private function is_link_available(&$a, &$event) {
483
+ return $this->is_visible($a['link_to_event']) || ('events_with_details_only' == $a['link_to_event'] && !$this->single_event && '' != $event->details);
484
+ }
485
+
486
+ public function print_collapse_details_script() {
487
+ // print variables for script
488
+ echo('<script type="text/javascript">el_show_details_text = "'.$this->options->get('el_show_details_text').'"; el_hide_details_text = "'.$this->options->get('el_hide_details_text').'"</script>');
489
+ // print script
490
+ wp_print_scripts('el_collapse_details');
491
+ }
492
  }
493
  ?>
includes/sc_event-list_helptexts.php CHANGED
@@ -100,6 +100,12 @@ $sc_eventlist_helptexts = array(
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
  'link_to_event' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only<br />events_with_details_only',
104
  'desc' => __('This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />
105
  Choose "false" to never add and "true" to always add the link.<br />
@@ -112,6 +118,11 @@ $sc_eventlist_helptexts = array(
112
  On that page you can also find some settings to modify the output.<br />
113
  Choose "false" to never add and "true" to always add the link.<br />
114
  With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
 
 
 
 
 
115
  // 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
116
  'title_length' => array('val' => 'number',
117
  'hidden' => true,
@@ -125,12 +136,6 @@ $sc_eventlist_helptexts = array(
125
  With the standard value 0 the full details are displayed.<br />
126
  This attribute has no influence if only a single event is shown.','event-list')),
127
 
128
- 'url_to_page' => array('val' => 'url',
129
- 'hidden' => true,
130
- 'desc' => __('This attribute specifies that the link should follow the given url.<br />
131
- The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />
132
- This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget.','event-list')),
133
-
134
  'sc_id_for_url' => array('val' => 'number',
135
  'hidden' => true,
136
  'desc' => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<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 />
105
+ Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />
106
+ Available option are "false" to always disable collapsing and "true" to always enable collapsing of the details.<br />
107
+ With "event_list_only" the details are only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')),
108
+
109
  'link_to_event' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only<br />events_with_details_only',
110
  'desc' => __('This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />
111
  Choose "false" to never add and "true" to always add the link.<br />
118
  On that page you can also find some settings to modify the output.<br />
119
  Choose "false" to never add and "true" to always add the link.<br />
120
  With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
121
+ 'url_to_page' => array('val' => 'url',
122
+ 'desc' => __('This attribute specifies the page or post url for event links.<br />
123
+ The standard is an empty string. Then the url will be calculated automatically.<br />
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,
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 />
languages/event-list-de_DE.mo CHANGED
Binary file
languages/event-list-de_DE.po CHANGED
@@ -8,10 +8,10 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-07-18 20:36+0200\n"
12
- "PO-Revision-Date: 2015-07-18 07:25+0000\n"
13
  "Last-Translator: mibuthu\n"
14
- "Language-Team: German (Germany) (http://www.transifex.com/p/wp-event-list/language/de_DE/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -478,12 +478,16 @@ 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
  msgid "Time"
482
  msgstr "Uhrzeit"
483
 
484
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
485
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
486
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
 
 
487
  msgid "Location"
488
  msgstr "Ort"
489
 
@@ -852,148 +856,194 @@ msgstr ""
852
 
853
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
854
  msgid "Text for no events"
855
- msgstr ""
856
 
857
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
858
  msgid ""
859
- "This option defines the text which is displayed if no events are available "
860
- "for the selected view."
861
- msgstr ""
862
 
863
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
864
  msgid "Multiday filter range"
865
- msgstr ""
866
 
867
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
868
- msgid "Use complete range in date filter"
869
- msgstr ""
870
 
871
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
872
  msgid ""
873
- "This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
874
- "\t If disabled only the start day of an event is considered in the filter.<br />\n"
875
- "\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
876
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
877
 
878
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
879
  msgid "Date display"
880
- msgstr ""
881
 
882
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
883
- msgid "Show date only once per day"
884
- msgstr ""
885
 
886
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
887
  msgid ""
888
- "With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
889
- "\t If this option is 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."
890
- msgstr ""
 
 
 
 
 
 
891
 
892
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
893
  msgid "HTML tags"
894
- msgstr ""
895
 
896
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
897
- msgid "Allow HTML tags in event time field"
898
- msgstr ""
 
 
899
 
900
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
 
 
901
  msgid ""
902
- "This option specifies if HTML tags are allowed in the event start time "
903
- "field."
904
- msgstr ""
905
 
906
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
907
- msgid "Allow HTML tags in event location field"
908
- msgstr ""
909
 
910
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
911
  msgid ""
912
- "This option specifies if HTML tags are allowed in the event location field."
913
- msgstr ""
 
914
 
915
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
 
 
 
 
 
 
 
 
 
 
916
  msgid "Disable CSS file"
917
- msgstr ""
918
 
919
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
920
- msgid "Disable the \"event-list.css\" file."
921
- msgstr ""
 
 
 
 
 
 
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:63
924
  msgid ""
925
- "With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
926
- "\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
927
- msgstr ""
928
 
929
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
930
  msgid "Date format in edit form"
931
- msgstr ""
932
 
933
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
934
  msgid ""
935
- "This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
936
- "\t The standard is an empty string to use the wordpress standard setting.<br />\n"
937
- "\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
938
- msgstr ""
 
 
 
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:75
 
 
 
 
 
 
941
  msgid "Enable RSS feed"
942
  msgstr ""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
945
  msgid "Enable support for an event RSS feed"
946
  msgstr ""
947
 
948
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
949
  msgid ""
950
  "This option activates a RSS feed for the events.<br />\n"
951
  "\t You have to enable this option if you want to use one of the RSS feed features."
952
  msgstr ""
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:81
955
  msgid "Feed name"
956
  msgstr ""
957
 
958
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:82
959
  msgid ""
960
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
961
  "\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"
962
  msgstr ""
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
965
  msgid "Feed Description"
966
  msgstr ""
967
 
968
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:88
969
  msgid ""
970
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
971
  "\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."
972
  msgstr ""
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
975
  msgid "Listed events"
976
  msgstr ""
977
 
978
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
979
  msgid "Only show upcoming events in feed"
980
  msgstr ""
981
 
982
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
983
  msgid ""
984
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
985
  "\t If disabled all events (upcoming and past) will be listed."
986
  msgstr ""
987
 
988
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:100
989
  msgid "Add RSS feed link in head"
990
  msgstr ""
991
 
992
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
993
  msgid "Add RSS feed link in the html head"
994
  msgstr ""
995
 
996
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
997
  msgid ""
998
  "This option adds a RSS feed in the html head for the events.<br />\n"
999
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1002,53 +1052,61 @@ msgid ""
1002
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1003
  msgstr ""
1004
 
1005
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1006
  msgid "Position of the RSS feed link"
1007
  msgstr ""
1008
 
1009
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
1010
  msgid ""
1011
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1012
  "\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"
1013
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1014
  msgstr ""
1015
 
1016
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1017
  msgid "Align of the RSS feed link"
1018
  msgstr ""
1019
 
1020
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1021
  msgid ""
1022
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1023
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1024
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1025
  msgstr ""
1026
 
1027
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1028
  msgid "Feed link text"
1029
  msgstr ""
1030
 
1031
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
1032
  msgid ""
1033
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1034
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1035
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1036
  msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:133
1039
  msgid "Feed link image"
1040
  msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1043
  msgid "Show rss image in feed link"
1044
  msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1047
  msgid ""
1048
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1049
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1050
  msgstr ""
1051
 
 
 
 
 
 
 
 
 
1052
  #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1053
  msgid ""
1054
  "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"
@@ -1139,13 +1197,21 @@ msgstr ""
1139
 
1140
  #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1141
  msgid ""
 
 
 
 
 
 
 
 
1142
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1143
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1144
  "\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"
1145
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1146
  msgstr ""
1147
 
1148
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1149
  msgid ""
1150
  "This attribute specifies if a rss feed link should be added.<br />\n"
1151
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1154,31 +1220,35 @@ msgid ""
1154
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1155
  msgstr ""
1156
 
1157
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:118
1158
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:124
1159
  msgid ""
1160
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1161
- "\t With the standard value 0 the full details are displayed.<br />\n"
1162
- "\t This attribute has no influence if only a single event is shown."
1163
  msgstr ""
1164
 
1165
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:130
 
1166
  msgid ""
1167
- "This attribute specifies that the link should follow the given url.<br />\n"
1168
- "\t The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />\n"
1169
- "\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
1170
  msgstr ""
1171
 
1172
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:136
1173
  msgid ""
1174
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1175
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1176
  msgstr ""
1177
 
1178
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:137
1179
  msgid "Event Information:"
1180
  msgstr "Termin Informationen:"
1181
 
 
 
 
 
1182
  #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1183
  msgid "This option defines the displayed title for the widget."
1184
  msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
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"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
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
 
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
  "\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"
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"
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."
languages/event-list-es_AR.mo ADDED
Binary file
languages/event-list-es_AR.po ADDED
@@ -0,0 +1,1392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Gustavo Baranovsky <epromd@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: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"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
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"
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 "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"
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 "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 "
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 "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"
languages/event-list-es_ES.mo ADDED
Binary file
languages/event-list-es_ES.po ADDED
@@ -0,0 +1,1391 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 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"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
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"
145
+ "\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"
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"
1049
+ "\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"
1050
+ "\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"
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"
1137
+ "\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
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"
1201
+ "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
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"
1209
+ "\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"
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"
1217
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1218
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
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 "
1263
+ "list of category slugs to only show events of the specified categories. See "
1264
+ "description of the shortcode attribute cat_filter for detailed info about "
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 ""
languages/event-list-fi_FI.mo CHANGED
Binary file
languages/event-list-fi_FI.po CHANGED
@@ -4,14 +4,15 @@
4
  #
5
  # Translators:
6
  # Jarno Vesala <jarno.vesala@jvesala.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-07-18 20:36+0200\n"
12
- "PO-Revision-Date: 2015-07-19 07:07+0000\n"
13
  "Last-Translator: mibuthu\n"
14
- "Language-Team: Finnish (Finland) (http://www.transifex.com/p/wp-event-list/language/fi_FI/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -68,11 +69,11 @@ msgstr "Asetukset"
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
@@ -81,7 +82,7 @@ msgstr ""
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"
@@ -90,37 +91,37 @@ msgstr "Apu ja ohjeet"
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
@@ -132,12 +133,12 @@ msgstr ""
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
@@ -478,12 +479,16 @@ msgstr "Loppu päivämäärä"
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
  msgid "Time"
482
  msgstr "Aika"
483
 
484
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
485
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
486
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
 
 
487
  msgid "Location"
488
  msgstr "Sijainti"
489
 
@@ -856,8 +861,8 @@ msgstr "Ei tapahtumia teksti"
856
 
857
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
858
  msgid ""
859
- "This option defines the text which is displayed if no events are available "
860
- "for the selected view."
861
  msgstr ""
862
 
863
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
@@ -865,14 +870,25 @@ msgid "Multiday filter range"
865
  msgstr ""
866
 
867
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
868
- msgid "Use complete range in date filter"
869
  msgstr ""
870
 
871
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
872
  msgid ""
873
- "This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
874
- "\t If disabled only the start day of an event is considered in the filter.<br />\n"
875
- "\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
 
 
 
 
 
 
 
 
 
 
 
876
  msgstr ""
877
 
878
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
@@ -880,13 +896,19 @@ msgid "Date display"
880
  msgstr "Päivä näyttö"
881
 
882
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
883
- msgid "Show date only once per day"
884
  msgstr ""
885
 
886
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
887
  msgid ""
888
- "With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
889
- "\t If this option is 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."
 
 
 
 
 
 
890
  msgstr ""
891
 
892
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
@@ -894,106 +916,135 @@ msgid "HTML tags"
894
  msgstr "HTML merkit"
895
 
896
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
897
- msgid "Allow HTML tags in event time field"
898
- msgstr "Salli HTML merkit tapahtuman aika kentässä"
 
 
899
 
900
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
 
 
901
  msgid ""
902
- "This option specifies if HTML tags are allowed in the event start time "
903
- "field."
904
  msgstr ""
905
 
906
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
907
- msgid "Allow HTML tags in event location field"
908
- msgstr "Salli HTML merkit tapahtumapaikka kentässä"
909
 
910
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
911
  msgid ""
912
- "This option specifies if HTML tags are allowed in the event location field."
 
913
  msgstr ""
914
 
915
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
 
 
 
 
 
 
 
 
 
 
916
  msgid "Disable CSS file"
917
  msgstr "Estä CSS tiedosto"
918
 
919
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
920
- msgid "Disable the \"event-list.css\" file."
921
- msgstr "Estä \"event-list.css\" tiedosto."
 
 
 
 
 
 
922
 
923
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:63
924
  msgid ""
925
- "With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
926
- "\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
927
  msgstr ""
928
 
929
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
930
  msgid "Date format in edit form"
931
  msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
932
 
933
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
 
 
 
 
 
 
 
 
 
 
 
934
  msgid ""
935
- "This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
936
- "\t The standard is an empty string to use the wordpress standard setting.<br />\n"
937
- "\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
938
  msgstr ""
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:75
941
  msgid "Enable RSS feed"
942
  msgstr "Salli RSS syöte"
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
945
  msgid "Enable support for an event RSS feed"
946
  msgstr ""
947
 
948
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
949
  msgid ""
950
  "This option activates a RSS feed for the events.<br />\n"
951
  "\t You have to enable this option if you want to use one of the RSS feed features."
952
  msgstr ""
953
 
954
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:81
955
  msgid "Feed name"
956
  msgstr "Syötteen nimi"
957
 
958
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:82
959
  msgid ""
960
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
961
  "\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"
962
  msgstr ""
963
 
964
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
965
  msgid "Feed Description"
966
  msgstr "Syötteen kuvaus"
967
 
968
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:88
969
  msgid ""
970
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
971
  "\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."
972
  msgstr ""
973
 
974
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
975
  msgid "Listed events"
976
  msgstr "Listatut tapahtumat"
977
 
978
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
979
  msgid "Only show upcoming events in feed"
980
  msgstr ""
981
 
982
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
983
  msgid ""
984
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
985
  "\t If disabled all events (upcoming and past) will be listed."
986
  msgstr ""
987
 
988
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:100
989
  msgid "Add RSS feed link in head"
990
  msgstr ""
991
 
992
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
993
  msgid "Add RSS feed link in the html head"
994
  msgstr ""
995
 
996
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
997
  msgid ""
998
  "This option adds a RSS feed in the html head for the events.<br />\n"
999
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -1002,53 +1053,61 @@ msgid ""
1002
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
1003
  msgstr ""
1004
 
1005
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
1006
  msgid "Position of the RSS feed link"
1007
  msgstr ""
1008
 
1009
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
1010
  msgid ""
1011
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
1012
  "\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"
1013
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1014
  msgstr ""
1015
 
1016
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
1017
  msgid "Align of the RSS feed link"
1018
  msgstr ""
1019
 
1020
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
1021
  msgid ""
1022
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
1023
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
1024
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1025
  msgstr ""
1026
 
1027
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
1028
  msgid "Feed link text"
1029
  msgstr ""
1030
 
1031
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
1032
  msgid ""
1033
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
1034
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
1035
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1036
  msgstr ""
1037
 
1038
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:133
1039
  msgid "Feed link image"
1040
  msgstr ""
1041
 
1042
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
1043
  msgid "Show rss image in feed link"
1044
  msgstr ""
1045
 
1046
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
1047
  msgid ""
1048
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1049
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1050
  msgstr ""
1051
 
 
 
 
 
 
 
 
 
1052
  #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1053
  msgid ""
1054
  "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"
@@ -1139,13 +1198,21 @@ msgstr ""
1139
 
1140
  #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1141
  msgid ""
 
 
 
 
 
 
 
 
1142
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1143
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1144
  "\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"
1145
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1146
  msgstr ""
1147
 
1148
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1149
  msgid ""
1150
  "This attribute specifies if a rss feed link should be added.<br />\n"
1151
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1154,31 +1221,35 @@ msgid ""
1154
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1155
  msgstr ""
1156
 
1157
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:118
1158
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:124
1159
  msgid ""
1160
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1161
- "\t With the standard value 0 the full details are displayed.<br />\n"
1162
- "\t This attribute has no influence if only a single event is shown."
1163
  msgstr ""
1164
 
1165
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:130
 
1166
  msgid ""
1167
- "This attribute specifies that the link should follow the given url.<br />\n"
1168
- "\t The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />\n"
1169
- "\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
1170
  msgstr ""
1171
 
1172
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:136
1173
  msgid ""
1174
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1175
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1176
  msgstr ""
1177
 
1178
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:137
1179
  msgid "Event Information:"
1180
  msgstr "Tapahtuman tiedot:"
1181
 
 
 
 
 
1182
  #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1183
  msgid "This option defines the displayed title for the widget."
1184
  msgstr "Määritä vimpaimen näkyvä otsikko"
4
  #
5
  # Translators:
6
  # Jarno Vesala <jarno.vesala@jvesala.com>, 2015
7
+ # Miika R <miika.rautiainen@gmail.com>, 2015
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"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
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
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"
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
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
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
 
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
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
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
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
  "\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"
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"
1203
+ "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
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"
1211
  "\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"
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
  "\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"
languages/event-list-fr_FR.mo ADDED
Binary file
languages/event-list-fr_FR.po ADDED
@@ -0,0 +1,1392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
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 ""
languages/event-list-it_IT.mo ADDED
Binary file
languages/event-list-it_IT.po ADDED
@@ -0,0 +1,1392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Adam <caldanei@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: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
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"
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 "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"
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 "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 "
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 "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"
languages/event-list-nl_NL.mo ADDED
Binary file
languages/event-list-nl_NL.po ADDED
@@ -0,0 +1,1392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
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"
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 "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 ""
languages/event-list-pt_BR.mo ADDED
Binary file
languages/event-list-pt_BR.po ADDED
@@ -0,0 +1,1393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Fagner C. Andrade <fagner88@gmail.com>, 2015
7
+ # Glauber Portella Ornelas de Melo <glauberportella@gmail.com>, 2015
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"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
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"
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 "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"
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 ""
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"
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 ""
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"
1203
+ "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
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"
1211
+ "\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"
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"
1219
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1220
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
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 "
1265
+ "list of category slugs to only show events of the specified categories. See "
1266
+ "description of the shortcode attribute cat_filter for detailed info about "
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"
languages/event-list.pot CHANGED
@@ -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-07-18 20:36+0200\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"
@@ -450,12 +450,16 @@ 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
  msgid "Time"
454
  msgstr ""
455
 
456
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
457
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
458
  #: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
 
 
459
  msgid "Location"
460
  msgstr ""
461
 
@@ -812,7 +816,7 @@ msgid "Text for no events"
812
  msgstr ""
813
 
814
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
815
- msgid "This option defines the text which is displayed if no events are available for the selected view."
816
  msgstr ""
817
 
818
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
@@ -820,14 +824,19 @@ msgid "Multiday filter range"
820
  msgstr ""
821
 
822
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
823
- msgid "Use complete range in date filter"
824
  msgstr ""
825
 
826
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
827
- msgid ""
828
- "This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
829
- "\t If disabled only the start day of an event is considered in the filter.<br />\n"
830
- "\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
 
 
 
 
 
831
  msgstr ""
832
 
833
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
@@ -835,13 +844,15 @@ msgid "Date display"
835
  msgstr ""
836
 
837
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
838
- msgid "Show date only once per day"
839
  msgstr ""
840
 
841
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
842
- msgid ""
843
- "With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
844
- "\t If this option is 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."
 
 
845
  msgstr ""
846
 
847
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
@@ -849,103 +860,125 @@ msgid "HTML tags"
849
  msgstr ""
850
 
851
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
852
- msgid "Allow HTML tags in event time field"
 
 
853
  msgstr ""
854
 
855
  #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
856
- msgid "This option specifies if HTML tags are allowed in the event start time field."
 
 
857
  msgstr ""
858
 
859
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
860
- msgid "Allow HTML tags in event location field"
861
  msgstr ""
862
 
863
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
864
- msgid "This option specifies if HTML tags are allowed in the event location field."
865
  msgstr ""
866
 
867
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
 
 
 
 
 
 
 
 
868
  msgid "Disable CSS file"
869
  msgstr ""
870
 
871
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
872
- msgid "Disable the \"event-list.css\" file."
 
873
  msgstr ""
874
 
875
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:63
876
- msgid ""
877
- "With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
878
- "\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
879
  msgstr ""
880
 
881
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
 
 
 
 
882
  msgid "Date format in edit form"
883
  msgstr ""
884
 
885
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
886
- msgid ""
887
- "This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
888
- "\t The standard is an empty string to use the wordpress standard setting.<br />\n"
889
- "\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
 
 
 
 
 
 
890
  msgstr ""
891
 
892
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:75
893
  msgid "Enable RSS feed"
894
  msgstr ""
895
 
896
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
897
  msgid "Enable support for an event RSS feed"
898
  msgstr ""
899
 
900
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
901
  msgid ""
902
  "This option activates a RSS feed for the events.<br />\n"
903
  "\t You have to enable this option if you want to use one of the RSS feed features."
904
  msgstr ""
905
 
906
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:81
907
  msgid "Feed name"
908
  msgstr ""
909
 
910
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:82
911
  msgid ""
912
  "This options sets the feed name. The standard value is \"event-list\".<br />\n"
913
  "\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"
914
  msgstr ""
915
 
916
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
917
  msgid "Feed Description"
918
  msgstr ""
919
 
920
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:88
921
  msgid ""
922
  "This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
923
  "\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."
924
  msgstr ""
925
 
926
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
927
  msgid "Listed events"
928
  msgstr ""
929
 
930
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
931
  msgid "Only show upcoming events in feed"
932
  msgstr ""
933
 
934
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
935
  msgid ""
936
  "If this option is enabled only the upcoming events are listed in the feed.<br />\n"
937
  "\t If disabled all events (upcoming and past) will be listed."
938
  msgstr ""
939
 
940
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:100
941
  msgid "Add RSS feed link in head"
942
  msgstr ""
943
 
944
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
945
  msgid "Add RSS feed link in the html head"
946
  msgstr ""
947
 
948
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
949
  msgid ""
950
  "This option adds a RSS feed in the html head for the events.<br />\n"
951
  "\t You have 2 possibilities to include the RSS feed:<br />\n"
@@ -954,53 +987,61 @@ msgid ""
954
  "\t This option is only valid if the option \"Enable RSS feed\" is enabled."
955
  msgstr ""
956
 
957
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
958
  msgid "Position of the RSS feed link"
959
  msgstr ""
960
 
961
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
962
  msgid ""
963
  "This option specifies the position of the RSS feed link in the event list.<br />\n"
964
  "\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"
965
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
966
  msgstr ""
967
 
968
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
969
  msgid "Align of the RSS feed link"
970
  msgstr ""
971
 
972
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
973
  msgid ""
974
  "This option specifies the align of the RSS feed link in the event list.<br />\n"
975
  "\t The link can be displayed on the left side, centered or on the right.<br />\n"
976
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
977
  msgstr ""
978
 
979
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
980
  msgid "Feed link text"
981
  msgstr ""
982
 
983
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
984
  msgid ""
985
  "This option specifies the caption of the RSS feed link in the event list.<br />\n"
986
  "\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
987
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
988
  msgstr ""
989
 
990
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:133
991
  msgid "Feed link image"
992
  msgstr ""
993
 
994
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
995
  msgid "Show rss image in feed link"
996
  msgstr ""
997
 
998
- #: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
999
  msgid ""
1000
  "This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
1001
  "\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
1002
  msgstr ""
1003
 
 
 
 
 
 
 
 
 
1004
  #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
1005
  msgid ""
1006
  "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"
@@ -1091,13 +1132,21 @@ msgstr ""
1091
 
1092
  #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
1093
  msgid ""
 
 
 
 
 
 
 
 
1094
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1095
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1096
  "\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"
1097
  "\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
1098
  msgstr ""
1099
 
1100
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
1101
  msgid ""
1102
  "This attribute specifies if a rss feed link should be added.<br />\n"
1103
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1106,31 +1155,35 @@ msgid ""
1106
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1107
  msgstr ""
1108
 
1109
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:118
1110
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:124
1111
  msgid ""
1112
- "This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
1113
- "\t With the standard value 0 the full details are displayed.<br />\n"
1114
- "\t This attribute has no influence if only a single event is shown."
1115
  msgstr ""
1116
 
1117
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:130
 
1118
  msgid ""
1119
- "This attribute specifies that the link should follow the given url.<br />\n"
1120
- "\t The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />\n"
1121
- "\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
1122
  msgstr ""
1123
 
1124
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:136
1125
  msgid ""
1126
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1127
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1128
  msgstr ""
1129
 
1130
- #: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:137
1131
  msgid "Event Information:"
1132
  msgstr ""
1133
 
 
 
 
 
1134
  #: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
1135
  msgid "This option defines the displayed title for the widget."
1136
  msgstr ""
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"
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
 
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
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
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
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
  "\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"
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"
1137
+ "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n"
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"
1145
  "\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"
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
  "\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 ""
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.3
7
- Stable tag: 0.7.5
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,21 @@ Another possibility would be to call the wordpress function "do_shortcode()".
82
 
83
  == Changelog ==
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  = 0.7.5 (2015-07-19) =
86
  * added support for transifex localization platform
87
  * added sorting option (see initial_order shortcode option)
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
 
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
88
+ * show "url_to_page" shortcode attribute in the documentation
89
+ * fixed wrong date format in events import sample
90
+ * some help texts improvements
91
+ * updated translation de_DE (78%) and fi_FI (35%)
92
+ * added italian translation it_IT (69%)
93
+ * added portuguese translation pt_BR (58%)
94
+ * added dutch translation nl_NL (46%)
95
+ * added spanish translation es_ES (39%)
96
+ * added spanish translation es_AR (18%)
97
+ * added frensh translation fr_FR (0%)
98
+ * Thanks to all translators at transifex!
99
+
100
  = 0.7.5 (2015-07-19) =
101
  * added support for transifex localization platform
102
  * added sorting option (see initial_order shortcode option)