Event List - Version 0.8.4

Version Description

(2020-10-30) = * added support for excerpts in events * added support for authors in events * changed path for upgrade logfile

Download this release

Release Info

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

Code changes from version 0.8.3 to 0.8.4

Files changed (43) hide show
  1. admin/admin.php +1 -2
  2. admin/includes/upgrade.php +8 -7
  3. event-list.php +4 -4
  4. includes/event.php +5 -2
  5. includes/events_post_type.php +1 -1
  6. includes/sc_event-list.php +51 -3
  7. includes/sc_event-list_helptexts.php +5 -0
  8. includes/widget.php +2 -0
  9. includes/widget_helptexts.php +7 -0
  10. languages/event-list-da_DK.mo +0 -0
  11. languages/event-list-da_DK.po +52 -37
  12. languages/event-list-de_DE.mo +0 -0
  13. languages/event-list-de_DE.po +52 -37
  14. languages/event-list-es_AR.mo +0 -0
  15. languages/event-list-es_AR.po +52 -37
  16. languages/event-list-es_ES.mo +0 -0
  17. languages/event-list-es_ES.po +52 -37
  18. languages/event-list-et_EE.mo +0 -0
  19. languages/event-list-et_EE.po +52 -37
  20. languages/event-list-fi_FI.mo +0 -0
  21. languages/event-list-fi_FI.po +52 -37
  22. languages/event-list-fr_FR.mo +0 -0
  23. languages/event-list-fr_FR.po +143 -127
  24. languages/event-list-id_ID.mo +0 -0
  25. languages/event-list-id_ID.po +52 -37
  26. languages/event-list-it_IT.mo +0 -0
  27. languages/event-list-it_IT.po +52 -37
  28. languages/event-list-nl_NL.mo +0 -0
  29. languages/event-list-nl_NL.po +52 -37
  30. languages/event-list-pl_PL.mo +0 -0
  31. languages/event-list-pl_PL.po +53 -38
  32. languages/event-list-pt_BR.mo +0 -0
  33. languages/event-list-pt_BR.po +52 -37
  34. languages/event-list-sk_SK.mo +0 -0
  35. languages/event-list-sk_SK.po +60 -44
  36. languages/event-list-sl_SI.mo +0 -0
  37. languages/event-list-sl_SI.po +52 -37
  38. languages/event-list-sv_SE.mo +0 -0
  39. languages/event-list-sv_SE.po +52 -37
  40. languages/event-list-zh_CN.mo +0 -0
  41. languages/event-list-zh_CN.po +52 -37
  42. languages/event-list.pot +51 -36
  43. readme.txt +10 -5
admin/admin.php CHANGED
@@ -51,11 +51,10 @@ class EL_Admin {
51
  if($this->show_upgr_message) {
52
  // load upgrade class
53
  require_once(EL_PATH.'admin/includes/upgrade.php');
54
- $logfile = str_replace(EL_PATH, EL_URL, EL_Upgrade::get_instance()->logfile);
55
  $error = 2 == $this->show_upgr_message;
56
  $class = $error ? 'error' : 'updated fade';
57
  $title = sprintf($error ? __('Errors during upgrade of plugin %1$s','event-list') : __('Upgrade of plugin %1$s successful','event-list'), '"Event List"');
58
- $logfile = ' (<a href="'.$logfile.'">upgrade log</a>)';
59
  echo '<div id="message" class="'.$class.'"><p><strong>'.$title.'</strong>'.$logfile.'</p></div>';
60
  }
61
  }
51
  if($this->show_upgr_message) {
52
  // load upgrade class
53
  require_once(EL_PATH.'admin/includes/upgrade.php');
 
54
  $error = 2 == $this->show_upgr_message;
55
  $class = $error ? 'error' : 'updated fade';
56
  $title = sprintf($error ? __('Errors during upgrade of plugin %1$s','event-list') : __('Upgrade of plugin %1$s successful','event-list'), '"Event List"');
57
+ $logfile = ' (<a href="'.content_url(EL_Upgrade::get_instance()->logfile).'">upgrade log</a>)';
58
  echo '<div id="message" class="'.$class.'"><p><strong>'.$title.'</strong>'.$logfile.'</p></div>';
59
  }
60
  }
admin/includes/upgrade.php CHANGED
@@ -28,7 +28,7 @@ class EL_Upgrade {
28
  }
29
 
30
  private function __construct() {
31
- $this->logfile = EL_PATH.'upgrade.log';
32
  }
33
 
34
  public function upgrade() {
@@ -456,20 +456,21 @@ class EL_Upgrade {
456
  }
457
 
458
  private function logfile_init() {
 
459
  // rename all existing log files and remove files older than 90 days
460
- if(file_exists($this->logfile) && empty($this->resume_version)) {
461
  // delete file if it is too old
462
- if(filemtime($this->logfile) < time() - 30*24*60*60) {
463
- if(!@unlink($this->logfile)) {
464
- error_log('"'.$this->logfile.'" cannot be deleted! No upgrade log file will be written!');
465
  return false;
466
  }
467
  }
468
  }
469
  // open logfile for writing
470
- $this->logfile_handle = @fopen($this->logfile, 'a');
471
  if(empty($this->logfile_handle)) {
472
- error_log('"'.$this->logfile.'" cannot be opened for writing! No upgrade log file will be written!');
473
  return false;
474
  }
475
  return true;
28
  }
29
 
30
  private function __construct() {
31
+ $this->logfile = 'event-list_upgrade.log';
32
  }
33
 
34
  public function upgrade() {
456
  }
457
 
458
  private function logfile_init() {
459
+ $logfile_path = WP_CONTENT_DIR . $this->logfile;
460
  // rename all existing log files and remove files older than 90 days
461
+ if(file_exists($logfile_path) && empty($this->resume_version)) {
462
  // delete file if it is too old
463
+ if(filemtime($logfile_path) < time() - 30*24*60*60) {
464
+ if(!@unlink($logfile_path)) {
465
+ error_log('The logfile "'.$logfile_path.'" cannot be deleted! No upgrade log file will be written!');
466
  return false;
467
  }
468
  }
469
  }
470
  // open logfile for writing
471
+ $this->logfile_handle = @fopen($logfile_path, 'a');
472
  if(empty($this->logfile_handle)) {
473
+ error_log('The logfile "'.$logfile_path.'" cannot be opened for writing! No upgrade log file will be written!');
474
  return false;
475
  }
476
  return true;
event-list.php CHANGED
@@ -1,16 +1,16 @@
1
  <?php
2
  /*
3
  Plugin Name: Event List
4
- Plugin URI: http://wordpress.org/extend/plugins/event-list/
5
  Description: Manage your events and show them in a list view on your site.
6
- Version: 0.8.3
7
  Author: mibuthu
8
- Author URI: http://wordpress.org/extend/plugins/event-list/
9
  Text Domain: event-list
10
  License: GPLv2
11
 
12
  A plugin for the blogging MySQL/PHP-based WordPress.
13
- Copyright 2012-2018 mibuthu
14
 
15
  This program is free software; you can redistribute it and/or
16
  modify it under the terms of the GNUs General Public License
1
  <?php
2
  /*
3
  Plugin Name: Event List
4
+ Plugin URI: https://wordpress.org/plugins/event-list/
5
  Description: Manage your events and show them in a list view on your site.
6
+ Version: 0.8.4
7
  Author: mibuthu
8
+ Author URI: https://wordpress.org/plugins/event-list/
9
  Text Domain: event-list
10
  License: GPLv2
11
 
12
  A plugin for the blogging MySQL/PHP-based WordPress.
13
+ Copyright 2012-2020 mibuthu
14
 
15
  This program is free software; you can redistribute it and/or
16
  modify it under the terms of the GNUs General Public License
includes/event.php CHANGED
@@ -19,6 +19,7 @@ class EL_Event {
19
  public $enddate = '0000-00-00';
20
  public $starttime = '';
21
  public $location = '';
 
22
  public $content = '';
23
 
24
  public function __construct($post) {
@@ -37,6 +38,7 @@ class EL_Event {
37
 
38
  private function load_eventdata() {
39
  $this->title = $this->post->post_title;
 
40
  $this->content = $this->post->post_content;
41
  $postmeta = get_post_meta($this->post->ID);
42
  foreach(array('startdate', 'enddate', 'starttime', 'location') as $meta) {
@@ -54,6 +56,7 @@ class EL_Event {
54
  $postdata['post_type'] = 'el_events';
55
  $postdata['post_status'] = 'publish';
56
  $postdata['post_title'] = $eventdata['title'];
 
57
  $postdata['post_content'] = $eventdata['content'];
58
  if(isset($eventdata['slug'])) {
59
  $postdata['post_name'] = $eventdata['slug'];
@@ -272,10 +275,10 @@ class EL_Event {
272
  // Print ellipsis ("...") if the html was truncated
273
  if($truncated) {
274
  if($link) {
275
- $out .= ' <a href="'.$link.'">&hellip;</a>';
276
  }
277
  else {
278
- $out .= ' &hellip;';
279
  }
280
  }
281
  // Close any open tags.
19
  public $enddate = '0000-00-00';
20
  public $starttime = '';
21
  public $location = '';
22
+ public $excerpt = '';
23
  public $content = '';
24
 
25
  public function __construct($post) {
38
 
39
  private function load_eventdata() {
40
  $this->title = $this->post->post_title;
41
+ $this->excerpt = $this->post->post_excerpt;
42
  $this->content = $this->post->post_content;
43
  $postmeta = get_post_meta($this->post->ID);
44
  foreach(array('startdate', 'enddate', 'starttime', 'location') as $meta) {
56
  $postdata['post_type'] = 'el_events';
57
  $postdata['post_status'] = 'publish';
58
  $postdata['post_title'] = $eventdata['title'];
59
+ $postdata['post_excerpt'] = $eventdata['excerpt'];
60
  $postdata['post_content'] = $eventdata['content'];
61
  if(isset($eventdata['slug'])) {
62
  $postdata['post_name'] = $eventdata['slug'];
275
  // Print ellipsis ("...") if the html was truncated
276
  if($truncated) {
277
  if($link) {
278
+ $out .= ' <a href="'.$link.'"> [read more...]</a>';
279
  }
280
  else {
281
+ $out .= ' [read more...]';
282
  }
283
  }
284
  // Close any open tags.
includes/events_post_type.php CHANGED
@@ -93,7 +93,7 @@ class EL_Events_Post_Type {
93
  'menu_position' => 23,
94
  'menu_icon' => 'dashicons-calendar-alt',
95
  'capability_type' => 'post',
96
- 'supports'=> array('title', 'editor', 'revisions', 'autor', 'thumbnail'),
97
  'register_meta_box_cb' => null,
98
  'taxonomies' => $this->use_post_categories ? array($this->post_cat_taxonomy) : array(),
99
  'has_archive' => true,
93
  'menu_position' => 23,
94
  'menu_icon' => 'dashicons-calendar-alt',
95
  'capability_type' => 'post',
96
+ 'supports'=> array('title', 'editor', 'revisions', 'author', 'thumbnail', 'excerpt',),
97
  'register_meta_box_cb' => null,
98
  'taxonomies' => $this->use_post_categories ? array($this->post_cat_taxonomy) : array(),
99
  'has_archive' => true,
includes/sc_event-list.php CHANGED
@@ -48,7 +48,8 @@ class SC_Event_List {
48
  'show_location' => array('std_val' => 'true'),
49
  'location_length' => array('std_val' => '0'),
50
  'show_cat' => array('std_val' => 'false'),
51
- 'show_content' => array('std_val' => 'true'),
 
52
  'content_length' => array('std_val' => '0'),
53
  'collapse_content' => array('std_val' => 'false'),
54
  'link_to_event' => array('std_val' => 'event_list_only'),
@@ -231,6 +232,10 @@ class SC_Event_List {
231
  if( $this->is_visible( $a['show_cat'] ) ) {
232
  $out .= '<div class="event-cat">'.esc_attr(implode(', ', $event->get_category_names())).'</div>';
233
  }
 
 
 
 
234
  // event content
235
  if( $this->is_visible( $a['show_content'] ) ) {
236
  $out .= $this->get_content($event, $a);
@@ -247,7 +252,7 @@ class SC_Event_List {
247
  ';
248
  if($startdate === $enddate) {
249
  // one day event
250
- $out .= '<div class="event-date">';
251
  if($single_day_only ) {
252
  $out .= '<div class="startdate">';
253
  }
@@ -393,6 +398,49 @@ class SC_Event_List {
393
  }
394
  }
395
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  private function get_content(&$event, &$a) {
397
  // check if content is available
398
  if('' == $event->content) {
@@ -413,7 +461,7 @@ class SC_Event_List {
413
  $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
414
  }
415
  else {
416
- $more_link_text = __('(more&hellip;)');
417
  }
418
  //content with more-link
419
  $content = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->post->ID, $more_link_text));
48
  'show_location' => array('std_val' => 'true'),
49
  'location_length' => array('std_val' => '0'),
50
  'show_cat' => array('std_val' => 'false'),
51
+ 'show_excerpt' => array('std_val' => 'event_list_only'),
52
+ 'show_content' => array('std_val' => 'single_event_only'),
53
  'content_length' => array('std_val' => '0'),
54
  'collapse_content' => array('std_val' => 'false'),
55
  'link_to_event' => array('std_val' => 'event_list_only'),
232
  if( $this->is_visible( $a['show_cat'] ) ) {
233
  $out .= '<div class="event-cat">'.esc_attr(implode(', ', $event->get_category_names())).'</div>';
234
  }
235
+ // event excerpt
236
+ if( $this->is_visible( $a['show_excerpt'] ) ) {
237
+ $out .= $this->get_excerpt($event, $a);
238
+ }
239
  // event content
240
  if( $this->is_visible( $a['show_content'] ) ) {
241
  $out .= $this->get_content($event, $a);
252
  ';
253
  if($startdate === $enddate) {
254
  // one day event
255
+ $out .= '<div class="event-date single-date">';
256
  if($single_day_only ) {
257
  $out .= '<div class="startdate">';
258
  }
398
  }
399
  }
400
 
401
+ private function get_excerpt(&$event, &$a) {
402
+ // check if excerpt is available
403
+ $truncate_url = false;
404
+ if('' == $event->excerpt) {
405
+ // check and handle the read more tag if available
406
+ //search fore more-tag (no more tag handling if truncate of content is set)
407
+ if(preg_match('/<!--more(.*?)?-->/', $event->content, $matches)) {
408
+ $part = explode($matches[0], $event->content, 2);
409
+ //set more-link text
410
+ if(!empty($matches[1])) {
411
+ $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
412
+ }
413
+ else {
414
+ $more_link_text = __(' [read more&hellip;]');
415
+ }
416
+ //content with more-link
417
+ $excerpt = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->post->ID, $more_link_text));
418
+ // return more-link content
419
+ return '<div class="event-excerpt"><p>'.$excerpt.'</p></div>';
420
+ }
421
+ else {
422
+ //normal content - make excerpt
423
+ $content = $event->content;
424
+ if($this->is_link_available($a, $event)) {
425
+ $truncate_url = $this->get_event_url($a, $event->post->ID);
426
+ }
427
+ $excerpt = $event->truncate(do_shortcode(wpautop($content)), $a['content_length'], $this->single_event, true, $truncate_url);
428
+ // return truncated content
429
+ return '<div class="event-excerpt">'.$excerpt.'</div>';
430
+ }
431
+ }
432
+ else {
433
+ //custom excerpt
434
+ $excerpt = $event->excerpt;
435
+ if($this->is_link_available($a, $event)) {
436
+ $truncate_url = $this->get_event_url($a, $event->post->ID);
437
+ }
438
+ // return custom excerpt
439
+ return '<div class="event-excerpt"><p>'.$excerpt.'</p></div>';
440
+ }
441
+ }
442
+
443
+
444
  private function get_content(&$event, &$a) {
445
  // check if content is available
446
  if('' == $event->content) {
461
  $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
462
  }
463
  else {
464
+ $more_link_text = __('[ read more&hellip;]');
465
  }
466
  //content with more-link
467
  $content = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->post->ID, $more_link_text));
includes/sc_event-list_helptexts.php CHANGED
@@ -96,6 +96,11 @@ $sc_eventlist_helptexts = array(
96
  Choose "false" to always hide and "true" to always show the category.<br />
97
  With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event','event-list')),
98
 
 
 
 
 
 
99
  'show_content' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
100
  'desc' => __('This attribute specifies if the content is displayed in the event list.<br />
101
  Choose "false" to always hide and "true" to always show the content.<br />
96
  Choose "false" to always hide and "true" to always show the category.<br />
97
  With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event','event-list')),
98
 
99
+ 'show_excerpt' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
100
+ 'desc' => __('This attribute specifies if the excerpt is displayed in the event list.<br />
101
+ Choose "false" to always hide and "true" to always show the excerpt.<br />
102
+ With "event_list_only" the excerpt is only visible in the event list and with "single_event_only" only for a single event','event-list')),
103
+
104
  'show_content' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
105
  'desc' => __('This attribute specifies if the content is displayed in the event list.<br />
106
  Choose "false" to always hide and "true" to always show the content.<br />
includes/widget.php CHANGED
@@ -29,6 +29,7 @@ class EL_Widget extends WP_Widget {
29
  'show_starttime' => array('std_value' => 'true'),
30
  'show_location' => array('std_value' => 'false'),
31
  'location_length' => array('std_value' => '0'),
 
32
  'show_content' => array('std_value' => 'false'),
33
  'content_length' => array('std_value' => '0'),
34
  'url_to_page' => array('std_value' => ''),
@@ -75,6 +76,7 @@ class EL_Widget extends WP_Widget {
75
  $shortcode .= ' show_starttime='.$instance['show_starttime'];
76
  $shortcode .= ' show_location='.$instance['show_location'];
77
  $shortcode .= ' location_length='.$instance['location_length'];
 
78
  $shortcode .= ' show_content='.$instance['show_content'];
79
  $shortcode .= ' content_length='.$instance['content_length'];
80
  if($linked_page_is_set && $linked_page_id_is_set) {
29
  'show_starttime' => array('std_value' => 'true'),
30
  'show_location' => array('std_value' => 'false'),
31
  'location_length' => array('std_value' => '0'),
32
+ 'show_excerpt' => array('std_value' => 'false'),
33
  'show_content' => array('std_value' => 'false'),
34
  'content_length' => array('std_value' => '0'),
35
  'url_to_page' => array('std_value' => ''),
76
  $shortcode .= ' show_starttime='.$instance['show_starttime'];
77
  $shortcode .= ' show_location='.$instance['show_location'];
78
  $shortcode .= ' location_length='.$instance['location_length'];
79
+ $shortcode .= ' show_excerpt='.$instance['show_excerpt'];
80
  $shortcode .= ' show_content='.$instance['show_content'];
81
  $shortcode .= ' content_length='.$instance['content_length'];
82
  if($linked_page_is_set && $linked_page_id_is_set) {
includes/widget_helptexts.php CHANGED
@@ -55,6 +55,13 @@ $widget_items_helptexts = array(
55
  'form_style' => 'margin:0 0 0.6em 0.9em',
56
  'form_width' => 40),
57
 
 
 
 
 
 
 
 
58
  'show_content' => array('type' => 'checkbox',
59
  'caption' => __('Show event content','event-list'),
60
  'caption_after' => null,
55
  'form_style' => 'margin:0 0 0.6em 0.9em',
56
  'form_width' => 40),
57
 
58
+ 'show_excerpt' => array('type' => 'checkbox',
59
+ 'caption' => __('Show event excerpt','event-list'),
60
+ 'caption_after' => null,
61
+ 'tooltip' => __('This option defines if the event excerpt will be displayed.','event-list'),
62
+ 'form_style' => 'margin:0 0 0.2em 0',
63
+ 'form_width' => null),
64
+
65
  'show_content' => array('type' => 'checkbox',
66
  'caption' => __('Show event content','event-list'),
67
  'caption_after' => null,
languages/event-list-da_DK.mo CHANGED
Binary file
languages/event-list-da_DK.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: da_DK\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Event List indstillinger"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Indstillinger"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Om Event List"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Om"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -107,11 +107,11 @@ msgid ""
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
111
  msgid "Add links to the single events"
112
  msgstr "Tilføj links til enkeltbegivenhederne"
113
 
114
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
115
  msgid "Add a link to the Event List page"
116
  msgstr "Tilføj links til Event List-siden"
117
 
@@ -884,7 +884,7 @@ msgstr "Tidligere"
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:107
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
@@ -1515,7 +1515,7 @@ msgstr ""
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
- #: includes/sc_event-list_helptexts.php:104
1519
  msgid "number"
1520
  msgstr ""
1521
 
@@ -1744,7 +1744,7 @@ msgstr ""
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
- #: includes/sc_event-list_helptexts.php:107
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,23 +1771,30 @@ msgstr ""
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
 
 
 
 
 
 
 
1774
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1775
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1776
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1777
  msgstr ""
1778
 
1779
- #: includes/sc_event-list_helptexts.php:105
1780
  msgid ""
1781
  "This attribute specifies if the content should be truncate to the given "
1782
  "number of characters in the event list."
1783
  msgstr ""
1784
 
1785
- #: includes/sc_event-list_helptexts.php:106
1786
  #, php-format
1787
  msgid "With the standard value %1$s the full text is displayed."
1788
  msgstr ""
1789
 
1790
- #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1793
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1795,7 +1802,7 @@ msgid ""
1795
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1796
  msgstr ""
1797
 
1798
- #: includes/sc_event-list_helptexts.php:116
1799
  msgid ""
1800
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1801
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1803,7 +1810,7 @@ msgid ""
1803
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1804
  msgstr ""
1805
 
1806
- #: includes/sc_event-list_helptexts.php:122
1807
  msgid ""
1808
  "This attribute specifies if a rss feed link should be added.<br />\n"
1809
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1812,20 +1819,20 @@ msgid ""
1812
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1813
  msgstr ""
1814
 
1815
- #: includes/sc_event-list_helptexts.php:128
1816
  msgid ""
1817
  "This attribute specifies the page or post url for event links.<br />\n"
1818
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1819
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1820
  msgstr ""
1821
 
1822
- #: includes/sc_event-list_helptexts.php:135
1823
  msgid ""
1824
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1825
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1826
  msgstr ""
1827
 
1828
- #: includes/sc_event-list.php:135
1829
  msgid "Event Information:"
1830
  msgstr ""
1831
 
@@ -1859,7 +1866,7 @@ msgid "Truncate event title to"
1859
  msgstr ""
1860
 
1861
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1862
- #: includes/widget_helptexts.php:67
1863
  msgid "characters"
1864
  msgstr ""
1865
 
@@ -1902,68 +1909,76 @@ msgid ""
1902
  msgstr ""
1903
 
1904
  #: includes/widget_helptexts.php:59
1905
- msgid "Show event content"
1906
  msgstr ""
1907
 
1908
  #: includes/widget_helptexts.php:61
1909
- msgid "This option defines if the event content will be displayed."
1910
  msgstr ""
1911
 
1912
  #: includes/widget_helptexts.php:66
1913
- msgid "Truncate content to"
1914
  msgstr ""
1915
 
1916
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1917
  msgid ""
1918
  "If the event content are diplayed this option defines the number of diplayed"
1919
  " characters."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:69
1923
  #, php-format
1924
  msgid "Set this value to %1$s to view the full text."
1925
  msgstr ""
1926
 
1927
- #: includes/widget_helptexts.php:74
1928
  msgid "URL to the linked Event List page"
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:76
1932
  msgid ""
1933
  "This option defines the url to the linked Event List page. This option is "
1934
  "required if you want to use one of the options below."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:81
1938
  msgid "Shortcode ID on linked page"
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:83
1942
  msgid ""
1943
  "This option defines the shortcode-id for the Event List on the linked page. "
1944
  "Normally the standard value 1 is correct, you only have to change it if you "
1945
  "use multiple event-list shortcodes on the linked page."
1946
  msgstr ""
1947
 
1948
- #: includes/widget_helptexts.php:90
1949
  msgid ""
1950
  "With this option you can add a link to the single event page for every "
1951
  "displayed event. You have to specify the url to the page and the shortcode "
1952
  "id option if you want to use it."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:97
1956
  msgid ""
1957
  "With this option you can add a link to the event-list page below the "
1958
  "diplayed events. You have to specify the url to page option if you want to "
1959
  "use it."
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:102
1963
  msgid "Caption for the link"
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:104
1967
  msgid ""
1968
  "This option defines the text for the link to the Event List page if the "
1969
  "approriate option is selected."
@@ -1977,6 +1992,6 @@ msgstr "Med denne widget kan en liste over alle kommende begivenheder vises."
1977
  msgid "Upcoming events"
1978
  msgstr "Kommende begivenheder"
1979
 
1980
- #: includes/widget.php:38
1981
  msgid "show events page"
1982
  msgstr "Vis begivenheds-side"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: da_DK\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Event List indstillinger"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Indstillinger"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Om Event List"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "Om"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
111
  msgid "Add links to the single events"
112
  msgstr "Tilføj links til enkeltbegivenhederne"
113
 
114
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
115
  msgid "Add a link to the Event List page"
116
  msgstr "Tilføj links til Event List-siden"
117
 
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
+ #: includes/event.php:110
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
+ #: includes/sc_event-list_helptexts.php:109
1519
  msgid "number"
1520
  msgstr ""
1521
 
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
+ #: includes/sc_event-list_helptexts.php:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
1774
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1775
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1776
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1777
+ msgstr ""
1778
+
1779
+ #: includes/sc_event-list_helptexts.php:105
1780
+ msgid ""
1781
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1782
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1783
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1784
  msgstr ""
1785
 
1786
+ #: includes/sc_event-list_helptexts.php:110
1787
  msgid ""
1788
  "This attribute specifies if the content should be truncate to the given "
1789
  "number of characters in the event list."
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:111
1793
  #, php-format
1794
  msgid "With the standard value %1$s the full text is displayed."
1795
  msgstr ""
1796
 
1797
+ #: includes/sc_event-list_helptexts.php:115
1798
  msgid ""
1799
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1800
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1802
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:121
1806
  msgid ""
1807
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1808
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1810
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:127
1814
  msgid ""
1815
  "This attribute specifies if a rss feed link should be added.<br />\n"
1816
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1819
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1820
  msgstr ""
1821
 
1822
+ #: includes/sc_event-list_helptexts.php:133
1823
  msgid ""
1824
  "This attribute specifies the page or post url for event links.<br />\n"
1825
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1826
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1827
  msgstr ""
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:140
1830
  msgid ""
1831
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1832
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1833
  msgstr ""
1834
 
1835
+ #: includes/sc_event-list.php:136
1836
  msgid "Event Information:"
1837
  msgstr ""
1838
 
1866
  msgstr ""
1867
 
1868
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1869
+ #: includes/widget_helptexts.php:74
1870
  msgid "characters"
1871
  msgstr ""
1872
 
1909
  msgstr ""
1910
 
1911
  #: includes/widget_helptexts.php:59
1912
+ msgid "Show event excerpt"
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:61
1916
+ msgid "This option defines if the event excerpt will be displayed."
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:66
1920
+ msgid "Show event content"
1921
  msgstr ""
1922
 
1923
  #: includes/widget_helptexts.php:68
1924
+ msgid "This option defines if the event content will be displayed."
1925
+ msgstr ""
1926
+
1927
+ #: includes/widget_helptexts.php:73
1928
+ msgid "Truncate content to"
1929
+ msgstr ""
1930
+
1931
+ #: includes/widget_helptexts.php:75
1932
  msgid ""
1933
  "If the event content are diplayed this option defines the number of diplayed"
1934
  " characters."
1935
  msgstr ""
1936
 
1937
+ #: includes/widget_helptexts.php:76
1938
  #, php-format
1939
  msgid "Set this value to %1$s to view the full text."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:81
1943
  msgid "URL to the linked Event List page"
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:83
1947
  msgid ""
1948
  "This option defines the url to the linked Event List page. This option is "
1949
  "required if you want to use one of the options below."
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:88
1953
  msgid "Shortcode ID on linked page"
1954
  msgstr ""
1955
 
1956
+ #: includes/widget_helptexts.php:90
1957
  msgid ""
1958
  "This option defines the shortcode-id for the Event List on the linked page. "
1959
  "Normally the standard value 1 is correct, you only have to change it if you "
1960
  "use multiple event-list shortcodes on the linked page."
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:97
1964
  msgid ""
1965
  "With this option you can add a link to the single event page for every "
1966
  "displayed event. You have to specify the url to the page and the shortcode "
1967
  "id option if you want to use it."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "With this option you can add a link to the event-list page below the "
1973
  "diplayed events. You have to specify the url to page option if you want to "
1974
  "use it."
1975
  msgstr ""
1976
 
1977
+ #: includes/widget_helptexts.php:109
1978
  msgid "Caption for the link"
1979
  msgstr ""
1980
 
1981
+ #: includes/widget_helptexts.php:111
1982
  msgid ""
1983
  "This option defines the text for the link to the Event List page if the "
1984
  "approriate option is selected."
1992
  msgid "Upcoming events"
1993
  msgstr "Kommende begivenheder"
1994
 
1995
+ #: includes/widget.php:39
1996
  msgid "show events page"
1997
  msgstr "Vis begivenheds-side"
languages/event-list-de_DE.mo CHANGED
Binary file
languages/event-list-de_DE.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -12,8 +12,8 @@ msgid ""
12
  msgstr ""
13
  "Project-Id-Version: wp-event-list\n"
14
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
15
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
16
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
17
  "Last-Translator: mibuthu\n"
18
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
19
  "MIME-Version: 1.0\n"
@@ -22,33 +22,33 @@ msgstr ""
22
  "Language: de_DE\n"
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
 
25
- #: admin/admin.php:57
26
  #, php-format
27
  msgid "Errors during upgrade of plugin %1$s"
28
  msgstr "Fehler während des %1$s Plugin Upgrades"
29
 
30
- #: admin/admin.php:57
31
  #, php-format
32
  msgid "Upgrade of plugin %1$s successful"
33
  msgstr "Upgrade des Plugins %1$s erfolgreich"
34
 
35
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Event List Einstellungen"
38
 
39
- #: admin/admin.php:106
40
  msgid "Settings"
41
  msgstr "Einstellungen"
42
 
43
- #: admin/admin.php:110 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Informationen zu Event List"
46
 
47
- #: admin/admin.php:110
48
  msgid "About"
49
  msgstr "Informationen"
50
 
51
- #: admin/admin.php:132
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
@@ -111,11 +111,11 @@ msgid ""
111
  " to insert an URL to the linked event-list page."
112
  msgstr "Wenn eine der Link Optionen (%1$s oder %2$s) im Widget verwendet werden, dann muss die URL zur verlinkten Event-List Seite angegeben werden."
113
 
114
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
115
  msgid "Add links to the single events"
116
  msgstr "Füge Links zu den einzelnen Terminen ein"
117
 
118
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
119
  msgid "Add a link to the Event List page"
120
  msgstr "Füge einen Link zur Event List Seite hinzu"
121
 
@@ -888,7 +888,7 @@ msgstr "Beendet"
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
890
 
891
- #: includes/event.php:107
892
  msgid "No valid start date provided"
893
  msgstr "Kein gültiges Start-Datum angegeben"
894
 
@@ -1519,7 +1519,7 @@ msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1
1519
  #: includes/sc_event-list_helptexts.php:33
1520
  #: includes/sc_event-list_helptexts.php:74
1521
  #: includes/sc_event-list_helptexts.php:89
1522
- #: includes/sc_event-list_helptexts.php:104
1523
  msgid "number"
1524
  msgstr "Nummer"
1525
 
@@ -1748,7 +1748,7 @@ msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s
1748
 
1749
  #: includes/sc_event-list_helptexts.php:77
1750
  #: includes/sc_event-list_helptexts.php:92
1751
- #: includes/sc_event-list_helptexts.php:107
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
1754
 
@@ -1775,23 +1775,30 @@ msgstr ""
1775
 
1776
  #: includes/sc_event-list_helptexts.php:100
1777
  msgid ""
 
 
 
 
 
 
 
1778
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1779
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1780
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1781
  msgstr ""
1782
 
1783
- #: includes/sc_event-list_helptexts.php:105
1784
  msgid ""
1785
  "This attribute specifies if the content should be truncate to the given "
1786
  "number of characters in the event list."
1787
  msgstr ""
1788
 
1789
- #: includes/sc_event-list_helptexts.php:106
1790
  #, php-format
1791
  msgid "With the standard value %1$s the full text is displayed."
1792
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
1793
 
1794
- #: includes/sc_event-list_helptexts.php:110
1795
  msgid ""
1796
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1797
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1799,7 +1806,7 @@ msgid ""
1799
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1800
  msgstr ""
1801
 
1802
- #: includes/sc_event-list_helptexts.php:116
1803
  msgid ""
1804
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1805
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1807,7 +1814,7 @@ msgid ""
1807
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:122
1811
  msgid ""
1812
  "This attribute specifies if a rss feed link should be added.<br />\n"
1813
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1816,20 +1823,20 @@ msgid ""
1816
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1817
  msgstr ""
1818
 
1819
- #: includes/sc_event-list_helptexts.php:128
1820
  msgid ""
1821
  "This attribute specifies the page or post url for event links.<br />\n"
1822
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1823
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1824
  msgstr ""
1825
 
1826
- #: includes/sc_event-list_helptexts.php:135
1827
  msgid ""
1828
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1829
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1830
  msgstr ""
1831
 
1832
- #: includes/sc_event-list.php:135
1833
  msgid "Event Information:"
1834
  msgstr "Termin Informationen:"
1835
 
@@ -1863,7 +1870,7 @@ msgid "Truncate event title to"
1863
  msgstr "Kürze den Termin-Titel auf"
1864
 
1865
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1866
- #: includes/widget_helptexts.php:67
1867
  msgid "characters"
1868
  msgstr "Buchstaben"
1869
 
@@ -1906,68 +1913,76 @@ msgid ""
1906
  msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
1907
 
1908
  #: includes/widget_helptexts.php:59
1909
- msgid "Show event content"
1910
  msgstr ""
1911
 
1912
  #: includes/widget_helptexts.php:61
1913
- msgid "This option defines if the event content will be displayed."
1914
  msgstr ""
1915
 
1916
  #: includes/widget_helptexts.php:66
1917
- msgid "Truncate content to"
1918
  msgstr ""
1919
 
1920
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1921
  msgid ""
1922
  "If the event content are diplayed this option defines the number of diplayed"
1923
  " characters."
1924
  msgstr ""
1925
 
1926
- #: includes/widget_helptexts.php:69
1927
  #, php-format
1928
  msgid "Set this value to %1$s to view the full text."
1929
  msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt."
1930
 
1931
- #: includes/widget_helptexts.php:74
1932
  msgid "URL to the linked Event List page"
1933
  msgstr "URL zur verlinkten Event List Seite"
1934
 
1935
- #: includes/widget_helptexts.php:76
1936
  msgid ""
1937
  "This option defines the url to the linked Event List page. This option is "
1938
  "required if you want to use one of the options below."
1939
  msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
1940
 
1941
- #: includes/widget_helptexts.php:81
1942
  msgid "Shortcode ID on linked page"
1943
  msgstr "Shortcode ID auf der verlinkten Seite"
1944
 
1945
- #: includes/widget_helptexts.php:83
1946
  msgid ""
1947
  "This option defines the shortcode-id for the Event List on the linked page. "
1948
  "Normally the standard value 1 is correct, you only have to change it if you "
1949
  "use multiple event-list shortcodes on the linked page."
1950
  msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
1951
 
1952
- #: includes/widget_helptexts.php:90
1953
  msgid ""
1954
  "With this option you can add a link to the single event page for every "
1955
  "displayed event. You have to specify the url to the page and the shortcode "
1956
  "id option if you want to use it."
1957
  msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
1958
 
1959
- #: includes/widget_helptexts.php:97
1960
  msgid ""
1961
  "With this option you can add a link to the event-list page below the "
1962
  "diplayed events. You have to specify the url to page option if you want to "
1963
  "use it."
1964
  msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
1965
 
1966
- #: includes/widget_helptexts.php:102
1967
  msgid "Caption for the link"
1968
  msgstr "Anzuzeigender Text für den Link"
1969
 
1970
- #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "This option defines the text for the link to the Event List page if the "
1973
  "approriate option is selected."
@@ -1981,6 +1996,6 @@ msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt
1981
  msgid "Upcoming events"
1982
  msgstr "Anstehende Termine"
1983
 
1984
- #: includes/widget.php:38
1985
  msgid "show events page"
1986
  msgstr "öffne den Kalender"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
12
  msgstr ""
13
  "Project-Id-Version: wp-event-list\n"
14
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
15
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
16
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
17
  "Last-Translator: mibuthu\n"
18
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
19
  "MIME-Version: 1.0\n"
22
  "Language: de_DE\n"
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
 
25
+ #: admin/admin.php:56
26
  #, php-format
27
  msgid "Errors during upgrade of plugin %1$s"
28
  msgstr "Fehler während des %1$s Plugin Upgrades"
29
 
30
+ #: admin/admin.php:56
31
  #, php-format
32
  msgid "Upgrade of plugin %1$s successful"
33
  msgstr "Upgrade des Plugins %1$s erfolgreich"
34
 
35
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
36
  msgid "Event List Settings"
37
  msgstr "Event List Einstellungen"
38
 
39
+ #: admin/admin.php:105
40
  msgid "Settings"
41
  msgstr "Einstellungen"
42
 
43
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
44
  msgid "About Event List"
45
  msgstr "Informationen zu Event List"
46
 
47
+ #: admin/admin.php:109
48
  msgid "About"
49
  msgstr "Informationen"
50
 
51
+ #: admin/admin.php:131
52
  #, php-format
53
  msgid "%s Event"
54
  msgid_plural "%s Events"
111
  " to insert an URL to the linked event-list page."
112
  msgstr "Wenn eine der Link Optionen (%1$s oder %2$s) im Widget verwendet werden, dann muss die URL zur verlinkten Event-List Seite angegeben werden."
113
 
114
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
115
  msgid "Add links to the single events"
116
  msgstr "Füge Links zu den einzelnen Terminen ein"
117
 
118
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
119
  msgid "Add a link to the Event List page"
120
  msgstr "Füge einen Link zur Event List Seite hinzu"
121
 
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
890
 
891
+ #: includes/event.php:110
892
  msgid "No valid start date provided"
893
  msgstr "Kein gültiges Start-Datum angegeben"
894
 
1519
  #: includes/sc_event-list_helptexts.php:33
1520
  #: includes/sc_event-list_helptexts.php:74
1521
  #: includes/sc_event-list_helptexts.php:89
1522
+ #: includes/sc_event-list_helptexts.php:109
1523
  msgid "number"
1524
  msgstr "Nummer"
1525
 
1748
 
1749
  #: includes/sc_event-list_helptexts.php:77
1750
  #: includes/sc_event-list_helptexts.php:92
1751
+ #: includes/sc_event-list_helptexts.php:112
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
1754
 
1775
 
1776
  #: includes/sc_event-list_helptexts.php:100
1777
  msgid ""
1778
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1779
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1780
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1781
+ msgstr ""
1782
+
1783
+ #: includes/sc_event-list_helptexts.php:105
1784
+ msgid ""
1785
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1786
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1787
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1788
  msgstr ""
1789
 
1790
+ #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be truncate to the given "
1793
  "number of characters in the event list."
1794
  msgstr ""
1795
 
1796
+ #: includes/sc_event-list_helptexts.php:111
1797
  #, php-format
1798
  msgid "With the standard value %1$s the full text is displayed."
1799
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
1800
 
1801
+ #: includes/sc_event-list_helptexts.php:115
1802
  msgid ""
1803
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1804
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1806
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:121
1810
  msgid ""
1811
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1812
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1814
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1815
  msgstr ""
1816
 
1817
+ #: includes/sc_event-list_helptexts.php:127
1818
  msgid ""
1819
  "This attribute specifies if a rss feed link should be added.<br />\n"
1820
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1823
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:133
1827
  msgid ""
1828
  "This attribute specifies the page or post url for event links.<br />\n"
1829
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1830
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1831
  msgstr ""
1832
 
1833
+ #: includes/sc_event-list_helptexts.php:140
1834
  msgid ""
1835
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1836
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1837
  msgstr ""
1838
 
1839
+ #: includes/sc_event-list.php:136
1840
  msgid "Event Information:"
1841
  msgstr "Termin Informationen:"
1842
 
1870
  msgstr "Kürze den Termin-Titel auf"
1871
 
1872
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1873
+ #: includes/widget_helptexts.php:74
1874
  msgid "characters"
1875
  msgstr "Buchstaben"
1876
 
1913
  msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
1914
 
1915
  #: includes/widget_helptexts.php:59
1916
+ msgid "Show event excerpt"
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:61
1920
+ msgid "This option defines if the event excerpt will be displayed."
1921
  msgstr ""
1922
 
1923
  #: includes/widget_helptexts.php:66
1924
+ msgid "Show event content"
1925
  msgstr ""
1926
 
1927
  #: includes/widget_helptexts.php:68
1928
+ msgid "This option defines if the event content will be displayed."
1929
+ msgstr ""
1930
+
1931
+ #: includes/widget_helptexts.php:73
1932
+ msgid "Truncate content to"
1933
+ msgstr ""
1934
+
1935
+ #: includes/widget_helptexts.php:75
1936
  msgid ""
1937
  "If the event content are diplayed this option defines the number of diplayed"
1938
  " characters."
1939
  msgstr ""
1940
 
1941
+ #: includes/widget_helptexts.php:76
1942
  #, php-format
1943
  msgid "Set this value to %1$s to view the full text."
1944
  msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt."
1945
 
1946
+ #: includes/widget_helptexts.php:81
1947
  msgid "URL to the linked Event List page"
1948
  msgstr "URL zur verlinkten Event List Seite"
1949
 
1950
+ #: includes/widget_helptexts.php:83
1951
  msgid ""
1952
  "This option defines the url to the linked Event List page. This option is "
1953
  "required if you want to use one of the options below."
1954
  msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
1955
 
1956
+ #: includes/widget_helptexts.php:88
1957
  msgid "Shortcode ID on linked page"
1958
  msgstr "Shortcode ID auf der verlinkten Seite"
1959
 
1960
+ #: includes/widget_helptexts.php:90
1961
  msgid ""
1962
  "This option defines the shortcode-id for the Event List on the linked page. "
1963
  "Normally the standard value 1 is correct, you only have to change it if you "
1964
  "use multiple event-list shortcodes on the linked page."
1965
  msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
1966
 
1967
+ #: includes/widget_helptexts.php:97
1968
  msgid ""
1969
  "With this option you can add a link to the single event page for every "
1970
  "displayed event. You have to specify the url to the page and the shortcode "
1971
  "id option if you want to use it."
1972
  msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
1973
 
1974
+ #: includes/widget_helptexts.php:104
1975
  msgid ""
1976
  "With this option you can add a link to the event-list page below the "
1977
  "diplayed events. You have to specify the url to page option if you want to "
1978
  "use it."
1979
  msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
1980
 
1981
+ #: includes/widget_helptexts.php:109
1982
  msgid "Caption for the link"
1983
  msgstr "Anzuzeigender Text für den Link"
1984
 
1985
+ #: includes/widget_helptexts.php:111
1986
  msgid ""
1987
  "This option defines the text for the link to the Event List page if the "
1988
  "approriate option is selected."
1996
  msgid "Upcoming events"
1997
  msgstr "Anstehende Termine"
1998
 
1999
+ #: includes/widget.php:39
2000
  msgid "show events page"
2001
  msgstr "öffne den Kalender"
languages/event-list-es_AR.mo CHANGED
Binary file
languages/event-list-es_AR.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Configuraciones del Listado de Eventos"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Configuraciones"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Sobre Listado de Eventos"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Sobre"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -107,11 +107,11 @@ msgid ""
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
111
  msgid "Add links to the single events"
112
  msgstr ""
113
 
114
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
115
  msgid "Add a link to the Event List page"
116
  msgstr ""
117
 
@@ -884,7 +884,7 @@ msgstr "Pasado"
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:107
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
@@ -1515,7 +1515,7 @@ msgstr ""
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
- #: includes/sc_event-list_helptexts.php:104
1519
  msgid "number"
1520
  msgstr ""
1521
 
@@ -1744,7 +1744,7 @@ msgstr ""
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
- #: includes/sc_event-list_helptexts.php:107
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,23 +1771,30 @@ msgstr ""
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
 
 
 
 
 
 
 
1774
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1775
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1776
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1777
  msgstr ""
1778
 
1779
- #: includes/sc_event-list_helptexts.php:105
1780
  msgid ""
1781
  "This attribute specifies if the content should be truncate to the given "
1782
  "number of characters in the event list."
1783
  msgstr ""
1784
 
1785
- #: includes/sc_event-list_helptexts.php:106
1786
  #, php-format
1787
  msgid "With the standard value %1$s the full text is displayed."
1788
  msgstr ""
1789
 
1790
- #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1793
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1795,7 +1802,7 @@ msgid ""
1795
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1796
  msgstr ""
1797
 
1798
- #: includes/sc_event-list_helptexts.php:116
1799
  msgid ""
1800
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1801
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1803,7 +1810,7 @@ msgid ""
1803
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1804
  msgstr ""
1805
 
1806
- #: includes/sc_event-list_helptexts.php:122
1807
  msgid ""
1808
  "This attribute specifies if a rss feed link should be added.<br />\n"
1809
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1812,20 +1819,20 @@ msgid ""
1812
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1813
  msgstr ""
1814
 
1815
- #: includes/sc_event-list_helptexts.php:128
1816
  msgid ""
1817
  "This attribute specifies the page or post url for event links.<br />\n"
1818
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1819
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1820
  msgstr ""
1821
 
1822
- #: includes/sc_event-list_helptexts.php:135
1823
  msgid ""
1824
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1825
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1826
  msgstr ""
1827
 
1828
- #: includes/sc_event-list.php:135
1829
  msgid "Event Information:"
1830
  msgstr "Información del evento:"
1831
 
@@ -1859,7 +1866,7 @@ msgid "Truncate event title to"
1859
  msgstr ""
1860
 
1861
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1862
- #: includes/widget_helptexts.php:67
1863
  msgid "characters"
1864
  msgstr "caracteres"
1865
 
@@ -1902,68 +1909,76 @@ msgid ""
1902
  msgstr ""
1903
 
1904
  #: includes/widget_helptexts.php:59
1905
- msgid "Show event content"
1906
  msgstr ""
1907
 
1908
  #: includes/widget_helptexts.php:61
1909
- msgid "This option defines if the event content will be displayed."
1910
  msgstr ""
1911
 
1912
  #: includes/widget_helptexts.php:66
1913
- msgid "Truncate content to"
1914
  msgstr ""
1915
 
1916
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1917
  msgid ""
1918
  "If the event content are diplayed this option defines the number of diplayed"
1919
  " characters."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:69
1923
  #, php-format
1924
  msgid "Set this value to %1$s to view the full text."
1925
  msgstr ""
1926
 
1927
- #: includes/widget_helptexts.php:74
1928
  msgid "URL to the linked Event List page"
1929
  msgstr "Link a la Página del Evento"
1930
 
1931
- #: includes/widget_helptexts.php:76
1932
  msgid ""
1933
  "This option defines the url to the linked Event List page. This option is "
1934
  "required if you want to use one of the options below."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:81
1938
  msgid "Shortcode ID on linked page"
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:83
1942
  msgid ""
1943
  "This option defines the shortcode-id for the Event List on the linked page. "
1944
  "Normally the standard value 1 is correct, you only have to change it if you "
1945
  "use multiple event-list shortcodes on the linked page."
1946
  msgstr ""
1947
 
1948
- #: includes/widget_helptexts.php:90
1949
  msgid ""
1950
  "With this option you can add a link to the single event page for every "
1951
  "displayed event. You have to specify the url to the page and the shortcode "
1952
  "id option if you want to use it."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:97
1956
  msgid ""
1957
  "With this option you can add a link to the event-list page below the "
1958
  "diplayed events. You have to specify the url to page option if you want to "
1959
  "use it."
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:102
1963
  msgid "Caption for the link"
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:104
1967
  msgid ""
1968
  "This option defines the text for the link to the Event List page if the "
1969
  "approriate option is selected."
@@ -1977,6 +1992,6 @@ msgstr ""
1977
  msgid "Upcoming events"
1978
  msgstr "Eventos próximos"
1979
 
1980
- #: includes/widget.php:38
1981
  msgid "show events page"
1982
  msgstr "Mostrar página de eventos"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Configuraciones del Listado de Eventos"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Configuraciones"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Sobre Listado de Eventos"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "Sobre"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
111
  msgid "Add links to the single events"
112
  msgstr ""
113
 
114
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
115
  msgid "Add a link to the Event List page"
116
  msgstr ""
117
 
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
+ #: includes/event.php:110
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
+ #: includes/sc_event-list_helptexts.php:109
1519
  msgid "number"
1520
  msgstr ""
1521
 
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
+ #: includes/sc_event-list_helptexts.php:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
1774
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1775
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1776
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1777
+ msgstr ""
1778
+
1779
+ #: includes/sc_event-list_helptexts.php:105
1780
+ msgid ""
1781
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1782
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1783
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1784
  msgstr ""
1785
 
1786
+ #: includes/sc_event-list_helptexts.php:110
1787
  msgid ""
1788
  "This attribute specifies if the content should be truncate to the given "
1789
  "number of characters in the event list."
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:111
1793
  #, php-format
1794
  msgid "With the standard value %1$s the full text is displayed."
1795
  msgstr ""
1796
 
1797
+ #: includes/sc_event-list_helptexts.php:115
1798
  msgid ""
1799
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1800
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1802
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:121
1806
  msgid ""
1807
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1808
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1810
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:127
1814
  msgid ""
1815
  "This attribute specifies if a rss feed link should be added.<br />\n"
1816
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1819
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1820
  msgstr ""
1821
 
1822
+ #: includes/sc_event-list_helptexts.php:133
1823
  msgid ""
1824
  "This attribute specifies the page or post url for event links.<br />\n"
1825
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1826
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1827
  msgstr ""
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:140
1830
  msgid ""
1831
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1832
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1833
  msgstr ""
1834
 
1835
+ #: includes/sc_event-list.php:136
1836
  msgid "Event Information:"
1837
  msgstr "Información del evento:"
1838
 
1866
  msgstr ""
1867
 
1868
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1869
+ #: includes/widget_helptexts.php:74
1870
  msgid "characters"
1871
  msgstr "caracteres"
1872
 
1909
  msgstr ""
1910
 
1911
  #: includes/widget_helptexts.php:59
1912
+ msgid "Show event excerpt"
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:61
1916
+ msgid "This option defines if the event excerpt will be displayed."
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:66
1920
+ msgid "Show event content"
1921
  msgstr ""
1922
 
1923
  #: includes/widget_helptexts.php:68
1924
+ msgid "This option defines if the event content will be displayed."
1925
+ msgstr ""
1926
+
1927
+ #: includes/widget_helptexts.php:73
1928
+ msgid "Truncate content to"
1929
+ msgstr ""
1930
+
1931
+ #: includes/widget_helptexts.php:75
1932
  msgid ""
1933
  "If the event content are diplayed this option defines the number of diplayed"
1934
  " characters."
1935
  msgstr ""
1936
 
1937
+ #: includes/widget_helptexts.php:76
1938
  #, php-format
1939
  msgid "Set this value to %1$s to view the full text."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:81
1943
  msgid "URL to the linked Event List page"
1944
  msgstr "Link a la Página del Evento"
1945
 
1946
+ #: includes/widget_helptexts.php:83
1947
  msgid ""
1948
  "This option defines the url to the linked Event List page. This option is "
1949
  "required if you want to use one of the options below."
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:88
1953
  msgid "Shortcode ID on linked page"
1954
  msgstr ""
1955
 
1956
+ #: includes/widget_helptexts.php:90
1957
  msgid ""
1958
  "This option defines the shortcode-id for the Event List on the linked page. "
1959
  "Normally the standard value 1 is correct, you only have to change it if you "
1960
  "use multiple event-list shortcodes on the linked page."
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:97
1964
  msgid ""
1965
  "With this option you can add a link to the single event page for every "
1966
  "displayed event. You have to specify the url to the page and the shortcode "
1967
  "id option if you want to use it."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "With this option you can add a link to the event-list page below the "
1973
  "diplayed events. You have to specify the url to page option if you want to "
1974
  "use it."
1975
  msgstr ""
1976
 
1977
+ #: includes/widget_helptexts.php:109
1978
  msgid "Caption for the link"
1979
  msgstr ""
1980
 
1981
+ #: includes/widget_helptexts.php:111
1982
  msgid ""
1983
  "This option defines the text for the link to the Event List page if the "
1984
  "approriate option is selected."
1992
  msgid "Upcoming events"
1993
  msgstr "Eventos próximos"
1994
 
1995
+ #: includes/widget.php:39
1996
  msgid "show events page"
1997
  msgstr "Mostrar página de eventos"
languages/event-list-es_ES.mo CHANGED
Binary file
languages/event-list-es_ES.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
11
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
12
  "Last-Translator: mibuthu\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
@@ -17,33 +17,33 @@ msgstr ""
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: admin/admin.php:57
21
  #, php-format
22
  msgid "Errors during upgrade of plugin %1$s"
23
  msgstr ""
24
 
25
- #: admin/admin.php:57
26
  #, php-format
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
31
  msgid "Event List Settings"
32
  msgstr "Ajustes de eventos"
33
 
34
- #: admin/admin.php:106
35
  msgid "Settings"
36
  msgstr "Ajustes"
37
 
38
- #: admin/admin.php:110 admin/includes/admin-about.php:37
39
  msgid "About Event List"
40
  msgstr "Acerca de la lista de eventos"
41
 
42
- #: admin/admin.php:110
43
  msgid "About"
44
  msgstr "Sobre"
45
 
46
- #: admin/admin.php:132
47
  #, php-format
48
  msgid "%s Event"
49
  msgid_plural "%s Events"
@@ -106,11 +106,11 @@ msgid ""
106
  " to insert an URL to the linked event-list page."
107
  msgstr ""
108
 
109
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
110
  msgid "Add links to the single events"
111
  msgstr ""
112
 
113
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
114
  msgid "Add a link to the Event List page"
115
  msgstr ""
116
 
@@ -883,7 +883,7 @@ msgstr "Pasado"
883
  msgid "This value defines a range from the past to the previous day."
884
  msgstr ""
885
 
886
- #: includes/event.php:107
887
  msgid "No valid start date provided"
888
  msgstr ""
889
 
@@ -1514,7 +1514,7 @@ msgstr ""
1514
  #: includes/sc_event-list_helptexts.php:33
1515
  #: includes/sc_event-list_helptexts.php:74
1516
  #: includes/sc_event-list_helptexts.php:89
1517
- #: includes/sc_event-list_helptexts.php:104
1518
  msgid "number"
1519
  msgstr ""
1520
 
@@ -1743,7 +1743,7 @@ msgstr ""
1743
 
1744
  #: includes/sc_event-list_helptexts.php:77
1745
  #: includes/sc_event-list_helptexts.php:92
1746
- #: includes/sc_event-list_helptexts.php:107
1747
  msgid "This attribute has no influence if only a single event is shown."
1748
  msgstr ""
1749
 
@@ -1770,23 +1770,30 @@ msgstr ""
1770
 
1771
  #: includes/sc_event-list_helptexts.php:100
1772
  msgid ""
 
 
 
 
 
 
 
1773
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1774
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1775
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1776
  msgstr ""
1777
 
1778
- #: includes/sc_event-list_helptexts.php:105
1779
  msgid ""
1780
  "This attribute specifies if the content should be truncate to the given "
1781
  "number of characters in the event list."
1782
  msgstr ""
1783
 
1784
- #: includes/sc_event-list_helptexts.php:106
1785
  #, php-format
1786
  msgid "With the standard value %1$s the full text is displayed."
1787
  msgstr ""
1788
 
1789
- #: includes/sc_event-list_helptexts.php:110
1790
  msgid ""
1791
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1792
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1794,7 +1801,7 @@ msgid ""
1794
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1795
  msgstr ""
1796
 
1797
- #: includes/sc_event-list_helptexts.php:116
1798
  msgid ""
1799
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1800
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1802,7 +1809,7 @@ msgid ""
1802
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1803
  msgstr ""
1804
 
1805
- #: includes/sc_event-list_helptexts.php:122
1806
  msgid ""
1807
  "This attribute specifies if a rss feed link should be added.<br />\n"
1808
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1811,20 +1818,20 @@ msgid ""
1811
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1812
  msgstr ""
1813
 
1814
- #: includes/sc_event-list_helptexts.php:128
1815
  msgid ""
1816
  "This attribute specifies the page or post url for event links.<br />\n"
1817
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1818
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1819
  msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:135
1822
  msgid ""
1823
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1824
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1825
  msgstr ""
1826
 
1827
- #: includes/sc_event-list.php:135
1828
  msgid "Event Information:"
1829
  msgstr "Información del evento:"
1830
 
@@ -1858,7 +1865,7 @@ msgid "Truncate event title to"
1858
  msgstr ""
1859
 
1860
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1861
- #: includes/widget_helptexts.php:67
1862
  msgid "characters"
1863
  msgstr "caracteres"
1864
 
@@ -1901,68 +1908,76 @@ msgid ""
1901
  msgstr ""
1902
 
1903
  #: includes/widget_helptexts.php:59
1904
- msgid "Show event content"
1905
  msgstr ""
1906
 
1907
  #: includes/widget_helptexts.php:61
1908
- msgid "This option defines if the event content will be displayed."
1909
  msgstr ""
1910
 
1911
  #: includes/widget_helptexts.php:66
1912
- msgid "Truncate content to"
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1916
  msgid ""
1917
  "If the event content are diplayed this option defines the number of diplayed"
1918
  " characters."
1919
  msgstr ""
1920
 
1921
- #: includes/widget_helptexts.php:69
1922
  #, php-format
1923
  msgid "Set this value to %1$s to view the full text."
1924
  msgstr ""
1925
 
1926
- #: includes/widget_helptexts.php:74
1927
  msgid "URL to the linked Event List page"
1928
  msgstr ""
1929
 
1930
- #: includes/widget_helptexts.php:76
1931
  msgid ""
1932
  "This option defines the url to the linked Event List page. This option is "
1933
  "required if you want to use one of the options below."
1934
  msgstr ""
1935
 
1936
- #: includes/widget_helptexts.php:81
1937
  msgid "Shortcode ID on linked page"
1938
  msgstr ""
1939
 
1940
- #: includes/widget_helptexts.php:83
1941
  msgid ""
1942
  "This option defines the shortcode-id for the Event List on the linked page. "
1943
  "Normally the standard value 1 is correct, you only have to change it if you "
1944
  "use multiple event-list shortcodes on the linked page."
1945
  msgstr ""
1946
 
1947
- #: includes/widget_helptexts.php:90
1948
  msgid ""
1949
  "With this option you can add a link to the single event page for every "
1950
  "displayed event. You have to specify the url to the page and the shortcode "
1951
  "id option if you want to use it."
1952
  msgstr ""
1953
 
1954
- #: includes/widget_helptexts.php:97
1955
  msgid ""
1956
  "With this option you can add a link to the event-list page below the "
1957
  "diplayed events. You have to specify the url to page option if you want to "
1958
  "use it."
1959
  msgstr ""
1960
 
1961
- #: includes/widget_helptexts.php:102
1962
  msgid "Caption for the link"
1963
  msgstr ""
1964
 
1965
- #: includes/widget_helptexts.php:104
1966
  msgid ""
1967
  "This option defines the text for the link to the Event List page if the "
1968
  "approriate option is selected."
@@ -1976,6 +1991,6 @@ msgstr ""
1976
  msgid "Upcoming events"
1977
  msgstr ""
1978
 
1979
- #: includes/widget.php:38
1980
  msgid "show events page"
1981
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
11
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
12
  "Last-Translator: mibuthu\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
+ #: admin/admin.php:56
21
  #, php-format
22
  msgid "Errors during upgrade of plugin %1$s"
23
  msgstr ""
24
 
25
+ #: admin/admin.php:56
26
  #, php-format
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
31
  msgid "Event List Settings"
32
  msgstr "Ajustes de eventos"
33
 
34
+ #: admin/admin.php:105
35
  msgid "Settings"
36
  msgstr "Ajustes"
37
 
38
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
39
  msgid "About Event List"
40
  msgstr "Acerca de la lista de eventos"
41
 
42
+ #: admin/admin.php:109
43
  msgid "About"
44
  msgstr "Sobre"
45
 
46
+ #: admin/admin.php:131
47
  #, php-format
48
  msgid "%s Event"
49
  msgid_plural "%s Events"
106
  " to insert an URL to the linked event-list page."
107
  msgstr ""
108
 
109
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
110
  msgid "Add links to the single events"
111
  msgstr ""
112
 
113
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
114
  msgid "Add a link to the Event List page"
115
  msgstr ""
116
 
883
  msgid "This value defines a range from the past to the previous day."
884
  msgstr ""
885
 
886
+ #: includes/event.php:110
887
  msgid "No valid start date provided"
888
  msgstr ""
889
 
1514
  #: includes/sc_event-list_helptexts.php:33
1515
  #: includes/sc_event-list_helptexts.php:74
1516
  #: includes/sc_event-list_helptexts.php:89
1517
+ #: includes/sc_event-list_helptexts.php:109
1518
  msgid "number"
1519
  msgstr ""
1520
 
1743
 
1744
  #: includes/sc_event-list_helptexts.php:77
1745
  #: includes/sc_event-list_helptexts.php:92
1746
+ #: includes/sc_event-list_helptexts.php:112
1747
  msgid "This attribute has no influence if only a single event is shown."
1748
  msgstr ""
1749
 
1770
 
1771
  #: includes/sc_event-list_helptexts.php:100
1772
  msgid ""
1773
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1774
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1775
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1776
+ msgstr ""
1777
+
1778
+ #: includes/sc_event-list_helptexts.php:105
1779
+ msgid ""
1780
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1781
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1782
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1783
  msgstr ""
1784
 
1785
+ #: includes/sc_event-list_helptexts.php:110
1786
  msgid ""
1787
  "This attribute specifies if the content should be truncate to the given "
1788
  "number of characters in the event list."
1789
  msgstr ""
1790
 
1791
+ #: includes/sc_event-list_helptexts.php:111
1792
  #, php-format
1793
  msgid "With the standard value %1$s the full text is displayed."
1794
  msgstr ""
1795
 
1796
+ #: includes/sc_event-list_helptexts.php:115
1797
  msgid ""
1798
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1799
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1801
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1802
  msgstr ""
1803
 
1804
+ #: includes/sc_event-list_helptexts.php:121
1805
  msgid ""
1806
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1807
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1809
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1810
  msgstr ""
1811
 
1812
+ #: includes/sc_event-list_helptexts.php:127
1813
  msgid ""
1814
  "This attribute specifies if a rss feed link should be added.<br />\n"
1815
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1818
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1819
  msgstr ""
1820
 
1821
+ #: includes/sc_event-list_helptexts.php:133
1822
  msgid ""
1823
  "This attribute specifies the page or post url for event links.<br />\n"
1824
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1825
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1826
  msgstr ""
1827
 
1828
+ #: includes/sc_event-list_helptexts.php:140
1829
  msgid ""
1830
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1831
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list.php:136
1835
  msgid "Event Information:"
1836
  msgstr "Información del evento:"
1837
 
1865
  msgstr ""
1866
 
1867
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1868
+ #: includes/widget_helptexts.php:74
1869
  msgid "characters"
1870
  msgstr "caracteres"
1871
 
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:59
1911
+ msgid "Show event excerpt"
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:61
1915
+ msgid "This option defines if the event excerpt will be displayed."
1916
  msgstr ""
1917
 
1918
  #: includes/widget_helptexts.php:66
1919
+ msgid "Show event content"
1920
  msgstr ""
1921
 
1922
  #: includes/widget_helptexts.php:68
1923
+ msgid "This option defines if the event content will be displayed."
1924
+ msgstr ""
1925
+
1926
+ #: includes/widget_helptexts.php:73
1927
+ msgid "Truncate content to"
1928
+ msgstr ""
1929
+
1930
+ #: includes/widget_helptexts.php:75
1931
  msgid ""
1932
  "If the event content are diplayed this option defines the number of diplayed"
1933
  " characters."
1934
  msgstr ""
1935
 
1936
+ #: includes/widget_helptexts.php:76
1937
  #, php-format
1938
  msgid "Set this value to %1$s to view the full text."
1939
  msgstr ""
1940
 
1941
+ #: includes/widget_helptexts.php:81
1942
  msgid "URL to the linked Event List page"
1943
  msgstr ""
1944
 
1945
+ #: includes/widget_helptexts.php:83
1946
  msgid ""
1947
  "This option defines the url to the linked Event List page. This option is "
1948
  "required if you want to use one of the options below."
1949
  msgstr ""
1950
 
1951
+ #: includes/widget_helptexts.php:88
1952
  msgid "Shortcode ID on linked page"
1953
  msgstr ""
1954
 
1955
+ #: includes/widget_helptexts.php:90
1956
  msgid ""
1957
  "This option defines the shortcode-id for the Event List on the linked page. "
1958
  "Normally the standard value 1 is correct, you only have to change it if you "
1959
  "use multiple event-list shortcodes on the linked page."
1960
  msgstr ""
1961
 
1962
+ #: includes/widget_helptexts.php:97
1963
  msgid ""
1964
  "With this option you can add a link to the single event page for every "
1965
  "displayed event. You have to specify the url to the page and the shortcode "
1966
  "id option if you want to use it."
1967
  msgstr ""
1968
 
1969
+ #: includes/widget_helptexts.php:104
1970
  msgid ""
1971
  "With this option you can add a link to the event-list page below the "
1972
  "diplayed events. You have to specify the url to page option if you want to "
1973
  "use it."
1974
  msgstr ""
1975
 
1976
+ #: includes/widget_helptexts.php:109
1977
  msgid "Caption for the link"
1978
  msgstr ""
1979
 
1980
+ #: includes/widget_helptexts.php:111
1981
  msgid ""
1982
  "This option defines the text for the link to the Event List page if the "
1983
  "approriate option is selected."
1991
  msgid "Upcoming events"
1992
  msgstr ""
1993
 
1994
+ #: includes/widget.php:39
1995
  msgid "show events page"
1996
  msgstr ""
languages/event-list-et_EE.mo CHANGED
Binary file
languages/event-list-et_EE.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: et_EE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Sündmuste loendi seaded"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Seaded"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Sündmuste loendist"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr ""
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -107,11 +107,11 @@ msgid ""
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
111
  msgid "Add links to the single events"
112
  msgstr "Lisa link sündmuse juurde"
113
 
114
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
115
  msgid "Add a link to the Event List page"
116
  msgstr "Lisa link lehe sündmuste loendisse"
117
 
@@ -884,7 +884,7 @@ msgstr "Toimunud"
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:107
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
@@ -1515,7 +1515,7 @@ msgstr ""
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
- #: includes/sc_event-list_helptexts.php:104
1519
  msgid "number"
1520
  msgstr "number"
1521
 
@@ -1744,7 +1744,7 @@ msgstr ""
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
- #: includes/sc_event-list_helptexts.php:107
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,23 +1771,30 @@ msgstr ""
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
 
 
 
 
 
 
 
1774
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1775
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1776
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1777
  msgstr ""
1778
 
1779
- #: includes/sc_event-list_helptexts.php:105
1780
  msgid ""
1781
  "This attribute specifies if the content should be truncate to the given "
1782
  "number of characters in the event list."
1783
  msgstr ""
1784
 
1785
- #: includes/sc_event-list_helptexts.php:106
1786
  #, php-format
1787
  msgid "With the standard value %1$s the full text is displayed."
1788
  msgstr ""
1789
 
1790
- #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1793
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1795,7 +1802,7 @@ msgid ""
1795
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1796
  msgstr ""
1797
 
1798
- #: includes/sc_event-list_helptexts.php:116
1799
  msgid ""
1800
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1801
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1803,7 +1810,7 @@ msgid ""
1803
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1804
  msgstr ""
1805
 
1806
- #: includes/sc_event-list_helptexts.php:122
1807
  msgid ""
1808
  "This attribute specifies if a rss feed link should be added.<br />\n"
1809
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1812,20 +1819,20 @@ msgid ""
1812
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1813
  msgstr ""
1814
 
1815
- #: includes/sc_event-list_helptexts.php:128
1816
  msgid ""
1817
  "This attribute specifies the page or post url for event links.<br />\n"
1818
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1819
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1820
  msgstr ""
1821
 
1822
- #: includes/sc_event-list_helptexts.php:135
1823
  msgid ""
1824
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1825
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1826
  msgstr ""
1827
 
1828
- #: includes/sc_event-list.php:135
1829
  msgid "Event Information:"
1830
  msgstr "Sündmuse info:"
1831
 
@@ -1859,7 +1866,7 @@ msgid "Truncate event title to"
1859
  msgstr "Kärbi sündmuse pealkiri"
1860
 
1861
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1862
- #: includes/widget_helptexts.php:67
1863
  msgid "characters"
1864
  msgstr "tähemärgini"
1865
 
@@ -1902,68 +1909,76 @@ msgid ""
1902
  msgstr ""
1903
 
1904
  #: includes/widget_helptexts.php:59
 
 
 
 
 
 
 
 
1905
  msgid "Show event content"
1906
  msgstr "Kuva sündmuse sisu"
1907
 
1908
- #: includes/widget_helptexts.php:61
1909
  msgid "This option defines if the event content will be displayed."
1910
  msgstr ""
1911
 
1912
- #: includes/widget_helptexts.php:66
1913
  msgid "Truncate content to"
1914
  msgstr "Kärbi sündmuse sisu"
1915
 
1916
- #: includes/widget_helptexts.php:68
1917
  msgid ""
1918
  "If the event content are diplayed this option defines the number of diplayed"
1919
  " characters."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:69
1923
  #, php-format
1924
  msgid "Set this value to %1$s to view the full text."
1925
  msgstr ""
1926
 
1927
- #: includes/widget_helptexts.php:74
1928
  msgid "URL to the linked Event List page"
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:76
1932
  msgid ""
1933
  "This option defines the url to the linked Event List page. This option is "
1934
  "required if you want to use one of the options below."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:81
1938
  msgid "Shortcode ID on linked page"
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:83
1942
  msgid ""
1943
  "This option defines the shortcode-id for the Event List on the linked page. "
1944
  "Normally the standard value 1 is correct, you only have to change it if you "
1945
  "use multiple event-list shortcodes on the linked page."
1946
  msgstr ""
1947
 
1948
- #: includes/widget_helptexts.php:90
1949
  msgid ""
1950
  "With this option you can add a link to the single event page for every "
1951
  "displayed event. You have to specify the url to the page and the shortcode "
1952
  "id option if you want to use it."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:97
1956
  msgid ""
1957
  "With this option you can add a link to the event-list page below the "
1958
  "diplayed events. You have to specify the url to page option if you want to "
1959
  "use it."
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:102
1963
  msgid "Caption for the link"
1964
  msgstr "Lingi pealkiri"
1965
 
1966
- #: includes/widget_helptexts.php:104
1967
  msgid ""
1968
  "This option defines the text for the link to the Event List page if the "
1969
  "approriate option is selected."
@@ -1977,6 +1992,6 @@ msgstr ""
1977
  msgid "Upcoming events"
1978
  msgstr "Eesseisvad sündmused"
1979
 
1980
- #: includes/widget.php:38
1981
  msgid "show events page"
1982
  msgstr "näita sündmuste lehte"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: et_EE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Sündmuste loendi seaded"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Seaded"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Sündmuste loendist"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr ""
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
111
  msgid "Add links to the single events"
112
  msgstr "Lisa link sündmuse juurde"
113
 
114
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
115
  msgid "Add a link to the Event List page"
116
  msgstr "Lisa link lehe sündmuste loendisse"
117
 
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
+ #: includes/event.php:110
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
+ #: includes/sc_event-list_helptexts.php:109
1519
  msgid "number"
1520
  msgstr "number"
1521
 
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
+ #: includes/sc_event-list_helptexts.php:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
1774
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1775
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1776
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1777
+ msgstr ""
1778
+
1779
+ #: includes/sc_event-list_helptexts.php:105
1780
+ msgid ""
1781
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1782
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1783
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1784
  msgstr ""
1785
 
1786
+ #: includes/sc_event-list_helptexts.php:110
1787
  msgid ""
1788
  "This attribute specifies if the content should be truncate to the given "
1789
  "number of characters in the event list."
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:111
1793
  #, php-format
1794
  msgid "With the standard value %1$s the full text is displayed."
1795
  msgstr ""
1796
 
1797
+ #: includes/sc_event-list_helptexts.php:115
1798
  msgid ""
1799
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1800
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1802
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:121
1806
  msgid ""
1807
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1808
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1810
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:127
1814
  msgid ""
1815
  "This attribute specifies if a rss feed link should be added.<br />\n"
1816
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1819
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1820
  msgstr ""
1821
 
1822
+ #: includes/sc_event-list_helptexts.php:133
1823
  msgid ""
1824
  "This attribute specifies the page or post url for event links.<br />\n"
1825
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1826
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1827
  msgstr ""
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:140
1830
  msgid ""
1831
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1832
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1833
  msgstr ""
1834
 
1835
+ #: includes/sc_event-list.php:136
1836
  msgid "Event Information:"
1837
  msgstr "Sündmuse info:"
1838
 
1866
  msgstr "Kärbi sündmuse pealkiri"
1867
 
1868
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1869
+ #: includes/widget_helptexts.php:74
1870
  msgid "characters"
1871
  msgstr "tähemärgini"
1872
 
1909
  msgstr ""
1910
 
1911
  #: includes/widget_helptexts.php:59
1912
+ msgid "Show event excerpt"
1913
+ msgstr ""
1914
+
1915
+ #: includes/widget_helptexts.php:61
1916
+ msgid "This option defines if the event excerpt will be displayed."
1917
+ msgstr ""
1918
+
1919
+ #: includes/widget_helptexts.php:66
1920
  msgid "Show event content"
1921
  msgstr "Kuva sündmuse sisu"
1922
 
1923
+ #: includes/widget_helptexts.php:68
1924
  msgid "This option defines if the event content will be displayed."
1925
  msgstr ""
1926
 
1927
+ #: includes/widget_helptexts.php:73
1928
  msgid "Truncate content to"
1929
  msgstr "Kärbi sündmuse sisu"
1930
 
1931
+ #: includes/widget_helptexts.php:75
1932
  msgid ""
1933
  "If the event content are diplayed this option defines the number of diplayed"
1934
  " characters."
1935
  msgstr ""
1936
 
1937
+ #: includes/widget_helptexts.php:76
1938
  #, php-format
1939
  msgid "Set this value to %1$s to view the full text."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:81
1943
  msgid "URL to the linked Event List page"
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:83
1947
  msgid ""
1948
  "This option defines the url to the linked Event List page. This option is "
1949
  "required if you want to use one of the options below."
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:88
1953
  msgid "Shortcode ID on linked page"
1954
  msgstr ""
1955
 
1956
+ #: includes/widget_helptexts.php:90
1957
  msgid ""
1958
  "This option defines the shortcode-id for the Event List on the linked page. "
1959
  "Normally the standard value 1 is correct, you only have to change it if you "
1960
  "use multiple event-list shortcodes on the linked page."
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:97
1964
  msgid ""
1965
  "With this option you can add a link to the single event page for every "
1966
  "displayed event. You have to specify the url to the page and the shortcode "
1967
  "id option if you want to use it."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "With this option you can add a link to the event-list page below the "
1973
  "diplayed events. You have to specify the url to page option if you want to "
1974
  "use it."
1975
  msgstr ""
1976
 
1977
+ #: includes/widget_helptexts.php:109
1978
  msgid "Caption for the link"
1979
  msgstr "Lingi pealkiri"
1980
 
1981
+ #: includes/widget_helptexts.php:111
1982
  msgid ""
1983
  "This option defines the text for the link to the Event List page if the "
1984
  "approriate option is selected."
1992
  msgid "Upcoming events"
1993
  msgstr "Eesseisvad sündmused"
1994
 
1995
+ #: includes/widget.php:39
1996
  msgid "show events page"
1997
  msgstr "näita sündmuste lehte"
languages/event-list-fi_FI.mo CHANGED
Binary file
languages/event-list-fi_FI.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
14
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,33 +20,33 @@ msgstr ""
20
  "Language: fi_FI\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
- #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Tapahtuma listan asetukset"
36
 
37
- #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Asetukset"
40
 
41
- #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Lisätietoa Tapahtumalistasta"
44
 
45
- #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "Lisätietoa"
48
 
49
- #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
@@ -109,11 +109,11 @@ msgid ""
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
113
  msgid "Add links to the single events"
114
  msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
115
 
116
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
117
  msgid "Add a link to the Event List page"
118
  msgstr "Lisää linkki Tapahtumalistan sivulle"
119
 
@@ -886,7 +886,7 @@ msgstr "Menneet"
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
- #: includes/event.php:107
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
@@ -1517,7 +1517,7 @@ msgstr ""
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
- #: includes/sc_event-list_helptexts.php:104
1521
  msgid "number"
1522
  msgstr "numero"
1523
 
@@ -1746,7 +1746,7 @@ msgstr ""
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
- #: includes/sc_event-list_helptexts.php:107
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
@@ -1773,23 +1773,30 @@ msgstr ""
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
 
 
 
 
 
 
 
1776
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1777
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1778
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1779
  msgstr ""
1780
 
1781
- #: includes/sc_event-list_helptexts.php:105
1782
  msgid ""
1783
  "This attribute specifies if the content should be truncate to the given "
1784
  "number of characters in the event list."
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:106
1788
  #, php-format
1789
  msgid "With the standard value %1$s the full text is displayed."
1790
  msgstr ""
1791
 
1792
- #: includes/sc_event-list_helptexts.php:110
1793
  msgid ""
1794
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1795
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1797,7 +1804,7 @@ msgid ""
1797
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1798
  msgstr ""
1799
 
1800
- #: includes/sc_event-list_helptexts.php:116
1801
  msgid ""
1802
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1803
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1805,7 +1812,7 @@ msgid ""
1805
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1806
  msgstr ""
1807
 
1808
- #: includes/sc_event-list_helptexts.php:122
1809
  msgid ""
1810
  "This attribute specifies if a rss feed link should be added.<br />\n"
1811
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1814,20 +1821,20 @@ msgid ""
1814
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1815
  msgstr ""
1816
 
1817
- #: includes/sc_event-list_helptexts.php:128
1818
  msgid ""
1819
  "This attribute specifies the page or post url for event links.<br />\n"
1820
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1821
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1822
  msgstr ""
1823
 
1824
- #: includes/sc_event-list_helptexts.php:135
1825
  msgid ""
1826
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1827
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1828
  msgstr ""
1829
 
1830
- #: includes/sc_event-list.php:135
1831
  msgid "Event Information:"
1832
  msgstr "Tapahtuman tiedot:"
1833
 
@@ -1861,7 +1868,7 @@ msgid "Truncate event title to"
1861
  msgstr "Tapahtuma otsikon lyhenne"
1862
 
1863
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1864
- #: includes/widget_helptexts.php:67
1865
  msgid "characters"
1866
  msgstr "merkkejä"
1867
 
@@ -1904,68 +1911,76 @@ msgid ""
1904
  msgstr ""
1905
 
1906
  #: includes/widget_helptexts.php:59
1907
- msgid "Show event content"
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:61
1911
- msgid "This option defines if the event content will be displayed."
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:66
1915
- msgid "Truncate content to"
1916
  msgstr ""
1917
 
1918
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1919
  msgid ""
1920
  "If the event content are diplayed this option defines the number of diplayed"
1921
  " characters."
1922
  msgstr ""
1923
 
1924
- #: includes/widget_helptexts.php:69
1925
  #, php-format
1926
  msgid "Set this value to %1$s to view the full text."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:74
1930
  msgid "URL to the linked Event List page"
1931
  msgstr ""
1932
 
1933
- #: includes/widget_helptexts.php:76
1934
  msgid ""
1935
  "This option defines the url to the linked Event List page. This option is "
1936
  "required if you want to use one of the options below."
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:81
1940
  msgid "Shortcode ID on linked page"
1941
  msgstr ""
1942
 
1943
- #: includes/widget_helptexts.php:83
1944
  msgid ""
1945
  "This option defines the shortcode-id for the Event List on the linked page. "
1946
  "Normally the standard value 1 is correct, you only have to change it if you "
1947
  "use multiple event-list shortcodes on the linked page."
1948
  msgstr ""
1949
 
1950
- #: includes/widget_helptexts.php:90
1951
  msgid ""
1952
  "With this option you can add a link to the single event page for every "
1953
  "displayed event. You have to specify the url to the page and the shortcode "
1954
  "id option if you want to use it."
1955
  msgstr ""
1956
 
1957
- #: includes/widget_helptexts.php:97
1958
  msgid ""
1959
  "With this option you can add a link to the event-list page below the "
1960
  "diplayed events. You have to specify the url to page option if you want to "
1961
  "use it."
1962
  msgstr ""
1963
 
1964
- #: includes/widget_helptexts.php:102
1965
  msgid "Caption for the link"
1966
  msgstr ""
1967
 
1968
- #: includes/widget_helptexts.php:104
1969
  msgid ""
1970
  "This option defines the text for the link to the Event List page if the "
1971
  "approriate option is selected."
@@ -1979,6 +1994,6 @@ msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
1979
  msgid "Upcoming events"
1980
  msgstr "Tulevat tapahtumat"
1981
 
1982
- #: includes/widget.php:38
1983
  msgid "show events page"
1984
  msgstr "näytä tapahtuma sivu"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
14
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: fi_FI\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: admin/admin.php:56
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:56
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Tapahtuma listan asetukset"
36
 
37
+ #: admin/admin.php:105
38
  msgid "Settings"
39
  msgstr "Asetukset"
40
 
41
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Lisätietoa Tapahtumalistasta"
44
 
45
+ #: admin/admin.php:109
46
  msgid "About"
47
  msgstr "Lisätietoa"
48
 
49
+ #: admin/admin.php:131
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
113
  msgid "Add links to the single events"
114
  msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
115
 
116
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
117
  msgid "Add a link to the Event List page"
118
  msgstr "Lisää linkki Tapahtumalistan sivulle"
119
 
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
+ #: includes/event.php:110
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
+ #: includes/sc_event-list_helptexts.php:109
1521
  msgid "number"
1522
  msgstr "numero"
1523
 
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
+ #: includes/sc_event-list_helptexts.php:112
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
1776
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1777
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1778
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1779
+ msgstr ""
1780
+
1781
+ #: includes/sc_event-list_helptexts.php:105
1782
+ msgid ""
1783
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1784
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1785
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1786
  msgstr ""
1787
 
1788
+ #: includes/sc_event-list_helptexts.php:110
1789
  msgid ""
1790
  "This attribute specifies if the content should be truncate to the given "
1791
  "number of characters in the event list."
1792
  msgstr ""
1793
 
1794
+ #: includes/sc_event-list_helptexts.php:111
1795
  #, php-format
1796
  msgid "With the standard value %1$s the full text is displayed."
1797
  msgstr ""
1798
 
1799
+ #: includes/sc_event-list_helptexts.php:115
1800
  msgid ""
1801
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1802
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1804
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1805
  msgstr ""
1806
 
1807
+ #: includes/sc_event-list_helptexts.php:121
1808
  msgid ""
1809
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1810
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1812
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:127
1816
  msgid ""
1817
  "This attribute specifies if a rss feed link should be added.<br />\n"
1818
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1821
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:133
1825
  msgid ""
1826
  "This attribute specifies the page or post url for event links.<br />\n"
1827
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1828
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1829
  msgstr ""
1830
 
1831
+ #: includes/sc_event-list_helptexts.php:140
1832
  msgid ""
1833
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1834
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1835
  msgstr ""
1836
 
1837
+ #: includes/sc_event-list.php:136
1838
  msgid "Event Information:"
1839
  msgstr "Tapahtuman tiedot:"
1840
 
1868
  msgstr "Tapahtuma otsikon lyhenne"
1869
 
1870
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1871
+ #: includes/widget_helptexts.php:74
1872
  msgid "characters"
1873
  msgstr "merkkejä"
1874
 
1911
  msgstr ""
1912
 
1913
  #: includes/widget_helptexts.php:59
1914
+ msgid "Show event excerpt"
1915
  msgstr ""
1916
 
1917
  #: includes/widget_helptexts.php:61
1918
+ msgid "This option defines if the event excerpt will be displayed."
1919
  msgstr ""
1920
 
1921
  #: includes/widget_helptexts.php:66
1922
+ msgid "Show event content"
1923
  msgstr ""
1924
 
1925
  #: includes/widget_helptexts.php:68
1926
+ msgid "This option defines if the event content will be displayed."
1927
+ msgstr ""
1928
+
1929
+ #: includes/widget_helptexts.php:73
1930
+ msgid "Truncate content to"
1931
+ msgstr ""
1932
+
1933
+ #: includes/widget_helptexts.php:75
1934
  msgid ""
1935
  "If the event content are diplayed this option defines the number of diplayed"
1936
  " characters."
1937
  msgstr ""
1938
 
1939
+ #: includes/widget_helptexts.php:76
1940
  #, php-format
1941
  msgid "Set this value to %1$s to view the full text."
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:81
1945
  msgid "URL to the linked Event List page"
1946
  msgstr ""
1947
 
1948
+ #: includes/widget_helptexts.php:83
1949
  msgid ""
1950
  "This option defines the url to the linked Event List page. This option is "
1951
  "required if you want to use one of the options below."
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:88
1955
  msgid "Shortcode ID on linked page"
1956
  msgstr ""
1957
 
1958
+ #: includes/widget_helptexts.php:90
1959
  msgid ""
1960
  "This option defines the shortcode-id for the Event List on the linked page. "
1961
  "Normally the standard value 1 is correct, you only have to change it if you "
1962
  "use multiple event-list shortcodes on the linked page."
1963
  msgstr ""
1964
 
1965
+ #: includes/widget_helptexts.php:97
1966
  msgid ""
1967
  "With this option you can add a link to the single event page for every "
1968
  "displayed event. You have to specify the url to the page and the shortcode "
1969
  "id option if you want to use it."
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:104
1973
  msgid ""
1974
  "With this option you can add a link to the event-list page below the "
1975
  "diplayed events. You have to specify the url to page option if you want to "
1976
  "use it."
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:109
1980
  msgid "Caption for the link"
1981
  msgstr ""
1982
 
1983
+ #: includes/widget_helptexts.php:111
1984
  msgid ""
1985
  "This option defines the text for the link to the Event List page if the "
1986
  "approriate option is selected."
1994
  msgid "Upcoming events"
1995
  msgstr "Tulevat tapahtumat"
1996
 
1997
+ #: includes/widget.php:39
1998
  msgid "show events page"
1999
  msgstr "näytä tapahtuma sivu"
languages/event-list-fr_FR.mo CHANGED
Binary file
languages/event-list-fr_FR.po CHANGED
@@ -1,17 +1,18 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
  # Amélie Breffeil <amelie.breffeil@hotmail.fr>, 2017
7
  # Gwenael Jan <gwejan@gmail.com>, 2015
8
  # patoudss <patrice@desaintsteban.fr>, 2016-2017
 
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
14
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,38 +21,38 @@ msgstr ""
20
  "Language: fr_FR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
- #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
- msgstr ""
27
 
28
- #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
- msgstr ""
32
 
33
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Préférences"
36
 
37
- #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Préférences"
40
 
41
- #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "A propos de la liste d'évènement"
44
 
45
- #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "A propos"
48
 
49
- #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
53
- msgstr[0] ""
54
- msgstr[1] ""
55
 
56
  #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
57
  msgid "General"
@@ -109,11 +110,11 @@ msgid ""
109
  " to insert an URL to the linked event-list page."
110
  msgstr "Si vous activer une des options sur les liens (%1$s ou %2$s) dans le widget, vous devez configurer l'URL vers la liste des événements"
111
 
112
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
113
  msgid "Add links to the single events"
114
  msgstr "Ajoute un lien vers le détail de l'évènement."
115
 
116
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
117
  msgid "Add a link to the Event List page"
118
  msgstr "Ajoute un liens vers la page des évènements."
119
 
@@ -187,7 +188,7 @@ msgstr "Si vous voulez soutenir ce plugin, je serai ravi de recevoir un petit do
187
  #: admin/includes/admin-about.php:99
188
  #, php-format
189
  msgid "Donate with %1$s"
190
- msgstr ""
191
 
192
  #: admin/includes/admin-about.php:107
193
  msgid ""
@@ -310,44 +311,44 @@ msgstr ""
310
  #: admin/includes/admin-categories.php:46
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
- msgstr ""
314
 
315
  #: admin/includes/admin-categories.php:47
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
- msgstr ""
319
 
320
  #: admin/includes/admin-categories.php:48
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
- msgstr ""
324
 
325
  #: admin/includes/admin-categories.php:50
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
- msgstr ""
329
 
330
  #: admin/includes/admin-categories.php:51
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
- msgstr ""
334
 
335
  #: admin/includes/admin-categories.php:52
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
- msgstr ""
339
 
340
  #: admin/includes/admin-categories.php:55
341
  msgid "An Error occured during the category sync"
342
- msgstr ""
343
 
344
  #: admin/includes/admin-categories.php:59
345
  msgid "Category sync finished"
346
- msgstr ""
347
 
348
  #: admin/includes/admin-category-sync.php:45
349
  msgid "Error: You are not allowed to view this page!"
350
- msgstr ""
351
 
352
  #: admin/includes/admin-category-sync.php:62
353
  msgid "Affected Categories when switching to seperate Event Categories"
@@ -388,7 +389,7 @@ msgstr ""
388
 
389
  #: admin/includes/admin-category-sync.php:74
390
  msgid "Start synchronisation"
391
- msgstr ""
392
 
393
  #: admin/includes/admin-category-sync.php:75
394
  msgid ""
@@ -398,15 +399,15 @@ msgstr ""
398
 
399
  #: admin/includes/admin-category-sync.php:90
400
  msgid "Categories to modify"
401
- msgstr ""
402
 
403
  #: admin/includes/admin-category-sync.php:91
404
  msgid "Categories to add"
405
- msgstr ""
406
 
407
  #: admin/includes/admin-category-sync.php:92
408
  msgid "Categories to delete (optional)"
409
- msgstr ""
410
 
411
  #: admin/includes/admin-category-sync.php:93
412
  msgid "Delete not available post categories"
@@ -426,7 +427,7 @@ msgstr ""
426
 
427
  #: admin/includes/admin-category-sync.php:117
428
  msgid "none"
429
- msgstr ""
430
 
431
  #: admin/includes/admin-import.php:49
432
  msgid "Import Events"
@@ -484,35 +485,35 @@ msgstr ""
484
 
485
  #: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
486
  msgid "Error"
487
- msgstr ""
488
 
489
  #: admin/includes/admin-import.php:111
490
  msgid "This CSV file cannot be imported"
491
- msgstr ""
492
 
493
  #: admin/includes/admin-import.php:122
494
  msgid "None of the events in this CSV file can be imported"
495
- msgstr ""
496
 
497
  #: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
498
  msgid "Warning"
499
- msgstr ""
500
 
501
  #: admin/includes/admin-import.php:126
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
505
- msgstr[0] ""
506
- msgstr[1] ""
507
 
508
  #: admin/includes/admin-import.php:134
509
  #, php-format
510
  msgid "CSV line %1$s"
511
- msgstr ""
512
 
513
  #: admin/includes/admin-import.php:144
514
  msgid "You can still import all other events listed below."
515
- msgstr ""
516
 
517
  #: admin/includes/admin-import.php:163
518
  msgid ""
@@ -528,12 +529,12 @@ msgstr "Si vous voulez conserver ces catégories, merci de les créer au préala
528
 
529
  #: admin/includes/admin-import.php:198
530
  msgid "Import result"
531
- msgstr ""
532
 
533
  #: admin/includes/admin-import.php:201
534
  #, php-format
535
  msgid "Import of %1$s events successful!"
536
- msgstr ""
537
 
538
  #: admin/includes/admin-import.php:202
539
  msgid "Go back to All Events"
@@ -541,7 +542,7 @@ msgstr "Retour à la liste des évènements"
541
 
542
  #: admin/includes/admin-import.php:206
543
  msgid "Errors during Import"
544
- msgstr ""
545
 
546
  #: admin/includes/admin-import.php:215
547
  msgid "Event from CSV-line"
@@ -573,7 +574,7 @@ msgstr "Lieu"
573
 
574
  #: admin/includes/admin-import.php:231
575
  msgid "Content"
576
- msgstr ""
577
 
578
  #: admin/includes/admin-import.php:232
579
  msgid "Category slugs"
@@ -581,7 +582,7 @@ msgstr ""
581
 
582
  #: admin/includes/admin-import.php:274
583
  msgid "Header line is missing or not correct!"
584
- msgstr ""
585
 
586
  #: admin/includes/admin-import.php:275
587
  #, php-format
@@ -601,11 +602,11 @@ msgstr ""
601
 
602
  #: admin/includes/admin-import.php:315
603
  msgid "Wrong date format for startdate"
604
- msgstr ""
605
 
606
  #: admin/includes/admin-import.php:324
607
  msgid "Wrong date format for enddate"
608
- msgstr ""
609
 
610
  #: admin/includes/admin-import.php:365
611
  msgid "Import events"
@@ -621,15 +622,15 @@ msgstr "Importer"
621
 
622
  #: admin/includes/admin-import.php:389 includes/events_post_type.php:69
623
  msgid "No events found"
624
- msgstr ""
625
 
626
  #: admin/includes/admin-import.php:432
627
  msgid "Saving of event failed!"
628
- msgstr ""
629
 
630
  #: admin/includes/admin-main.php:60
631
  msgid "Event Date"
632
- msgstr ""
633
 
634
  #: admin/includes/admin-main.php:64
635
  msgid "Author"
@@ -638,11 +639,11 @@ msgstr "Auteur"
638
  #: admin/includes/admin-main.php:126
639
  #, php-format
640
  msgid "Add a copy of %1$s"
641
- msgstr ""
642
 
643
  #: admin/includes/admin-main.php:126
644
  msgid "Copy"
645
- msgstr ""
646
 
647
  #: admin/includes/admin-new.php:51
648
  msgid "Event data"
@@ -650,7 +651,7 @@ msgstr ""
650
 
651
  #: admin/includes/admin-new.php:80
652
  msgid "Add Copy"
653
- msgstr ""
654
 
655
  #: admin/includes/admin-new.php:84
656
  msgid "Date"
@@ -666,19 +667,19 @@ msgstr "Evènement sur plusieurs jours"
666
 
667
  #: admin/includes/admin-new.php:106
668
  msgid "Event Title"
669
- msgstr ""
670
 
671
  #: admin/includes/admin-new.php:121
672
  msgid "Event Content"
673
- msgstr ""
674
 
675
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
676
  msgid "Event updated."
677
- msgstr ""
678
 
679
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
680
  msgid "View event"
681
- msgstr ""
682
 
683
  #: admin/includes/admin-new.php:184
684
  #, php-format
@@ -687,16 +688,16 @@ msgstr ""
687
 
688
  #: admin/includes/admin-new.php:185
689
  msgid "Event published."
690
- msgstr ""
691
 
692
  #: admin/includes/admin-new.php:187
693
  msgid "Event submitted."
694
- msgstr ""
695
 
696
  #: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
697
  #: admin/includes/admin-new.php:190
698
  msgid "Preview event"
699
- msgstr ""
700
 
701
  #: admin/includes/admin-new.php:188
702
  #, php-format
@@ -705,7 +706,7 @@ msgstr ""
705
 
706
  #: admin/includes/admin-new.php:190
707
  msgid "Event draft updated."
708
- msgstr ""
709
 
710
  #: admin/includes/admin-settings.php:71
711
  msgid "Go to Event Category switching page"
@@ -886,7 +887,7 @@ msgstr "Passé"
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr "Cette valeur définie une période antérieur à la date du jour."
888
 
889
- #: includes/event.php:107
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
@@ -896,7 +897,7 @@ msgstr "Evénements"
896
 
897
  #: includes/events_post_type.php:61
898
  msgid "Event"
899
- msgstr ""
900
 
901
  #: includes/events_post_type.php:62
902
  msgid "Add New"
@@ -912,23 +913,23 @@ msgstr "Modifier évènement"
912
 
913
  #: includes/events_post_type.php:65
914
  msgid "New Event"
915
- msgstr ""
916
 
917
  #: includes/events_post_type.php:66
918
  msgid "View Event"
919
- msgstr ""
920
 
921
  #: includes/events_post_type.php:67
922
  msgid "View Events"
923
- msgstr ""
924
 
925
  #: includes/events_post_type.php:68
926
  msgid "Search Events"
927
- msgstr ""
928
 
929
  #: includes/events_post_type.php:70
930
  msgid "No events found in Trash"
931
- msgstr ""
932
 
933
  #: includes/events_post_type.php:72
934
  msgid "All Events"
@@ -936,11 +937,11 @@ msgstr "Tous les évènements"
936
 
937
  #: includes/events_post_type.php:73
938
  msgid "Event Archives"
939
- msgstr ""
940
 
941
  #: includes/events_post_type.php:74
942
  msgid "Event Attributes"
943
- msgstr ""
944
 
945
  #: includes/events_post_type.php:75
946
  msgid "Insert into event"
@@ -948,7 +949,7 @@ msgstr ""
948
 
949
  #: includes/events_post_type.php:76
950
  msgid "Uploaded to this event"
951
- msgstr ""
952
 
953
  #: includes/events_post_type.php:77
954
  msgid "Event List"
@@ -956,7 +957,7 @@ msgstr "Liste des événements"
956
 
957
  #: includes/events_post_type.php:78
958
  msgid "Filter events list"
959
- msgstr ""
960
 
961
  #: includes/events_post_type.php:79
962
  msgid "Events list navigation"
@@ -964,11 +965,11 @@ msgstr ""
964
 
965
  #: includes/events_post_type.php:80
966
  msgid "Events list"
967
- msgstr ""
968
 
969
  #: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60
970
  msgid "Reset"
971
- msgstr ""
972
 
973
  #: includes/filterbar.php:278
974
  msgid "All"
@@ -976,7 +977,7 @@ msgstr "Tous"
976
 
977
  #: includes/filterbar.php:281
978
  msgid "All Dates"
979
- msgstr ""
980
 
981
  #: includes/options_helptexts.php:10
982
  msgid "CSV File to import"
@@ -1013,23 +1014,23 @@ msgstr ""
1013
 
1014
  #: includes/options_helptexts.php:22
1015
  msgid "day of the month, 2 digits with leading zeros"
1016
- msgstr ""
1017
 
1018
  #: includes/options_helptexts.php:24
1019
  msgid ""
1020
  "If the date format in the CSV file does not correspond to the given format, "
1021
  "the import script tries to recognize the date format by itself."
1022
- msgstr ""
1023
 
1024
  #: includes/options_helptexts.php:25
1025
  msgid ""
1026
  "But this can cause problems or result in wrong dates, so it is recommended "
1027
  "to specify the correct date format here."
1028
- msgstr ""
1029
 
1030
  #: includes/options_helptexts.php:26
1031
  msgid "Examples"
1032
- msgstr ""
1033
 
1034
  #: includes/options_helptexts.php:33
1035
  msgid "Text for no events"
@@ -1108,7 +1109,7 @@ msgstr "Langue choisie pour le fichier"
1108
 
1109
  #: includes/options_helptexts.php:62
1110
  msgid "Load translations from general language directory first"
1111
- msgstr ""
1112
 
1113
  #: includes/options_helptexts.php:63
1114
  #, php-format
@@ -1132,11 +1133,11 @@ msgstr ""
1132
  #: includes/options_helptexts.php:69
1133
  msgid ""
1134
  "With this option the slug for the events permalink URLs can be defined."
1135
- msgstr ""
1136
 
1137
  #: includes/options_helptexts.php:72
1138
  msgid "Text for \"Show content\""
1139
- msgstr ""
1140
 
1141
  #: includes/options_helptexts.php:73
1142
  msgid ""
@@ -1146,7 +1147,7 @@ msgstr ""
1146
 
1147
  #: includes/options_helptexts.php:76
1148
  msgid "Text for \"Hide content\""
1149
- msgstr ""
1150
 
1151
  #: includes/options_helptexts.php:77
1152
  msgid ""
@@ -1235,7 +1236,7 @@ msgstr "Description du Flux"
1235
  #: includes/options_helptexts.php:106
1236
  #, php-format
1237
  msgid "This options set the feed description. The default value is %1$s."
1238
- msgstr ""
1239
 
1240
  #: includes/options_helptexts.php:107
1241
  msgid ""
@@ -1254,11 +1255,11 @@ msgstr "Voir seulement les prochains évènements dans le flux."
1254
  #: includes/options_helptexts.php:112
1255
  msgid ""
1256
  "If this option is enabled only the upcoming events are listed in the feed."
1257
- msgstr ""
1258
 
1259
  #: includes/options_helptexts.php:113
1260
  msgid "If disabled all events (upcoming and past) will be listed."
1261
- msgstr ""
1262
 
1263
  #: includes/options_helptexts.php:116
1264
  msgid "Add RSS feed link in head"
@@ -1270,29 +1271,29 @@ msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
1270
 
1271
  #: includes/options_helptexts.php:118
1272
  msgid "This option adds a RSS feed in the html head for the events."
1273
- msgstr ""
1274
 
1275
  #: includes/options_helptexts.php:119
1276
  msgid "There are 2 alternatives to include the RSS feed"
1277
- msgstr ""
1278
 
1279
  #: includes/options_helptexts.php:120
1280
  msgid ""
1281
  "The first way is this option to include a link in the html head. This link "
1282
  "will be recognized by browers or feed readers."
1283
- msgstr ""
1284
 
1285
  #: includes/options_helptexts.php:121
1286
  #, php-format
1287
  msgid ""
1288
  "The second way is to include a visible feed link directly in the event list."
1289
  " This can be done by setting the shortcode attribute %1$s to %2$s."
1290
- msgstr ""
1291
 
1292
  #: includes/options_helptexts.php:122
1293
  #, php-format
1294
  msgid "This option is only valid if the setting %1$s is enabled."
1295
- msgstr ""
1296
 
1297
  #: includes/options_helptexts.php:125
1298
  msgid "Position of the RSS feed link"
@@ -1313,7 +1314,7 @@ msgstr "En bas"
1313
  #: includes/options_helptexts.php:127
1314
  msgid ""
1315
  "This option specifies the position of the RSS feed link in the event list."
1316
- msgstr ""
1317
 
1318
  #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1319
  #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
@@ -1321,7 +1322,7 @@ msgstr ""
1321
  msgid ""
1322
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1323
  " feed link."
1324
- msgstr ""
1325
 
1326
  #: includes/options_helptexts.php:131
1327
  msgid "Align of the RSS feed link"
@@ -1342,7 +1343,7 @@ msgstr "droite"
1342
  #: includes/options_helptexts.php:133
1343
  msgid ""
1344
  "This option specifies the align of the RSS feed link in the event list."
1345
- msgstr ""
1346
 
1347
  #: includes/options_helptexts.php:137
1348
  msgid "Feed link text"
@@ -1379,7 +1380,7 @@ msgstr ""
1379
 
1380
  #: includes/options_helptexts.php:152
1381
  msgid "Use Post Categories"
1382
- msgstr ""
1383
 
1384
  #: includes/options_helptexts.php:153
1385
  msgid ""
@@ -1399,15 +1400,15 @@ msgstr ""
1399
 
1400
  #: includes/options.php:40
1401
  msgid "events"
1402
- msgstr ""
1403
 
1404
  #: includes/options.php:41
1405
  msgid "Show content"
1406
- msgstr ""
1407
 
1408
  #: includes/options.php:42
1409
  msgid "Hide content"
1410
- msgstr ""
1411
 
1412
  #: includes/sc_event-list_helptexts.php:7
1413
  msgid "event-id"
@@ -1463,7 +1464,7 @@ msgstr ""
1463
  msgid ""
1464
  "With %1$S (default value) the events are sorted from old to new, with %2$s "
1465
  "in the opposite direction (from new to old)."
1466
- msgstr ""
1467
 
1468
  #: includes/sc_event-list_helptexts.php:23
1469
  #, php-format
@@ -1517,7 +1518,7 @@ msgstr ""
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
- #: includes/sc_event-list_helptexts.php:104
1521
  msgid "number"
1522
  msgstr "nombre"
1523
 
@@ -1572,7 +1573,7 @@ msgstr ""
1572
  #: includes/sc_event-list_helptexts.php:46
1573
  #: includes/sc_event-list_helptexts.php:63
1574
  msgid "description"
1575
- msgstr ""
1576
 
1577
  #: includes/sc_event-list_helptexts.php:46
1578
  msgid "item options"
@@ -1584,7 +1585,7 @@ msgstr ""
1584
 
1585
  #: includes/sc_event-list_helptexts.php:46
1586
  msgid "default value"
1587
- msgstr ""
1588
 
1589
  #: includes/sc_event-list_helptexts.php:46
1590
  msgid "option description"
@@ -1625,7 +1626,7 @@ msgstr ""
1625
 
1626
  #: includes/sc_event-list_helptexts.php:57
1627
  msgid "php date-formats"
1628
- msgstr ""
1629
 
1630
  #: includes/sc_event-list_helptexts.php:57
1631
  msgid "Set the displayed date format of the month entries."
@@ -1637,7 +1638,7 @@ msgid ""
1637
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1638
  "can use all or only some of the available values and you can specify their "
1639
  "order."
1640
- msgstr ""
1641
 
1642
  #: includes/sc_event-list_helptexts.php:58
1643
  #, php-format
@@ -1660,7 +1661,7 @@ msgstr ""
1660
 
1661
  #: includes/sc_event-list_helptexts.php:60
1662
  msgid "any text"
1663
- msgstr ""
1664
 
1665
  #: includes/sc_event-list_helptexts.php:60
1666
  msgid "Set the caption of the link."
@@ -1746,7 +1747,7 @@ msgstr ""
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
- #: includes/sc_event-list_helptexts.php:107
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
1752
 
@@ -1773,23 +1774,30 @@ msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ C
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
 
 
 
 
 
 
 
1776
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1777
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1778
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1779
  msgstr ""
1780
 
1781
- #: includes/sc_event-list_helptexts.php:105
1782
  msgid ""
1783
  "This attribute specifies if the content should be truncate to the given "
1784
  "number of characters in the event list."
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:106
1788
  #, php-format
1789
  msgid "With the standard value %1$s the full text is displayed."
1790
  msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
1791
 
1792
- #: includes/sc_event-list_helptexts.php:110
1793
  msgid ""
1794
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1795
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1797,7 +1805,7 @@ msgid ""
1797
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1798
  msgstr ""
1799
 
1800
- #: includes/sc_event-list_helptexts.php:116
1801
  msgid ""
1802
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1803
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1805,7 +1813,7 @@ msgid ""
1805
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1806
  msgstr ""
1807
 
1808
- #: includes/sc_event-list_helptexts.php:122
1809
  msgid ""
1810
  "This attribute specifies if a rss feed link should be added.<br />\n"
1811
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1814,20 +1822,20 @@ msgid ""
1814
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1815
  msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
1816
 
1817
- #: includes/sc_event-list_helptexts.php:128
1818
  msgid ""
1819
  "This attribute specifies the page or post url for event links.<br />\n"
1820
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1821
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1822
  msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
1823
 
1824
- #: includes/sc_event-list_helptexts.php:135
1825
  msgid ""
1826
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1827
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1828
  msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
1829
 
1830
- #: includes/sc_event-list.php:135
1831
  msgid "Event Information:"
1832
  msgstr "Information sur l'évènement"
1833
 
@@ -1861,7 +1869,7 @@ msgid "Truncate event title to"
1861
  msgstr "Tronquer le titre à"
1862
 
1863
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1864
- #: includes/widget_helptexts.php:67
1865
  msgid "characters"
1866
  msgstr "caractères"
1867
 
@@ -1904,68 +1912,76 @@ msgid ""
1904
  msgstr ""
1905
 
1906
  #: includes/widget_helptexts.php:59
1907
- msgid "Show event content"
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:61
1911
- msgid "This option defines if the event content will be displayed."
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:66
 
 
 
 
 
 
 
 
1915
  msgid "Truncate content to"
1916
  msgstr ""
1917
 
1918
- #: includes/widget_helptexts.php:68
1919
  msgid ""
1920
  "If the event content are diplayed this option defines the number of diplayed"
1921
  " characters."
1922
  msgstr ""
1923
 
1924
- #: includes/widget_helptexts.php:69
1925
  #, php-format
1926
  msgid "Set this value to %1$s to view the full text."
1927
  msgstr "Mettre cette valeur à %1$s pour voir le texte dans son intégralité."
1928
 
1929
- #: includes/widget_helptexts.php:74
1930
  msgid "URL to the linked Event List page"
1931
  msgstr "URL vers la page d'évènement"
1932
 
1933
- #: includes/widget_helptexts.php:76
1934
  msgid ""
1935
  "This option defines the url to the linked Event List page. This option is "
1936
  "required if you want to use one of the options below."
1937
  msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
1938
 
1939
- #: includes/widget_helptexts.php:81
1940
  msgid "Shortcode ID on linked page"
1941
  msgstr "Identifiant du shortcode sur la page lié"
1942
 
1943
- #: includes/widget_helptexts.php:83
1944
  msgid ""
1945
  "This option defines the shortcode-id for the Event List on the linked page. "
1946
  "Normally the standard value 1 is correct, you only have to change it if you "
1947
  "use multiple event-list shortcodes on the linked page."
1948
  msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
1949
 
1950
- #: includes/widget_helptexts.php:90
1951
  msgid ""
1952
  "With this option you can add a link to the single event page for every "
1953
  "displayed event. You have to specify the url to the page and the shortcode "
1954
  "id option if you want to use it."
1955
  msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
1956
 
1957
- #: includes/widget_helptexts.php:97
1958
  msgid ""
1959
  "With this option you can add a link to the event-list page below the "
1960
  "diplayed events. You have to specify the url to page option if you want to "
1961
  "use it."
1962
  msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
1963
 
1964
- #: includes/widget_helptexts.php:102
1965
  msgid "Caption for the link"
1966
  msgstr "Texte du lien."
1967
 
1968
- #: includes/widget_helptexts.php:104
1969
  msgid ""
1970
  "This option defines the text for the link to the Event List page if the "
1971
  "approriate option is selected."
@@ -1979,6 +1995,6 @@ msgstr "Avec ce widget une liste des prochains évènements peut être affichée
1979
  msgid "Upcoming events"
1980
  msgstr "Prochains évènements"
1981
 
1982
- #: includes/widget.php:38
1983
  msgid "show events page"
1984
  msgstr "Voir tous les évènements"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
  # Amélie Breffeil <amelie.breffeil@hotmail.fr>, 2017
7
  # Gwenael Jan <gwejan@gmail.com>, 2015
8
  # patoudss <patrice@desaintsteban.fr>, 2016-2017
9
+ # Thomas, 2019
10
  msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
15
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: fr_FR\n"
22
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
23
 
24
+ #: admin/admin.php:56
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
+ msgstr "Erreurs lors de la mise à niveau de l'extension %1$s"
28
 
29
+ #: admin/admin.php:56
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
+ msgstr "Mise à niveau de l'extension %1$s terminée"
33
 
34
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
35
  msgid "Event List Settings"
36
  msgstr "Préférences"
37
 
38
+ #: admin/admin.php:105
39
  msgid "Settings"
40
  msgstr "Préférences"
41
 
42
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
43
  msgid "About Event List"
44
  msgstr "A propos de la liste d'évènement"
45
 
46
+ #: admin/admin.php:109
47
  msgid "About"
48
  msgstr "A propos"
49
 
50
+ #: admin/admin.php:131
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
54
+ msgstr[0] "%s évènement"
55
+ msgstr[1] "%s évènements"
56
 
57
  #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
58
  msgid "General"
110
  " to insert an URL to the linked event-list page."
111
  msgstr "Si vous activer une des options sur les liens (%1$s ou %2$s) dans le widget, vous devez configurer l'URL vers la liste des événements"
112
 
113
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
114
  msgid "Add links to the single events"
115
  msgstr "Ajoute un lien vers le détail de l'évènement."
116
 
117
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
118
  msgid "Add a link to the Event List page"
119
  msgstr "Ajoute un liens vers la page des évènements."
120
 
188
  #: admin/includes/admin-about.php:99
189
  #, php-format
190
  msgid "Donate with %1$s"
191
+ msgstr "Faire un don avec %1$s"
192
 
193
  #: admin/includes/admin-about.php:107
194
  msgid ""
311
  #: admin/includes/admin-categories.php:46
312
  #, php-format
313
  msgid "%1$s categories modified (%2$s)"
314
+ msgstr "%1$s catégories modifiées (%2$s)"
315
 
316
  #: admin/includes/admin-categories.php:47
317
  #, php-format
318
  msgid "%1$s categories added (%2$s)"
319
+ msgstr "%1$s catégories ajoutées (%2$s)"
320
 
321
  #: admin/includes/admin-categories.php:48
322
  #, php-format
323
  msgid "%1$s categories deleted (%2$s)"
324
+ msgstr "%1$s catégories supprimées (%2$s)"
325
 
326
  #: admin/includes/admin-categories.php:50
327
  #, php-format
328
  msgid "%1$s categories not modified (%2$s)"
329
+ msgstr "%1$s catégories non modifiées (%2$s)"
330
 
331
  #: admin/includes/admin-categories.php:51
332
  #, php-format
333
  msgid "%1$s categories not added (%2$s)"
334
+ msgstr "%1$s catégories non ajoutées (%2$s)"
335
 
336
  #: admin/includes/admin-categories.php:52
337
  #, php-format
338
  msgid "%1$s categories not deleted (%2$s)"
339
+ msgstr "%1$s catégories non supprimées (%2$s)"
340
 
341
  #: admin/includes/admin-categories.php:55
342
  msgid "An Error occured during the category sync"
343
+ msgstr "Une erreur s'est produite lors de la synchronisation de catégorie"
344
 
345
  #: admin/includes/admin-categories.php:59
346
  msgid "Category sync finished"
347
+ msgstr "Synchronisation de la catégorie terminée"
348
 
349
  #: admin/includes/admin-category-sync.php:45
350
  msgid "Error: You are not allowed to view this page!"
351
+ msgstr "Erreur : vous n'êtes pas autorisé à consulter cette page !"
352
 
353
  #: admin/includes/admin-category-sync.php:62
354
  msgid "Affected Categories when switching to seperate Event Categories"
389
 
390
  #: admin/includes/admin-category-sync.php:74
391
  msgid "Start synchronisation"
392
+ msgstr "Démarrer la synchronisation"
393
 
394
  #: admin/includes/admin-category-sync.php:75
395
  msgid ""
399
 
400
  #: admin/includes/admin-category-sync.php:90
401
  msgid "Categories to modify"
402
+ msgstr "Catégories à modifier"
403
 
404
  #: admin/includes/admin-category-sync.php:91
405
  msgid "Categories to add"
406
+ msgstr "Catégories à ajouter"
407
 
408
  #: admin/includes/admin-category-sync.php:92
409
  msgid "Categories to delete (optional)"
410
+ msgstr "Catégories à supprimer (facultatif)"
411
 
412
  #: admin/includes/admin-category-sync.php:93
413
  msgid "Delete not available post categories"
427
 
428
  #: admin/includes/admin-category-sync.php:117
429
  msgid "none"
430
+ msgstr "aucun"
431
 
432
  #: admin/includes/admin-import.php:49
433
  msgid "Import Events"
485
 
486
  #: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
487
  msgid "Error"
488
+ msgstr "Erreur"
489
 
490
  #: admin/includes/admin-import.php:111
491
  msgid "This CSV file cannot be imported"
492
+ msgstr "Ce fichier CSV ne peut pas être importé"
493
 
494
  #: admin/includes/admin-import.php:122
495
  msgid "None of the events in this CSV file can be imported"
496
+ msgstr "Aucun évènement dans ce fichier CSV ne peut être importé"
497
 
498
  #: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
499
  msgid "Warning"
500
+ msgstr "Attention"
501
 
502
  #: admin/includes/admin-import.php:126
503
  #, php-format
504
  msgid "There is %1$s event which cannot be imported"
505
  msgid_plural "There are %1$s events which cannot be imported"
506
+ msgstr[0] "%1$s évènement ne peut pas être importé"
507
+ msgstr[1] "%1$s évènements ne peuvent pas être importés"
508
 
509
  #: admin/includes/admin-import.php:134
510
  #, php-format
511
  msgid "CSV line %1$s"
512
+ msgstr "Ligne CSV %1$s"
513
 
514
  #: admin/includes/admin-import.php:144
515
  msgid "You can still import all other events listed below."
516
+ msgstr "Vous pouvez toujours importer les évènements ci-dessous."
517
 
518
  #: admin/includes/admin-import.php:163
519
  msgid ""
529
 
530
  #: admin/includes/admin-import.php:198
531
  msgid "Import result"
532
+ msgstr "Résultat d'importation"
533
 
534
  #: admin/includes/admin-import.php:201
535
  #, php-format
536
  msgid "Import of %1$s events successful!"
537
+ msgstr "Importation de %1$s évènements terminée !"
538
 
539
  #: admin/includes/admin-import.php:202
540
  msgid "Go back to All Events"
542
 
543
  #: admin/includes/admin-import.php:206
544
  msgid "Errors during Import"
545
+ msgstr "Erreurs lors de l'importation"
546
 
547
  #: admin/includes/admin-import.php:215
548
  msgid "Event from CSV-line"
574
 
575
  #: admin/includes/admin-import.php:231
576
  msgid "Content"
577
+ msgstr "Contenu"
578
 
579
  #: admin/includes/admin-import.php:232
580
  msgid "Category slugs"
582
 
583
  #: admin/includes/admin-import.php:274
584
  msgid "Header line is missing or not correct!"
585
+ msgstr "Ligne d'en-tête manquante ou invalide !"
586
 
587
  #: admin/includes/admin-import.php:275
588
  #, php-format
602
 
603
  #: admin/includes/admin-import.php:315
604
  msgid "Wrong date format for startdate"
605
+ msgstr "Format de date incorrect pour la date de début"
606
 
607
  #: admin/includes/admin-import.php:324
608
  msgid "Wrong date format for enddate"
609
+ msgstr "Format de date incorrect pour la date de fin"
610
 
611
  #: admin/includes/admin-import.php:365
612
  msgid "Import events"
622
 
623
  #: admin/includes/admin-import.php:389 includes/events_post_type.php:69
624
  msgid "No events found"
625
+ msgstr "Aucun évènement trouvé"
626
 
627
  #: admin/includes/admin-import.php:432
628
  msgid "Saving of event failed!"
629
+ msgstr "Impossible d'enregistrer l'évènement !"
630
 
631
  #: admin/includes/admin-main.php:60
632
  msgid "Event Date"
633
+ msgstr "Date de l'évènement"
634
 
635
  #: admin/includes/admin-main.php:64
636
  msgid "Author"
639
  #: admin/includes/admin-main.php:126
640
  #, php-format
641
  msgid "Add a copy of %1$s"
642
+ msgstr "Ajouter une copie de %1$s"
643
 
644
  #: admin/includes/admin-main.php:126
645
  msgid "Copy"
646
+ msgstr "Copier"
647
 
648
  #: admin/includes/admin-new.php:51
649
  msgid "Event data"
651
 
652
  #: admin/includes/admin-new.php:80
653
  msgid "Add Copy"
654
+ msgstr "Ajouter une copie"
655
 
656
  #: admin/includes/admin-new.php:84
657
  msgid "Date"
667
 
668
  #: admin/includes/admin-new.php:106
669
  msgid "Event Title"
670
+ msgstr "Titre de l'évènement"
671
 
672
  #: admin/includes/admin-new.php:121
673
  msgid "Event Content"
674
+ msgstr "Contenu de l'évènement"
675
 
676
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
677
  msgid "Event updated."
678
+ msgstr "Évènement mis à jour."
679
 
680
  #: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
681
  msgid "View event"
682
+ msgstr "Voir l'évènement"
683
 
684
  #: admin/includes/admin-new.php:184
685
  #, php-format
688
 
689
  #: admin/includes/admin-new.php:185
690
  msgid "Event published."
691
+ msgstr "Évènement publié."
692
 
693
  #: admin/includes/admin-new.php:187
694
  msgid "Event submitted."
695
+ msgstr "Évènement soumis."
696
 
697
  #: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
698
  #: admin/includes/admin-new.php:190
699
  msgid "Preview event"
700
+ msgstr "Prévisualiser l'évènement"
701
 
702
  #: admin/includes/admin-new.php:188
703
  #, php-format
706
 
707
  #: admin/includes/admin-new.php:190
708
  msgid "Event draft updated."
709
+ msgstr "Brouillon de l'évènement mis à jour."
710
 
711
  #: admin/includes/admin-settings.php:71
712
  msgid "Go to Event Category switching page"
887
  msgid "This value defines a range from the past to the previous day."
888
  msgstr "Cette valeur définie une période antérieur à la date du jour."
889
 
890
+ #: includes/event.php:110
891
  msgid "No valid start date provided"
892
  msgstr ""
893
 
897
 
898
  #: includes/events_post_type.php:61
899
  msgid "Event"
900
+ msgstr "Évènement"
901
 
902
  #: includes/events_post_type.php:62
903
  msgid "Add New"
913
 
914
  #: includes/events_post_type.php:65
915
  msgid "New Event"
916
+ msgstr "Nouvel évènement"
917
 
918
  #: includes/events_post_type.php:66
919
  msgid "View Event"
920
+ msgstr "Voir l'évènement"
921
 
922
  #: includes/events_post_type.php:67
923
  msgid "View Events"
924
+ msgstr "Voir les évènements"
925
 
926
  #: includes/events_post_type.php:68
927
  msgid "Search Events"
928
+ msgstr "Chercher des évènements"
929
 
930
  #: includes/events_post_type.php:70
931
  msgid "No events found in Trash"
932
+ msgstr "Aucun évènement trouvé dans la corbeille"
933
 
934
  #: includes/events_post_type.php:72
935
  msgid "All Events"
937
 
938
  #: includes/events_post_type.php:73
939
  msgid "Event Archives"
940
+ msgstr "Archives d'évènements"
941
 
942
  #: includes/events_post_type.php:74
943
  msgid "Event Attributes"
944
+ msgstr "Attributs de l'évènement"
945
 
946
  #: includes/events_post_type.php:75
947
  msgid "Insert into event"
949
 
950
  #: includes/events_post_type.php:76
951
  msgid "Uploaded to this event"
952
+ msgstr "Téléchargé dans cet évènement"
953
 
954
  #: includes/events_post_type.php:77
955
  msgid "Event List"
957
 
958
  #: includes/events_post_type.php:78
959
  msgid "Filter events list"
960
+ msgstr "Filtrer la liste des évènements"
961
 
962
  #: includes/events_post_type.php:79
963
  msgid "Events list navigation"
965
 
966
  #: includes/events_post_type.php:80
967
  msgid "Events list"
968
+ msgstr "Liste des évènements"
969
 
970
  #: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60
971
  msgid "Reset"
972
+ msgstr "Réinitialiser"
973
 
974
  #: includes/filterbar.php:278
975
  msgid "All"
977
 
978
  #: includes/filterbar.php:281
979
  msgid "All Dates"
980
+ msgstr "Toutes les dates"
981
 
982
  #: includes/options_helptexts.php:10
983
  msgid "CSV File to import"
1014
 
1015
  #: includes/options_helptexts.php:22
1016
  msgid "day of the month, 2 digits with leading zeros"
1017
+ msgstr "jour du mois, en 2 chiffres avec des zéros non significatifs"
1018
 
1019
  #: includes/options_helptexts.php:24
1020
  msgid ""
1021
  "If the date format in the CSV file does not correspond to the given format, "
1022
  "the import script tries to recognize the date format by itself."
1023
+ msgstr "Si le format de date dans le fichier CSV ne correspond pas au format spécifié, le script d'importation essaie de reconnaître le format de date lui-même."
1024
 
1025
  #: includes/options_helptexts.php:25
1026
  msgid ""
1027
  "But this can cause problems or result in wrong dates, so it is recommended "
1028
  "to specify the correct date format here."
1029
+ msgstr "Mais cela peut causer des problèmes ou afficher des dates erronées, il est donc recommandé de spécifier le format correct ici."
1030
 
1031
  #: includes/options_helptexts.php:26
1032
  msgid "Examples"
1033
+ msgstr "Exemples"
1034
 
1035
  #: includes/options_helptexts.php:33
1036
  msgid "Text for no events"
1109
 
1110
  #: includes/options_helptexts.php:62
1111
  msgid "Load translations from general language directory first"
1112
+ msgstr "Charger en premier les traductions issues du répertoire général"
1113
 
1114
  #: includes/options_helptexts.php:63
1115
  #, php-format
1133
  #: includes/options_helptexts.php:69
1134
  msgid ""
1135
  "With this option the slug for the events permalink URLs can be defined."
1136
+ msgstr "Avec cette option, l'identifiant pour le permalien des évènements peut être défini."
1137
 
1138
  #: includes/options_helptexts.php:72
1139
  msgid "Text for \"Show content\""
1140
+ msgstr "Texte pour \"Afficher le contenu\""
1141
 
1142
  #: includes/options_helptexts.php:73
1143
  msgid ""
1147
 
1148
  #: includes/options_helptexts.php:76
1149
  msgid "Text for \"Hide content\""
1150
+ msgstr "Texte pour \"Masquer le contenu\""
1151
 
1152
  #: includes/options_helptexts.php:77
1153
  msgid ""
1236
  #: includes/options_helptexts.php:106
1237
  #, php-format
1238
  msgid "This options set the feed description. The default value is %1$s."
1239
+ msgstr "Cette option définit la description du flux. La valeur par défaut est %1$s."
1240
 
1241
  #: includes/options_helptexts.php:107
1242
  msgid ""
1255
  #: includes/options_helptexts.php:112
1256
  msgid ""
1257
  "If this option is enabled only the upcoming events are listed in the feed."
1258
+ msgstr "Si cette option est activée, seuls les évènements à venir seront listés dans le flux."
1259
 
1260
  #: includes/options_helptexts.php:113
1261
  msgid "If disabled all events (upcoming and past) will be listed."
1262
+ msgstr "Si désactivé, tous les évènements (passés et à venir) seront listés."
1263
 
1264
  #: includes/options_helptexts.php:116
1265
  msgid "Add RSS feed link in head"
1271
 
1272
  #: includes/options_helptexts.php:118
1273
  msgid "This option adds a RSS feed in the html head for the events."
1274
+ msgstr "Cette option ajoute un flux RSS des évènements dans l'en-tête HTML."
1275
 
1276
  #: includes/options_helptexts.php:119
1277
  msgid "There are 2 alternatives to include the RSS feed"
1278
+ msgstr "Il y a 2 possibilités pour inclure le flux RSS"
1279
 
1280
  #: includes/options_helptexts.php:120
1281
  msgid ""
1282
  "The first way is this option to include a link in the html head. This link "
1283
  "will be recognized by browers or feed readers."
1284
+ msgstr "La première est d'inclure un lien dans l'en-tête HTML. Ce lien sera détecté par les navigateurs ou les lecteurs de flux."
1285
 
1286
  #: includes/options_helptexts.php:121
1287
  #, php-format
1288
  msgid ""
1289
  "The second way is to include a visible feed link directly in the event list."
1290
  " This can be done by setting the shortcode attribute %1$s to %2$s."
1291
+ msgstr "La seconde est d'inclure un lien visible directement dans la liste des évènements. Pour cela, réglez les attributs du raccourci de %1$s à %2$s."
1292
 
1293
  #: includes/options_helptexts.php:122
1294
  #, php-format
1295
  msgid "This option is only valid if the setting %1$s is enabled."
1296
+ msgstr "Cette option n'est valide que si le réglage %1$s est activé."
1297
 
1298
  #: includes/options_helptexts.php:125
1299
  msgid "Position of the RSS feed link"
1314
  #: includes/options_helptexts.php:127
1315
  msgid ""
1316
  "This option specifies the position of the RSS feed link in the event list."
1317
+ msgstr "Cette option indique la position du lien du flux RSS dans la liste des évènements."
1318
 
1319
  #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1320
  #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1322
  msgid ""
1323
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1324
  " feed link."
1325
+ msgstr "Vous devez définir l'attribut du raccourci de %1$s à %2$s si vous souhaitez afficher le lien du flux."
1326
 
1327
  #: includes/options_helptexts.php:131
1328
  msgid "Align of the RSS feed link"
1343
  #: includes/options_helptexts.php:133
1344
  msgid ""
1345
  "This option specifies the align of the RSS feed link in the event list."
1346
+ msgstr "Cette option définit l'alignement du lien du flux RSS dans la liste des évènements."
1347
 
1348
  #: includes/options_helptexts.php:137
1349
  msgid "Feed link text"
1380
 
1381
  #: includes/options_helptexts.php:152
1382
  msgid "Use Post Categories"
1383
+ msgstr "Utiliser les catégories d'articles"
1384
 
1385
  #: includes/options_helptexts.php:153
1386
  msgid ""
1400
 
1401
  #: includes/options.php:40
1402
  msgid "events"
1403
+ msgstr "évènements"
1404
 
1405
  #: includes/options.php:41
1406
  msgid "Show content"
1407
+ msgstr "Afficher le contenu"
1408
 
1409
  #: includes/options.php:42
1410
  msgid "Hide content"
1411
+ msgstr "Masquer le contenu"
1412
 
1413
  #: includes/sc_event-list_helptexts.php:7
1414
  msgid "event-id"
1464
  msgid ""
1465
  "With %1$S (default value) the events are sorted from old to new, with %2$s "
1466
  "in the opposite direction (from new to old)."
1467
+ msgstr "Avec %1$S (valeur par défaut) les évènements sont affichés du plus ancien au plus récent, avec %2$s ils sont affichés à l'inverse (des récents aux anciens)."
1468
 
1469
  #: includes/sc_event-list_helptexts.php:23
1470
  #, php-format
1518
  #: includes/sc_event-list_helptexts.php:33
1519
  #: includes/sc_event-list_helptexts.php:74
1520
  #: includes/sc_event-list_helptexts.php:89
1521
+ #: includes/sc_event-list_helptexts.php:109
1522
  msgid "number"
1523
  msgstr "nombre"
1524
 
1573
  #: includes/sc_event-list_helptexts.php:46
1574
  #: includes/sc_event-list_helptexts.php:63
1575
  msgid "description"
1576
+ msgstr "description"
1577
 
1578
  #: includes/sc_event-list_helptexts.php:46
1579
  msgid "item options"
1585
 
1586
  #: includes/sc_event-list_helptexts.php:46
1587
  msgid "default value"
1588
+ msgstr "valeur par défaut"
1589
 
1590
  #: includes/sc_event-list_helptexts.php:46
1591
  msgid "option description"
1626
 
1627
  #: includes/sc_event-list_helptexts.php:57
1628
  msgid "php date-formats"
1629
+ msgstr "Formats de date PHP"
1630
 
1631
  #: includes/sc_event-list_helptexts.php:57
1632
  msgid "Set the displayed date format of the month entries."
1638
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1639
  "can use all or only some of the available values and you can specify their "
1640
  "order."
1641
+ msgstr "Avec cet élément, vous pouvez afficher les entrées spéciales %1$s, %2$s et %3$s. Vous pouvez les utiliser toutes ou seulement quelques unes et vous pouvez spécifier leur ordre."
1642
 
1643
  #: includes/sc_event-list_helptexts.php:58
1644
  #, php-format
1661
 
1662
  #: includes/sc_event-list_helptexts.php:60
1663
  msgid "any text"
1664
+ msgstr "texte quelconque"
1665
 
1666
  #: includes/sc_event-list_helptexts.php:60
1667
  msgid "Set the caption of the link."
1747
 
1748
  #: includes/sc_event-list_helptexts.php:77
1749
  #: includes/sc_event-list_helptexts.php:92
1750
+ #: includes/sc_event-list_helptexts.php:112
1751
  msgid "This attribute has no influence if only a single event is shown."
1752
  msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
1753
 
1774
 
1775
  #: includes/sc_event-list_helptexts.php:100
1776
  msgid ""
1777
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1778
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1779
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1780
+ msgstr ""
1781
+
1782
+ #: includes/sc_event-list_helptexts.php:105
1783
+ msgid ""
1784
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1785
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1786
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1787
  msgstr ""
1788
 
1789
+ #: includes/sc_event-list_helptexts.php:110
1790
  msgid ""
1791
  "This attribute specifies if the content should be truncate to the given "
1792
  "number of characters in the event list."
1793
  msgstr ""
1794
 
1795
+ #: includes/sc_event-list_helptexts.php:111
1796
  #, php-format
1797
  msgid "With the standard value %1$s the full text is displayed."
1798
  msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
1799
 
1800
+ #: includes/sc_event-list_helptexts.php:115
1801
  msgid ""
1802
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1803
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1805
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1806
  msgstr ""
1807
 
1808
+ #: includes/sc_event-list_helptexts.php:121
1809
  msgid ""
1810
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1811
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1813
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1814
  msgstr ""
1815
 
1816
+ #: includes/sc_event-list_helptexts.php:127
1817
  msgid ""
1818
  "This attribute specifies if a rss feed link should be added.<br />\n"
1819
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1822
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1823
  msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
1824
 
1825
+ #: includes/sc_event-list_helptexts.php:133
1826
  msgid ""
1827
  "This attribute specifies the page or post url for event links.<br />\n"
1828
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1829
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1830
  msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:140
1833
  msgid ""
1834
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1835
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1836
  msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
1837
 
1838
+ #: includes/sc_event-list.php:136
1839
  msgid "Event Information:"
1840
  msgstr "Information sur l'évènement"
1841
 
1869
  msgstr "Tronquer le titre à"
1870
 
1871
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1872
+ #: includes/widget_helptexts.php:74
1873
  msgid "characters"
1874
  msgstr "caractères"
1875
 
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:59
1915
+ msgid "Show event excerpt"
1916
  msgstr ""
1917
 
1918
  #: includes/widget_helptexts.php:61
1919
+ msgid "This option defines if the event excerpt will be displayed."
1920
  msgstr ""
1921
 
1922
  #: includes/widget_helptexts.php:66
1923
+ msgid "Show event content"
1924
+ msgstr "Afficher le contenu de l'évènement"
1925
+
1926
+ #: includes/widget_helptexts.php:68
1927
+ msgid "This option defines if the event content will be displayed."
1928
+ msgstr ""
1929
+
1930
+ #: includes/widget_helptexts.php:73
1931
  msgid "Truncate content to"
1932
  msgstr ""
1933
 
1934
+ #: includes/widget_helptexts.php:75
1935
  msgid ""
1936
  "If the event content are diplayed this option defines the number of diplayed"
1937
  " characters."
1938
  msgstr ""
1939
 
1940
+ #: includes/widget_helptexts.php:76
1941
  #, php-format
1942
  msgid "Set this value to %1$s to view the full text."
1943
  msgstr "Mettre cette valeur à %1$s pour voir le texte dans son intégralité."
1944
 
1945
+ #: includes/widget_helptexts.php:81
1946
  msgid "URL to the linked Event List page"
1947
  msgstr "URL vers la page d'évènement"
1948
 
1949
+ #: includes/widget_helptexts.php:83
1950
  msgid ""
1951
  "This option defines the url to the linked Event List page. This option is "
1952
  "required if you want to use one of the options below."
1953
  msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
1954
 
1955
+ #: includes/widget_helptexts.php:88
1956
  msgid "Shortcode ID on linked page"
1957
  msgstr "Identifiant du shortcode sur la page lié"
1958
 
1959
+ #: includes/widget_helptexts.php:90
1960
  msgid ""
1961
  "This option defines the shortcode-id for the Event List on the linked page. "
1962
  "Normally the standard value 1 is correct, you only have to change it if you "
1963
  "use multiple event-list shortcodes on the linked page."
1964
  msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
1965
 
1966
+ #: includes/widget_helptexts.php:97
1967
  msgid ""
1968
  "With this option you can add a link to the single event page for every "
1969
  "displayed event. You have to specify the url to the page and the shortcode "
1970
  "id option if you want to use it."
1971
  msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
1972
 
1973
+ #: includes/widget_helptexts.php:104
1974
  msgid ""
1975
  "With this option you can add a link to the event-list page below the "
1976
  "diplayed events. You have to specify the url to page option if you want to "
1977
  "use it."
1978
  msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
1979
 
1980
+ #: includes/widget_helptexts.php:109
1981
  msgid "Caption for the link"
1982
  msgstr "Texte du lien."
1983
 
1984
+ #: includes/widget_helptexts.php:111
1985
  msgid ""
1986
  "This option defines the text for the link to the Event List page if the "
1987
  "approriate option is selected."
1995
  msgid "Upcoming events"
1996
  msgstr "Prochains évènements"
1997
 
1998
+ #: includes/widget.php:39
1999
  msgid "show events page"
2000
  msgstr "Voir tous les évènements"
languages/event-list-id_ID.mo CHANGED
Binary file
languages/event-list-id_ID.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: id_ID\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Pengaturan Daftar Acara"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Pengaturan"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Tentang Daftar Acara"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Tentang"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -106,11 +106,11 @@ msgid ""
106
  " to insert an URL to the linked event-list page."
107
  msgstr "Jika Anda mengaktifkan pilihan tautan (%1$s atau %2$s) dalam widget, Anda harus menyisipkan URL ke halaman tautan daftar acara"
108
 
109
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
110
  msgid "Add links to the single events"
111
  msgstr "Tambah tautan ke satu acara"
112
 
113
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
114
  msgid "Add a link to the Event List page"
115
  msgstr "Tambah tautan ke laman Daftar Acara"
116
 
@@ -882,7 +882,7 @@ msgstr ""
882
  msgid "This value defines a range from the past to the previous day."
883
  msgstr ""
884
 
885
- #: includes/event.php:107
886
  msgid "No valid start date provided"
887
  msgstr ""
888
 
@@ -1513,7 +1513,7 @@ msgstr ""
1513
  #: includes/sc_event-list_helptexts.php:33
1514
  #: includes/sc_event-list_helptexts.php:74
1515
  #: includes/sc_event-list_helptexts.php:89
1516
- #: includes/sc_event-list_helptexts.php:104
1517
  msgid "number"
1518
  msgstr ""
1519
 
@@ -1742,7 +1742,7 @@ msgstr ""
1742
 
1743
  #: includes/sc_event-list_helptexts.php:77
1744
  #: includes/sc_event-list_helptexts.php:92
1745
- #: includes/sc_event-list_helptexts.php:107
1746
  msgid "This attribute has no influence if only a single event is shown."
1747
  msgstr ""
1748
 
@@ -1769,23 +1769,30 @@ msgstr ""
1769
 
1770
  #: includes/sc_event-list_helptexts.php:100
1771
  msgid ""
 
 
 
 
 
 
 
1772
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1773
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1774
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1775
  msgstr ""
1776
 
1777
- #: includes/sc_event-list_helptexts.php:105
1778
  msgid ""
1779
  "This attribute specifies if the content should be truncate to the given "
1780
  "number of characters in the event list."
1781
  msgstr ""
1782
 
1783
- #: includes/sc_event-list_helptexts.php:106
1784
  #, php-format
1785
  msgid "With the standard value %1$s the full text is displayed."
1786
  msgstr ""
1787
 
1788
- #: includes/sc_event-list_helptexts.php:110
1789
  msgid ""
1790
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1791
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1793,7 +1800,7 @@ msgid ""
1793
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1794
  msgstr ""
1795
 
1796
- #: includes/sc_event-list_helptexts.php:116
1797
  msgid ""
1798
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1799
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1801,7 +1808,7 @@ msgid ""
1801
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1802
  msgstr ""
1803
 
1804
- #: includes/sc_event-list_helptexts.php:122
1805
  msgid ""
1806
  "This attribute specifies if a rss feed link should be added.<br />\n"
1807
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1810,20 +1817,20 @@ msgid ""
1810
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1811
  msgstr ""
1812
 
1813
- #: includes/sc_event-list_helptexts.php:128
1814
  msgid ""
1815
  "This attribute specifies the page or post url for event links.<br />\n"
1816
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1817
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1818
  msgstr ""
1819
 
1820
- #: includes/sc_event-list_helptexts.php:135
1821
  msgid ""
1822
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1823
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1824
  msgstr ""
1825
 
1826
- #: includes/sc_event-list.php:135
1827
  msgid "Event Information:"
1828
  msgstr ""
1829
 
@@ -1857,7 +1864,7 @@ msgid "Truncate event title to"
1857
  msgstr ""
1858
 
1859
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1860
- #: includes/widget_helptexts.php:67
1861
  msgid "characters"
1862
  msgstr ""
1863
 
@@ -1900,68 +1907,76 @@ msgid ""
1900
  msgstr ""
1901
 
1902
  #: includes/widget_helptexts.php:59
1903
- msgid "Show event content"
1904
  msgstr ""
1905
 
1906
  #: includes/widget_helptexts.php:61
1907
- msgid "This option defines if the event content will be displayed."
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:66
1911
- msgid "Truncate content to"
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1915
  msgid ""
1916
  "If the event content are diplayed this option defines the number of diplayed"
1917
  " characters."
1918
  msgstr ""
1919
 
1920
- #: includes/widget_helptexts.php:69
1921
  #, php-format
1922
  msgid "Set this value to %1$s to view the full text."
1923
  msgstr ""
1924
 
1925
- #: includes/widget_helptexts.php:74
1926
  msgid "URL to the linked Event List page"
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:76
1930
  msgid ""
1931
  "This option defines the url to the linked Event List page. This option is "
1932
  "required if you want to use one of the options below."
1933
  msgstr ""
1934
 
1935
- #: includes/widget_helptexts.php:81
1936
  msgid "Shortcode ID on linked page"
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:83
1940
  msgid ""
1941
  "This option defines the shortcode-id for the Event List on the linked page. "
1942
  "Normally the standard value 1 is correct, you only have to change it if you "
1943
  "use multiple event-list shortcodes on the linked page."
1944
  msgstr ""
1945
 
1946
- #: includes/widget_helptexts.php:90
1947
  msgid ""
1948
  "With this option you can add a link to the single event page for every "
1949
  "displayed event. You have to specify the url to the page and the shortcode "
1950
  "id option if you want to use it."
1951
  msgstr ""
1952
 
1953
- #: includes/widget_helptexts.php:97
1954
  msgid ""
1955
  "With this option you can add a link to the event-list page below the "
1956
  "diplayed events. You have to specify the url to page option if you want to "
1957
  "use it."
1958
  msgstr ""
1959
 
1960
- #: includes/widget_helptexts.php:102
1961
  msgid "Caption for the link"
1962
  msgstr ""
1963
 
1964
- #: includes/widget_helptexts.php:104
1965
  msgid ""
1966
  "This option defines the text for the link to the Event List page if the "
1967
  "approriate option is selected."
@@ -1975,6 +1990,6 @@ msgstr ""
1975
  msgid "Upcoming events"
1976
  msgstr ""
1977
 
1978
- #: includes/widget.php:38
1979
  msgid "show events page"
1980
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: id_ID\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Pengaturan Daftar Acara"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Pengaturan"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Tentang Daftar Acara"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "Tentang"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
106
  " to insert an URL to the linked event-list page."
107
  msgstr "Jika Anda mengaktifkan pilihan tautan (%1$s atau %2$s) dalam widget, Anda harus menyisipkan URL ke halaman tautan daftar acara"
108
 
109
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
110
  msgid "Add links to the single events"
111
  msgstr "Tambah tautan ke satu acara"
112
 
113
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
114
  msgid "Add a link to the Event List page"
115
  msgstr "Tambah tautan ke laman Daftar Acara"
116
 
882
  msgid "This value defines a range from the past to the previous day."
883
  msgstr ""
884
 
885
+ #: includes/event.php:110
886
  msgid "No valid start date provided"
887
  msgstr ""
888
 
1513
  #: includes/sc_event-list_helptexts.php:33
1514
  #: includes/sc_event-list_helptexts.php:74
1515
  #: includes/sc_event-list_helptexts.php:89
1516
+ #: includes/sc_event-list_helptexts.php:109
1517
  msgid "number"
1518
  msgstr ""
1519
 
1742
 
1743
  #: includes/sc_event-list_helptexts.php:77
1744
  #: includes/sc_event-list_helptexts.php:92
1745
+ #: includes/sc_event-list_helptexts.php:112
1746
  msgid "This attribute has no influence if only a single event is shown."
1747
  msgstr ""
1748
 
1769
 
1770
  #: includes/sc_event-list_helptexts.php:100
1771
  msgid ""
1772
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1773
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1774
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1775
+ msgstr ""
1776
+
1777
+ #: includes/sc_event-list_helptexts.php:105
1778
+ msgid ""
1779
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1780
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1781
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1782
  msgstr ""
1783
 
1784
+ #: includes/sc_event-list_helptexts.php:110
1785
  msgid ""
1786
  "This attribute specifies if the content should be truncate to the given "
1787
  "number of characters in the event list."
1788
  msgstr ""
1789
 
1790
+ #: includes/sc_event-list_helptexts.php:111
1791
  #, php-format
1792
  msgid "With the standard value %1$s the full text is displayed."
1793
  msgstr ""
1794
 
1795
+ #: includes/sc_event-list_helptexts.php:115
1796
  msgid ""
1797
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1798
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1800
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1801
  msgstr ""
1802
 
1803
+ #: includes/sc_event-list_helptexts.php:121
1804
  msgid ""
1805
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1806
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1808
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1809
  msgstr ""
1810
 
1811
+ #: includes/sc_event-list_helptexts.php:127
1812
  msgid ""
1813
  "This attribute specifies if a rss feed link should be added.<br />\n"
1814
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1817
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1818
  msgstr ""
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:133
1821
  msgid ""
1822
  "This attribute specifies the page or post url for event links.<br />\n"
1823
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1824
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1825
  msgstr ""
1826
 
1827
+ #: includes/sc_event-list_helptexts.php:140
1828
  msgid ""
1829
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1830
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1831
  msgstr ""
1832
 
1833
+ #: includes/sc_event-list.php:136
1834
  msgid "Event Information:"
1835
  msgstr ""
1836
 
1864
  msgstr ""
1865
 
1866
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1867
+ #: includes/widget_helptexts.php:74
1868
  msgid "characters"
1869
  msgstr ""
1870
 
1907
  msgstr ""
1908
 
1909
  #: includes/widget_helptexts.php:59
1910
+ msgid "Show event excerpt"
1911
  msgstr ""
1912
 
1913
  #: includes/widget_helptexts.php:61
1914
+ msgid "This option defines if the event excerpt will be displayed."
1915
  msgstr ""
1916
 
1917
  #: includes/widget_helptexts.php:66
1918
+ msgid "Show event content"
1919
  msgstr ""
1920
 
1921
  #: includes/widget_helptexts.php:68
1922
+ msgid "This option defines if the event content will be displayed."
1923
+ msgstr ""
1924
+
1925
+ #: includes/widget_helptexts.php:73
1926
+ msgid "Truncate content to"
1927
+ msgstr ""
1928
+
1929
+ #: includes/widget_helptexts.php:75
1930
  msgid ""
1931
  "If the event content are diplayed this option defines the number of diplayed"
1932
  " characters."
1933
  msgstr ""
1934
 
1935
+ #: includes/widget_helptexts.php:76
1936
  #, php-format
1937
  msgid "Set this value to %1$s to view the full text."
1938
  msgstr ""
1939
 
1940
+ #: includes/widget_helptexts.php:81
1941
  msgid "URL to the linked Event List page"
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:83
1945
  msgid ""
1946
  "This option defines the url to the linked Event List page. This option is "
1947
  "required if you want to use one of the options below."
1948
  msgstr ""
1949
 
1950
+ #: includes/widget_helptexts.php:88
1951
  msgid "Shortcode ID on linked page"
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:90
1955
  msgid ""
1956
  "This option defines the shortcode-id for the Event List on the linked page. "
1957
  "Normally the standard value 1 is correct, you only have to change it if you "
1958
  "use multiple event-list shortcodes on the linked page."
1959
  msgstr ""
1960
 
1961
+ #: includes/widget_helptexts.php:97
1962
  msgid ""
1963
  "With this option you can add a link to the single event page for every "
1964
  "displayed event. You have to specify the url to the page and the shortcode "
1965
  "id option if you want to use it."
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:104
1969
  msgid ""
1970
  "With this option you can add a link to the event-list page below the "
1971
  "diplayed events. You have to specify the url to page option if you want to "
1972
  "use it."
1973
  msgstr ""
1974
 
1975
+ #: includes/widget_helptexts.php:109
1976
  msgid "Caption for the link"
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:111
1980
  msgid ""
1981
  "This option defines the text for the link to the Event List page if the "
1982
  "approriate option is selected."
1990
  msgid "Upcoming events"
1991
  msgstr ""
1992
 
1993
+ #: includes/widget.php:39
1994
  msgid "show events page"
1995
  msgstr ""
languages/event-list-it_IT.mo CHANGED
Binary file
languages/event-list-it_IT.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Impostazioni Eventi Lista"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Impostazioni"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Informazioni su Lista Eventi"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Informazioni su"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -107,11 +107,11 @@ msgid ""
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
111
  msgid "Add links to the single events"
112
  msgstr "Aggiungi link ai singoli eventi"
113
 
114
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
115
  msgid "Add a link to the Event List page"
116
  msgstr "Aggiungi un link alla pagina Elenco eventi"
117
 
@@ -884,7 +884,7 @@ msgstr "Passati"
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:107
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
@@ -1515,7 +1515,7 @@ msgstr ""
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
- #: includes/sc_event-list_helptexts.php:104
1519
  msgid "number"
1520
  msgstr ""
1521
 
@@ -1744,7 +1744,7 @@ msgstr ""
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
- #: includes/sc_event-list_helptexts.php:107
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,23 +1771,30 @@ msgstr ""
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
 
 
 
 
 
 
 
1774
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1775
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1776
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1777
  msgstr ""
1778
 
1779
- #: includes/sc_event-list_helptexts.php:105
1780
  msgid ""
1781
  "This attribute specifies if the content should be truncate to the given "
1782
  "number of characters in the event list."
1783
  msgstr ""
1784
 
1785
- #: includes/sc_event-list_helptexts.php:106
1786
  #, php-format
1787
  msgid "With the standard value %1$s the full text is displayed."
1788
  msgstr ""
1789
 
1790
- #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1793
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1795,7 +1802,7 @@ msgid ""
1795
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1796
  msgstr ""
1797
 
1798
- #: includes/sc_event-list_helptexts.php:116
1799
  msgid ""
1800
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1801
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1803,7 +1810,7 @@ msgid ""
1803
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1804
  msgstr ""
1805
 
1806
- #: includes/sc_event-list_helptexts.php:122
1807
  msgid ""
1808
  "This attribute specifies if a rss feed link should be added.<br />\n"
1809
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1812,20 +1819,20 @@ msgid ""
1812
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1813
  msgstr ""
1814
 
1815
- #: includes/sc_event-list_helptexts.php:128
1816
  msgid ""
1817
  "This attribute specifies the page or post url for event links.<br />\n"
1818
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1819
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1820
  msgstr ""
1821
 
1822
- #: includes/sc_event-list_helptexts.php:135
1823
  msgid ""
1824
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1825
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1826
  msgstr ""
1827
 
1828
- #: includes/sc_event-list.php:135
1829
  msgid "Event Information:"
1830
  msgstr "Informazioni Evento"
1831
 
@@ -1859,7 +1866,7 @@ msgid "Truncate event title to"
1859
  msgstr "Tronca il titolo dell'evento al"
1860
 
1861
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1862
- #: includes/widget_helptexts.php:67
1863
  msgid "characters"
1864
  msgstr "caratteri"
1865
 
@@ -1902,68 +1909,76 @@ msgid ""
1902
  msgstr ""
1903
 
1904
  #: includes/widget_helptexts.php:59
1905
- msgid "Show event content"
1906
  msgstr ""
1907
 
1908
  #: includes/widget_helptexts.php:61
1909
- msgid "This option defines if the event content will be displayed."
1910
  msgstr ""
1911
 
1912
  #: includes/widget_helptexts.php:66
1913
- msgid "Truncate content to"
1914
  msgstr ""
1915
 
1916
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1917
  msgid ""
1918
  "If the event content are diplayed this option defines the number of diplayed"
1919
  " characters."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:69
1923
  #, php-format
1924
  msgid "Set this value to %1$s to view the full text."
1925
  msgstr ""
1926
 
1927
- #: includes/widget_helptexts.php:74
1928
  msgid "URL to the linked Event List page"
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:76
1932
  msgid ""
1933
  "This option defines the url to the linked Event List page. This option is "
1934
  "required if you want to use one of the options below."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:81
1938
  msgid "Shortcode ID on linked page"
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:83
1942
  msgid ""
1943
  "This option defines the shortcode-id for the Event List on the linked page. "
1944
  "Normally the standard value 1 is correct, you only have to change it if you "
1945
  "use multiple event-list shortcodes on the linked page."
1946
  msgstr ""
1947
 
1948
- #: includes/widget_helptexts.php:90
1949
  msgid ""
1950
  "With this option you can add a link to the single event page for every "
1951
  "displayed event. You have to specify the url to the page and the shortcode "
1952
  "id option if you want to use it."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:97
1956
  msgid ""
1957
  "With this option you can add a link to the event-list page below the "
1958
  "diplayed events. You have to specify the url to page option if you want to "
1959
  "use it."
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:102
1963
  msgid "Caption for the link"
1964
  msgstr "Didascalia per il link"
1965
 
1966
- #: includes/widget_helptexts.php:104
1967
  msgid ""
1968
  "This option defines the text for the link to the Event List page if the "
1969
  "approriate option is selected."
@@ -1977,6 +1992,6 @@ msgstr "Con questo widget può essere mostrata una lista di eventi"
1977
  msgid "Upcoming events"
1978
  msgstr "Prossimi eventi"
1979
 
1980
- #: includes/widget.php:38
1981
  msgid "show events page"
1982
  msgstr "mostra pagina eventi"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Impostazioni Eventi Lista"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Impostazioni"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "Informazioni su Lista Eventi"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "Informazioni su"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
111
  msgid "Add links to the single events"
112
  msgstr "Aggiungi link ai singoli eventi"
113
 
114
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
115
  msgid "Add a link to the Event List page"
116
  msgstr "Aggiungi un link alla pagina Elenco eventi"
117
 
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
+ #: includes/event.php:110
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
1515
  #: includes/sc_event-list_helptexts.php:33
1516
  #: includes/sc_event-list_helptexts.php:74
1517
  #: includes/sc_event-list_helptexts.php:89
1518
+ #: includes/sc_event-list_helptexts.php:109
1519
  msgid "number"
1520
  msgstr ""
1521
 
1744
 
1745
  #: includes/sc_event-list_helptexts.php:77
1746
  #: includes/sc_event-list_helptexts.php:92
1747
+ #: includes/sc_event-list_helptexts.php:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
1771
 
1772
  #: includes/sc_event-list_helptexts.php:100
1773
  msgid ""
1774
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1775
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1776
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1777
+ msgstr ""
1778
+
1779
+ #: includes/sc_event-list_helptexts.php:105
1780
+ msgid ""
1781
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1782
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1783
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1784
  msgstr ""
1785
 
1786
+ #: includes/sc_event-list_helptexts.php:110
1787
  msgid ""
1788
  "This attribute specifies if the content should be truncate to the given "
1789
  "number of characters in the event list."
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:111
1793
  #, php-format
1794
  msgid "With the standard value %1$s the full text is displayed."
1795
  msgstr ""
1796
 
1797
+ #: includes/sc_event-list_helptexts.php:115
1798
  msgid ""
1799
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1800
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1802
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:121
1806
  msgid ""
1807
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1808
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1810
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:127
1814
  msgid ""
1815
  "This attribute specifies if a rss feed link should be added.<br />\n"
1816
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1819
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1820
  msgstr ""
1821
 
1822
+ #: includes/sc_event-list_helptexts.php:133
1823
  msgid ""
1824
  "This attribute specifies the page or post url for event links.<br />\n"
1825
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1826
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1827
  msgstr ""
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:140
1830
  msgid ""
1831
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1832
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1833
  msgstr ""
1834
 
1835
+ #: includes/sc_event-list.php:136
1836
  msgid "Event Information:"
1837
  msgstr "Informazioni Evento"
1838
 
1866
  msgstr "Tronca il titolo dell'evento al"
1867
 
1868
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1869
+ #: includes/widget_helptexts.php:74
1870
  msgid "characters"
1871
  msgstr "caratteri"
1872
 
1909
  msgstr ""
1910
 
1911
  #: includes/widget_helptexts.php:59
1912
+ msgid "Show event excerpt"
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:61
1916
+ msgid "This option defines if the event excerpt will be displayed."
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:66
1920
+ msgid "Show event content"
1921
  msgstr ""
1922
 
1923
  #: includes/widget_helptexts.php:68
1924
+ msgid "This option defines if the event content will be displayed."
1925
+ msgstr ""
1926
+
1927
+ #: includes/widget_helptexts.php:73
1928
+ msgid "Truncate content to"
1929
+ msgstr ""
1930
+
1931
+ #: includes/widget_helptexts.php:75
1932
  msgid ""
1933
  "If the event content are diplayed this option defines the number of diplayed"
1934
  " characters."
1935
  msgstr ""
1936
 
1937
+ #: includes/widget_helptexts.php:76
1938
  #, php-format
1939
  msgid "Set this value to %1$s to view the full text."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:81
1943
  msgid "URL to the linked Event List page"
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:83
1947
  msgid ""
1948
  "This option defines the url to the linked Event List page. This option is "
1949
  "required if you want to use one of the options below."
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:88
1953
  msgid "Shortcode ID on linked page"
1954
  msgstr ""
1955
 
1956
+ #: includes/widget_helptexts.php:90
1957
  msgid ""
1958
  "This option defines the shortcode-id for the Event List on the linked page. "
1959
  "Normally the standard value 1 is correct, you only have to change it if you "
1960
  "use multiple event-list shortcodes on the linked page."
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:97
1964
  msgid ""
1965
  "With this option you can add a link to the single event page for every "
1966
  "displayed event. You have to specify the url to the page and the shortcode "
1967
  "id option if you want to use it."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "With this option you can add a link to the event-list page below the "
1973
  "diplayed events. You have to specify the url to page option if you want to "
1974
  "use it."
1975
  msgstr ""
1976
 
1977
+ #: includes/widget_helptexts.php:109
1978
  msgid "Caption for the link"
1979
  msgstr "Didascalia per il link"
1980
 
1981
+ #: includes/widget_helptexts.php:111
1982
  msgid ""
1983
  "This option defines the text for the link to the Event List page if the "
1984
  "approriate option is selected."
1992
  msgid "Upcoming events"
1993
  msgstr "Prossimi eventi"
1994
 
1995
+ #: includes/widget.php:39
1996
  msgid "show events page"
1997
  msgstr "mostra pagina eventi"
languages/event-list-nl_NL.mo CHANGED
Binary file
languages/event-list-nl_NL.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
15
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
18
  "MIME-Version: 1.0\n"
@@ -21,33 +21,33 @@ msgstr ""
21
  "Language: nl_NL\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
 
24
- #: admin/admin.php:57
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr ""
28
 
29
- #: admin/admin.php:57
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
35
  msgid "Event List Settings"
36
  msgstr "Gebeurtenislijst Instellingen"
37
 
38
- #: admin/admin.php:106
39
  msgid "Settings"
40
  msgstr "Instellingen"
41
 
42
- #: admin/admin.php:110 admin/includes/admin-about.php:37
43
  msgid "About Event List"
44
  msgstr "Over Gebeurtenislijst"
45
 
46
- #: admin/admin.php:110
47
  msgid "About"
48
  msgstr "Over"
49
 
50
- #: admin/admin.php:132
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
@@ -110,11 +110,11 @@ msgid ""
110
  " to insert an URL to the linked event-list page."
111
  msgstr ""
112
 
113
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
114
  msgid "Add links to the single events"
115
  msgstr "Voeg links toe aan de enkele gebeurtenis"
116
 
117
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
118
  msgid "Add a link to the Event List page"
119
  msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
120
 
@@ -887,7 +887,7 @@ msgstr "Eerdere"
887
  msgid "This value defines a range from the past to the previous day."
888
  msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
889
 
890
- #: includes/event.php:107
891
  msgid "No valid start date provided"
892
  msgstr ""
893
 
@@ -1518,7 +1518,7 @@ msgstr ""
1518
  #: includes/sc_event-list_helptexts.php:33
1519
  #: includes/sc_event-list_helptexts.php:74
1520
  #: includes/sc_event-list_helptexts.php:89
1521
- #: includes/sc_event-list_helptexts.php:104
1522
  msgid "number"
1523
  msgstr "nummer"
1524
 
@@ -1747,7 +1747,7 @@ msgstr ""
1747
 
1748
  #: includes/sc_event-list_helptexts.php:77
1749
  #: includes/sc_event-list_helptexts.php:92
1750
- #: includes/sc_event-list_helptexts.php:107
1751
  msgid "This attribute has no influence if only a single event is shown."
1752
  msgstr ""
1753
 
@@ -1774,23 +1774,30 @@ msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenemente
1774
 
1775
  #: includes/sc_event-list_helptexts.php:100
1776
  msgid ""
 
 
 
 
 
 
 
1777
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1778
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1779
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1780
  msgstr ""
1781
 
1782
- #: includes/sc_event-list_helptexts.php:105
1783
  msgid ""
1784
  "This attribute specifies if the content should be truncate to the given "
1785
  "number of characters in the event list."
1786
  msgstr ""
1787
 
1788
- #: includes/sc_event-list_helptexts.php:106
1789
  #, php-format
1790
  msgid "With the standard value %1$s the full text is displayed."
1791
  msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven."
1792
 
1793
- #: includes/sc_event-list_helptexts.php:110
1794
  msgid ""
1795
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1796
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1798,7 +1805,7 @@ msgid ""
1798
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1799
  msgstr ""
1800
 
1801
- #: includes/sc_event-list_helptexts.php:116
1802
  msgid ""
1803
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1804
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1806,7 +1813,7 @@ msgid ""
1806
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1807
  msgstr ""
1808
 
1809
- #: includes/sc_event-list_helptexts.php:122
1810
  msgid ""
1811
  "This attribute specifies if a rss feed link should be added.<br />\n"
1812
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1815,20 +1822,20 @@ msgid ""
1815
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1816
  msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1817
 
1818
- #: includes/sc_event-list_helptexts.php:128
1819
  msgid ""
1820
  "This attribute specifies the page or post url for event links.<br />\n"
1821
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1822
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1823
  msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
1824
 
1825
- #: includes/sc_event-list_helptexts.php:135
1826
  msgid ""
1827
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1828
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1829
  msgstr ""
1830
 
1831
- #: includes/sc_event-list.php:135
1832
  msgid "Event Information:"
1833
  msgstr "Evenement details:"
1834
 
@@ -1862,7 +1869,7 @@ msgid "Truncate event title to"
1862
  msgstr "Kort evenementtitel in tot"
1863
 
1864
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1865
- #: includes/widget_helptexts.php:67
1866
  msgid "characters"
1867
  msgstr "tekens"
1868
 
@@ -1905,68 +1912,76 @@ msgid ""
1905
  msgstr ""
1906
 
1907
  #: includes/widget_helptexts.php:59
1908
- msgid "Show event content"
1909
  msgstr ""
1910
 
1911
  #: includes/widget_helptexts.php:61
1912
- msgid "This option defines if the event content will be displayed."
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:66
1916
- msgid "Truncate content to"
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1920
  msgid ""
1921
  "If the event content are diplayed this option defines the number of diplayed"
1922
  " characters."
1923
  msgstr ""
1924
 
1925
- #: includes/widget_helptexts.php:69
1926
  #, php-format
1927
  msgid "Set this value to %1$s to view the full text."
1928
  msgstr ""
1929
 
1930
- #: includes/widget_helptexts.php:74
1931
  msgid "URL to the linked Event List page"
1932
  msgstr "URL naar de gelinkte evenementenlijst-pagina"
1933
 
1934
- #: includes/widget_helptexts.php:76
1935
  msgid ""
1936
  "This option defines the url to the linked Event List page. This option is "
1937
  "required if you want to use one of the options below."
1938
  msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
1939
 
1940
- #: includes/widget_helptexts.php:81
1941
  msgid "Shortcode ID on linked page"
1942
  msgstr "Shortcode ID op de gelinkte pagina"
1943
 
1944
- #: includes/widget_helptexts.php:83
1945
  msgid ""
1946
  "This option defines the shortcode-id for the Event List on the linked page. "
1947
  "Normally the standard value 1 is correct, you only have to change it if you "
1948
  "use multiple event-list shortcodes on the linked page."
1949
  msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
1950
 
1951
- #: includes/widget_helptexts.php:90
1952
  msgid ""
1953
  "With this option you can add a link to the single event page for every "
1954
  "displayed event. You have to specify the url to the page and the shortcode "
1955
  "id option if you want to use it."
1956
  msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
1957
 
1958
- #: includes/widget_helptexts.php:97
1959
  msgid ""
1960
  "With this option you can add a link to the event-list page below the "
1961
  "diplayed events. You have to specify the url to page option if you want to "
1962
  "use it."
1963
  msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
1964
 
1965
- #: includes/widget_helptexts.php:102
1966
  msgid "Caption for the link"
1967
  msgstr "Bijschrift bij de link"
1968
 
1969
- #: includes/widget_helptexts.php:104
1970
  msgid ""
1971
  "This option defines the text for the link to the Event List page if the "
1972
  "approriate option is selected."
@@ -1980,6 +1995,6 @@ msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
1980
  msgid "Upcoming events"
1981
  msgstr "Komende evenementen"
1982
 
1983
- #: includes/widget.php:38
1984
  msgid "show events page"
1985
  msgstr "toon evenementenpagina"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
15
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: nl_NL\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
 
24
+ #: admin/admin.php:56
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr ""
28
 
29
+ #: admin/admin.php:56
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
35
  msgid "Event List Settings"
36
  msgstr "Gebeurtenislijst Instellingen"
37
 
38
+ #: admin/admin.php:105
39
  msgid "Settings"
40
  msgstr "Instellingen"
41
 
42
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
43
  msgid "About Event List"
44
  msgstr "Over Gebeurtenislijst"
45
 
46
+ #: admin/admin.php:109
47
  msgid "About"
48
  msgstr "Over"
49
 
50
+ #: admin/admin.php:131
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
110
  " to insert an URL to the linked event-list page."
111
  msgstr ""
112
 
113
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
114
  msgid "Add links to the single events"
115
  msgstr "Voeg links toe aan de enkele gebeurtenis"
116
 
117
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
118
  msgid "Add a link to the Event List page"
119
  msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
120
 
887
  msgid "This value defines a range from the past to the previous day."
888
  msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
889
 
890
+ #: includes/event.php:110
891
  msgid "No valid start date provided"
892
  msgstr ""
893
 
1518
  #: includes/sc_event-list_helptexts.php:33
1519
  #: includes/sc_event-list_helptexts.php:74
1520
  #: includes/sc_event-list_helptexts.php:89
1521
+ #: includes/sc_event-list_helptexts.php:109
1522
  msgid "number"
1523
  msgstr "nummer"
1524
 
1747
 
1748
  #: includes/sc_event-list_helptexts.php:77
1749
  #: includes/sc_event-list_helptexts.php:92
1750
+ #: includes/sc_event-list_helptexts.php:112
1751
  msgid "This attribute has no influence if only a single event is shown."
1752
  msgstr ""
1753
 
1774
 
1775
  #: includes/sc_event-list_helptexts.php:100
1776
  msgid ""
1777
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1778
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1779
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1780
+ msgstr ""
1781
+
1782
+ #: includes/sc_event-list_helptexts.php:105
1783
+ msgid ""
1784
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1785
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1786
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1787
  msgstr ""
1788
 
1789
+ #: includes/sc_event-list_helptexts.php:110
1790
  msgid ""
1791
  "This attribute specifies if the content should be truncate to the given "
1792
  "number of characters in the event list."
1793
  msgstr ""
1794
 
1795
+ #: includes/sc_event-list_helptexts.php:111
1796
  #, php-format
1797
  msgid "With the standard value %1$s the full text is displayed."
1798
  msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven."
1799
 
1800
+ #: includes/sc_event-list_helptexts.php:115
1801
  msgid ""
1802
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1803
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1805
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1806
  msgstr ""
1807
 
1808
+ #: includes/sc_event-list_helptexts.php:121
1809
  msgid ""
1810
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1811
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1813
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1814
  msgstr ""
1815
 
1816
+ #: includes/sc_event-list_helptexts.php:127
1817
  msgid ""
1818
  "This attribute specifies if a rss feed link should be added.<br />\n"
1819
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1822
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1823
  msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1824
 
1825
+ #: includes/sc_event-list_helptexts.php:133
1826
  msgid ""
1827
  "This attribute specifies the page or post url for event links.<br />\n"
1828
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1829
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1830
  msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:140
1833
  msgid ""
1834
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1835
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1836
  msgstr ""
1837
 
1838
+ #: includes/sc_event-list.php:136
1839
  msgid "Event Information:"
1840
  msgstr "Evenement details:"
1841
 
1869
  msgstr "Kort evenementtitel in tot"
1870
 
1871
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1872
+ #: includes/widget_helptexts.php:74
1873
  msgid "characters"
1874
  msgstr "tekens"
1875
 
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:59
1915
+ msgid "Show event excerpt"
1916
  msgstr ""
1917
 
1918
  #: includes/widget_helptexts.php:61
1919
+ msgid "This option defines if the event excerpt will be displayed."
1920
  msgstr ""
1921
 
1922
  #: includes/widget_helptexts.php:66
1923
+ msgid "Show event content"
1924
  msgstr ""
1925
 
1926
  #: includes/widget_helptexts.php:68
1927
+ msgid "This option defines if the event content will be displayed."
1928
+ msgstr ""
1929
+
1930
+ #: includes/widget_helptexts.php:73
1931
+ msgid "Truncate content to"
1932
+ msgstr ""
1933
+
1934
+ #: includes/widget_helptexts.php:75
1935
  msgid ""
1936
  "If the event content are diplayed this option defines the number of diplayed"
1937
  " characters."
1938
  msgstr ""
1939
 
1940
+ #: includes/widget_helptexts.php:76
1941
  #, php-format
1942
  msgid "Set this value to %1$s to view the full text."
1943
  msgstr ""
1944
 
1945
+ #: includes/widget_helptexts.php:81
1946
  msgid "URL to the linked Event List page"
1947
  msgstr "URL naar de gelinkte evenementenlijst-pagina"
1948
 
1949
+ #: includes/widget_helptexts.php:83
1950
  msgid ""
1951
  "This option defines the url to the linked Event List page. This option is "
1952
  "required if you want to use one of the options below."
1953
  msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
1954
 
1955
+ #: includes/widget_helptexts.php:88
1956
  msgid "Shortcode ID on linked page"
1957
  msgstr "Shortcode ID op de gelinkte pagina"
1958
 
1959
+ #: includes/widget_helptexts.php:90
1960
  msgid ""
1961
  "This option defines the shortcode-id for the Event List on the linked page. "
1962
  "Normally the standard value 1 is correct, you only have to change it if you "
1963
  "use multiple event-list shortcodes on the linked page."
1964
  msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
1965
 
1966
+ #: includes/widget_helptexts.php:97
1967
  msgid ""
1968
  "With this option you can add a link to the single event page for every "
1969
  "displayed event. You have to specify the url to the page and the shortcode "
1970
  "id option if you want to use it."
1971
  msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
1972
 
1973
+ #: includes/widget_helptexts.php:104
1974
  msgid ""
1975
  "With this option you can add a link to the event-list page below the "
1976
  "diplayed events. You have to specify the url to page option if you want to "
1977
  "use it."
1978
  msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
1979
 
1980
+ #: includes/widget_helptexts.php:109
1981
  msgid "Caption for the link"
1982
  msgstr "Bijschrift bij de link"
1983
 
1984
+ #: includes/widget_helptexts.php:111
1985
  msgid ""
1986
  "This option defines the text for the link to the Event List page if the "
1987
  "approriate option is selected."
1995
  msgid "Upcoming events"
1996
  msgstr "Komende evenementen"
1997
 
1998
+ #: includes/widget.php:39
1999
  msgid "show events page"
2000
  msgstr "toon evenementenpagina"
languages/event-list-pl_PL.mo CHANGED
Binary file
languages/event-list-pl_PL.po CHANGED
@@ -1,15 +1,15 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
- # Maciej Bator <mbsrz1972@gmail.com>, 2017
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: pl_PL\n"
19
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Ustawienia Listy Wydarzeń"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Ustawienia"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "O Liście Wydarzeń"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "O"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -109,11 +109,11 @@ msgid ""
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
113
  msgid "Add links to the single events"
114
  msgstr "Dodaj łącza do pojedynczych wydarzeń"
115
 
116
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
117
  msgid "Add a link to the Event List page"
118
  msgstr "Dodaj łącze do strony Listy wydarzeń"
119
 
@@ -888,7 +888,7 @@ msgstr "Przeszłe"
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
- #: includes/event.php:107
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
@@ -1519,7 +1519,7 @@ msgstr ""
1519
  #: includes/sc_event-list_helptexts.php:33
1520
  #: includes/sc_event-list_helptexts.php:74
1521
  #: includes/sc_event-list_helptexts.php:89
1522
- #: includes/sc_event-list_helptexts.php:104
1523
  msgid "number"
1524
  msgstr "liczba"
1525
 
@@ -1748,7 +1748,7 @@ msgstr ""
1748
 
1749
  #: includes/sc_event-list_helptexts.php:77
1750
  #: includes/sc_event-list_helptexts.php:92
1751
- #: includes/sc_event-list_helptexts.php:107
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr ""
1754
 
@@ -1775,23 +1775,30 @@ msgstr ""
1775
 
1776
  #: includes/sc_event-list_helptexts.php:100
1777
  msgid ""
 
 
 
 
 
 
 
1778
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1779
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1780
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1781
  msgstr ""
1782
 
1783
- #: includes/sc_event-list_helptexts.php:105
1784
  msgid ""
1785
  "This attribute specifies if the content should be truncate to the given "
1786
  "number of characters in the event list."
1787
  msgstr ""
1788
 
1789
- #: includes/sc_event-list_helptexts.php:106
1790
  #, php-format
1791
  msgid "With the standard value %1$s the full text is displayed."
1792
  msgstr ""
1793
 
1794
- #: includes/sc_event-list_helptexts.php:110
1795
  msgid ""
1796
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1797
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1799,7 +1806,7 @@ msgid ""
1799
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1800
  msgstr ""
1801
 
1802
- #: includes/sc_event-list_helptexts.php:116
1803
  msgid ""
1804
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1805
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1807,7 +1814,7 @@ msgid ""
1807
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:122
1811
  msgid ""
1812
  "This attribute specifies if a rss feed link should be added.<br />\n"
1813
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1816,20 +1823,20 @@ msgid ""
1816
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1817
  msgstr ""
1818
 
1819
- #: includes/sc_event-list_helptexts.php:128
1820
  msgid ""
1821
  "This attribute specifies the page or post url for event links.<br />\n"
1822
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1823
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1824
  msgstr ""
1825
 
1826
- #: includes/sc_event-list_helptexts.php:135
1827
  msgid ""
1828
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1829
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1830
  msgstr ""
1831
 
1832
- #: includes/sc_event-list.php:135
1833
  msgid "Event Information:"
1834
  msgstr "Informacje o wydarzeniu:"
1835
 
@@ -1863,7 +1870,7 @@ msgid "Truncate event title to"
1863
  msgstr "Obetnij tytuł wydarzenia do"
1864
 
1865
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1866
- #: includes/widget_helptexts.php:67
1867
  msgid "characters"
1868
  msgstr "znaków"
1869
 
@@ -1906,68 +1913,76 @@ msgid ""
1906
  msgstr ""
1907
 
1908
  #: includes/widget_helptexts.php:59
1909
- msgid "Show event content"
1910
  msgstr ""
1911
 
1912
  #: includes/widget_helptexts.php:61
1913
- msgid "This option defines if the event content will be displayed."
1914
  msgstr ""
1915
 
1916
  #: includes/widget_helptexts.php:66
1917
- msgid "Truncate content to"
1918
  msgstr ""
1919
 
1920
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1921
  msgid ""
1922
  "If the event content are diplayed this option defines the number of diplayed"
1923
  " characters."
1924
  msgstr ""
1925
 
1926
- #: includes/widget_helptexts.php:69
1927
  #, php-format
1928
  msgid "Set this value to %1$s to view the full text."
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:74
1932
  msgid "URL to the linked Event List page"
1933
  msgstr "Łącze do strony Lista wydarzeń"
1934
 
1935
- #: includes/widget_helptexts.php:76
1936
  msgid ""
1937
  "This option defines the url to the linked Event List page. This option is "
1938
  "required if you want to use one of the options below."
1939
  msgstr "Ta opcja definiuje adres url do strony Listy wydarzeń. Ta opcja jest wymagana, jeśli chcesz użyć jednej z poniższych opcji."
1940
 
1941
- #: includes/widget_helptexts.php:81
1942
  msgid "Shortcode ID on linked page"
1943
  msgstr ""
1944
 
1945
- #: includes/widget_helptexts.php:83
1946
  msgid ""
1947
  "This option defines the shortcode-id for the Event List on the linked page. "
1948
  "Normally the standard value 1 is correct, you only have to change it if you "
1949
  "use multiple event-list shortcodes on the linked page."
1950
  msgstr ""
1951
 
1952
- #: includes/widget_helptexts.php:90
1953
  msgid ""
1954
  "With this option you can add a link to the single event page for every "
1955
  "displayed event. You have to specify the url to the page and the shortcode "
1956
  "id option if you want to use it."
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:97
1960
  msgid ""
1961
  "With this option you can add a link to the event-list page below the "
1962
  "diplayed events. You have to specify the url to page option if you want to "
1963
  "use it."
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:102
1967
  msgid "Caption for the link"
1968
  msgstr ""
1969
 
1970
- #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "This option defines the text for the link to the Event List page if the "
1973
  "approriate option is selected."
@@ -1981,6 +1996,6 @@ msgstr ""
1981
  msgid "Upcoming events"
1982
  msgstr "Nadchodzące wydarzenia"
1983
 
1984
- #: includes/widget.php:38
1985
  msgid "show events page"
1986
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
+ # Maciej Bator, 2017
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: pl_PL\n"
19
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Ustawienia Listy Wydarzeń"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Ustawienia"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "O Liście Wydarzeń"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "O"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
113
  msgid "Add links to the single events"
114
  msgstr "Dodaj łącza do pojedynczych wydarzeń"
115
 
116
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
117
  msgid "Add a link to the Event List page"
118
  msgstr "Dodaj łącze do strony Listy wydarzeń"
119
 
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
+ #: includes/event.php:110
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
1519
  #: includes/sc_event-list_helptexts.php:33
1520
  #: includes/sc_event-list_helptexts.php:74
1521
  #: includes/sc_event-list_helptexts.php:89
1522
+ #: includes/sc_event-list_helptexts.php:109
1523
  msgid "number"
1524
  msgstr "liczba"
1525
 
1748
 
1749
  #: includes/sc_event-list_helptexts.php:77
1750
  #: includes/sc_event-list_helptexts.php:92
1751
+ #: includes/sc_event-list_helptexts.php:112
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr ""
1754
 
1775
 
1776
  #: includes/sc_event-list_helptexts.php:100
1777
  msgid ""
1778
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1779
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1780
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1781
+ msgstr ""
1782
+
1783
+ #: includes/sc_event-list_helptexts.php:105
1784
+ msgid ""
1785
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1786
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1787
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1788
  msgstr ""
1789
 
1790
+ #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be truncate to the given "
1793
  "number of characters in the event list."
1794
  msgstr ""
1795
 
1796
+ #: includes/sc_event-list_helptexts.php:111
1797
  #, php-format
1798
  msgid "With the standard value %1$s the full text is displayed."
1799
  msgstr ""
1800
 
1801
+ #: includes/sc_event-list_helptexts.php:115
1802
  msgid ""
1803
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1804
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1806
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:121
1810
  msgid ""
1811
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1812
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1814
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1815
  msgstr ""
1816
 
1817
+ #: includes/sc_event-list_helptexts.php:127
1818
  msgid ""
1819
  "This attribute specifies if a rss feed link should be added.<br />\n"
1820
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1823
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:133
1827
  msgid ""
1828
  "This attribute specifies the page or post url for event links.<br />\n"
1829
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1830
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1831
  msgstr ""
1832
 
1833
+ #: includes/sc_event-list_helptexts.php:140
1834
  msgid ""
1835
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1836
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1837
  msgstr ""
1838
 
1839
+ #: includes/sc_event-list.php:136
1840
  msgid "Event Information:"
1841
  msgstr "Informacje o wydarzeniu:"
1842
 
1870
  msgstr "Obetnij tytuł wydarzenia do"
1871
 
1872
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1873
+ #: includes/widget_helptexts.php:74
1874
  msgid "characters"
1875
  msgstr "znaków"
1876
 
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:59
1916
+ msgid "Show event excerpt"
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:61
1920
+ msgid "This option defines if the event excerpt will be displayed."
1921
  msgstr ""
1922
 
1923
  #: includes/widget_helptexts.php:66
1924
+ msgid "Show event content"
1925
  msgstr ""
1926
 
1927
  #: includes/widget_helptexts.php:68
1928
+ msgid "This option defines if the event content will be displayed."
1929
+ msgstr ""
1930
+
1931
+ #: includes/widget_helptexts.php:73
1932
+ msgid "Truncate content to"
1933
+ msgstr ""
1934
+
1935
+ #: includes/widget_helptexts.php:75
1936
  msgid ""
1937
  "If the event content are diplayed this option defines the number of diplayed"
1938
  " characters."
1939
  msgstr ""
1940
 
1941
+ #: includes/widget_helptexts.php:76
1942
  #, php-format
1943
  msgid "Set this value to %1$s to view the full text."
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:81
1947
  msgid "URL to the linked Event List page"
1948
  msgstr "Łącze do strony Lista wydarzeń"
1949
 
1950
+ #: includes/widget_helptexts.php:83
1951
  msgid ""
1952
  "This option defines the url to the linked Event List page. This option is "
1953
  "required if you want to use one of the options below."
1954
  msgstr "Ta opcja definiuje adres url do strony Listy wydarzeń. Ta opcja jest wymagana, jeśli chcesz użyć jednej z poniższych opcji."
1955
 
1956
+ #: includes/widget_helptexts.php:88
1957
  msgid "Shortcode ID on linked page"
1958
  msgstr ""
1959
 
1960
+ #: includes/widget_helptexts.php:90
1961
  msgid ""
1962
  "This option defines the shortcode-id for the Event List on the linked page. "
1963
  "Normally the standard value 1 is correct, you only have to change it if you "
1964
  "use multiple event-list shortcodes on the linked page."
1965
  msgstr ""
1966
 
1967
+ #: includes/widget_helptexts.php:97
1968
  msgid ""
1969
  "With this option you can add a link to the single event page for every "
1970
  "displayed event. You have to specify the url to the page and the shortcode "
1971
  "id option if you want to use it."
1972
  msgstr ""
1973
 
1974
+ #: includes/widget_helptexts.php:104
1975
  msgid ""
1976
  "With this option you can add a link to the event-list page below the "
1977
  "diplayed events. You have to specify the url to page option if you want to "
1978
  "use it."
1979
  msgstr ""
1980
 
1981
+ #: includes/widget_helptexts.php:109
1982
  msgid "Caption for the link"
1983
  msgstr ""
1984
 
1985
+ #: includes/widget_helptexts.php:111
1986
  msgid ""
1987
  "This option defines the text for the link to the Event List page if the "
1988
  "approriate option is selected."
1996
  msgid "Upcoming events"
1997
  msgstr "Nadchodzące wydarzenia"
1998
 
1999
+ #: includes/widget.php:39
2000
  msgid "show events page"
2001
  msgstr ""
languages/event-list-pt_BR.mo CHANGED
Binary file
languages/event-list-pt_BR.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
14
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,33 +20,33 @@ msgstr ""
20
  "Language: pt_BR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
- #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Configurações da Lista de Eventos"
36
 
37
- #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Configurações"
40
 
41
- #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Sobre o Lista de Eventos"
44
 
45
- #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "Sobre"
48
 
49
- #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
@@ -109,11 +109,11 @@ msgid ""
109
  " to insert an URL to the linked event-list page."
110
  msgstr "Se você habilitar uma das opções de links (%1$s ou %2$s) no widget, você deverá inserir uma URL para a página de lista de eventos linkada."
111
 
112
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
113
  msgid "Add links to the single events"
114
  msgstr "Adicionar links para os eventos individuais"
115
 
116
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
117
  msgid "Add a link to the Event List page"
118
  msgstr "Adicionar um link para a Página de Lista de Eventos"
119
 
@@ -886,7 +886,7 @@ msgstr "Passado"
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
- #: includes/event.php:107
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
@@ -1517,7 +1517,7 @@ msgstr ""
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
- #: includes/sc_event-list_helptexts.php:104
1521
  msgid "number"
1522
  msgstr ""
1523
 
@@ -1746,7 +1746,7 @@ msgstr ""
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
- #: includes/sc_event-list_helptexts.php:107
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
@@ -1773,23 +1773,30 @@ msgstr ""
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
 
 
 
 
 
 
 
1776
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1777
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1778
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1779
  msgstr ""
1780
 
1781
- #: includes/sc_event-list_helptexts.php:105
1782
  msgid ""
1783
  "This attribute specifies if the content should be truncate to the given "
1784
  "number of characters in the event list."
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:106
1788
  #, php-format
1789
  msgid "With the standard value %1$s the full text is displayed."
1790
  msgstr ""
1791
 
1792
- #: includes/sc_event-list_helptexts.php:110
1793
  msgid ""
1794
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1795
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1797,7 +1804,7 @@ msgid ""
1797
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1798
  msgstr ""
1799
 
1800
- #: includes/sc_event-list_helptexts.php:116
1801
  msgid ""
1802
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1803
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1805,7 +1812,7 @@ msgid ""
1805
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1806
  msgstr ""
1807
 
1808
- #: includes/sc_event-list_helptexts.php:122
1809
  msgid ""
1810
  "This attribute specifies if a rss feed link should be added.<br />\n"
1811
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1814,20 +1821,20 @@ msgid ""
1814
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1815
  msgstr ""
1816
 
1817
- #: includes/sc_event-list_helptexts.php:128
1818
  msgid ""
1819
  "This attribute specifies the page or post url for event links.<br />\n"
1820
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1821
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1822
  msgstr ""
1823
 
1824
- #: includes/sc_event-list_helptexts.php:135
1825
  msgid ""
1826
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1827
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1828
  msgstr ""
1829
 
1830
- #: includes/sc_event-list.php:135
1831
  msgid "Event Information:"
1832
  msgstr "Informação do Evento:"
1833
 
@@ -1861,7 +1868,7 @@ msgid "Truncate event title to"
1861
  msgstr "Truncar título do evento em"
1862
 
1863
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1864
- #: includes/widget_helptexts.php:67
1865
  msgid "characters"
1866
  msgstr "caracteres"
1867
 
@@ -1904,68 +1911,76 @@ msgid ""
1904
  msgstr ""
1905
 
1906
  #: includes/widget_helptexts.php:59
1907
- msgid "Show event content"
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:61
1911
- msgid "This option defines if the event content will be displayed."
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:66
1915
- msgid "Truncate content to"
1916
  msgstr ""
1917
 
1918
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1919
  msgid ""
1920
  "If the event content are diplayed this option defines the number of diplayed"
1921
  " characters."
1922
  msgstr ""
1923
 
1924
- #: includes/widget_helptexts.php:69
1925
  #, php-format
1926
  msgid "Set this value to %1$s to view the full text."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:74
1930
  msgid "URL to the linked Event List page"
1931
  msgstr "URL para página associada ao Event List"
1932
 
1933
- #: includes/widget_helptexts.php:76
1934
  msgid ""
1935
  "This option defines the url to the linked Event List page. This option is "
1936
  "required if you want to use one of the options below."
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:81
1940
  msgid "Shortcode ID on linked page"
1941
  msgstr "ID do Shortcode na página associada"
1942
 
1943
- #: includes/widget_helptexts.php:83
1944
  msgid ""
1945
  "This option defines the shortcode-id for the Event List on the linked page. "
1946
  "Normally the standard value 1 is correct, you only have to change it if you "
1947
  "use multiple event-list shortcodes on the linked page."
1948
  msgstr ""
1949
 
1950
- #: includes/widget_helptexts.php:90
1951
  msgid ""
1952
  "With this option you can add a link to the single event page for every "
1953
  "displayed event. You have to specify the url to the page and the shortcode "
1954
  "id option if you want to use it."
1955
  msgstr ""
1956
 
1957
- #: includes/widget_helptexts.php:97
1958
  msgid ""
1959
  "With this option you can add a link to the event-list page below the "
1960
  "diplayed events. You have to specify the url to page option if you want to "
1961
  "use it."
1962
  msgstr ""
1963
 
1964
- #: includes/widget_helptexts.php:102
1965
  msgid "Caption for the link"
1966
  msgstr "Legenda para o link"
1967
 
1968
- #: includes/widget_helptexts.php:104
1969
  msgid ""
1970
  "This option defines the text for the link to the Event List page if the "
1971
  "approriate option is selected."
@@ -1979,6 +1994,6 @@ msgstr ""
1979
  msgid "Upcoming events"
1980
  msgstr "Próximos eventos"
1981
 
1982
- #: includes/widget.php:38
1983
  msgid "show events page"
1984
  msgstr "exibir página de eventos"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
14
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: pt_BR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
+ #: admin/admin.php:56
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:56
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Configurações da Lista de Eventos"
36
 
37
+ #: admin/admin.php:105
38
  msgid "Settings"
39
  msgstr "Configurações"
40
 
41
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Sobre o Lista de Eventos"
44
 
45
+ #: admin/admin.php:109
46
  msgid "About"
47
  msgstr "Sobre"
48
 
49
+ #: admin/admin.php:131
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
109
  " to insert an URL to the linked event-list page."
110
  msgstr "Se você habilitar uma das opções de links (%1$s ou %2$s) no widget, você deverá inserir uma URL para a página de lista de eventos linkada."
111
 
112
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
113
  msgid "Add links to the single events"
114
  msgstr "Adicionar links para os eventos individuais"
115
 
116
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
117
  msgid "Add a link to the Event List page"
118
  msgstr "Adicionar um link para a Página de Lista de Eventos"
119
 
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
+ #: includes/event.php:110
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
+ #: includes/sc_event-list_helptexts.php:109
1521
  msgid "number"
1522
  msgstr ""
1523
 
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
+ #: includes/sc_event-list_helptexts.php:112
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
1776
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1777
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1778
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1779
+ msgstr ""
1780
+
1781
+ #: includes/sc_event-list_helptexts.php:105
1782
+ msgid ""
1783
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1784
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1785
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1786
  msgstr ""
1787
 
1788
+ #: includes/sc_event-list_helptexts.php:110
1789
  msgid ""
1790
  "This attribute specifies if the content should be truncate to the given "
1791
  "number of characters in the event list."
1792
  msgstr ""
1793
 
1794
+ #: includes/sc_event-list_helptexts.php:111
1795
  #, php-format
1796
  msgid "With the standard value %1$s the full text is displayed."
1797
  msgstr ""
1798
 
1799
+ #: includes/sc_event-list_helptexts.php:115
1800
  msgid ""
1801
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1802
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1804
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1805
  msgstr ""
1806
 
1807
+ #: includes/sc_event-list_helptexts.php:121
1808
  msgid ""
1809
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1810
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1812
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:127
1816
  msgid ""
1817
  "This attribute specifies if a rss feed link should be added.<br />\n"
1818
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1821
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:133
1825
  msgid ""
1826
  "This attribute specifies the page or post url for event links.<br />\n"
1827
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1828
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1829
  msgstr ""
1830
 
1831
+ #: includes/sc_event-list_helptexts.php:140
1832
  msgid ""
1833
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1834
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1835
  msgstr ""
1836
 
1837
+ #: includes/sc_event-list.php:136
1838
  msgid "Event Information:"
1839
  msgstr "Informação do Evento:"
1840
 
1868
  msgstr "Truncar título do evento em"
1869
 
1870
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1871
+ #: includes/widget_helptexts.php:74
1872
  msgid "characters"
1873
  msgstr "caracteres"
1874
 
1911
  msgstr ""
1912
 
1913
  #: includes/widget_helptexts.php:59
1914
+ msgid "Show event excerpt"
1915
  msgstr ""
1916
 
1917
  #: includes/widget_helptexts.php:61
1918
+ msgid "This option defines if the event excerpt will be displayed."
1919
  msgstr ""
1920
 
1921
  #: includes/widget_helptexts.php:66
1922
+ msgid "Show event content"
1923
  msgstr ""
1924
 
1925
  #: includes/widget_helptexts.php:68
1926
+ msgid "This option defines if the event content will be displayed."
1927
+ msgstr ""
1928
+
1929
+ #: includes/widget_helptexts.php:73
1930
+ msgid "Truncate content to"
1931
+ msgstr ""
1932
+
1933
+ #: includes/widget_helptexts.php:75
1934
  msgid ""
1935
  "If the event content are diplayed this option defines the number of diplayed"
1936
  " characters."
1937
  msgstr ""
1938
 
1939
+ #: includes/widget_helptexts.php:76
1940
  #, php-format
1941
  msgid "Set this value to %1$s to view the full text."
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:81
1945
  msgid "URL to the linked Event List page"
1946
  msgstr "URL para página associada ao Event List"
1947
 
1948
+ #: includes/widget_helptexts.php:83
1949
  msgid ""
1950
  "This option defines the url to the linked Event List page. This option is "
1951
  "required if you want to use one of the options below."
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:88
1955
  msgid "Shortcode ID on linked page"
1956
  msgstr "ID do Shortcode na página associada"
1957
 
1958
+ #: includes/widget_helptexts.php:90
1959
  msgid ""
1960
  "This option defines the shortcode-id for the Event List on the linked page. "
1961
  "Normally the standard value 1 is correct, you only have to change it if you "
1962
  "use multiple event-list shortcodes on the linked page."
1963
  msgstr ""
1964
 
1965
+ #: includes/widget_helptexts.php:97
1966
  msgid ""
1967
  "With this option you can add a link to the single event page for every "
1968
  "displayed event. You have to specify the url to the page and the shortcode "
1969
  "id option if you want to use it."
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:104
1973
  msgid ""
1974
  "With this option you can add a link to the event-list page below the "
1975
  "diplayed events. You have to specify the url to page option if you want to "
1976
  "use it."
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:109
1980
  msgid "Caption for the link"
1981
  msgstr "Legenda para o link"
1982
 
1983
+ #: includes/widget_helptexts.php:111
1984
  msgid ""
1985
  "This option defines the text for the link to the Event List page if the "
1986
  "approriate option is selected."
1994
  msgid "Upcoming events"
1995
  msgstr "Próximos eventos"
1996
 
1997
+ #: includes/widget.php:39
1998
  msgid "show events page"
1999
  msgstr "exibir página de eventos"
languages/event-list-sk_SK.mo CHANGED
Binary file
languages/event-list-sk_SK.po CHANGED
@@ -1,17 +1,18 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
  # Dominik Molčanyi <frinkjeee@gmail.com>, 2017
7
  # Lubo Caca <lulucaca2.86@gmail.com>, 2018
8
  # Pavol Kubosko <palisanderb1@gmail.com>, 2017
 
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
14
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,33 +21,33 @@ msgstr ""
20
  "Language: sk_SK\n"
21
  "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
22
 
23
- #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
- msgstr ""
27
 
28
- #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
- msgstr ""
32
 
33
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Nastavenia zoznamu udalostí"
36
 
37
- #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Nastavenia"
40
 
41
- #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "O plugine Zoznam udalostí"
44
 
45
- #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "O plugine"
48
 
49
- #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
@@ -91,31 +92,31 @@ msgstr "Môžete pridať <strong>aplikáciu</strong>%1$s do Vašej bočnej lišt
91
  msgid ""
92
  "The displayed events and their style can be modified with the available "
93
  "widget settings and the available attributes for the shortcode."
94
- msgstr ""
95
 
96
  #: admin/includes/admin-about.php:78
97
  #, php-format
98
  msgid ""
99
  "A list of all available shortcode attributes with their descriptions is "
100
  "available in the %1$s tab."
101
- msgstr ""
102
 
103
  #: admin/includes/admin-about.php:79
104
  msgid "The available widget options are described in their tooltip text."
105
- msgstr ""
106
 
107
  #: admin/includes/admin-about.php:80
108
  #, php-format
109
  msgid ""
110
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
111
  " to insert an URL to the linked event-list page."
112
- msgstr ""
113
 
114
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
115
  msgid "Add links to the single events"
116
  msgstr "Pridaj odkaz na na akciu"
117
 
118
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
119
  msgid "Add a link to the Event List page"
120
  msgstr "Pridaj odkaz na stránku akcií"
121
 
@@ -123,7 +124,7 @@ msgstr "Pridaj odkaz na stránku akcií"
123
  msgid ""
124
  "This is required because the widget does not know in which page or post the "
125
  "shortcode was included."
126
- msgstr ""
127
 
128
  #: admin/includes/admin-about.php:82
129
  msgid ""
@@ -890,7 +891,7 @@ msgstr "Munulé"
890
  msgid "This value defines a range from the past to the previous day."
891
  msgstr "Táto hodnota definuje rozsah od minulosti do predchádzajúceho dňa."
892
 
893
- #: includes/event.php:107
894
  msgid "No valid start date provided"
895
  msgstr "Nie je k dispozícii platný dátum začiatku"
896
 
@@ -1521,7 +1522,7 @@ msgstr ""
1521
  #: includes/sc_event-list_helptexts.php:33
1522
  #: includes/sc_event-list_helptexts.php:74
1523
  #: includes/sc_event-list_helptexts.php:89
1524
- #: includes/sc_event-list_helptexts.php:104
1525
  msgid "number"
1526
  msgstr "číslo"
1527
 
@@ -1750,7 +1751,7 @@ msgstr ""
1750
 
1751
  #: includes/sc_event-list_helptexts.php:77
1752
  #: includes/sc_event-list_helptexts.php:92
1753
- #: includes/sc_event-list_helptexts.php:107
1754
  msgid "This attribute has no influence if only a single event is shown."
1755
  msgstr "Tento atribút nemá žiadny vplyv, ak je zobrazená iba jedna udalosť."
1756
 
@@ -1777,23 +1778,30 @@ msgstr ""
1777
 
1778
  #: includes/sc_event-list_helptexts.php:100
1779
  msgid ""
 
 
 
 
 
 
 
1780
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1781
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1782
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1783
  msgstr ""
1784
 
1785
- #: includes/sc_event-list_helptexts.php:105
1786
  msgid ""
1787
  "This attribute specifies if the content should be truncate to the given "
1788
  "number of characters in the event list."
1789
  msgstr "Tento atribút určuje, či by sa obsah mal skrátiť na daný počet znakov v zozname udalostí."
1790
 
1791
- #: includes/sc_event-list_helptexts.php:106
1792
  #, php-format
1793
  msgid "With the standard value %1$s the full text is displayed."
1794
  msgstr "Pri štandardnej hodnote %1$s sa zobrazí celý text."
1795
 
1796
- #: includes/sc_event-list_helptexts.php:110
1797
  msgid ""
1798
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1799
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1801,7 +1809,7 @@ msgid ""
1801
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1802
  msgstr ""
1803
 
1804
- #: includes/sc_event-list_helptexts.php:116
1805
  msgid ""
1806
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1807
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1809,7 +1817,7 @@ msgid ""
1809
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1810
  msgstr ""
1811
 
1812
- #: includes/sc_event-list_helptexts.php:122
1813
  msgid ""
1814
  "This attribute specifies if a rss feed link should be added.<br />\n"
1815
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1818,20 +1826,20 @@ msgid ""
1818
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1819
  msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:128
1822
  msgid ""
1823
  "This attribute specifies the page or post url for event links.<br />\n"
1824
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1825
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1826
  msgstr ""
1827
 
1828
- #: includes/sc_event-list_helptexts.php:135
1829
  msgid ""
1830
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1831
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1832
  msgstr ""
1833
 
1834
- #: includes/sc_event-list.php:135
1835
  msgid "Event Information:"
1836
  msgstr "Informácie o udalosti"
1837
 
@@ -1865,7 +1873,7 @@ msgid "Truncate event title to"
1865
  msgstr "Skrátiť názov udalosti na"
1866
 
1867
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1868
- #: includes/widget_helptexts.php:67
1869
  msgid "characters"
1870
  msgstr "znaky"
1871
 
@@ -1908,68 +1916,76 @@ msgid ""
1908
  msgstr "Ak sa zobrazuje miesto udalosti, táto možnosť definuje počet zobrazených znakov."
1909
 
1910
  #: includes/widget_helptexts.php:59
 
 
 
 
 
 
 
 
1911
  msgid "Show event content"
1912
  msgstr "Zobraziť obsah udalosti"
1913
 
1914
- #: includes/widget_helptexts.php:61
1915
  msgid "This option defines if the event content will be displayed."
1916
  msgstr "Táto možnosť určuje, či sa bude zobrazovať obsah udalosti."
1917
 
1918
- #: includes/widget_helptexts.php:66
1919
  msgid "Truncate content to"
1920
  msgstr "Skrátiť obsah na"
1921
 
1922
- #: includes/widget_helptexts.php:68
1923
  msgid ""
1924
  "If the event content are diplayed this option defines the number of diplayed"
1925
  " characters."
1926
  msgstr "Ak sa zobrazí obsah udalosti, táto možnosť definuje počet zobrazených znakov."
1927
 
1928
- #: includes/widget_helptexts.php:69
1929
  #, php-format
1930
  msgid "Set this value to %1$s to view the full text."
1931
  msgstr "Nastav túto hodnotu na %1$s na zobrazenie celého textu."
1932
 
1933
- #: includes/widget_helptexts.php:74
1934
  msgid "URL to the linked Event List page"
1935
  msgstr "URL ku stránke Zoznamu udalostí"
1936
 
1937
- #: includes/widget_helptexts.php:76
1938
  msgid ""
1939
  "This option defines the url to the linked Event List page. This option is "
1940
  "required if you want to use one of the options below."
1941
  msgstr ""
1942
 
1943
- #: includes/widget_helptexts.php:81
1944
  msgid "Shortcode ID on linked page"
1945
  msgstr ""
1946
 
1947
- #: includes/widget_helptexts.php:83
1948
  msgid ""
1949
  "This option defines the shortcode-id for the Event List on the linked page. "
1950
  "Normally the standard value 1 is correct, you only have to change it if you "
1951
  "use multiple event-list shortcodes on the linked page."
1952
  msgstr ""
1953
 
1954
- #: includes/widget_helptexts.php:90
1955
  msgid ""
1956
  "With this option you can add a link to the single event page for every "
1957
  "displayed event. You have to specify the url to the page and the shortcode "
1958
  "id option if you want to use it."
1959
  msgstr ""
1960
 
1961
- #: includes/widget_helptexts.php:97
1962
  msgid ""
1963
  "With this option you can add a link to the event-list page below the "
1964
  "diplayed events. You have to specify the url to page option if you want to "
1965
  "use it."
1966
  msgstr ""
1967
 
1968
- #: includes/widget_helptexts.php:102
1969
  msgid "Caption for the link"
1970
  msgstr "Titulok pre odkaz"
1971
 
1972
- #: includes/widget_helptexts.php:104
1973
  msgid ""
1974
  "This option defines the text for the link to the Event List page if the "
1975
  "approriate option is selected."
@@ -1983,6 +1999,6 @@ msgstr "Pomocou tejto miniaplikácie sa môže zobraziť zoznam nadchádzajúcic
1983
  msgid "Upcoming events"
1984
  msgstr "Nadchádzajúce udalosti"
1985
 
1986
- #: includes/widget.php:38
1987
  msgid "show events page"
1988
  msgstr "zobraziť stránku udalostí"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
  # Dominik Molčanyi <frinkjeee@gmail.com>, 2017
7
  # Lubo Caca <lulucaca2.86@gmail.com>, 2018
8
  # Pavol Kubosko <palisanderb1@gmail.com>, 2017
9
+ # Viliam Dzupin <viliam.dzupin@gmail.com>, 2018
10
  msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
15
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: sk_SK\n"
22
  "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
23
 
24
+ #: admin/admin.php:56
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
+ msgstr "Chyba pri upgrade pluginu %1$s."
28
 
29
+ #: admin/admin.php:56
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
+ msgstr "Upgrade pluginu %1$s bolo úspešné"
33
 
34
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
35
  msgid "Event List Settings"
36
  msgstr "Nastavenia zoznamu udalostí"
37
 
38
+ #: admin/admin.php:105
39
  msgid "Settings"
40
  msgstr "Nastavenia"
41
 
42
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
43
  msgid "About Event List"
44
  msgstr "O plugine Zoznam udalostí"
45
 
46
+ #: admin/admin.php:109
47
  msgid "About"
48
  msgstr "O plugine"
49
 
50
+ #: admin/admin.php:131
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
92
  msgid ""
93
  "The displayed events and their style can be modified with the available "
94
  "widget settings and the available attributes for the shortcode."
95
+ msgstr "Zobrazenie udalostí a ich štýl može byť zmenené pomocou Nastevení widgetu a atribútov skráteného kodu = shortcode."
96
 
97
  #: admin/includes/admin-about.php:78
98
  #, php-format
99
  msgid ""
100
  "A list of all available shortcode attributes with their descriptions is "
101
  "available in the %1$s tab."
102
+ msgstr "Zoznam dostupných atribútov pre shortcode a ich popis je dostupný v záložke 1 %1$s."
103
 
104
  #: admin/includes/admin-about.php:79
105
  msgid "The available widget options are described in their tooltip text."
106
+ msgstr "Možnosti widgetu sú popísané v ich tooltipe."
107
 
108
  #: admin/includes/admin-about.php:80
109
  #, php-format
110
  msgid ""
111
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
112
  " to insert an URL to the linked event-list page."
113
+ msgstr "V prípade, že povolíte nastavenie hyperlinkov (%1$s alebo 2 %2$s) vo widgete musíte vložiť URL ns dtránku so zoznamom eventov."
114
 
115
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
116
  msgid "Add links to the single events"
117
  msgstr "Pridaj odkaz na na akciu"
118
 
119
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
120
  msgid "Add a link to the Event List page"
121
  msgstr "Pridaj odkaz na stránku akcií"
122
 
124
  msgid ""
125
  "This is required because the widget does not know in which page or post the "
126
  "shortcode was included."
127
+ msgstr "Pole je povinné keďže widget nevie na ktorej stránke, prípadne príspevku je shorcode vložený."
128
 
129
  #: admin/includes/admin-about.php:82
130
  msgid ""
891
  msgid "This value defines a range from the past to the previous day."
892
  msgstr "Táto hodnota definuje rozsah od minulosti do predchádzajúceho dňa."
893
 
894
+ #: includes/event.php:110
895
  msgid "No valid start date provided"
896
  msgstr "Nie je k dispozícii platný dátum začiatku"
897
 
1522
  #: includes/sc_event-list_helptexts.php:33
1523
  #: includes/sc_event-list_helptexts.php:74
1524
  #: includes/sc_event-list_helptexts.php:89
1525
+ #: includes/sc_event-list_helptexts.php:109
1526
  msgid "number"
1527
  msgstr "číslo"
1528
 
1751
 
1752
  #: includes/sc_event-list_helptexts.php:77
1753
  #: includes/sc_event-list_helptexts.php:92
1754
+ #: includes/sc_event-list_helptexts.php:112
1755
  msgid "This attribute has no influence if only a single event is shown."
1756
  msgstr "Tento atribút nemá žiadny vplyv, ak je zobrazená iba jedna udalosť."
1757
 
1778
 
1779
  #: includes/sc_event-list_helptexts.php:100
1780
  msgid ""
1781
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1782
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1783
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1784
+ msgstr ""
1785
+
1786
+ #: includes/sc_event-list_helptexts.php:105
1787
+ msgid ""
1788
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1789
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1790
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1791
  msgstr ""
1792
 
1793
+ #: includes/sc_event-list_helptexts.php:110
1794
  msgid ""
1795
  "This attribute specifies if the content should be truncate to the given "
1796
  "number of characters in the event list."
1797
  msgstr "Tento atribút určuje, či by sa obsah mal skrátiť na daný počet znakov v zozname udalostí."
1798
 
1799
+ #: includes/sc_event-list_helptexts.php:111
1800
  #, php-format
1801
  msgid "With the standard value %1$s the full text is displayed."
1802
  msgstr "Pri štandardnej hodnote %1$s sa zobrazí celý text."
1803
 
1804
+ #: includes/sc_event-list_helptexts.php:115
1805
  msgid ""
1806
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1807
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1809
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1810
  msgstr ""
1811
 
1812
+ #: includes/sc_event-list_helptexts.php:121
1813
  msgid ""
1814
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1815
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1817
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1818
  msgstr ""
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:127
1821
  msgid ""
1822
  "This attribute specifies if a rss feed link should be added.<br />\n"
1823
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1826
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1827
  msgstr ""
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:133
1830
  msgid ""
1831
  "This attribute specifies the page or post url for event links.<br />\n"
1832
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1833
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1834
  msgstr ""
1835
 
1836
+ #: includes/sc_event-list_helptexts.php:140
1837
  msgid ""
1838
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1839
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1840
  msgstr ""
1841
 
1842
+ #: includes/sc_event-list.php:136
1843
  msgid "Event Information:"
1844
  msgstr "Informácie o udalosti"
1845
 
1873
  msgstr "Skrátiť názov udalosti na"
1874
 
1875
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1876
+ #: includes/widget_helptexts.php:74
1877
  msgid "characters"
1878
  msgstr "znaky"
1879
 
1916
  msgstr "Ak sa zobrazuje miesto udalosti, táto možnosť definuje počet zobrazených znakov."
1917
 
1918
  #: includes/widget_helptexts.php:59
1919
+ msgid "Show event excerpt"
1920
+ msgstr ""
1921
+
1922
+ #: includes/widget_helptexts.php:61
1923
+ msgid "This option defines if the event excerpt will be displayed."
1924
+ msgstr ""
1925
+
1926
+ #: includes/widget_helptexts.php:66
1927
  msgid "Show event content"
1928
  msgstr "Zobraziť obsah udalosti"
1929
 
1930
+ #: includes/widget_helptexts.php:68
1931
  msgid "This option defines if the event content will be displayed."
1932
  msgstr "Táto možnosť určuje, či sa bude zobrazovať obsah udalosti."
1933
 
1934
+ #: includes/widget_helptexts.php:73
1935
  msgid "Truncate content to"
1936
  msgstr "Skrátiť obsah na"
1937
 
1938
+ #: includes/widget_helptexts.php:75
1939
  msgid ""
1940
  "If the event content are diplayed this option defines the number of diplayed"
1941
  " characters."
1942
  msgstr "Ak sa zobrazí obsah udalosti, táto možnosť definuje počet zobrazených znakov."
1943
 
1944
+ #: includes/widget_helptexts.php:76
1945
  #, php-format
1946
  msgid "Set this value to %1$s to view the full text."
1947
  msgstr "Nastav túto hodnotu na %1$s na zobrazenie celého textu."
1948
 
1949
+ #: includes/widget_helptexts.php:81
1950
  msgid "URL to the linked Event List page"
1951
  msgstr "URL ku stránke Zoznamu udalostí"
1952
 
1953
+ #: includes/widget_helptexts.php:83
1954
  msgid ""
1955
  "This option defines the url to the linked Event List page. This option is "
1956
  "required if you want to use one of the options below."
1957
  msgstr ""
1958
 
1959
+ #: includes/widget_helptexts.php:88
1960
  msgid "Shortcode ID on linked page"
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:90
1964
  msgid ""
1965
  "This option defines the shortcode-id for the Event List on the linked page. "
1966
  "Normally the standard value 1 is correct, you only have to change it if you "
1967
  "use multiple event-list shortcodes on the linked page."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:97
1971
  msgid ""
1972
  "With this option you can add a link to the single event page for every "
1973
  "displayed event. You have to specify the url to the page and the shortcode "
1974
  "id option if you want to use it."
1975
  msgstr ""
1976
 
1977
+ #: includes/widget_helptexts.php:104
1978
  msgid ""
1979
  "With this option you can add a link to the event-list page below the "
1980
  "diplayed events. You have to specify the url to page option if you want to "
1981
  "use it."
1982
  msgstr ""
1983
 
1984
+ #: includes/widget_helptexts.php:109
1985
  msgid "Caption for the link"
1986
  msgstr "Titulok pre odkaz"
1987
 
1988
+ #: includes/widget_helptexts.php:111
1989
  msgid ""
1990
  "This option defines the text for the link to the Event List page if the "
1991
  "approriate option is selected."
1999
  msgid "Upcoming events"
2000
  msgstr "Nadchádzajúce udalosti"
2001
 
2002
+ #: includes/widget.php:39
2003
  msgid "show events page"
2004
  msgstr "zobraziť stránku udalostí"
languages/event-list-sl_SI.mo CHANGED
Binary file
languages/event-list-sl_SI.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: sl_SI\n"
19
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Nastavitve seznama dogodkov"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "Nastavitve"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "O seznamu dogodkov"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "Info"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -109,11 +109,11 @@ msgid ""
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
113
  msgid "Add links to the single events"
114
  msgstr ""
115
 
116
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
117
  msgid "Add a link to the Event List page"
118
  msgstr ""
119
 
@@ -888,7 +888,7 @@ msgstr ""
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
- #: includes/event.php:107
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
@@ -1519,7 +1519,7 @@ msgstr ""
1519
  #: includes/sc_event-list_helptexts.php:33
1520
  #: includes/sc_event-list_helptexts.php:74
1521
  #: includes/sc_event-list_helptexts.php:89
1522
- #: includes/sc_event-list_helptexts.php:104
1523
  msgid "number"
1524
  msgstr ""
1525
 
@@ -1748,7 +1748,7 @@ msgstr ""
1748
 
1749
  #: includes/sc_event-list_helptexts.php:77
1750
  #: includes/sc_event-list_helptexts.php:92
1751
- #: includes/sc_event-list_helptexts.php:107
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr ""
1754
 
@@ -1775,23 +1775,30 @@ msgstr ""
1775
 
1776
  #: includes/sc_event-list_helptexts.php:100
1777
  msgid ""
 
 
 
 
 
 
 
1778
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1779
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1780
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1781
  msgstr ""
1782
 
1783
- #: includes/sc_event-list_helptexts.php:105
1784
  msgid ""
1785
  "This attribute specifies if the content should be truncate to the given "
1786
  "number of characters in the event list."
1787
  msgstr ""
1788
 
1789
- #: includes/sc_event-list_helptexts.php:106
1790
  #, php-format
1791
  msgid "With the standard value %1$s the full text is displayed."
1792
  msgstr ""
1793
 
1794
- #: includes/sc_event-list_helptexts.php:110
1795
  msgid ""
1796
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1797
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1799,7 +1806,7 @@ msgid ""
1799
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1800
  msgstr ""
1801
 
1802
- #: includes/sc_event-list_helptexts.php:116
1803
  msgid ""
1804
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1805
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1807,7 +1814,7 @@ msgid ""
1807
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:122
1811
  msgid ""
1812
  "This attribute specifies if a rss feed link should be added.<br />\n"
1813
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1816,20 +1823,20 @@ msgid ""
1816
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1817
  msgstr ""
1818
 
1819
- #: includes/sc_event-list_helptexts.php:128
1820
  msgid ""
1821
  "This attribute specifies the page or post url for event links.<br />\n"
1822
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1823
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1824
  msgstr ""
1825
 
1826
- #: includes/sc_event-list_helptexts.php:135
1827
  msgid ""
1828
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1829
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1830
  msgstr ""
1831
 
1832
- #: includes/sc_event-list.php:135
1833
  msgid "Event Information:"
1834
  msgstr ""
1835
 
@@ -1863,7 +1870,7 @@ msgid "Truncate event title to"
1863
  msgstr ""
1864
 
1865
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1866
- #: includes/widget_helptexts.php:67
1867
  msgid "characters"
1868
  msgstr ""
1869
 
@@ -1906,68 +1913,76 @@ msgid ""
1906
  msgstr ""
1907
 
1908
  #: includes/widget_helptexts.php:59
1909
- msgid "Show event content"
1910
  msgstr ""
1911
 
1912
  #: includes/widget_helptexts.php:61
1913
- msgid "This option defines if the event content will be displayed."
1914
  msgstr ""
1915
 
1916
  #: includes/widget_helptexts.php:66
1917
- msgid "Truncate content to"
1918
  msgstr ""
1919
 
1920
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1921
  msgid ""
1922
  "If the event content are diplayed this option defines the number of diplayed"
1923
  " characters."
1924
  msgstr ""
1925
 
1926
- #: includes/widget_helptexts.php:69
1927
  #, php-format
1928
  msgid "Set this value to %1$s to view the full text."
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:74
1932
  msgid "URL to the linked Event List page"
1933
  msgstr ""
1934
 
1935
- #: includes/widget_helptexts.php:76
1936
  msgid ""
1937
  "This option defines the url to the linked Event List page. This option is "
1938
  "required if you want to use one of the options below."
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:81
1942
  msgid "Shortcode ID on linked page"
1943
  msgstr ""
1944
 
1945
- #: includes/widget_helptexts.php:83
1946
  msgid ""
1947
  "This option defines the shortcode-id for the Event List on the linked page. "
1948
  "Normally the standard value 1 is correct, you only have to change it if you "
1949
  "use multiple event-list shortcodes on the linked page."
1950
  msgstr ""
1951
 
1952
- #: includes/widget_helptexts.php:90
1953
  msgid ""
1954
  "With this option you can add a link to the single event page for every "
1955
  "displayed event. You have to specify the url to the page and the shortcode "
1956
  "id option if you want to use it."
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:97
1960
  msgid ""
1961
  "With this option you can add a link to the event-list page below the "
1962
  "diplayed events. You have to specify the url to page option if you want to "
1963
  "use it."
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:102
1967
  msgid "Caption for the link"
1968
  msgstr ""
1969
 
1970
- #: includes/widget_helptexts.php:104
1971
  msgid ""
1972
  "This option defines the text for the link to the Event List page if the "
1973
  "approriate option is selected."
@@ -1981,6 +1996,6 @@ msgstr ""
1981
  msgid "Upcoming events"
1982
  msgstr ""
1983
 
1984
- #: includes/widget.php:38
1985
  msgid "show events page"
1986
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: sl_SI\n"
19
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "Nastavitve seznama dogodkov"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "Nastavitve"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "O seznamu dogodkov"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "Info"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
113
  msgid "Add links to the single events"
114
  msgstr ""
115
 
116
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
117
  msgid "Add a link to the Event List page"
118
  msgstr ""
119
 
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
+ #: includes/event.php:110
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
1519
  #: includes/sc_event-list_helptexts.php:33
1520
  #: includes/sc_event-list_helptexts.php:74
1521
  #: includes/sc_event-list_helptexts.php:89
1522
+ #: includes/sc_event-list_helptexts.php:109
1523
  msgid "number"
1524
  msgstr ""
1525
 
1748
 
1749
  #: includes/sc_event-list_helptexts.php:77
1750
  #: includes/sc_event-list_helptexts.php:92
1751
+ #: includes/sc_event-list_helptexts.php:112
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr ""
1754
 
1775
 
1776
  #: includes/sc_event-list_helptexts.php:100
1777
  msgid ""
1778
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1779
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1780
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1781
+ msgstr ""
1782
+
1783
+ #: includes/sc_event-list_helptexts.php:105
1784
+ msgid ""
1785
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1786
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1787
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1788
  msgstr ""
1789
 
1790
+ #: includes/sc_event-list_helptexts.php:110
1791
  msgid ""
1792
  "This attribute specifies if the content should be truncate to the given "
1793
  "number of characters in the event list."
1794
  msgstr ""
1795
 
1796
+ #: includes/sc_event-list_helptexts.php:111
1797
  #, php-format
1798
  msgid "With the standard value %1$s the full text is displayed."
1799
  msgstr ""
1800
 
1801
+ #: includes/sc_event-list_helptexts.php:115
1802
  msgid ""
1803
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1804
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1806
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:121
1810
  msgid ""
1811
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1812
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1814
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1815
  msgstr ""
1816
 
1817
+ #: includes/sc_event-list_helptexts.php:127
1818
  msgid ""
1819
  "This attribute specifies if a rss feed link should be added.<br />\n"
1820
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1823
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:133
1827
  msgid ""
1828
  "This attribute specifies the page or post url for event links.<br />\n"
1829
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1830
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1831
  msgstr ""
1832
 
1833
+ #: includes/sc_event-list_helptexts.php:140
1834
  msgid ""
1835
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1836
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1837
  msgstr ""
1838
 
1839
+ #: includes/sc_event-list.php:136
1840
  msgid "Event Information:"
1841
  msgstr ""
1842
 
1870
  msgstr ""
1871
 
1872
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1873
+ #: includes/widget_helptexts.php:74
1874
  msgid "characters"
1875
  msgstr ""
1876
 
1913
  msgstr ""
1914
 
1915
  #: includes/widget_helptexts.php:59
1916
+ msgid "Show event excerpt"
1917
  msgstr ""
1918
 
1919
  #: includes/widget_helptexts.php:61
1920
+ msgid "This option defines if the event excerpt will be displayed."
1921
  msgstr ""
1922
 
1923
  #: includes/widget_helptexts.php:66
1924
+ msgid "Show event content"
1925
  msgstr ""
1926
 
1927
  #: includes/widget_helptexts.php:68
1928
+ msgid "This option defines if the event content will be displayed."
1929
+ msgstr ""
1930
+
1931
+ #: includes/widget_helptexts.php:73
1932
+ msgid "Truncate content to"
1933
+ msgstr ""
1934
+
1935
+ #: includes/widget_helptexts.php:75
1936
  msgid ""
1937
  "If the event content are diplayed this option defines the number of diplayed"
1938
  " characters."
1939
  msgstr ""
1940
 
1941
+ #: includes/widget_helptexts.php:76
1942
  #, php-format
1943
  msgid "Set this value to %1$s to view the full text."
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:81
1947
  msgid "URL to the linked Event List page"
1948
  msgstr ""
1949
 
1950
+ #: includes/widget_helptexts.php:83
1951
  msgid ""
1952
  "This option defines the url to the linked Event List page. This option is "
1953
  "required if you want to use one of the options below."
1954
  msgstr ""
1955
 
1956
+ #: includes/widget_helptexts.php:88
1957
  msgid "Shortcode ID on linked page"
1958
  msgstr ""
1959
 
1960
+ #: includes/widget_helptexts.php:90
1961
  msgid ""
1962
  "This option defines the shortcode-id for the Event List on the linked page. "
1963
  "Normally the standard value 1 is correct, you only have to change it if you "
1964
  "use multiple event-list shortcodes on the linked page."
1965
  msgstr ""
1966
 
1967
+ #: includes/widget_helptexts.php:97
1968
  msgid ""
1969
  "With this option you can add a link to the single event page for every "
1970
  "displayed event. You have to specify the url to the page and the shortcode "
1971
  "id option if you want to use it."
1972
  msgstr ""
1973
 
1974
+ #: includes/widget_helptexts.php:104
1975
  msgid ""
1976
  "With this option you can add a link to the event-list page below the "
1977
  "diplayed events. You have to specify the url to page option if you want to "
1978
  "use it."
1979
  msgstr ""
1980
 
1981
+ #: includes/widget_helptexts.php:109
1982
  msgid "Caption for the link"
1983
  msgstr ""
1984
 
1985
+ #: includes/widget_helptexts.php:111
1986
  msgid ""
1987
  "This option defines the text for the link to the Event List page if the "
1988
  "approriate option is selected."
1996
  msgid "Upcoming events"
1997
  msgstr ""
1998
 
1999
+ #: includes/widget.php:39
2000
  msgid "show events page"
2001
  msgstr ""
languages/event-list-sv_SE.mo CHANGED
Binary file
languages/event-list-sv_SE.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
14
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,33 +20,33 @@ msgstr ""
20
  "Language: sv_SE\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
- #: admin/admin.php:57
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr "Fel inträffade under uppdatering av tillägget %1$s"
27
 
28
- #: admin/admin.php:57
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Inställningar Event List"
36
 
37
- #: admin/admin.php:106
38
  msgid "Settings"
39
  msgstr "Inställningar"
40
 
41
- #: admin/admin.php:110 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Om Event List"
44
 
45
- #: admin/admin.php:110
46
  msgid "About"
47
  msgstr "Om"
48
 
49
- #: admin/admin.php:132
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
@@ -109,11 +109,11 @@ msgid ""
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
113
  msgid "Add links to the single events"
114
  msgstr "Lägg till en länkar till enskilda aktiviteter"
115
 
116
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
117
  msgid "Add a link to the Event List page"
118
  msgstr "Lägg till en länk till Event List sidan"
119
 
@@ -886,7 +886,7 @@ msgstr "Tidigare"
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr "Detta värde definierar ett intervall från det förflutna till föregående dag."
888
 
889
- #: includes/event.php:107
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
@@ -1517,7 +1517,7 @@ msgstr ""
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
- #: includes/sc_event-list_helptexts.php:104
1521
  msgid "number"
1522
  msgstr ""
1523
 
@@ -1746,7 +1746,7 @@ msgstr ""
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
- #: includes/sc_event-list_helptexts.php:107
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
@@ -1773,23 +1773,30 @@ msgstr ""
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
 
 
 
 
 
 
 
1776
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1777
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1778
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1779
  msgstr ""
1780
 
1781
- #: includes/sc_event-list_helptexts.php:105
1782
  msgid ""
1783
  "This attribute specifies if the content should be truncate to the given "
1784
  "number of characters in the event list."
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:106
1788
  #, php-format
1789
  msgid "With the standard value %1$s the full text is displayed."
1790
  msgstr ""
1791
 
1792
- #: includes/sc_event-list_helptexts.php:110
1793
  msgid ""
1794
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1795
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1797,7 +1804,7 @@ msgid ""
1797
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1798
  msgstr ""
1799
 
1800
- #: includes/sc_event-list_helptexts.php:116
1801
  msgid ""
1802
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1803
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1805,7 +1812,7 @@ msgid ""
1805
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1806
  msgstr ""
1807
 
1808
- #: includes/sc_event-list_helptexts.php:122
1809
  msgid ""
1810
  "This attribute specifies if a rss feed link should be added.<br />\n"
1811
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1814,20 +1821,20 @@ msgid ""
1814
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1815
  msgstr ""
1816
 
1817
- #: includes/sc_event-list_helptexts.php:128
1818
  msgid ""
1819
  "This attribute specifies the page or post url for event links.<br />\n"
1820
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1821
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1822
  msgstr ""
1823
 
1824
- #: includes/sc_event-list_helptexts.php:135
1825
  msgid ""
1826
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1827
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1828
  msgstr ""
1829
 
1830
- #: includes/sc_event-list.php:135
1831
  msgid "Event Information:"
1832
  msgstr "Aktivitets Information:"
1833
 
@@ -1861,7 +1868,7 @@ msgid "Truncate event title to"
1861
  msgstr ""
1862
 
1863
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1864
- #: includes/widget_helptexts.php:67
1865
  msgid "characters"
1866
  msgstr "tecken"
1867
 
@@ -1904,68 +1911,76 @@ msgid ""
1904
  msgstr ""
1905
 
1906
  #: includes/widget_helptexts.php:59
1907
- msgid "Show event content"
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:61
1911
- msgid "This option defines if the event content will be displayed."
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:66
1915
- msgid "Truncate content to"
1916
  msgstr ""
1917
 
1918
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1919
  msgid ""
1920
  "If the event content are diplayed this option defines the number of diplayed"
1921
  " characters."
1922
  msgstr ""
1923
 
1924
- #: includes/widget_helptexts.php:69
1925
  #, php-format
1926
  msgid "Set this value to %1$s to view the full text."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:74
1930
  msgid "URL to the linked Event List page"
1931
  msgstr ""
1932
 
1933
- #: includes/widget_helptexts.php:76
1934
  msgid ""
1935
  "This option defines the url to the linked Event List page. This option is "
1936
  "required if you want to use one of the options below."
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:81
1940
  msgid "Shortcode ID on linked page"
1941
  msgstr ""
1942
 
1943
- #: includes/widget_helptexts.php:83
1944
  msgid ""
1945
  "This option defines the shortcode-id for the Event List on the linked page. "
1946
  "Normally the standard value 1 is correct, you only have to change it if you "
1947
  "use multiple event-list shortcodes on the linked page."
1948
  msgstr ""
1949
 
1950
- #: includes/widget_helptexts.php:90
1951
  msgid ""
1952
  "With this option you can add a link to the single event page for every "
1953
  "displayed event. You have to specify the url to the page and the shortcode "
1954
  "id option if you want to use it."
1955
  msgstr ""
1956
 
1957
- #: includes/widget_helptexts.php:97
1958
  msgid ""
1959
  "With this option you can add a link to the event-list page below the "
1960
  "diplayed events. You have to specify the url to page option if you want to "
1961
  "use it."
1962
  msgstr ""
1963
 
1964
- #: includes/widget_helptexts.php:102
1965
  msgid "Caption for the link"
1966
  msgstr "Titel för länken"
1967
 
1968
- #: includes/widget_helptexts.php:104
1969
  msgid ""
1970
  "This option defines the text for the link to the Event List page if the "
1971
  "approriate option is selected."
@@ -1979,6 +1994,6 @@ msgstr "Med denna widget visas en lista med kommande händelser."
1979
  msgid "Upcoming events"
1980
  msgstr "Kommande aktiviteter"
1981
 
1982
- #: includes/widget.php:38
1983
  msgid "show events page"
1984
  msgstr "Visa aktivitetssidan"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
14
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: sv_SE\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: admin/admin.php:56
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr "Fel inträffade under uppdatering av tillägget %1$s"
27
 
28
+ #: admin/admin.php:56
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
34
  msgid "Event List Settings"
35
  msgstr "Inställningar Event List"
36
 
37
+ #: admin/admin.php:105
38
  msgid "Settings"
39
  msgstr "Inställningar"
40
 
41
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
42
  msgid "About Event List"
43
  msgstr "Om Event List"
44
 
45
+ #: admin/admin.php:109
46
  msgid "About"
47
  msgstr "Om"
48
 
49
+ #: admin/admin.php:131
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
113
  msgid "Add links to the single events"
114
  msgstr "Lägg till en länkar till enskilda aktiviteter"
115
 
116
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
117
  msgid "Add a link to the Event List page"
118
  msgstr "Lägg till en länk till Event List sidan"
119
 
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr "Detta värde definierar ett intervall från det förflutna till föregående dag."
888
 
889
+ #: includes/event.php:110
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
1517
  #: includes/sc_event-list_helptexts.php:33
1518
  #: includes/sc_event-list_helptexts.php:74
1519
  #: includes/sc_event-list_helptexts.php:89
1520
+ #: includes/sc_event-list_helptexts.php:109
1521
  msgid "number"
1522
  msgstr ""
1523
 
1746
 
1747
  #: includes/sc_event-list_helptexts.php:77
1748
  #: includes/sc_event-list_helptexts.php:92
1749
+ #: includes/sc_event-list_helptexts.php:112
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
1773
 
1774
  #: includes/sc_event-list_helptexts.php:100
1775
  msgid ""
1776
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1777
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1778
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1779
+ msgstr ""
1780
+
1781
+ #: includes/sc_event-list_helptexts.php:105
1782
+ msgid ""
1783
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1784
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1785
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1786
  msgstr ""
1787
 
1788
+ #: includes/sc_event-list_helptexts.php:110
1789
  msgid ""
1790
  "This attribute specifies if the content should be truncate to the given "
1791
  "number of characters in the event list."
1792
  msgstr ""
1793
 
1794
+ #: includes/sc_event-list_helptexts.php:111
1795
  #, php-format
1796
  msgid "With the standard value %1$s the full text is displayed."
1797
  msgstr ""
1798
 
1799
+ #: includes/sc_event-list_helptexts.php:115
1800
  msgid ""
1801
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1802
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1804
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1805
  msgstr ""
1806
 
1807
+ #: includes/sc_event-list_helptexts.php:121
1808
  msgid ""
1809
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1810
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1812
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:127
1816
  msgid ""
1817
  "This attribute specifies if a rss feed link should be added.<br />\n"
1818
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1821
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:133
1825
  msgid ""
1826
  "This attribute specifies the page or post url for event links.<br />\n"
1827
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1828
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1829
  msgstr ""
1830
 
1831
+ #: includes/sc_event-list_helptexts.php:140
1832
  msgid ""
1833
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1834
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1835
  msgstr ""
1836
 
1837
+ #: includes/sc_event-list.php:136
1838
  msgid "Event Information:"
1839
  msgstr "Aktivitets Information:"
1840
 
1868
  msgstr ""
1869
 
1870
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1871
+ #: includes/widget_helptexts.php:74
1872
  msgid "characters"
1873
  msgstr "tecken"
1874
 
1911
  msgstr ""
1912
 
1913
  #: includes/widget_helptexts.php:59
1914
+ msgid "Show event excerpt"
1915
  msgstr ""
1916
 
1917
  #: includes/widget_helptexts.php:61
1918
+ msgid "This option defines if the event excerpt will be displayed."
1919
  msgstr ""
1920
 
1921
  #: includes/widget_helptexts.php:66
1922
+ msgid "Show event content"
1923
  msgstr ""
1924
 
1925
  #: includes/widget_helptexts.php:68
1926
+ msgid "This option defines if the event content will be displayed."
1927
+ msgstr ""
1928
+
1929
+ #: includes/widget_helptexts.php:73
1930
+ msgid "Truncate content to"
1931
+ msgstr ""
1932
+
1933
+ #: includes/widget_helptexts.php:75
1934
  msgid ""
1935
  "If the event content are diplayed this option defines the number of diplayed"
1936
  " characters."
1937
  msgstr ""
1938
 
1939
+ #: includes/widget_helptexts.php:76
1940
  #, php-format
1941
  msgid "Set this value to %1$s to view the full text."
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:81
1945
  msgid "URL to the linked Event List page"
1946
  msgstr ""
1947
 
1948
+ #: includes/widget_helptexts.php:83
1949
  msgid ""
1950
  "This option defines the url to the linked Event List page. This option is "
1951
  "required if you want to use one of the options below."
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:88
1955
  msgid "Shortcode ID on linked page"
1956
  msgstr ""
1957
 
1958
+ #: includes/widget_helptexts.php:90
1959
  msgid ""
1960
  "This option defines the shortcode-id for the Event List on the linked page. "
1961
  "Normally the standard value 1 is correct, you only have to change it if you "
1962
  "use multiple event-list shortcodes on the linked page."
1963
  msgstr ""
1964
 
1965
+ #: includes/widget_helptexts.php:97
1966
  msgid ""
1967
  "With this option you can add a link to the single event page for every "
1968
  "displayed event. You have to specify the url to the page and the shortcode "
1969
  "id option if you want to use it."
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:104
1973
  msgid ""
1974
  "With this option you can add a link to the event-list page below the "
1975
  "diplayed events. You have to specify the url to page option if you want to "
1976
  "use it."
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:109
1980
  msgid "Caption for the link"
1981
  msgstr "Titel för länken"
1982
 
1983
+ #: includes/widget_helptexts.php:111
1984
  msgid ""
1985
  "This option defines the text for the link to the Event List page if the "
1986
  "approriate option is selected."
1994
  msgid "Upcoming events"
1995
  msgstr "Kommande aktiviteter"
1996
 
1997
+ #: includes/widget.php:39
1998
  msgid "show events page"
1999
  msgstr "Visa aktivitetssidan"
languages/event-list-zh_CN.mo CHANGED
Binary file
languages/event-list-zh_CN.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
12
- "PO-Revision-Date: 2018-05-27 10:20+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: zh_CN\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:57
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "活动列表设置"
34
 
35
- #: admin/admin.php:106
36
  msgid "Settings"
37
  msgstr "设置"
38
 
39
- #: admin/admin.php:110 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "有关活动列表"
42
 
43
- #: admin/admin.php:110
44
  msgid "About"
45
  msgstr "有关"
46
 
47
- #: admin/admin.php:132
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -106,11 +106,11 @@ msgid ""
106
  " to insert an URL to the linked event-list page."
107
  msgstr ""
108
 
109
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
110
  msgid "Add links to the single events"
111
  msgstr ""
112
 
113
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
114
  msgid "Add a link to the Event List page"
115
  msgstr ""
116
 
@@ -882,7 +882,7 @@ msgstr ""
882
  msgid "This value defines a range from the past to the previous day."
883
  msgstr ""
884
 
885
- #: includes/event.php:107
886
  msgid "No valid start date provided"
887
  msgstr ""
888
 
@@ -1513,7 +1513,7 @@ msgstr ""
1513
  #: includes/sc_event-list_helptexts.php:33
1514
  #: includes/sc_event-list_helptexts.php:74
1515
  #: includes/sc_event-list_helptexts.php:89
1516
- #: includes/sc_event-list_helptexts.php:104
1517
  msgid "number"
1518
  msgstr ""
1519
 
@@ -1742,7 +1742,7 @@ msgstr ""
1742
 
1743
  #: includes/sc_event-list_helptexts.php:77
1744
  #: includes/sc_event-list_helptexts.php:92
1745
- #: includes/sc_event-list_helptexts.php:107
1746
  msgid "This attribute has no influence if only a single event is shown."
1747
  msgstr ""
1748
 
@@ -1769,23 +1769,30 @@ msgstr ""
1769
 
1770
  #: includes/sc_event-list_helptexts.php:100
1771
  msgid ""
 
 
 
 
 
 
 
1772
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1773
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1774
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1775
  msgstr ""
1776
 
1777
- #: includes/sc_event-list_helptexts.php:105
1778
  msgid ""
1779
  "This attribute specifies if the content should be truncate to the given "
1780
  "number of characters in the event list."
1781
  msgstr ""
1782
 
1783
- #: includes/sc_event-list_helptexts.php:106
1784
  #, php-format
1785
  msgid "With the standard value %1$s the full text is displayed."
1786
  msgstr ""
1787
 
1788
- #: includes/sc_event-list_helptexts.php:110
1789
  msgid ""
1790
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1791
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1793,7 +1800,7 @@ msgid ""
1793
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1794
  msgstr ""
1795
 
1796
- #: includes/sc_event-list_helptexts.php:116
1797
  msgid ""
1798
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1799
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1801,7 +1808,7 @@ msgid ""
1801
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1802
  msgstr ""
1803
 
1804
- #: includes/sc_event-list_helptexts.php:122
1805
  msgid ""
1806
  "This attribute specifies if a rss feed link should be added.<br />\n"
1807
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1810,20 +1817,20 @@ msgid ""
1810
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1811
  msgstr ""
1812
 
1813
- #: includes/sc_event-list_helptexts.php:128
1814
  msgid ""
1815
  "This attribute specifies the page or post url for event links.<br />\n"
1816
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1817
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1818
  msgstr ""
1819
 
1820
- #: includes/sc_event-list_helptexts.php:135
1821
  msgid ""
1822
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1823
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1824
  msgstr ""
1825
 
1826
- #: includes/sc_event-list.php:135
1827
  msgid "Event Information:"
1828
  msgstr ""
1829
 
@@ -1857,7 +1864,7 @@ msgid "Truncate event title to"
1857
  msgstr ""
1858
 
1859
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1860
- #: includes/widget_helptexts.php:67
1861
  msgid "characters"
1862
  msgstr ""
1863
 
@@ -1900,68 +1907,76 @@ msgid ""
1900
  msgstr ""
1901
 
1902
  #: includes/widget_helptexts.php:59
1903
- msgid "Show event content"
1904
  msgstr ""
1905
 
1906
  #: includes/widget_helptexts.php:61
1907
- msgid "This option defines if the event content will be displayed."
1908
  msgstr ""
1909
 
1910
  #: includes/widget_helptexts.php:66
1911
- msgid "Truncate content to"
1912
  msgstr ""
1913
 
1914
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1915
  msgid ""
1916
  "If the event content are diplayed this option defines the number of diplayed"
1917
  " characters."
1918
  msgstr ""
1919
 
1920
- #: includes/widget_helptexts.php:69
1921
  #, php-format
1922
  msgid "Set this value to %1$s to view the full text."
1923
  msgstr ""
1924
 
1925
- #: includes/widget_helptexts.php:74
1926
  msgid "URL to the linked Event List page"
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:76
1930
  msgid ""
1931
  "This option defines the url to the linked Event List page. This option is "
1932
  "required if you want to use one of the options below."
1933
  msgstr ""
1934
 
1935
- #: includes/widget_helptexts.php:81
1936
  msgid "Shortcode ID on linked page"
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:83
1940
  msgid ""
1941
  "This option defines the shortcode-id for the Event List on the linked page. "
1942
  "Normally the standard value 1 is correct, you only have to change it if you "
1943
  "use multiple event-list shortcodes on the linked page."
1944
  msgstr ""
1945
 
1946
- #: includes/widget_helptexts.php:90
1947
  msgid ""
1948
  "With this option you can add a link to the single event page for every "
1949
  "displayed event. You have to specify the url to the page and the shortcode "
1950
  "id option if you want to use it."
1951
  msgstr ""
1952
 
1953
- #: includes/widget_helptexts.php:97
1954
  msgid ""
1955
  "With this option you can add a link to the event-list page below the "
1956
  "diplayed events. You have to specify the url to page option if you want to "
1957
  "use it."
1958
  msgstr ""
1959
 
1960
- #: includes/widget_helptexts.php:102
1961
  msgid "Caption for the link"
1962
  msgstr ""
1963
 
1964
- #: includes/widget_helptexts.php:104
1965
  msgid ""
1966
  "This option defines the text for the link to the Event List page if the "
1967
  "approriate option is selected."
@@ -1975,6 +1990,6 @@ msgstr ""
1975
  msgid "Upcoming events"
1976
  msgstr ""
1977
 
1978
- #: includes/widget.php:38
1979
  msgid "show events page"
1980
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
12
+ "PO-Revision-Date: 2020-10-30 19:32+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: zh_CN\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:56
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
32
  msgid "Event List Settings"
33
  msgstr "活动列表设置"
34
 
35
+ #: admin/admin.php:105
36
  msgid "Settings"
37
  msgstr "设置"
38
 
39
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
40
  msgid "About Event List"
41
  msgstr "有关活动列表"
42
 
43
+ #: admin/admin.php:109
44
  msgid "About"
45
  msgstr "有关"
46
 
47
+ #: admin/admin.php:131
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
106
  " to insert an URL to the linked event-list page."
107
  msgstr ""
108
 
109
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
110
  msgid "Add links to the single events"
111
  msgstr ""
112
 
113
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
114
  msgid "Add a link to the Event List page"
115
  msgstr ""
116
 
882
  msgid "This value defines a range from the past to the previous day."
883
  msgstr ""
884
 
885
+ #: includes/event.php:110
886
  msgid "No valid start date provided"
887
  msgstr ""
888
 
1513
  #: includes/sc_event-list_helptexts.php:33
1514
  #: includes/sc_event-list_helptexts.php:74
1515
  #: includes/sc_event-list_helptexts.php:89
1516
+ #: includes/sc_event-list_helptexts.php:109
1517
  msgid "number"
1518
  msgstr ""
1519
 
1742
 
1743
  #: includes/sc_event-list_helptexts.php:77
1744
  #: includes/sc_event-list_helptexts.php:92
1745
+ #: includes/sc_event-list_helptexts.php:112
1746
  msgid "This attribute has no influence if only a single event is shown."
1747
  msgstr ""
1748
 
1769
 
1770
  #: includes/sc_event-list_helptexts.php:100
1771
  msgid ""
1772
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1773
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1774
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1775
+ msgstr ""
1776
+
1777
+ #: includes/sc_event-list_helptexts.php:105
1778
+ msgid ""
1779
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1780
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1781
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1782
  msgstr ""
1783
 
1784
+ #: includes/sc_event-list_helptexts.php:110
1785
  msgid ""
1786
  "This attribute specifies if the content should be truncate to the given "
1787
  "number of characters in the event list."
1788
  msgstr ""
1789
 
1790
+ #: includes/sc_event-list_helptexts.php:111
1791
  #, php-format
1792
  msgid "With the standard value %1$s the full text is displayed."
1793
  msgstr ""
1794
 
1795
+ #: includes/sc_event-list_helptexts.php:115
1796
  msgid ""
1797
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1798
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1800
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1801
  msgstr ""
1802
 
1803
+ #: includes/sc_event-list_helptexts.php:121
1804
  msgid ""
1805
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1806
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1808
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1809
  msgstr ""
1810
 
1811
+ #: includes/sc_event-list_helptexts.php:127
1812
  msgid ""
1813
  "This attribute specifies if a rss feed link should be added.<br />\n"
1814
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1817
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1818
  msgstr ""
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:133
1821
  msgid ""
1822
  "This attribute specifies the page or post url for event links.<br />\n"
1823
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1824
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1825
  msgstr ""
1826
 
1827
+ #: includes/sc_event-list_helptexts.php:140
1828
  msgid ""
1829
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1830
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1831
  msgstr ""
1832
 
1833
+ #: includes/sc_event-list.php:136
1834
  msgid "Event Information:"
1835
  msgstr ""
1836
 
1864
  msgstr ""
1865
 
1866
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1867
+ #: includes/widget_helptexts.php:74
1868
  msgid "characters"
1869
  msgstr ""
1870
 
1907
  msgstr ""
1908
 
1909
  #: includes/widget_helptexts.php:59
1910
+ msgid "Show event excerpt"
1911
  msgstr ""
1912
 
1913
  #: includes/widget_helptexts.php:61
1914
+ msgid "This option defines if the event excerpt will be displayed."
1915
  msgstr ""
1916
 
1917
  #: includes/widget_helptexts.php:66
1918
+ msgid "Show event content"
1919
  msgstr ""
1920
 
1921
  #: includes/widget_helptexts.php:68
1922
+ msgid "This option defines if the event content will be displayed."
1923
+ msgstr ""
1924
+
1925
+ #: includes/widget_helptexts.php:73
1926
+ msgid "Truncate content to"
1927
+ msgstr ""
1928
+
1929
+ #: includes/widget_helptexts.php:75
1930
  msgid ""
1931
  "If the event content are diplayed this option defines the number of diplayed"
1932
  " characters."
1933
  msgstr ""
1934
 
1935
+ #: includes/widget_helptexts.php:76
1936
  #, php-format
1937
  msgid "Set this value to %1$s to view the full text."
1938
  msgstr ""
1939
 
1940
+ #: includes/widget_helptexts.php:81
1941
  msgid "URL to the linked Event List page"
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:83
1945
  msgid ""
1946
  "This option defines the url to the linked Event List page. This option is "
1947
  "required if you want to use one of the options below."
1948
  msgstr ""
1949
 
1950
+ #: includes/widget_helptexts.php:88
1951
  msgid "Shortcode ID on linked page"
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:90
1955
  msgid ""
1956
  "This option defines the shortcode-id for the Event List on the linked page. "
1957
  "Normally the standard value 1 is correct, you only have to change it if you "
1958
  "use multiple event-list shortcodes on the linked page."
1959
  msgstr ""
1960
 
1961
+ #: includes/widget_helptexts.php:97
1962
  msgid ""
1963
  "With this option you can add a link to the single event page for every "
1964
  "displayed event. You have to specify the url to the page and the shortcode "
1965
  "id option if you want to use it."
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:104
1969
  msgid ""
1970
  "With this option you can add a link to the event-list page below the "
1971
  "diplayed events. You have to specify the url to page option if you want to "
1972
  "use it."
1973
  msgstr ""
1974
 
1975
+ #: includes/widget_helptexts.php:109
1976
  msgid "Caption for the link"
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:111
1980
  msgid ""
1981
  "This option defines the text for the link to the Event List page if the "
1982
  "approriate option is selected."
1990
  msgid "Upcoming events"
1991
  msgstr ""
1992
 
1993
+ #: includes/widget.php:39
1994
  msgid "show events page"
1995
  msgstr ""
languages/event-list.pot CHANGED
@@ -1,45 +1,45 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2018 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  #, fuzzy
6
  msgid ""
7
  msgstr ""
8
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
9
- "POT-Creation-Date: 2018-05-27 12:20+0200\n"
10
  "Language: en\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: admin/admin.php:57
17
  #, php-format
18
  msgid "Errors during upgrade of plugin %1$s"
19
  msgstr ""
20
 
21
- #: admin/admin.php:57
22
  #, php-format
23
  msgid "Upgrade of plugin %1$s successful"
24
  msgstr ""
25
 
26
- #: admin/admin.php:106 admin/includes/admin-settings.php:65
27
  msgid "Event List Settings"
28
  msgstr ""
29
 
30
- #: admin/admin.php:106
31
  msgid "Settings"
32
  msgstr ""
33
 
34
- #: admin/admin.php:110 admin/includes/admin-about.php:37
35
  msgid "About Event List"
36
  msgstr ""
37
 
38
- #: admin/admin.php:110
39
  msgid "About"
40
  msgstr ""
41
 
42
- #: admin/admin.php:132
43
  #, php-format
44
  msgid "%s Event"
45
  msgid_plural "%s Events"
@@ -96,11 +96,11 @@ msgstr ""
96
  msgid "If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page."
97
  msgstr ""
98
 
99
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88
100
  msgid "Add links to the single events"
101
  msgstr ""
102
 
103
- #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
104
  msgid "Add a link to the Event List page"
105
  msgstr ""
106
 
@@ -822,7 +822,7 @@ msgstr ""
822
  msgid "This value defines a range from the past to the previous day."
823
  msgstr ""
824
 
825
- #: includes/event.php:107
826
  msgid "No valid start date provided"
827
  msgstr ""
828
 
@@ -1369,7 +1369,7 @@ msgstr ""
1369
  #: includes/sc_event-list_helptexts.php:33
1370
  #: includes/sc_event-list_helptexts.php:74
1371
  #: includes/sc_event-list_helptexts.php:89
1372
- #: includes/sc_event-list_helptexts.php:104
1373
  msgid "number"
1374
  msgstr ""
1375
 
@@ -1564,7 +1564,7 @@ msgstr ""
1564
 
1565
  #: includes/sc_event-list_helptexts.php:77
1566
  #: includes/sc_event-list_helptexts.php:92
1567
- #: includes/sc_event-list_helptexts.php:107
1568
  msgid "This attribute has no influence if only a single event is shown."
1569
  msgstr ""
1570
 
@@ -1591,21 +1591,28 @@ msgstr ""
1591
 
1592
  #: includes/sc_event-list_helptexts.php:100
1593
  msgid ""
 
 
 
 
 
 
 
1594
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1595
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1596
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1597
  msgstr ""
1598
 
1599
- #: includes/sc_event-list_helptexts.php:105
1600
  msgid "This attribute specifies if the content should be truncate to the given number of characters in the event list."
1601
  msgstr ""
1602
 
1603
- #: includes/sc_event-list_helptexts.php:106
1604
  #, php-format
1605
  msgid "With the standard value %1$s the full text is displayed."
1606
  msgstr ""
1607
 
1608
- #: includes/sc_event-list_helptexts.php:110
1609
  msgid ""
1610
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1611
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
@@ -1613,7 +1620,7 @@ msgid ""
1613
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1614
  msgstr ""
1615
 
1616
- #: includes/sc_event-list_helptexts.php:116
1617
  msgid ""
1618
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1619
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
@@ -1621,7 +1628,7 @@ msgid ""
1621
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1622
  msgstr ""
1623
 
1624
- #: includes/sc_event-list_helptexts.php:122
1625
  msgid ""
1626
  "This attribute specifies if a rss feed link should be added.<br />\n"
1627
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
@@ -1630,20 +1637,20 @@ msgid ""
1630
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1631
  msgstr ""
1632
 
1633
- #: includes/sc_event-list_helptexts.php:128
1634
  msgid ""
1635
  "This attribute specifies the page or post url for event links.<br />\n"
1636
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1637
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1638
  msgstr ""
1639
 
1640
- #: includes/sc_event-list_helptexts.php:135
1641
  msgid ""
1642
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1643
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1644
  msgstr ""
1645
 
1646
- #: includes/sc_event-list.php:135
1647
  msgid "Event Information:"
1648
  msgstr ""
1649
 
@@ -1672,7 +1679,7 @@ msgid "Truncate event title to"
1672
  msgstr ""
1673
 
1674
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1675
- #: includes/widget_helptexts.php:67
1676
  msgid "characters"
1677
  msgstr ""
1678
 
@@ -1710,55 +1717,63 @@ msgid "If the event location is diplayed this option defines the number of displ
1710
  msgstr ""
1711
 
1712
  #: includes/widget_helptexts.php:59
1713
- msgid "Show event content"
1714
  msgstr ""
1715
 
1716
  #: includes/widget_helptexts.php:61
1717
- msgid "This option defines if the event content will be displayed."
1718
  msgstr ""
1719
 
1720
  #: includes/widget_helptexts.php:66
1721
- msgid "Truncate content to"
1722
  msgstr ""
1723
 
1724
  #: includes/widget_helptexts.php:68
 
 
 
 
 
 
 
 
1725
  msgid "If the event content are diplayed this option defines the number of diplayed characters."
1726
  msgstr ""
1727
 
1728
- #: includes/widget_helptexts.php:69
1729
  #, php-format
1730
  msgid "Set this value to %1$s to view the full text."
1731
  msgstr ""
1732
 
1733
- #: includes/widget_helptexts.php:74
1734
  msgid "URL to the linked Event List page"
1735
  msgstr ""
1736
 
1737
- #: includes/widget_helptexts.php:76
1738
  msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
1739
  msgstr ""
1740
 
1741
- #: includes/widget_helptexts.php:81
1742
  msgid "Shortcode ID on linked page"
1743
  msgstr ""
1744
 
1745
- #: includes/widget_helptexts.php:83
1746
  msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
1747
  msgstr ""
1748
 
1749
- #: includes/widget_helptexts.php:90
1750
  msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
1751
  msgstr ""
1752
 
1753
- #: includes/widget_helptexts.php:97
1754
  msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
1755
  msgstr ""
1756
 
1757
- #: includes/widget_helptexts.php:102
1758
  msgid "Caption for the link"
1759
  msgstr ""
1760
 
1761
- #: includes/widget_helptexts.php:104
1762
  msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
1763
  msgstr ""
1764
 
@@ -1770,6 +1785,6 @@ msgstr ""
1770
  msgid "Upcoming events"
1771
  msgstr ""
1772
 
1773
- #: includes/widget.php:38
1774
  msgid "show events page"
1775
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2020 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  #, fuzzy
6
  msgid ""
7
  msgstr ""
8
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
9
+ "POT-Creation-Date: 2020-10-30 20:31+0100\n"
10
  "Language: en\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: admin/admin.php:56
17
  #, php-format
18
  msgid "Errors during upgrade of plugin %1$s"
19
  msgstr ""
20
 
21
+ #: admin/admin.php:56
22
  #, php-format
23
  msgid "Upgrade of plugin %1$s successful"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:105 admin/includes/admin-settings.php:65
27
  msgid "Event List Settings"
28
  msgstr ""
29
 
30
+ #: admin/admin.php:105
31
  msgid "Settings"
32
  msgstr ""
33
 
34
+ #: admin/admin.php:109 admin/includes/admin-about.php:37
35
  msgid "About Event List"
36
  msgstr ""
37
 
38
+ #: admin/admin.php:109
39
  msgid "About"
40
  msgstr ""
41
 
42
+ #: admin/admin.php:131
43
  #, php-format
44
  msgid "%s Event"
45
  msgid_plural "%s Events"
96
  msgid "If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page."
97
  msgstr ""
98
 
99
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95
100
  msgid "Add links to the single events"
101
  msgstr ""
102
 
103
+ #: admin/includes/admin-about.php:80 includes/widget_helptexts.php:102
104
  msgid "Add a link to the Event List page"
105
  msgstr ""
106
 
822
  msgid "This value defines a range from the past to the previous day."
823
  msgstr ""
824
 
825
+ #: includes/event.php:110
826
  msgid "No valid start date provided"
827
  msgstr ""
828
 
1369
  #: includes/sc_event-list_helptexts.php:33
1370
  #: includes/sc_event-list_helptexts.php:74
1371
  #: includes/sc_event-list_helptexts.php:89
1372
+ #: includes/sc_event-list_helptexts.php:109
1373
  msgid "number"
1374
  msgstr ""
1375
 
1564
 
1565
  #: includes/sc_event-list_helptexts.php:77
1566
  #: includes/sc_event-list_helptexts.php:92
1567
+ #: includes/sc_event-list_helptexts.php:112
1568
  msgid "This attribute has no influence if only a single event is shown."
1569
  msgstr ""
1570
 
1591
 
1592
  #: includes/sc_event-list_helptexts.php:100
1593
  msgid ""
1594
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1595
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1596
+ "\t With \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event"
1597
+ msgstr ""
1598
+
1599
+ #: includes/sc_event-list_helptexts.php:105
1600
+ msgid ""
1601
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1602
  "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1603
  "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1604
  msgstr ""
1605
 
1606
+ #: includes/sc_event-list_helptexts.php:110
1607
  msgid "This attribute specifies if the content should be truncate to the given number of characters in the event list."
1608
  msgstr ""
1609
 
1610
+ #: includes/sc_event-list_helptexts.php:111
1611
  #, php-format
1612
  msgid "With the standard value %1$s the full text is displayed."
1613
  msgstr ""
1614
 
1615
+ #: includes/sc_event-list_helptexts.php:115
1616
  msgid ""
1617
  "This attribute specifies if the content should be collapsed initially.<br />\n"
1618
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1620
  "\t With \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1621
  msgstr ""
1622
 
1623
+ #: includes/sc_event-list_helptexts.php:121
1624
  msgid ""
1625
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1626
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1628
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1629
  msgstr ""
1630
 
1631
+ #: includes/sc_event-list_helptexts.php:127
1632
  msgid ""
1633
  "This attribute specifies if a rss feed link should be added.<br />\n"
1634
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1637
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1638
  msgstr ""
1639
 
1640
+ #: includes/sc_event-list_helptexts.php:133
1641
  msgid ""
1642
  "This attribute specifies the page or post url for event links.<br />\n"
1643
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1644
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1645
  msgstr ""
1646
 
1647
+ #: includes/sc_event-list_helptexts.php:140
1648
  msgid ""
1649
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1650
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1651
  msgstr ""
1652
 
1653
+ #: includes/sc_event-list.php:136
1654
  msgid "Event Information:"
1655
  msgstr ""
1656
 
1679
  msgstr ""
1680
 
1681
  #: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
1682
+ #: includes/widget_helptexts.php:74
1683
  msgid "characters"
1684
  msgstr ""
1685
 
1717
  msgstr ""
1718
 
1719
  #: includes/widget_helptexts.php:59
1720
+ msgid "Show event excerpt"
1721
  msgstr ""
1722
 
1723
  #: includes/widget_helptexts.php:61
1724
+ msgid "This option defines if the event excerpt will be displayed."
1725
  msgstr ""
1726
 
1727
  #: includes/widget_helptexts.php:66
1728
+ msgid "Show event content"
1729
  msgstr ""
1730
 
1731
  #: includes/widget_helptexts.php:68
1732
+ msgid "This option defines if the event content will be displayed."
1733
+ msgstr ""
1734
+
1735
+ #: includes/widget_helptexts.php:73
1736
+ msgid "Truncate content to"
1737
+ msgstr ""
1738
+
1739
+ #: includes/widget_helptexts.php:75
1740
  msgid "If the event content are diplayed this option defines the number of diplayed characters."
1741
  msgstr ""
1742
 
1743
+ #: includes/widget_helptexts.php:76
1744
  #, php-format
1745
  msgid "Set this value to %1$s to view the full text."
1746
  msgstr ""
1747
 
1748
+ #: includes/widget_helptexts.php:81
1749
  msgid "URL to the linked Event List page"
1750
  msgstr ""
1751
 
1752
+ #: includes/widget_helptexts.php:83
1753
  msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
1754
  msgstr ""
1755
 
1756
+ #: includes/widget_helptexts.php:88
1757
  msgid "Shortcode ID on linked page"
1758
  msgstr ""
1759
 
1760
+ #: includes/widget_helptexts.php:90
1761
  msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
1762
  msgstr ""
1763
 
1764
+ #: includes/widget_helptexts.php:97
1765
  msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
1766
  msgstr ""
1767
 
1768
+ #: includes/widget_helptexts.php:104
1769
  msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
1770
  msgstr ""
1771
 
1772
+ #: includes/widget_helptexts.php:109
1773
  msgid "Caption for the link"
1774
  msgstr ""
1775
 
1776
+ #: includes/widget_helptexts.php:111
1777
  msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
1778
  msgstr ""
1779
 
1785
  msgid "Upcoming events"
1786
  msgstr ""
1787
 
1788
+ #: includes/widget.php:39
1789
  msgid "show events page"
1790
  msgstr ""
readme.txt CHANGED
@@ -2,13 +2,13 @@
2
  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: 4.2
6
- Tested up to: 4.9
7
  Requires PHP: 5.2
8
- Stable tag: 0.8.3
9
- Plugin URI: http://wordpress.org/extend/plugins/event-list
10
  Licence: GPLv2
11
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
13
  Manage your events and show them on your site.
14
 
@@ -86,6 +86,11 @@ Another possibility would be to call the wordpress function "do_shortcode()".
86
 
87
  == Changelog ==
88
 
 
 
 
 
 
89
  = 0.8.3 (2018-05-27) =
90
  * improved import handling and error messages when there is still an import error
91
  * improved help text for import date format
2
  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: 4.5
6
+ Tested up to: 5.6
7
  Requires PHP: 5.2
8
+ Stable tag: 0.8.4
9
+ Plugin URI: https://wordpress.org/plugins/event-list
10
  Licence: GPLv2
11
+ License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
13
  Manage your events and show them on your site.
14
 
86
 
87
  == Changelog ==
88
 
89
+ = 0.8.4 (2020-10-30) =
90
+ * added support for excerpts in events
91
+ * added support for authors in events
92
+ * changed path for upgrade logfile
93
+
94
  = 0.8.3 (2018-05-27) =
95
  * improved import handling and error messages when there is still an import error
96
  * improved help text for import date format