Event List - Version 0.8.5

Version Description

(2020-11-16) = * add iCal support (add a link in the event-list with the new shortcode attribute) * changes in feed options * updated feed link styling * changed rss feed link attribute name from "add_feed_link" to "add_rss_link". Please update your shortcode! * some internal changed in feed handling * fixed logfile path for upgrade

Download this release

Release Info

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

Code changes from version 0.8.4 to 0.8.5

Files changed (44) hide show
  1. admin/includes/admin-settings.php +4 -2
  2. admin/includes/upgrade.php +25 -1
  3. event-list.php +13 -4
  4. includes/css/event-list.css +30 -5
  5. includes/ical.php +111 -0
  6. includes/options.php +26 -24
  7. includes/options_helptexts.php +209 -137
  8. includes/{feed.php → rss.php} +17 -19
  9. includes/sc_event-list.php +115 -124
  10. includes/sc_event-list_helptexts.php +16 -7
  11. languages/event-list-da_DK.mo +0 -0
  12. languages/event-list-da_DK.po +203 -168
  13. languages/event-list-de_DE.mo +0 -0
  14. languages/event-list-de_DE.po +235 -200
  15. languages/event-list-es_AR.mo +0 -0
  16. languages/event-list-es_AR.po +204 -169
  17. languages/event-list-es_ES.mo +0 -0
  18. languages/event-list-es_ES.po +203 -168
  19. languages/event-list-et_EE.mo +0 -0
  20. languages/event-list-et_EE.po +220 -185
  21. languages/event-list-fi_FI.mo +0 -0
  22. languages/event-list-fi_FI.po +210 -175
  23. languages/event-list-fr_FR.mo +0 -0
  24. languages/event-list-fr_FR.po +229 -194
  25. languages/event-list-id_ID.mo +0 -0
  26. languages/event-list-id_ID.po +203 -168
  27. languages/event-list-it_IT.mo +0 -0
  28. languages/event-list-it_IT.po +207 -172
  29. languages/event-list-nl_NL.mo +0 -0
  30. languages/event-list-nl_NL.po +219 -184
  31. languages/event-list-pl_PL.mo +0 -0
  32. languages/event-list-pl_PL.po +218 -183
  33. languages/event-list-pt_BR.mo +0 -0
  34. languages/event-list-pt_BR.po +209 -174
  35. languages/event-list-sk_SK.mo +0 -0
  36. languages/event-list-sk_SK.po +216 -181
  37. languages/event-list-sl_SI.mo +0 -0
  38. languages/event-list-sl_SI.po +203 -168
  39. languages/event-list-sv_SE.mo +0 -0
  40. languages/event-list-sv_SE.po +215 -180
  41. languages/event-list-zh_CN.mo +0 -0
  42. languages/event-list-zh_CN.po +203 -168
  43. languages/event-list.pot +189 -155
  44. readme.txt +10 -2
admin/includes/admin-settings.php CHANGED
@@ -48,8 +48,10 @@ class EL_Admin_Settings {
48
  break;
49
  case 'feed':
50
  // update feed rewrite status if required
51
- require_once(EL_PATH.'includes/feed.php');
52
- EL_Feed::get_instance()->update_feed_rewrite_status();
 
 
53
  break;
54
  case 'taxonomy':
55
  // update category count
48
  break;
49
  case 'feed':
50
  // update feed rewrite status if required
51
+ require_once(EL_PATH.'includes/rss.php');
52
+ EL_Rss::get_instance()->update_rewrite_status();
53
+ require_once(EL_PATH.'includes/ical.php');
54
+ EL_ICal::get_instance()->update_ical_rewrite_status();
55
  break;
56
  case 'taxonomy':
57
  // update category count
admin/includes/upgrade.php CHANGED
@@ -99,6 +99,9 @@ class EL_Upgrade {
99
  if($this->upgrade_required('0.8.0')) {
100
  $this->upgrade_to_0_8_0();
101
  }
 
 
 
102
 
103
  // update last_upgr_version
104
  $this->update_last_upgr_version();
@@ -249,6 +252,27 @@ class EL_Upgrade {
249
  $this->rename_option('el_sync_cats', 'el_use_post_cats');
250
  }
251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  private function upgrade_required($version) {
253
  if(version_compare($this->last_upgr_version, $version) < 0 || $this->resume_version === $version) {
254
  return true;
@@ -456,7 +480,7 @@ class EL_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
99
  if($this->upgrade_required('0.8.0')) {
100
  $this->upgrade_to_0_8_0();
101
  }
102
+ if($this->upgrade_required('0.8.5')) {
103
+ $this->upgrade_to_0_8_5();
104
+ }
105
 
106
  // update last_upgr_version
107
  $this->update_last_upgr_version();
252
  $this->rename_option('el_sync_cats', 'el_use_post_cats');
253
  }
254
 
255
+ /** Upgrade to VERSION 0.8.5: change feed options
256
+ * * rename option "el_enable_feed" to "el_feed_enable_rss"
257
+ * * rename option "el_enable_ical" to "el_feed_enable_ical"
258
+ * * rename option "el_feed_name" to "el_feed_rss_name"
259
+ * * rename option "el_feed_description" to "el_feed_rss_description"
260
+ * * rename option "el_feed_upcoming_only" to "el_feed_rss_upcoming_only"
261
+ * * rename option "el_feed_link_text" to "el_feed_rss_link_text"
262
+ * * delete option "el_feed_link_img"
263
+ * * delete option "el_head_feed_link"
264
+ **/
265
+ private function upgrade_to_0_8_5() {
266
+ $this->rename_option('el_enable_feed', 'el_feed_enable_rss');
267
+ $this->rename_option('el_enable_ical', 'el_feed_enable_ical');
268
+ $this->rename_option('el_feed_name', 'el_feed_rss_name');
269
+ $this->rename_option('el_feed_description', 'el_feed_rss_description');
270
+ $this->rename_option('el_feed_upcoming_only', 'el_feed_rss_upcoming_only');
271
+ $this->rename_option('el_feed_link_text', 'el_feed_rss_link_text');
272
+ $this->delete_option('el_feed_link_img');
273
+ $this->delete_option('el_head_feed_link');
274
+ }
275
+
276
  private function upgrade_required($version) {
277
  if(version_compare($this->last_upgr_version, $version) < 0 || $this->resume_version === $version) {
278
  return true;
480
  }
481
 
482
  private function logfile_init() {
483
+ $logfile_path = WP_CONTENT_DIR . '/' . $this->logfile;
484
  // rename all existing log files and remove files older than 90 days
485
  if(file_exists($logfile_path) && empty($this->resume_version)) {
486
  // delete file if it is too old
event-list.php CHANGED
@@ -3,7 +3,7 @@
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
@@ -61,6 +61,8 @@ class Event_List {
61
  add_action('widgets_init', array(&$this, 'widget_init'));
62
  // Register RSS feed
63
  add_action('init', array(&$this, 'feed_init'), 10);
 
 
64
 
65
  // ADMIN PAGE:
66
  if(is_admin()) {
@@ -106,9 +108,16 @@ class Event_List {
106
  }
107
 
108
  public function feed_init() {
109
- if($this->options->get('el_enable_feed')) {
110
- include_once(EL_PATH.'includes/feed.php');
111
- EL_Feed::get_instance();
 
 
 
 
 
 
 
112
  }
113
  }
114
 
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.5
7
  Author: mibuthu
8
  Author URI: https://wordpress.org/plugins/event-list/
9
  Text Domain: event-list
61
  add_action('widgets_init', array(&$this, 'widget_init'));
62
  // Register RSS feed
63
  add_action('init', array(&$this, 'feed_init'), 10);
64
+ // Register iCal feed
65
+ add_action('init', array(&$this, 'ical_init'), 10);
66
 
67
  // ADMIN PAGE:
68
  if(is_admin()) {
108
  }
109
 
110
  public function feed_init() {
111
+ if($this->options->get('el_feed_enable_rss')) {
112
+ include_once(EL_PATH.'includes/rss.php');
113
+ EL_Rss::get_instance();
114
+ }
115
+ }
116
+
117
+ public function ical_init() {
118
+ if ( $this->options->get( 'el_feed_enable_ical' ) ) {
119
+ include_once( EL_PATH . 'includes/ical.php' );
120
+ EL_ICal::get_instance();
121
  }
122
  }
123
 
includes/css/event-list.css CHANGED
@@ -87,20 +87,33 @@ li.event {
87
  font-size: 0.95em;
88
  }
89
 
90
- .event-content {
91
- font-size: 0.8em;
92
  }
93
 
94
  div.feed {
95
  display: block;
 
 
 
 
 
 
 
96
  }
97
 
98
- div.feed a * {
 
 
99
  vertical-align: middle;
100
  }
101
 
102
- div.feed img {
103
- margin: 0 5px 0 2px;
 
 
 
 
104
  }
105
 
106
  div.filterbar, div.filterbar div {
@@ -128,3 +141,15 @@ div.filterbar ul.hlist li + li:before {
128
  div.el-hidden {
129
  display: none;
130
  }
 
 
 
 
 
 
 
 
 
 
 
 
87
  font-size: 0.95em;
88
  }
89
 
90
+ .event-content, .event-excerpt {
91
+ font-size: 0.9em;
92
  }
93
 
94
  div.feed {
95
  display: block;
96
+ clear: both;
97
+ }
98
+
99
+ div.feed a {
100
+ padding: 0.65rem 0.45rem 0.45rem 0.3rem;
101
+ color: #ffffff;
102
+ text-decoration: none;
103
  }
104
 
105
+ div.feed a span {
106
+ padding-right: 0.05em;
107
+ font-size: 0.95rem;
108
  vertical-align: middle;
109
  }
110
 
111
+ a.el-rss {
112
+ background-color: #e98300;
113
+ }
114
+
115
+ a.el-ical {
116
+ background-color: #820000;
117
  }
118
 
119
  div.filterbar, div.filterbar div {
141
  div.el-hidden {
142
  display: none;
143
  }
144
+
145
+ .el-text-align-left {
146
+ text-align: left;
147
+ }
148
+
149
+ .el-text-align-center {
150
+ text-align: center;
151
+ }
152
+
153
+ .el-text-align-right {
154
+ text-align: right;
155
+ }
includes/ical.php ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if(!defined('WPINC')) {
3
+ exit;
4
+ }
5
+
6
+ require_once(EL_PATH.'includes/options.php');
7
+ require_once(EL_PATH.'includes/events.php');
8
+
9
+ // This class handles iCal feed
10
+ class EL_ICal {
11
+ private static $instance;
12
+ private $options;
13
+ private $events;
14
+
15
+ public static function &get_instance() {
16
+ // Create class instance if required
17
+ if(!isset(self::$instance)) {
18
+ self::$instance = new self();
19
+ }
20
+
21
+ // Return class instance
22
+ return self::$instance;
23
+ }
24
+
25
+ private function __construct() {
26
+ $this->options = EL_Options::get_instance();
27
+ $this->events = EL_Events::get_instance();
28
+ $this->init();
29
+ }
30
+
31
+ public function init() {
32
+ // register feed properly with WordPress
33
+ add_feed($this->get_feed_name(), array(&$this, 'print_ical'));
34
+ }
35
+
36
+ public function print_ical() {
37
+ header('Content-Type: text/calendar; charset='.get_option('blog_charset'), true);
38
+ $options = array(
39
+ 'date_filter' => $this->options->get('el_feed_ical_upcoming_only') ? 'upcoming' : null,
40
+ 'order' => array('startdate DESC', 'starttime DESC', 'enddate DESC')
41
+ );
42
+
43
+ $events = $this->events->get($options);
44
+
45
+ // Print iCal
46
+ $eol = "\r\n";
47
+ echo
48
+ 'BEGIN:VCALENDAR'.$eol.
49
+ 'VERSION:2.0'.$eol.
50
+ 'PRODID:-//'.get_bloginfo('name').'//NONSGML v1.0//EN'.$eol.
51
+ 'CALSCALE:GREGORIAN'.$eol.
52
+ 'UID:'.md5(uniqid(mt_rand(), true)).'@'.get_bloginfo('name').$eol;
53
+
54
+ if(!empty($events)) {
55
+ foreach ($events as $event) {
56
+ echo
57
+ 'BEGIN:VEVENT'.$eol.
58
+ 'UID:'.md5(uniqid(mt_rand(), true)).'@'.get_bloginfo('name').$eol.
59
+ 'DTSTART:'.mysql2date('Ymd', $event->startdate, false).get_gmt_from_date($event->starttime, '\THis\Z').$eol;
60
+ if($event->enddate !== $event->startdate) {
61
+ echo 'DTEND:'.mysql2date('Ymd', $event->enddate, false).$eol;
62
+ }
63
+ echo
64
+ 'DTSTAMP:'.date("Ymd\THis\Z").$eol.
65
+ 'LOCATION:'.$event->location.$eol.
66
+ 'SUMMARY:'.$this->sanitize_feed_text($event->title).$eol;
67
+ if(!empty($event->content)) {
68
+ echo
69
+ 'DESCRIPTION:'.$this->sanitize_feed_text(str_replace(array("\r", "\n"), ' ', $event->content)).$eol;
70
+ }
71
+ echo
72
+ 'END:VEVENT'.$eol;
73
+ }
74
+ }
75
+ echo 'END:VCALENDAR';
76
+ }
77
+
78
+ public function update_ical_rewrite_status() {
79
+ $feeds = array_keys((array)get_option('rewrite_rules'), 'index.php?&feed=$matches[1]');
80
+ $feed_rewrite_status = 0 < count(preg_grep('@[(\|]'.$this->get_feed_name().'[\|)]@', $feeds));
81
+ // if iCal is enabled but rewrite rules do not exist already, flush rewrite rules
82
+ if('1' == $this->options->get('el_feed_enable_ical') && !$feed_rewrite_status) {
83
+ // result: add eventlist ical to rewrite rules
84
+ flush_rewrite_rules(false);
85
+ }
86
+ // if iCal is disabled but rewrite rules do exist already, flush rewrite rules also
87
+ elseif('1' != $this->options->get('el_feed_enable_ical') && $feed_rewrite_status) {
88
+ // result: remove eventlist ical from rewrite rules
89
+ flush_rewrite_rules(false);
90
+ }
91
+ }
92
+
93
+ private function sanitize_feed_text($text) {
94
+ return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
95
+ }
96
+
97
+ private function get_feed_name() {
98
+ return $this->options->get('el_feed_ical_name');
99
+ }
100
+
101
+ public function feed_url() {
102
+ if(get_option('permalink_structure')) {
103
+ $feed_link = get_bloginfo('url').'/feed/';
104
+ }
105
+ else {
106
+ $feed_link = get_bloginfo('url').'/?feed=';
107
+ }
108
+ return $feed_link . $this->get_feed_name();
109
+ }
110
+ }
111
+ ?>
includes/options.php CHANGED
@@ -25,36 +25,38 @@ class EL_Options {
25
 
26
  public function init_options() {
27
  $this->options = array(
28
- 'el_last_upgrade_version' => array('section' => 'system', 'std_val' => ''),
29
 
30
- 'el_import_file' => array('section' => 'import', 'std_val' => ''),
31
- 'el_import_date_format' => array('section' => 'import', 'std_val' => 'Y-m-d'),
32
 
33
- 'el_no_event_text' => array('section' => 'general', 'std_val' => 'no event'),
34
- 'el_multiday_filterrange' => array('section' => 'general', 'std_val' => '1'),
35
- 'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''),
36
- 'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
37
- 'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
38
- 'el_mo_lang_dir_first' => array('section' => 'general', 'std_val' => ''), // default value must be set also in load_textdomain function in Event-List class
39
 
40
- 'el_permalink_slug' => array('section' => 'frontend', 'std_val' => __('events','event-list')),
41
- 'el_content_show_text' => array('section' => 'frontend', 'std_val' => __('Show content','event-list')),
42
- 'el_content_hide_text' => array('section' => 'frontend', 'std_val' => __('Hide content','event-list')),
43
- 'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''),
44
 
45
- 'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''),
46
 
47
- 'el_enable_feed' => array('section' => 'feed', 'std_val' => ''),
48
- 'el_feed_name' => array('section' => 'feed', 'std_val' => 'event-list'),
49
- 'el_feed_description' => array('section' => 'feed', 'std_val' => 'Eventlist Feed'),
50
- 'el_feed_upcoming_only' => array('section' => 'feed', 'std_val' => ''),
51
- 'el_head_feed_link' => array('section' => 'feed', 'std_val' => '1'),
52
- 'el_feed_link_pos' => array('section' => 'feed', 'std_val' => 'bottom'),
53
- 'el_feed_link_align' => array('section' => 'feed', 'std_val' => 'left'),
54
- 'el_feed_link_text' => array('section' => 'feed', 'std_val' => 'RSS Feed'),
55
- 'el_feed_link_img' => array('section' => 'feed', 'std_val' => '1'),
 
 
56
 
57
- 'el_use_post_cats' => array('section' => 'taxonomy', 'std_val' => ''),
58
  );
59
  }
60
 
25
 
26
  public function init_options() {
27
  $this->options = array(
28
+ 'el_last_upgrade_version' => array('section' => 'system', 'std_val' => ''),
29
 
30
+ 'el_import_file' => array('section' => 'import', 'std_val' => ''),
31
+ 'el_import_date_format' => array('section' => 'import', 'std_val' => 'Y-m-d'),
32
 
33
+ 'el_no_event_text' => array('section' => 'general', 'std_val' => 'no event'),
34
+ 'el_multiday_filterrange' => array('section' => 'general', 'std_val' => '1'),
35
+ 'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''),
36
+ 'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
37
+ 'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
38
+ 'el_mo_lang_dir_first' => array('section' => 'general', 'std_val' => ''), // default value must be set also in load_textdomain function in Event-List class
39
 
40
+ 'el_permalink_slug' => array('section' => 'frontend', 'std_val' => __('events','event-list')),
41
+ 'el_content_show_text' => array('section' => 'frontend', 'std_val' => __('Show content','event-list')),
42
+ 'el_content_hide_text' => array('section' => 'frontend', 'std_val' => __('Hide content','event-list')),
43
+ 'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''),
44
 
45
+ 'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''),
46
 
47
+ 'el_feed_enable_rss' => array('section' => 'feed', 'std_val' => ''),
48
+ 'el_feed_enable_ical' => array('section' => 'feed', 'std_val' => ''),
49
+ 'el_feed_link_pos' => array('section' => 'feed', 'std_val' => 'bottom'),
50
+ 'el_feed_link_align' => array('section' => 'feed', 'std_val' => 'left'),
51
+ 'el_feed_rss_name' => array('section' => 'feed', 'std_val' => 'event-list'),
52
+ 'el_feed_rss_description' => array('section' => 'feed', 'std_val' => 'Eventlist Feed'),
53
+ 'el_feed_rss_upcoming_only' => array('section' => 'feed', 'std_val' => ''),
54
+ 'el_feed_rss_link_text' => array('section' => 'feed', 'std_val' => 'RSS'),
55
+ 'el_feed_ical_name' => array('section' => 'feed', 'std_val' => 'event-list.ics'),
56
+ 'el_feed_ical_upcoming_only' => array('section' => 'feed', 'std_val' => ''),
57
+ 'el_feed_ical_link_text' => array('section' => 'feed', 'std_val' => 'iCal'),
58
 
59
+ 'el_use_post_cats' => array('section' => 'taxonomy', 'std_val' => ''),
60
  );
61
  }
62
 
includes/options_helptexts.php CHANGED
@@ -6,152 +6,224 @@ if(!defined('WPINC')) {
6
  $options_helptexts = array(
7
 
8
  // Section: "import"
9
- 'el_import_file' => array('type' => 'file-upload',
10
- 'label' => __('CSV File to import','event-list'),
11
- 'maxsize' => 204800,
12
- 'desc' => __('Please select the file which contains the event data in CSV format.','event-list')),
13
-
14
- 'el_import_date_format' => array('type' => 'text',
15
- 'label' => __('Used date format','event-list'),
16
- 'caption' => '',
17
- 'desc' => __('With this option the given date format for event start and end date in the CSV file can be specified.','event-list').'<br />'.
18
- sprintf(__('You can use the php date format options given in %1$s, the most important ones are:','event-list'),
19
- '<a href="https://secure.php.net/manual/en/function.date.php" target="_blank" rel="noopener">PHP function date</a>').'
20
- <ul><li><code>Y</code> &hellip; '.__('full year representation, with 4 digits','event-list').'</li>
21
- <li><code>m</code> &hellip; '.__('numeric representation of a month, with leading zeros','event-list').'</li>
22
- <li><code>d</code> &hellip; '.__('day of the month, 2 digits with leading zeros','event-list').'</li>
23
- </ul>'.
24
- __('If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself.','event-list').'<br />'.
25
- __('But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here.','event-list').'<br />'.
26
- __('Examples','event-list').':
27
- <ul><li><code>Y-m-d</code> &hellip; <code>2019-03-25</code></li>
28
- <li><code>d.m.Y</code> &hellip; <code>25.03.2019</code></li>
29
- </ul>'),
 
 
 
 
 
30
 
31
  // Section: "general"
32
- 'el_no_event_text' => array('type' => 'text',
33
- 'label' => __('Text for no events','event-list'),
34
- 'caption' => '',
35
- 'desc' => __('This option defines the displayed text when no events are available for the selected view.','event-list')),
36
-
37
- 'el_multiday_filterrange' => array('type' => 'checkbox',
38
- 'label' => __('Multiday filter range','event-list'),
39
- 'caption' => __('Use the complete event range in the date filter','event-list'),
40
- 'desc' => __('This option defines if the complete range of a multiday event shall be considered in the date filter.','event-list').'<br />'.
41
- __('If disabled, only the start day of an event is considered in the filter.','event-list').'<br />'.
42
- __('For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.','event-list')),
43
-
44
- 'el_date_once_per_day' => array('type' => 'checkbox',
45
- 'label' => __('Date display','event-list'),
46
- 'caption' => __('Show the date only once per day','event-list'),
47
- 'desc' => __('With this option enabled the date is only displayed once per day if more than one event is available on the same day.','event-list').'<br />'.
48
- __('If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible.','event-list')),
49
-
50
- 'el_html_tags_in_time' => array('type' => 'checkbox',
51
- 'label' => __('HTML tags','event-list'),
52
- 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Time','event-list')),
53
- 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Time','event-list'))),
54
-
55
- 'el_html_tags_in_loc' => array('type' => 'checkbox',
56
- 'label' => '',
57
- 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')),
58
- 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))),
59
-
60
- 'el_mo_lang_dir_first' => array('type' => 'checkbox',
61
- 'label' => __('Preferred language file','event-list'),
62
- 'caption' => __('Load translations from general language directory first','event-list'),
63
- 'desc' => sprintf(__('The default is to load the %1$s translation file from the plugin language directory first (%2$s).','event-list'), '<code>*.mo</code>', '<code>wp-content/plugins/event-list/languages/</code>').'<br />
64
- '.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
  // Section: "frontend"
67
- 'el_permalink_slug' => array('type' => 'text',
68
- 'label' => __('Events permalink slug','event-list'),
69
- 'desc' => __('With this option the slug for the events permalink URLs can be defined.','event-list')),
70
-
71
- 'el_content_show_text' => array('type' => 'text',
72
- 'label' => __('Text for "Show content"','event-list'),
73
- 'desc' => __('With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled.','event-list')),
74
-
75
- 'el_content_hide_text' => array('type' => 'text',
76
- 'label' => __('Text for "Hide content"','event-list'),
77
- 'desc' => __('With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled.','event-list')),
78
-
79
- 'el_disable_css_file' => array('type' => 'checkbox',
80
- 'label' => __('Disable CSS file','event-list'),
81
- 'caption' => sprintf(__('Disable the %1$s file.','event-list'), '"event-list.css"'),
82
- 'desc' => sprintf(__('With this option you can disable the inclusion of the %1$s file.','event-list'), '"event-list.css"').'<br />'.
83
- __('This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css).','event-list')),
 
 
 
 
 
 
 
 
 
84
 
85
  // Section: "admin"
86
- 'el_edit_dateformat' => array('type' => 'text',
87
- 'label' => __('Date format in edit form','event-list'),
88
- 'desc' => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
89
- __('The default is an empty string to use the Wordpress standard setting.','event-list').'<br />'.
90
- sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')),
 
 
 
91
 
92
  // Section: "feed"
93
- 'el_enable_feed' => array('type' => 'checkbox',
94
- 'label' => __('Enable RSS feed','event-list'),
95
- 'caption' => __('Enable support for an event RSS feed','event-list'),
96
- 'desc' => __('This option activates a RSS feed for the events.','event-list').'<br />
97
- '.__('You have to enable this option if you want to use one of the RSS feed features.','event-list')),
98
-
99
- 'el_feed_name' => array('type' => 'text',
100
- 'label' => __('Feed name','event-list'),
101
- 'desc' => sprintf(__('This option sets the feed name. The default value is %1$s.','event-list'), '"event-list"').'<br />
102
- '.sprintf(__('This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled).','event-list'), '<code>domain.com/?feed=event-list</code>', '<code>domain.com/feed/eventlist</code>')),
103
-
104
- 'el_feed_description' => array('type' => 'text',
105
- 'label' => __('Feed Description','event-list'),
106
- 'desc' => sprintf(__('This options set the feed description. The default value is %1$s.','event-list'), '"Eventlist Feed"').'<br />
107
- '.__('This description will be used in the title for the feed link in the html head and for the description in the feed itself.','event-list')),
108
-
109
- 'el_feed_upcoming_only' => array('type' => 'checkbox',
110
- 'label' => __('Listed events','event-list'),
111
- 'caption' => __('Only show upcoming events in feed','event-list'),
112
- 'desc' => __('If this option is enabled only the upcoming events are listed in the feed.','event-list').'<br />
113
- '.__('If disabled all events (upcoming and past) will be listed.','event-list')),
114
-
115
- 'el_head_feed_link' => array('type' => 'checkbox',
116
- 'label' => __('Add RSS feed link in head','event-list'),
117
- 'caption' => __('Add RSS feed link in the html head','event-list'),
118
- 'desc' => __('This option adds a RSS feed in the html head for the events.','event-list').'<br />
119
- '.__('There are 2 alternatives to include the RSS feed','event-list').':<br />
120
- '.__('The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers.','event-list').'<br />
121
- '.sprintf(__('The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s.','event-list'), '<code>add_feed_link</code>', '"true"').'<br />
122
- '.sprintf(__('This option is only valid if the setting %1$s is enabled.','event-list'), '"'.__('Enable RSS feed','event-list').'"')),
123
-
124
- 'el_feed_link_pos' => array('type' => 'radio',
125
- 'label' => __('Position of the RSS feed link','event-list'),
126
- 'caption' => array('top' => __('at the top (above the navigation bar)','event-list'), 'below_nav' => __('between navigation bar and events','event-list'), 'bottom' => __('at the bottom','event-list')),
127
- 'desc' => __('This option specifies the position of the RSS feed link in the event list.','event-list').'<br />
128
- '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
129
-
130
- 'el_feed_link_align' => array('type' => 'radio',
131
- 'label' => __('Align of the RSS feed link','event-list'),
132
- 'caption' => array('left' => __('left','event-list'), 'center' => __('center','event-list'), 'right' => __('right','event-list')),
133
- 'desc' => __('This option specifies the align of the RSS feed link in the event list.','event-list').'<br />
134
- '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
135
-
136
- 'el_feed_link_text' => array('type' => 'text',
137
- 'label' => __('Feed link text','event-list'),
138
- 'desc' => __('This option specifies the caption of the RSS feed link in the event list.','event-list').'<br />
139
- '.__('Insert an empty text to hide any text if you only want to show the rss image.','event-list').'<br />
140
- '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
141
-
142
- 'el_feed_link_img' => array('type' => 'checkbox',
143
- 'label' => __('Feed link image','event-list'),
144
- 'caption' => __('Show rss image in feed link','event-list'),
145
- 'desc' => __('This option specifies if the an image should be dispayed in the feed link in front of the text.','event-list').'<br />
146
- '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
  // Section: taxonomy
149
- 'el_use_post_cats' => array('type' => 'checkbox',
150
- 'disable' => true,
151
- 'label' => __('Event Category handling','event-list'),
152
- 'caption' => __('Use Post Categories','event-list'),
153
- 'desc' => __('Do not maintain seperate categories for the events, and use the existing post categories instead.','event-list').'<br /><br />
154
- <strong>'.__('Attention','event-list').':</strong><br />
155
- '.__('This option cannot be changed directly, but you can go to the Event Category switching page from here.','event-list')),
 
 
 
156
  );
157
  ?>
6
  $options_helptexts = array(
7
 
8
  // Section: "import"
9
+ 'el_import_file' => array(
10
+ 'type' => 'file-upload',
11
+ 'label' => __('CSV File to import','event-list'),
12
+ 'maxsize' => 204800,
13
+ 'desc' => __('Please select the file which contains the event data in CSV format.','event-list')
14
+ ),
15
+
16
+ 'el_import_date_format' => array(
17
+ 'type' => 'text',
18
+ 'label' => __('Used date format','event-list'),
19
+ 'caption' => '',
20
+ 'desc' =>
21
+ __('With this option the given date format for event start and end date in the CSV file can be specified.','event-list').'<br />'.
22
+ sprintf(__('You can use the php date format options given in %1$s, the most important ones are:','event-list'),
23
+ '<a href="https://secure.php.net/manual/en/function.date.php" target="_blank" rel="noopener">PHP function date</a>').'
24
+ <ul><li><code>Y</code> &hellip; '.__('full year representation, with 4 digits','event-list').'</li>
25
+ <li><code>m</code> &hellip; '.__('numeric representation of a month, with leading zeros','event-list').'</li>
26
+ <li><code>d</code> &hellip; '.__('day of the month, 2 digits with leading zeros','event-list').'</li>
27
+ </ul>'.
28
+ __('If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself.','event-list').'<br />'.
29
+ __('But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here.','event-list').'<br />'.
30
+ __('Examples','event-list').':
31
+ <ul><li><code>Y-m-d</code> &hellip; <code>2019-03-25</code></li>
32
+ <li><code>d.m.Y</code> &hellip; <code>25.03.2019</code></li>
33
+ </ul>'
34
+ ),
35
 
36
  // Section: "general"
37
+ 'el_no_event_text' => array(
38
+ 'type' => 'text',
39
+ 'label' => __('Text for no events','event-list'),
40
+ 'caption' => '',
41
+ 'desc' => __('This option defines the displayed text when no events are available for the selected view.','event-list')
42
+ ),
43
+
44
+ 'el_multiday_filterrange' => array(
45
+ 'type' => 'checkbox',
46
+ 'label' => __('Multiday filter range','event-list'),
47
+ 'caption' => __('Use the complete event range in the date filter','event-list'),
48
+ 'desc' =>
49
+ __('This option defines if the complete range of a multiday event shall be considered in the date filter.','event-list').'<br />'.
50
+ __('If disabled, only the start day of an event is considered in the filter.','event-list').'<br />'.
51
+ __('For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.','event-list')
52
+ ),
53
+
54
+ 'el_date_once_per_day' => array(
55
+ 'type' => 'checkbox',
56
+ 'label' => __('Date display','event-list'),
57
+ 'caption' => __('Show the date only once per day','event-list'),
58
+ 'desc' =>
59
+ __('With this option enabled the date is only displayed once per day if more than one event is available on the same day.','event-list').'<br />'.
60
+ __('If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible.','event-list')
61
+ ),
62
+
63
+ 'el_html_tags_in_time' => array(
64
+ 'type' => 'checkbox',
65
+ 'label' => __('HTML tags','event-list'),
66
+ 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Time','event-list')),
67
+ 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Time','event-list'))
68
+ ),
69
+
70
+ 'el_html_tags_in_loc' => array(
71
+ 'type' => 'checkbox',
72
+ 'label' => '',
73
+ 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')),
74
+ 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))
75
+ ),
76
+
77
+ 'el_mo_lang_dir_first' => array(
78
+ 'type' => 'checkbox',
79
+ 'label' => __('Preferred language file','event-list'),
80
+ 'caption' => __('Load translations from general language directory first','event-list'),
81
+ 'desc' =>
82
+ sprintf(__('The default is to load the %1$s translation file from the plugin language directory first (%2$s).','event-list'), '<code>*.mo</code>', '<code>wp-content/plugins/event-list/languages/</code>').'<br />
83
+ '.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')
84
+ ),
85
 
86
  // Section: "frontend"
87
+ 'el_permalink_slug' => array(
88
+ 'type' => 'text',
89
+ 'label' => __('Events permalink slug','event-list'),
90
+ 'desc' => __('With this option the slug for the events permalink URLs can be defined.','event-list')
91
+ ),
92
+
93
+ 'el_content_show_text' => array(
94
+ 'type' => 'text',
95
+ 'label' => __('Text for "Show content"','event-list'),
96
+ 'desc' => __('With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled.','event-list')
97
+ ),
98
+
99
+ 'el_content_hide_text' => array(
100
+ 'type' => 'text',
101
+ 'label' => __('Text for "Hide content"','event-list'),
102
+ 'desc' => __('With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled.','event-list')
103
+ ),
104
+
105
+ 'el_disable_css_file' => array(
106
+ 'type' => 'checkbox',
107
+ 'label' => __('Disable CSS file','event-list'),
108
+ 'caption' => sprintf(__('Disable the %1$s file.','event-list'), '"event-list.css"'),
109
+ 'desc' =>
110
+ sprintf(__('With this option you can disable the inclusion of the %1$s file.','event-list'), '"event-list.css"').'<br />'.
111
+ __('This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css).','event-list')
112
+ ),
113
 
114
  // Section: "admin"
115
+ 'el_edit_dateformat' => array(
116
+ 'type' => 'text',
117
+ 'label' => __('Date format in edit form','event-list'),
118
+ 'desc' =>
119
+ __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
120
+ __('The default is an empty string to use the Wordpress standard setting.','event-list').'<br />'.
121
+ sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')
122
+ ),
123
 
124
  // Section: "feed"
125
+ 'el_feed_enable_rss' => array(
126
+ 'type' => 'checkbox',
127
+ 'label' => __('Enable RSS feed','event-list'),
128
+ 'caption' => __('Enable support for the event RSS feed','event-list'),
129
+ 'desc' =>
130
+ __('This option activates the RSS feed for the events and adds a feed link in the html head.','event-list').'<br />
131
+ '.__('You have to enable this option if you want to use one of the RSS feed features.','event-list')
132
+ ),
133
+
134
+ 'el_feed_enable_ical' => array(
135
+ 'type' => 'checkbox',
136
+ 'label' => __('Enable iCal feed','event-list'),
137
+ 'caption' => __('Enable support for the event iCal feed','event-list'),
138
+ 'desc' =>
139
+ __('This option activates the iCal feed for events.','event-list').'<br />
140
+ '.__('You have to enable this option if you want to use one of the iCal features.','event-list')
141
+ ),
142
+
143
+ 'el_feed_link_pos' => array(
144
+ 'type' => 'radio',
145
+ 'label' => __('Position of the RSS feed link','event-list'),
146
+ 'caption' => array('top' => __('at the top (above the navigation bar)','event-list'), 'below_nav' => __('between navigation bar and events','event-list'), 'bottom' => __('at the bottom','event-list')),
147
+ 'desc' => __('This option specifies the position of the RSS feed link in the event list.','event-list')
148
+ ),
149
+
150
+ 'el_feed_link_align' => array(
151
+ 'type' => 'radio',
152
+ 'label' => __('Align of the RSS feed link','event-list'),
153
+ 'caption' => array('left' => __('left','event-list'), 'center' => __('center','event-list'), 'right' => __('right','event-list')),
154
+ 'desc' => __('This option specifies the align of the RSS feed link in the event list.','event-list')
155
+ ),
156
+
157
+ 'el_feed_rss_name' => array(
158
+ 'type' => 'text',
159
+ 'label' => __('RSS feed name','event-list'),
160
+ 'desc' =>
161
+ sprintf(__('This option sets the RSS feed name. The default value is %1$s.','event-list'), '"event-list"').'<br />
162
+ '.sprintf(__('This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled).','event-list'), '<code>domain.com/?feed=event-list</code>', '<code>domain.com/feed/eventlist</code>')
163
+ ),
164
+
165
+ 'el_feed_rss_description' => array(
166
+ 'type' => 'text',
167
+ 'label' => __('RSS feed Description','event-list'),
168
+ 'desc' =>
169
+ sprintf(__('This options set the RSS feed description. The default value is %1$s.','event-list'), '"Eventlist Feed"').'<br />
170
+ '.__('This description will be used in the title for the feed link in the html head and for the description in the feed itself.','event-list')
171
+ ),
172
+
173
+ 'el_feed_rss_upcoming_only' => array(
174
+ 'type' => 'checkbox',
175
+ 'label' => __('RSS feed events','event-list'),
176
+ 'caption' => __('Only show upcoming events in the RSS feed','event-list'),
177
+ 'desc' =>
178
+ __('If this option is enabled only the upcoming events are listed in the RSS feed.','event-list').'<br />
179
+ '.__('If disabled, all events (upcoming and past) will be listed.','event-list')
180
+ ),
181
+
182
+ 'el_feed_rss_link_text' => array(
183
+ 'type' => 'text',
184
+ 'label' => __('RSS link text','event-list'),
185
+ 'desc' =>
186
+ __('This option sets the caption of the RSS feed link in the event list.','event-list').'<br />
187
+ '.__('Use an empty text to only show the rss image.','event-list').'<br />
188
+ '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the RSS feed link.','event-list'), '<code>add_rss_link</code>', '"true"')
189
+ ),
190
+
191
+ 'el_feed_ical_name' => array(
192
+ 'type' => 'text',
193
+ 'label' => __('iCal feed name','event-list'),
194
+ 'desc' =>
195
+ sprintf(__('This option sets the iCal feed name. The default value is %1$s.', 'event-list'), '"event-list.ics"').'<br />
196
+ '.sprintf(__('This name will be used in the iCal feed url (e.g. %1$s, or %2$s with permalinks enabled).','event-list'), '<code>domain.com/?feed=event-list.ics</code>', '<code>domain.com/feed/eventlist.ics</code>')
197
+ ),
198
+
199
+ 'el_feed_ical_upcoming_only' => array(
200
+ 'type' => 'checkbox',
201
+ 'label' => __('iCal feed events','event-list'),
202
+ 'caption' => __('Only show upcoming events in the iCal feed','event-list'),
203
+ 'desc' =>
204
+ __('If this option is enabled only the upcoming events are listed in the iCal file.','event-list').'<br />
205
+ '.__('If disabled, all events (upcoming and past) will be listed.', 'event-list')
206
+ ),
207
+
208
+ 'el_feed_ical_link_text' => array(
209
+ 'type' => 'text',
210
+ 'label' => __('iCal link text','event-list'),
211
+ 'desc' =>
212
+ __('This option sets the iCal link text in the event list.', 'event-list').'<br />
213
+ '.__('Use an empty text to only show the iCal image.','event-list').'<br />
214
+ '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the iCal feed link.','event-list'), '<code>add_ical_link</code>', '"true"')
215
+ ),
216
 
217
  // Section: taxonomy
218
+ 'el_use_post_cats' => array(
219
+ 'type' => 'checkbox',
220
+ 'disable' => true,
221
+ 'label' => __('Event Category handling','event-list'),
222
+ 'caption' => __('Use Post Categories','event-list'),
223
+ 'desc' =>
224
+ __('Do not maintain seperate categories for the events, and use the existing post categories instead.','event-list').'<br /><br />
225
+ <strong>'.__('Attention','event-list').':</strong><br />
226
+ '.__('This option cannot be changed directly, but you can go to the Event Category switching page from here.','event-list')
227
+ ),
228
  );
229
  ?>
includes/{feed.php → rss.php} RENAMED
@@ -7,7 +7,7 @@ require_once(EL_PATH.'includes/options.php');
7
  require_once(EL_PATH.'includes/events.php');
8
 
9
  // This class handles rss feeds
10
- class EL_Feed {
11
 
12
  private static $instance;
13
  private $options;
@@ -29,25 +29,24 @@ class EL_Feed {
29
  }
30
 
31
  public function init() {
32
- add_feed($this->options->get('el_feed_name'), array(&$this, 'print_eventlist_feed'));
33
- if($this->options->get('el_head_feed_link')) {
34
- add_action('wp_head', array(&$this, 'print_head_feed_link'));
35
- }
36
  }
37
 
38
  public function print_head_feed_link() {
39
- echo '<link rel="alternate" type="application/rss+xml" title="'.get_bloginfo_rss('name').' &raquo; '.$this->options->get('el_feed_description').'" href="'.$this->eventlist_feed_url().'" />';
 
40
  }
41
 
42
- public function print_eventlist_feed() {
43
  header('Content-Type: '.feed_content_type('rss-http').'; charset='.get_option('blog_charset'), true);
44
  $options = array(
45
- 'date_filter' => $this->options->get('el_feed_upcoming_only') ? 'upcoming' : null,
46
  'order' => array('startdate DESC', 'starttime DESC', 'enddate DESC'),
47
  );
48
  $events = $this->events->get($options);
49
 
50
- // Print feeds
51
  echo
52
  '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?>
53
  <rss version="2.0"
@@ -62,7 +61,7 @@ class EL_Feed {
62
  <title>'.get_bloginfo_rss('name').'</title>
63
  <atom:link href="'.apply_filters('self_link', get_bloginfo()).'" rel="self" type="application/rss+xml" />
64
  <link>'.get_bloginfo_rss('url').'</link>
65
- <description>'.$this->options->get('el_feed_description').'</description>
66
  <lastBuildDate>'.mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false).'</lastBuildDate>
67
  <language>'.get_option('rss_language').'</language>
68
  <sy:updatePeriod>'.apply_filters('rss_update_period', 'hourly').'</sy:updatePeriod>
@@ -74,7 +73,6 @@ class EL_Feed {
74
  <item>
75
  <title>'.$this->format_date($event->startdate, $event->enddate).' - '.$this->sanitize_feed_text($event->title).'</title>
76
  <pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->startdate, false).'</pubDate>';
77
- // Feed categories
78
  foreach ($event->categories as $cat) {
79
  echo '
80
  <category>'.$this->sanitize_feed_text($cat->name).'</category>';
@@ -98,25 +96,25 @@ class EL_Feed {
98
  </rss>';
99
  }
100
 
101
- public function eventlist_feed_url() {
102
  if(get_option('permalink_structure')) {
103
  $feed_link = get_bloginfo('url').'/feed/';
104
  }
105
  else {
106
  $feed_link = get_bloginfo('url').'/?feed=';
107
  }
108
- return $feed_link.$this->options->get('el_feed_name');
109
  }
110
 
111
- public function update_feed_rewrite_status() {
112
  $feeds = array_keys((array)get_option('rewrite_rules'), 'index.php?&feed=$matches[1]');
113
- $feed_rewrite_status = (0 < count(preg_grep('@[(\|]'.$this->options->get('el_feed_name').'[\|)]@', $feeds))) ? true : false;
114
- if('1' == $this->options->get('el_enable_feed') && !$feed_rewrite_status) {
115
- // add eventlist feed to rewrite rules
116
  flush_rewrite_rules(false);
117
  }
118
- elseif('1' != $this->options->get('el_enable_feed') && $feed_rewrite_status) {
119
- // remove eventlist feed from rewrite rules
120
  flush_rewrite_rules(false);
121
  }
122
  }
7
  require_once(EL_PATH.'includes/events.php');
8
 
9
  // This class handles rss feeds
10
+ class EL_Rss {
11
 
12
  private static $instance;
13
  private $options;
29
  }
30
 
31
  public function init() {
32
+ add_feed($this->options->get('el_feed_rss_name'), array(&$this, 'print_rss'));
33
+ add_action('wp_head', array(&$this, 'print_head_feed_link'));
 
 
34
  }
35
 
36
  public function print_head_feed_link() {
37
+ echo '
38
+ <link rel="alternate" type="application/rss+xml" title="'.get_bloginfo_rss('name').' &raquo; '.$this->options->get('el_feed_rss_description').'" href="'.$this->feed_url().'" />';
39
  }
40
 
41
+ public function print_rss() {
42
  header('Content-Type: '.feed_content_type('rss-http').'; charset='.get_option('blog_charset'), true);
43
  $options = array(
44
+ 'date_filter' => $this->options->get('el_feed_rss_upcoming_only') ? 'upcoming' : null,
45
  'order' => array('startdate DESC', 'starttime DESC', 'enddate DESC'),
46
  );
47
  $events = $this->events->get($options);
48
 
49
+ // Print RSS
50
  echo
51
  '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?>
52
  <rss version="2.0"
61
  <title>'.get_bloginfo_rss('name').'</title>
62
  <atom:link href="'.apply_filters('self_link', get_bloginfo()).'" rel="self" type="application/rss+xml" />
63
  <link>'.get_bloginfo_rss('url').'</link>
64
+ <description>'.$this->options->get('el_feed_rss_description').'</description>
65
  <lastBuildDate>'.mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false).'</lastBuildDate>
66
  <language>'.get_option('rss_language').'</language>
67
  <sy:updatePeriod>'.apply_filters('rss_update_period', 'hourly').'</sy:updatePeriod>
73
  <item>
74
  <title>'.$this->format_date($event->startdate, $event->enddate).' - '.$this->sanitize_feed_text($event->title).'</title>
75
  <pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->startdate, false).'</pubDate>';
 
76
  foreach ($event->categories as $cat) {
77
  echo '
78
  <category>'.$this->sanitize_feed_text($cat->name).'</category>';
96
  </rss>';
97
  }
98
 
99
+ public function feed_url() {
100
  if(get_option('permalink_structure')) {
101
  $feed_link = get_bloginfo('url').'/feed/';
102
  }
103
  else {
104
  $feed_link = get_bloginfo('url').'/?feed=';
105
  }
106
+ return $feed_link.$this->options->get('el_feed_rss_name');
107
  }
108
 
109
+ public function update_rewrite_status() {
110
  $feeds = array_keys((array)get_option('rewrite_rules'), 'index.php?&feed=$matches[1]');
111
+ $feed_rewrite_status = (0 < count(preg_grep('@[(\|]'.$this->options->get('el_feed_rss_name').'[\|)]@', $feeds))) ? true : false;
112
+ if('1' == $this->options->get('el_feed_enable_rss') && !$feed_rewrite_status) {
113
+ // add eventlist RSS feed to rewrite rules
114
  flush_rewrite_rules(false);
115
  }
116
+ elseif('1' != $this->options->get('el_feed_enable_rss') && $feed_rewrite_status) {
117
+ // remove eventlist RSS feed from rewrite rules
118
  flush_rewrite_rules(false);
119
  }
120
  }
includes/sc_event-list.php CHANGED
@@ -48,12 +48,13 @@ 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_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'),
56
- 'add_feed_link' => array('std_val' => 'false'),
 
57
  'url_to_page' => array('std_val' => ''),
58
  'sc_id_for_url' => array('std_val' => ''),
59
  // Internal attributes: This parameters will be added by the script and are not available in the shortcode
@@ -93,6 +94,12 @@ class SC_Event_List {
93
  public function show_html($atts) {
94
  // change number of shortcodes
95
  $this->num_sc_loaded++;
 
 
 
 
 
 
96
  // check shortcode attributes
97
  $std_values = array();
98
  foreach($this->atts as $aname => $attribute) {
@@ -117,31 +124,34 @@ class SC_Event_List {
117
  if(!empty($a['event_id'])) {
118
  // show events content if event_id is set
119
  $this->single_event = true;
120
- $out .= $this->html_event_content($a);
121
  }
122
  else {
123
  // show full event list
124
  $this->single_event = false;
125
- $out .= $this->html_events($a);
126
  }
127
  $out .= '
128
  </div>';
129
  return $out;
130
  }
131
 
132
- private function html_event_content(&$a) {
133
  $event = new EL_Event($a['event_id']);
134
- $out = $this->html_filterbar($a);
 
 
135
  $out .= '
136
  <h2>'.__('Event Information:','event-list').'</h2>
137
  <ul class="single-event-view">';
138
  $single_day_only = ($event->startdate == $event->enddate) ? true : false;
139
  $out .= $this->html_event($event, $a, $single_day_only);
140
  $out .= '</ul>';
 
141
  return $out;
142
  }
143
 
144
- private function html_events(&$a) {
145
  // specify to show all events if not upcoming is selected
146
  if('upcoming' != $a['selected_date']) {
147
  $a['num_events'] = 0;
@@ -161,9 +171,9 @@ class SC_Event_List {
161
  $events = $this->events->get($options);
162
 
163
  // generate output
164
- $out = $this->html_feed_link($a, 'top');
165
  $out .= $this->html_filterbar($a);
166
- $out .= $this->html_feed_link($a, 'below_nav');
167
  if(empty($events)) {
168
  // no events found
169
  $out .= '<p>'.$this->options->get('el_no_event_text').'</p>';
@@ -178,7 +188,7 @@ class SC_Event_List {
178
  }
179
  $out .= '</ul>';
180
  }
181
- $out .= $this->html_feed_link($a, 'bottom');
182
  return $out;
183
  }
184
 
@@ -232,14 +242,8 @@ class SC_Event_List {
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);
242
- }
243
  $out .= '</div>
244
  </li>';
245
  $last_event_startdate = $event->startdate;
@@ -247,6 +251,64 @@ class SC_Event_List {
247
  return $out;
248
  }
249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  private function html_fulldate($startdate, $enddate, $single_day_only=false) {
251
  $out = '
252
  ';
@@ -293,30 +355,48 @@ class SC_Event_List {
293
  return $filterbar->show($this->get_url($a), $a);
294
  }
295
 
296
- private function html_feed_link(&$a, $pos) {
297
- $out = '';
298
- if($this->options->get('el_enable_feed') && 'true' === $a['add_feed_link'] && $pos === $this->options->get('el_feed_link_pos')) {
299
- // prepare url
300
- require_once( EL_PATH.'includes/feed.php' );
301
- $feed_link = EL_Feed::get_instance()->eventlist_feed_url();
 
302
  // prepare align
303
  $align = $this->options->get('el_feed_link_align');
304
  if('left' !== $align && 'center' !== $align && 'right' !== $align) {
305
  $align = 'left';
306
  }
307
- // prepare image
308
- $image = '';
309
- if('' !== $this->options->get('el_feed_link_img')) {
310
- $image = '<img src="'.includes_url('images/rss.png').'" alt="rss" />';
 
 
 
 
311
  }
312
- // prepare text
313
- $text = $image.esc_attr($this->options->get('el_feed_link_text'));
314
- // create html
315
- $out .= '<div class="feed" style="text-align:'.$align.'">
316
- <a href="'.$feed_link.'">'.$text.'</a>
317
- </div>';
318
  }
319
- return $out;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  }
321
 
322
  private function get_selected_date(&$a) {
@@ -398,95 +478,6 @@ class SC_Event_List {
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) {
447
- return '';
448
- }
449
- $truncate_url = false;
450
- // check and handle the read more tag if available
451
- //search fore more-tag (no more tag handling if truncate of content is set)
452
- if(preg_match('/<!--more(.*?)?-->/', $event->content, $matches)) {
453
- $part = explode($matches[0], $event->content, 2);
454
- if(!$this->is_link_available($a, $event) || 0 < $a['content_length'] || $this->single_event) {
455
- //content with removed more-tag
456
- $content = $part[0].$part[1];
457
- }
458
- else {
459
- //set more-link text
460
- if(!empty($matches[1])) {
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));
468
- }
469
- }
470
- else {
471
- //normal content
472
- $content = $event->content;
473
- if($this->is_link_available($a, $event)) {
474
- $truncate_url = $this->get_event_url($a, $event->post->ID);
475
- }
476
- }
477
- // last preparations of content
478
- $content = $event->truncate(do_shortcode(wpautop($content)), $a['content_length'], $this->single_event, true, $truncate_url);
479
- // preparations for collapsed content
480
- if($this->is_visible($a['collapse_content'])) {
481
- wp_register_script('el_event-list', EL_URL.'includes/js/event-list.js', null, true);
482
- add_action('wp_footer', array(&$this, 'print_eventlist_script'));
483
- return '<div class="event-content"><div id="event-content-'.$event->post->ID.'" class="el-hidden">'.$content.
484
- '</div><a class="event-content-link" id="event-content-a'.$event->post->ID.'" onclick="el_toggle_content('.$event->post->ID.')" href="javascript:void(0)">'.$this->options->get('el_content_show_text').'</a></div>';
485
- }
486
- // return without collapsing
487
- return '<div class="event-content">'.$content.'</div>';
488
- }
489
-
490
  private function get_event_link(&$a, $event_id, $title) {
491
  return '<a href="'.$this->get_event_url($a, $event_id).'">'.$title.'</a>';
492
  }
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' => 'single_event_only'),
52
+ 'show_excerpt' => array('std_val' => 'event_list_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'),
56
+ 'add_rss_link' => array('std_val' => 'false'),
57
+ 'add_ical_link' => array('std_val' => 'false'),
58
  'url_to_page' => array('std_val' => ''),
59
  'sc_id_for_url' => array('std_val' => ''),
60
  // Internal attributes: This parameters will be added by the script and are not available in the shortcode
94
  public function show_html($atts) {
95
  // change number of shortcodes
96
  $this->num_sc_loaded++;
97
+ // Fallback for versions < 0.8.5 where the attribute 'add_feed_link' was renamed to 'add_rss_link'
98
+ // This can be removed in a later version.
99
+ if((!isset($atts['add_rss_link'])) && isset($atts['add_feed_link'])) {
100
+ error_log('The event-list shortcode attribute "add_feed_link" is deprecated, please change your shortcode to use the new name "add_rss_link"!');
101
+ $atts['add_rss_link'] = $atts['add_feed_link'];
102
+ }
103
  // check shortcode attributes
104
  $std_values = array();
105
  foreach($this->atts as $aname => $attribute) {
124
  if(!empty($a['event_id'])) {
125
  // show events content if event_id is set
126
  $this->single_event = true;
127
+ $out .= $this->html_single_event($a);
128
  }
129
  else {
130
  // show full event list
131
  $this->single_event = false;
132
+ $out .= $this->html_event_list($a);
133
  }
134
  $out .= '
135
  </div>';
136
  return $out;
137
  }
138
 
139
+ private function html_single_event(&$a) {
140
  $event = new EL_Event($a['event_id']);
141
+ $out = $this->html_feed_links($a, 'top');
142
+ $out .= $this->html_filterbar($a);
143
+ $out .= $this->html_feed_links($a, 'below_nav');
144
  $out .= '
145
  <h2>'.__('Event Information:','event-list').'</h2>
146
  <ul class="single-event-view">';
147
  $single_day_only = ($event->startdate == $event->enddate) ? true : false;
148
  $out .= $this->html_event($event, $a, $single_day_only);
149
  $out .= '</ul>';
150
+ $out .= $this->html_feed_links($a, 'bottom');
151
  return $out;
152
  }
153
 
154
+ private function html_event_list(&$a) {
155
  // specify to show all events if not upcoming is selected
156
  if('upcoming' != $a['selected_date']) {
157
  $a['num_events'] = 0;
171
  $events = $this->events->get($options);
172
 
173
  // generate output
174
+ $out = $this->html_feed_links($a, 'top');
175
  $out .= $this->html_filterbar($a);
176
+ $out .= $this->html_feed_links($a, 'below_nav');
177
  if(empty($events)) {
178
  // no events found
179
  $out .= '<p>'.$this->options->get('el_no_event_text').'</p>';
188
  }
189
  $out .= '</ul>';
190
  }
191
+ $out .= $this->html_feed_links($a, 'bottom');
192
  return $out;
193
  }
194
 
242
  if( $this->is_visible( $a['show_cat'] ) ) {
243
  $out .= '<div class="event-cat">'.esc_attr(implode(', ', $event->get_category_names())).'</div>';
244
  }
245
+ // event excerpt or content
246
+ $out .= $this->html_event_content($event, $a);
 
 
 
 
 
 
247
  $out .= '</div>
248
  </li>';
249
  $last_event_startdate = $event->startdate;
251
  return $out;
252
  }
253
 
254
+ private function html_event_content(&$event, &$a) {
255
+ // Show content if content is not empty and if content is visible or excerpt is visible but empty.
256
+ if( ('' !== $event->content
257
+ && ($this->is_visible($a['show_content']) || ($this->is_visible($a['show_excerpt']) && '' === $event->excerpt) ))) {
258
+ // Show content.
259
+ $content = $event->content;
260
+ $content_class = 'event-content';
261
+ }
262
+ else if( $this->is_visible($a['show_excerpt']) && '' !== $event->excerpt) {
263
+ // Show excerpt.
264
+ $content = $event->excerpt;
265
+ $content_class = 'event-excerpt';
266
+ }
267
+ else {
268
+ // No content or excerpt.
269
+ return '';
270
+ }
271
+ $truncate_url = false;
272
+ // Check and handle the read more tag if available
273
+ // search fore more-tag (no more tag handling if truncate of content is set)
274
+ if(preg_match('/<!--more(.*?)?-->/', $content, $matches)) {
275
+ $part = explode($matches[0], $content, 2);
276
+ if(!$this->is_link_available($a, $event) || 0 < $a['content_length'] || $this->single_event) {
277
+ //content with removed more-tag
278
+ $content = $part[0].$part[1];
279
+ }
280
+ else {
281
+ //set more-link text
282
+ if(!empty($matches[1])) {
283
+ $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
284
+ }
285
+ else {
286
+ $more_link_text = __('[ read more&hellip;]');
287
+ }
288
+ //content with more-link
289
+ $content = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->post->ID, $more_link_text));
290
+ }
291
+ }
292
+ else {
293
+ //normal content
294
+ if($this->is_link_available($a, $event)) {
295
+ $truncate_url = $this->get_event_url($a, $event->post->ID);
296
+ }
297
+ }
298
+ // last preparations of content
299
+ $content = $event->truncate(do_shortcode(wpautop($content)), $a['content_length'], $this->single_event, true, $truncate_url);
300
+ // preparations for collapsed content
301
+ if($this->is_visible($a['collapse_content'])) {
302
+ wp_register_script('el_event-list', EL_URL.'includes/js/event-list.js', null, true);
303
+ add_action('wp_footer', array(&$this, 'print_eventlist_script'));
304
+ return '<div><div id="event-content-'.$event->post->ID.'" class="el-hidden"><div class="' . $content_class . '">' . $content . '</div></div>' .
305
+ '<a class="event-content-link" id="event-content-a' . $event->post->ID . '" onclick="el_toggle_content(' . $event->post->ID.')" href="javascript:void(0)">' .
306
+ $this->options->get('el_content_show_text') . '</a></div>';
307
+ }
308
+ // return without collapsing
309
+ return '<div class="' . $content_class . '">'.$content.'</div>';;
310
+ }
311
+
312
  private function html_fulldate($startdate, $enddate, $single_day_only=false) {
313
  $out = '
314
  ';
355
  return $filterbar->show($this->get_url($a), $a);
356
  }
357
 
358
+ private function html_feed_links(&$a, $pos) {
359
+ if( $pos !== $this->options->get('el_feed_link_pos')) {
360
+ return '';
361
+ }
362
+ $show_rss = '' !== $this->options->get('el_feed_enable_rss') && $this->is_visible($a['add_rss_link']);
363
+ $show_ical = '' !== $this->options->get('el_feed_enable_ical') && $this->is_visible($a['add_ical_link']);
364
+ if( $show_rss || $show_ical) {
365
  // prepare align
366
  $align = $this->options->get('el_feed_link_align');
367
  if('left' !== $align && 'center' !== $align && 'right' !== $align) {
368
  $align = 'left';
369
  }
370
+ // prepare output
371
+ $out = '
372
+ <div class="feed el-text-align-'.$align.'">';
373
+ if($show_rss) {
374
+ $out .= $this->html_rss_link($a);
375
+ }
376
+ if($show_ical) {
377
+ $out .= $this->html_ical_link($a);
378
  }
379
+ $out .= '
380
+ </div>';
381
+ return $out;
 
 
 
382
  }
383
+ return '';
384
+ }
385
+
386
+ private function html_rss_link(&$a) {
387
+ require_once( EL_PATH.'includes/rss.php' );
388
+ $feed_url = EL_Rss::get_instance()->feed_url();
389
+ $link_text = $this->options->get('el_feed_rss_link_text');
390
+ return '
391
+ <a href="'.$feed_url.'" title="'.__('Link to RSS feed', 'event-list').'" class="el-rss"><span class="dashicons dashicons-rss"></span>'.$link_text.'</a>';
392
+ }
393
+
394
+ private function html_ical_link(&$a) {
395
+ require_once( EL_PATH.'includes/ical.php' );
396
+ $feed_url = EL_ICal::get_instance($a['cat_filter'])->feed_url();
397
+ $link_text = $this->options->get('el_feed_ical_link_text');
398
+ return '
399
+ <a href="'.$feed_url.'" title="'.__('Link to iCal feed', 'event-list').'" class="el-ical"><span class="dashicons dashicons-calendar"></span>'.$link_text.'</a>';
400
  }
401
 
402
  private function get_selected_date(&$a) {
478
  }
479
  }
480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  private function get_event_link(&$a, $event_id, $title) {
482
  return '<a href="'.$this->get_event_url($a, $event_id).'">'.$title.'</a>';
483
  }
includes/sc_event-list_helptexts.php CHANGED
@@ -96,23 +96,25 @@ $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_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 />
107
  With "event_list_only" the content is only visible in the event list and with "single_event_only" only for a single event','event-list')),
108
 
 
 
 
 
 
 
 
109
  'content_length' => array('val' => array(__('number','event-list')),
110
  'desc' => __('This attribute specifies if the content should be truncate to the given number of characters in the event list.','event-list').'<br />'.
111
  sprintf(__('With the standard value %1$s the full text is displayed.','event-list'), '[0]').'<br />'.
112
  __('This attribute has no influence if only a single event is shown.','event-list')),
113
 
114
  'collapse_content' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
115
- 'desc' => __('This attribute specifies if the content should be collapsed initially.<br />
116
  Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />
117
  Available option are "false" to always disable collapsing and "true" to always enable collapsing of the content.<br />
118
  With "event_list_only" the content is only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')),
@@ -123,12 +125,19 @@ $sc_eventlist_helptexts = array(
123
  With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br />
124
  With "events_with_content_only" the link is only added in the event list for events with event content.','event-list')),
125
 
126
- 'add_feed_link' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
127
  'desc' => __('This attribute specifies if a rss feed link should be added.<br />
128
  You have to enable the feed in the eventlist settings to make this attribute workable.<br />
129
  On that page you can also find some settings to modify the output.<br />
130
  Choose "false" to never add and "true" to always add the link.<br />
131
  With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
 
 
 
 
 
 
 
132
  'url_to_page' => array('val' => array('url'),
133
  'desc' => __('This attribute specifies the page or post url for event links.<br />
134
  The standard is an empty string. Then the url will be calculated automatically.<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_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 />
102
  With "event_list_only" the content is only visible in the event list and with "single_event_only" only for a single event','event-list')),
103
 
104
+ 'show_excerpt' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
105
+ 'desc' => __('This attribute specifies if the excerpt is displayed in the event list.<br />
106
+ Choose "false" to always hide and "true" to always show the excerpt.<br />
107
+ With "event_list_only" the excerpt is only visible in the event list and with "single_event_only" only for a single event.<br />
108
+ If no excerpt is set, the event content will be displayed instead.<br />
109
+ This attribute will be ignored when the attribute "show_content" is enabled for the same display type (single event or event list).','event-list')),
110
+
111
  'content_length' => array('val' => array(__('number','event-list')),
112
  'desc' => __('This attribute specifies if the content should be truncate to the given number of characters in the event list.','event-list').'<br />'.
113
  sprintf(__('With the standard value %1$s the full text is displayed.','event-list'), '[0]').'<br />'.
114
  __('This attribute has no influence if only a single event is shown.','event-list')),
115
 
116
  'collapse_content' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
117
+ 'desc' => __('This attribute specifies if the content or excerpt should be collapsed initially.<br />
118
  Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />
119
  Available option are "false" to always disable collapsing and "true" to always enable collapsing of the content.<br />
120
  With "event_list_only" the content is only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')),
125
  With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br />
126
  With "events_with_content_only" the link is only added in the event list for events with event content.','event-list')),
127
 
128
+ 'add_rss_link' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
129
  'desc' => __('This attribute specifies if a rss feed link should be added.<br />
130
  You have to enable the feed in the eventlist settings to make this attribute workable.<br />
131
  On that page you can also find some settings to modify the output.<br />
132
  Choose "false" to never add and "true" to always add the link.<br />
133
  With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
134
+
135
+ 'add_ical_link' => array('val' => array('false', 'true'),
136
+ 'desc' => __('This attribute specifies if a ical feed link should be added.<br />
137
+ You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />
138
+ On that page you can also find some settings to modify the output.<br />
139
+ Choose "false" to never add and "true" to always add the link.<br />', 'event-list')),
140
+
141
  'url_to_page' => array('val' => array('url'),
142
  'desc' => __('This attribute specifies the page or post url for event links.<br />
143
  The standard is an empty string. Then the url will be calculated automatically.<br />
languages/event-list-da_DK.mo CHANGED
Binary file
languages/event-list-da_DK.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -51,7 +51,7 @@ msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
55
  msgid "General"
56
  msgstr "Generelt"
57
 
@@ -559,13 +559,13 @@ msgid "End Date"
559
  msgstr "Slutter"
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
563
  msgid "Time"
564
  msgstr "Tidspunkt"
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
568
- #: includes/options_helptexts.php:58
569
  msgid "Location"
570
  msgstr "Lokalitet"
571
 
@@ -705,23 +705,23 @@ msgstr ""
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
- #: admin/includes/admin-settings.php:71
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:83
713
  msgid "Frontend Settings"
714
  msgstr "Frontend-indstillinger"
715
 
716
- #: admin/includes/admin-settings.php:84
717
  msgid "Admin Page Settings"
718
  msgstr "Admin Page-indstillinger"
719
 
720
- #: admin/includes/admin-settings.php:85
721
  msgid "Feed Settings"
722
  msgstr "Feed-indstillinger"
723
 
724
- #: admin/includes/admin-settings.php:86
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -976,146 +976,146 @@ msgstr "Alle"
976
  msgid "All Dates"
977
  msgstr ""
978
 
979
- #: includes/options_helptexts.php:10
980
  msgid "CSV File to import"
981
  msgstr ""
982
 
983
- #: includes/options_helptexts.php:12
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr ""
986
 
987
- #: includes/options_helptexts.php:15
988
  msgid "Used date format"
989
  msgstr ""
990
 
991
- #: includes/options_helptexts.php:17
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
- #: includes/options_helptexts.php:18
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
- #: includes/options_helptexts.php:20
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:21
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:22
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:24
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
- #: includes/options_helptexts.php:25
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
- #: includes/options_helptexts.php:26
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:33
1033
  msgid "Text for no events"
1034
  msgstr "Tekst hvis ingen begivenheder"
1035
 
1036
- #: includes/options_helptexts.php:35
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
- #: includes/options_helptexts.php:38
1043
  msgid "Multiday filter range"
1044
  msgstr ""
1045
 
1046
- #: includes/options_helptexts.php:39
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
- #: includes/options_helptexts.php:40
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
- #: includes/options_helptexts.php:41
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
- #: includes/options_helptexts.php:42
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
- #: includes/options_helptexts.php:45
1069
  msgid "Date display"
1070
  msgstr ""
1071
 
1072
- #: includes/options_helptexts.php:46
1073
  msgid "Show the date only once per day"
1074
  msgstr ""
1075
 
1076
- #: includes/options_helptexts.php:47
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
- #: includes/options_helptexts.php:48
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
- #: includes/options_helptexts.php:51
1089
  msgid "HTML tags"
1090
  msgstr "HTML tags"
1091
 
1092
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
- #: includes/options_helptexts.php:61
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
- #: includes/options_helptexts.php:62
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
- #: includes/options_helptexts.php:63
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
- #: includes/options_helptexts.php:64
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
@@ -1123,273 +1123,290 @@ msgid ""
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
- #: includes/options_helptexts.php:68
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
- #: includes/options_helptexts.php:69
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
- #: includes/options_helptexts.php:72
1136
  msgid "Text for \"Show content\""
1137
  msgstr ""
1138
 
1139
- #: includes/options_helptexts.php:73
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
- #: includes/options_helptexts.php:76
1146
  msgid "Text for \"Hide content\""
1147
  msgstr ""
1148
 
1149
- #: includes/options_helptexts.php:77
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
- #: includes/options_helptexts.php:80
1156
  msgid "Disable CSS file"
1157
  msgstr "Deaktiver CSS-fil"
1158
 
1159
- #: includes/options_helptexts.php:81
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr ""
1163
 
1164
- #: includes/options_helptexts.php:82
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
- #: includes/options_helptexts.php:83
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
- #: includes/options_helptexts.php:87
1176
  msgid "Date format in edit form"
1177
  msgstr ""
1178
 
1179
- #: includes/options_helptexts.php:88
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
- #: includes/options_helptexts.php:89
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
- #: includes/options_helptexts.php:90
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1196
  msgid "Enable RSS feed"
1197
  msgstr ""
1198
 
1199
- #: includes/options_helptexts.php:95
1200
- msgid "Enable support for an event RSS feed"
1201
  msgstr ""
1202
 
1203
- #: includes/options_helptexts.php:96
1204
- msgid "This option activates a RSS feed for the events."
 
 
1205
  msgstr ""
1206
 
1207
- #: includes/options_helptexts.php:97
1208
  msgid ""
1209
  "You have to enable this option if you want to use one of the RSS feed "
1210
  "features."
1211
  msgstr ""
1212
 
1213
- #: includes/options_helptexts.php:100
1214
- msgid "Feed name"
1215
  msgstr ""
1216
 
1217
- #: includes/options_helptexts.php:101
1218
- #, php-format
1219
- msgid "This option sets the feed name. The default value is %1$s."
1220
  msgstr ""
1221
 
1222
- #: includes/options_helptexts.php:102
1223
- #, php-format
1224
- msgid ""
1225
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1226
- "enabled)."
1227
  msgstr ""
1228
 
1229
- #: includes/options_helptexts.php:105
1230
- msgid "Feed Description"
 
1231
  msgstr ""
1232
 
1233
- #: includes/options_helptexts.php:106
1234
- #, php-format
1235
- msgid "This options set the feed description. The default value is %1$s."
1236
  msgstr ""
1237
 
1238
- #: includes/options_helptexts.php:107
1239
- msgid ""
1240
- "This description will be used in the title for the feed link in the html "
1241
- "head and for the description in the feed itself."
1242
  msgstr ""
1243
 
1244
- #: includes/options_helptexts.php:110
1245
- msgid "Listed events"
1246
  msgstr ""
1247
 
1248
- #: includes/options_helptexts.php:111
1249
- msgid "Only show upcoming events in feed"
1250
  msgstr ""
1251
 
1252
- #: includes/options_helptexts.php:112
1253
  msgid ""
1254
- "If this option is enabled only the upcoming events are listed in the feed."
1255
  msgstr ""
1256
 
1257
- #: includes/options_helptexts.php:113
1258
- msgid "If disabled all events (upcoming and past) will be listed."
1259
  msgstr ""
1260
 
1261
- #: includes/options_helptexts.php:116
1262
- msgid "Add RSS feed link in head"
1263
  msgstr ""
1264
 
1265
- #: includes/options_helptexts.php:117
1266
- msgid "Add RSS feed link in the html head"
1267
  msgstr ""
1268
 
1269
- #: includes/options_helptexts.php:118
1270
- msgid "This option adds a RSS feed in the html head for the events."
1271
  msgstr ""
1272
 
1273
- #: includes/options_helptexts.php:119
1274
- msgid "There are 2 alternatives to include the RSS feed"
 
1275
  msgstr ""
1276
 
1277
- #: includes/options_helptexts.php:120
1278
- msgid ""
1279
- "The first way is this option to include a link in the html head. This link "
1280
- "will be recognized by browers or feed readers."
1281
  msgstr ""
1282
 
1283
- #: includes/options_helptexts.php:121
1284
  #, php-format
1285
- msgid ""
1286
- "The second way is to include a visible feed link directly in the event list."
1287
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1288
  msgstr ""
1289
 
1290
- #: includes/options_helptexts.php:122
1291
  #, php-format
1292
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1293
  msgstr ""
1294
 
1295
- #: includes/options_helptexts.php:125
1296
- msgid "Position of the RSS feed link"
1297
  msgstr ""
1298
 
1299
- #: includes/options_helptexts.php:126
1300
- msgid "at the top (above the navigation bar)"
 
1301
  msgstr ""
1302
 
1303
- #: includes/options_helptexts.php:126
1304
- msgid "between navigation bar and events"
 
 
1305
  msgstr ""
1306
 
1307
- #: includes/options_helptexts.php:126
1308
- msgid "at the bottom"
1309
  msgstr ""
1310
 
1311
- #: includes/options_helptexts.php:127
1312
- msgid ""
1313
- "This option specifies the position of the RSS feed link in the event list."
1314
  msgstr ""
1315
 
1316
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1317
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1318
- #, php-format
1319
  msgid ""
1320
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1321
- " feed link."
1322
  msgstr ""
1323
 
1324
- #: includes/options_helptexts.php:131
1325
- msgid "Align of the RSS feed link"
1326
  msgstr ""
1327
 
1328
- #: includes/options_helptexts.php:132
1329
- msgid "left"
1330
  msgstr ""
1331
 
1332
- #: includes/options_helptexts.php:132
1333
- msgid "center"
1334
  msgstr ""
1335
 
1336
- #: includes/options_helptexts.php:132
1337
- msgid "right"
1338
  msgstr ""
1339
 
1340
- #: includes/options_helptexts.php:133
 
1341
  msgid ""
1342
- "This option specifies the align of the RSS feed link in the event list."
 
1343
  msgstr ""
1344
 
1345
- #: includes/options_helptexts.php:137
1346
- msgid "Feed link text"
1347
  msgstr ""
1348
 
1349
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1350
  msgid ""
1351
- "This option specifies the caption of the RSS feed link in the event list."
 
1352
  msgstr ""
1353
 
1354
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1355
  msgid ""
1356
- "Insert an empty text to hide any text if you only want to show the rss "
1357
- "image."
1358
  msgstr ""
1359
 
1360
- #: includes/options_helptexts.php:143
1361
- msgid "Feed link image"
1362
  msgstr ""
1363
 
1364
- #: includes/options_helptexts.php:144
1365
- msgid "Show rss image in feed link"
1366
  msgstr ""
1367
 
1368
- #: includes/options_helptexts.php:145
 
 
 
 
 
1369
  msgid ""
1370
- "This option specifies if the an image should be dispayed in the feed link in"
1371
- " front of the text."
1372
  msgstr ""
1373
 
1374
- #: includes/options_helptexts.php:151
1375
  msgid "Event Category handling"
1376
  msgstr ""
1377
 
1378
- #: includes/options_helptexts.php:152
1379
  msgid "Use Post Categories"
1380
  msgstr ""
1381
 
1382
- #: includes/options_helptexts.php:153
1383
  msgid ""
1384
  "Do not maintain seperate categories for the events, and use the existing "
1385
  "post categories instead."
1386
  msgstr ""
1387
 
1388
- #: includes/options_helptexts.php:154
1389
  msgid "Attention"
1390
  msgstr ""
1391
 
1392
- #: includes/options_helptexts.php:155
1393
  msgid ""
1394
  "This option cannot be changed directly, but you can go to the Event Category"
1395
  " switching page from here."
@@ -1515,7 +1532,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:109
1519
  msgid "number"
1520
  msgstr ""
1521
 
@@ -1744,7 +1761,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:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,38 +1788,40 @@ msgstr ""
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"
1801
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1829,7 @@ msgid ""
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,23 +1838,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1839
  #: includes/widget_helptexts.php:10
1840
  msgid "This option defines the displayed title for the widget."
1841
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Event List indstillinger"
34
 
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
55
  msgid "General"
56
  msgstr "Generelt"
57
 
559
  msgstr "Slutter"
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
563
  msgid "Time"
564
  msgstr "Tidspunkt"
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
568
+ #: includes/options_helptexts.php:74
569
  msgid "Location"
570
  msgstr "Lokalitet"
571
 
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-settings.php:73
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:85
713
  msgid "Frontend Settings"
714
  msgstr "Frontend-indstillinger"
715
 
716
+ #: admin/includes/admin-settings.php:86
717
  msgid "Admin Page Settings"
718
  msgstr "Admin Page-indstillinger"
719
 
720
+ #: admin/includes/admin-settings.php:87
721
  msgid "Feed Settings"
722
  msgstr "Feed-indstillinger"
723
 
724
+ #: admin/includes/admin-settings.php:88
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
976
  msgid "All Dates"
977
  msgstr ""
978
 
979
+ #: includes/options_helptexts.php:11
980
  msgid "CSV File to import"
981
  msgstr ""
982
 
983
+ #: includes/options_helptexts.php:13
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr ""
986
 
987
+ #: includes/options_helptexts.php:18
988
  msgid "Used date format"
989
  msgstr ""
990
 
991
+ #: includes/options_helptexts.php:21
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
+ #: includes/options_helptexts.php:22
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
+ #: includes/options_helptexts.php:24
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:25
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:26
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:28
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
+ #: includes/options_helptexts.php:29
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
+ #: includes/options_helptexts.php:30
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:39
1033
  msgid "Text for no events"
1034
  msgstr "Tekst hvis ingen begivenheder"
1035
 
1036
+ #: includes/options_helptexts.php:41
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
+ #: includes/options_helptexts.php:46
1043
  msgid "Multiday filter range"
1044
  msgstr ""
1045
 
1046
+ #: includes/options_helptexts.php:47
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
+ #: includes/options_helptexts.php:49
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
+ #: includes/options_helptexts.php:50
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
+ #: includes/options_helptexts.php:51
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
+ #: includes/options_helptexts.php:56
1069
  msgid "Date display"
1070
  msgstr ""
1071
 
1072
+ #: includes/options_helptexts.php:57
1073
  msgid "Show the date only once per day"
1074
  msgstr ""
1075
 
1076
+ #: includes/options_helptexts.php:59
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
+ #: includes/options_helptexts.php:60
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
+ #: includes/options_helptexts.php:65
1089
  msgid "HTML tags"
1090
  msgstr "HTML tags"
1091
 
1092
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
+ #: includes/options_helptexts.php:79
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
+ #: includes/options_helptexts.php:80
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
+ #: includes/options_helptexts.php:82
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
+ #: includes/options_helptexts.php:83
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
+ #: includes/options_helptexts.php:89
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
+ #: includes/options_helptexts.php:90
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
+ #: includes/options_helptexts.php:95
1136
  msgid "Text for \"Show content\""
1137
  msgstr ""
1138
 
1139
+ #: includes/options_helptexts.php:96
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
+ #: includes/options_helptexts.php:101
1146
  msgid "Text for \"Hide content\""
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:102
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
+ #: includes/options_helptexts.php:107
1156
  msgid "Disable CSS file"
1157
  msgstr "Deaktiver CSS-fil"
1158
 
1159
+ #: includes/options_helptexts.php:108
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr ""
1163
 
1164
+ #: includes/options_helptexts.php:110
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
+ #: includes/options_helptexts.php:111
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
+ #: includes/options_helptexts.php:117
1176
  msgid "Date format in edit form"
1177
  msgstr ""
1178
 
1179
+ #: includes/options_helptexts.php:119
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
+ #: includes/options_helptexts.php:120
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
+ #: includes/options_helptexts.php:121
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
+ #: includes/options_helptexts.php:127
1196
  msgid "Enable RSS feed"
1197
  msgstr ""
1198
 
1199
+ #: includes/options_helptexts.php:128
1200
+ msgid "Enable support for the event RSS feed"
1201
  msgstr ""
1202
 
1203
+ #: includes/options_helptexts.php:130
1204
+ msgid ""
1205
+ "This option activates the RSS feed for the events and adds a feed link in "
1206
+ "the html head."
1207
  msgstr ""
1208
 
1209
+ #: includes/options_helptexts.php:131
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
+ #: includes/options_helptexts.php:136
1216
+ msgid "Enable iCal feed"
1217
  msgstr ""
1218
 
1219
+ #: includes/options_helptexts.php:137
1220
+ msgid "Enable support for the event iCal feed"
 
1221
  msgstr ""
1222
 
1223
+ #: includes/options_helptexts.php:139
1224
+ msgid "This option activates the iCal feed for events."
 
 
 
1225
  msgstr ""
1226
 
1227
+ #: includes/options_helptexts.php:140
1228
+ msgid ""
1229
+ "You have to enable this option if you want to use one of the iCal features."
1230
  msgstr ""
1231
 
1232
+ #: includes/options_helptexts.php:145
1233
+ msgid "Position of the RSS feed link"
 
1234
  msgstr ""
1235
 
1236
+ #: includes/options_helptexts.php:146
1237
+ msgid "at the top (above the navigation bar)"
 
 
1238
  msgstr ""
1239
 
1240
+ #: includes/options_helptexts.php:146
1241
+ msgid "between navigation bar and events"
1242
  msgstr ""
1243
 
1244
+ #: includes/options_helptexts.php:146
1245
+ msgid "at the bottom"
1246
  msgstr ""
1247
 
1248
+ #: includes/options_helptexts.php:147
1249
  msgid ""
1250
+ "This option specifies the position of the RSS feed link in the event list."
1251
  msgstr ""
1252
 
1253
+ #: includes/options_helptexts.php:152
1254
+ msgid "Align of the RSS feed link"
1255
  msgstr ""
1256
 
1257
+ #: includes/options_helptexts.php:153
1258
+ msgid "left"
1259
  msgstr ""
1260
 
1261
+ #: includes/options_helptexts.php:153
1262
+ msgid "center"
1263
  msgstr ""
1264
 
1265
+ #: includes/options_helptexts.php:153
1266
+ msgid "right"
1267
  msgstr ""
1268
 
1269
+ #: includes/options_helptexts.php:154
1270
+ msgid ""
1271
+ "This option specifies the align of the RSS feed link in the event list."
1272
  msgstr ""
1273
 
1274
+ #: includes/options_helptexts.php:159
1275
+ msgid "RSS feed name"
 
 
1276
  msgstr ""
1277
 
1278
+ #: includes/options_helptexts.php:161
1279
  #, php-format
1280
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1281
  msgstr ""
1282
 
1283
+ #: includes/options_helptexts.php:162
1284
  #, php-format
1285
+ msgid ""
1286
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1287
+ "enabled)."
1288
  msgstr ""
1289
 
1290
+ #: includes/options_helptexts.php:167
1291
+ msgid "RSS feed Description"
1292
  msgstr ""
1293
 
1294
+ #: includes/options_helptexts.php:169
1295
+ #, php-format
1296
+ msgid "This options set the RSS feed description. The default value is %1$s."
1297
  msgstr ""
1298
 
1299
+ #: includes/options_helptexts.php:170
1300
+ msgid ""
1301
+ "This description will be used in the title for the feed link in the html "
1302
+ "head and for the description in the feed itself."
1303
  msgstr ""
1304
 
1305
+ #: includes/options_helptexts.php:175
1306
+ msgid "RSS feed events"
1307
  msgstr ""
1308
 
1309
+ #: includes/options_helptexts.php:176
1310
+ msgid "Only show upcoming events in the RSS feed"
 
1311
  msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:178
 
 
1314
  msgid ""
1315
+ "If this option is enabled only the upcoming events are listed in the RSS "
1316
+ "feed."
1317
  msgstr ""
1318
 
1319
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1320
+ msgid "If disabled, all events (upcoming and past) will be listed."
1321
  msgstr ""
1322
 
1323
+ #: includes/options_helptexts.php:184
1324
+ msgid "RSS link text"
1325
  msgstr ""
1326
 
1327
+ #: includes/options_helptexts.php:186
1328
+ msgid "This option sets the caption of the RSS feed link in the event list."
1329
  msgstr ""
1330
 
1331
+ #: includes/options_helptexts.php:187
1332
+ msgid "Use an empty text to only show the rss image."
1333
  msgstr ""
1334
 
1335
+ #: includes/options_helptexts.php:188
1336
+ #, php-format
1337
  msgid ""
1338
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1339
+ " RSS feed link."
1340
  msgstr ""
1341
 
1342
+ #: includes/options_helptexts.php:193
1343
+ msgid "iCal feed name"
1344
  msgstr ""
1345
 
1346
+ #: includes/options_helptexts.php:195
1347
+ #, php-format
1348
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1349
+ msgstr ""
1350
+
1351
+ #: includes/options_helptexts.php:196
1352
+ #, php-format
1353
  msgid ""
1354
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1355
+ "permalinks enabled)."
1356
  msgstr ""
1357
 
1358
+ #: includes/options_helptexts.php:201
1359
+ msgid "iCal feed events"
1360
+ msgstr ""
1361
+
1362
+ #: includes/options_helptexts.php:202
1363
+ msgid "Only show upcoming events in the iCal feed"
1364
+ msgstr ""
1365
+
1366
+ #: includes/options_helptexts.php:204
1367
  msgid ""
1368
+ "If this option is enabled only the upcoming events are listed in the iCal "
1369
+ "file."
1370
  msgstr ""
1371
 
1372
+ #: includes/options_helptexts.php:210
1373
+ msgid "iCal link text"
1374
  msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:212
1377
+ msgid "This option sets the iCal link text in the event list."
1378
  msgstr ""
1379
 
1380
+ #: includes/options_helptexts.php:213
1381
+ msgid "Use an empty text to only show the iCal image."
1382
+ msgstr ""
1383
+
1384
+ #: includes/options_helptexts.php:214
1385
+ #, php-format
1386
  msgid ""
1387
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1388
+ " iCal feed link."
1389
  msgstr ""
1390
 
1391
+ #: includes/options_helptexts.php:221
1392
  msgid "Event Category handling"
1393
  msgstr ""
1394
 
1395
+ #: includes/options_helptexts.php:222
1396
  msgid "Use Post Categories"
1397
  msgstr ""
1398
 
1399
+ #: includes/options_helptexts.php:224
1400
  msgid ""
1401
  "Do not maintain seperate categories for the events, and use the existing "
1402
  "post categories instead."
1403
  msgstr ""
1404
 
1405
+ #: includes/options_helptexts.php:225
1406
  msgid "Attention"
1407
  msgstr ""
1408
 
1409
+ #: includes/options_helptexts.php:226
1410
  msgid ""
1411
  "This option cannot be changed directly, but you can go to the Event Category"
1412
  " switching page from here."
1532
  #: includes/sc_event-list_helptexts.php:33
1533
  #: includes/sc_event-list_helptexts.php:74
1534
  #: includes/sc_event-list_helptexts.php:89
1535
+ #: includes/sc_event-list_helptexts.php:111
1536
  msgid "number"
1537
  msgstr ""
1538
 
1761
 
1762
  #: includes/sc_event-list_helptexts.php:77
1763
  #: includes/sc_event-list_helptexts.php:92
1764
+ #: includes/sc_event-list_helptexts.php:114
1765
  msgid "This attribute has no influence if only a single event is shown."
1766
  msgstr ""
1767
 
1788
 
1789
  #: includes/sc_event-list_helptexts.php:100
1790
  msgid ""
1791
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1792
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1793
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1794
  msgstr ""
1795
 
1796
  #: includes/sc_event-list_helptexts.php:105
1797
  msgid ""
1798
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1799
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1801
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:112
1806
  msgid ""
1807
  "This attribute specifies if the content should be truncate to the given "
1808
  "number of characters in the event list."
1809
  msgstr ""
1810
 
1811
+ #: includes/sc_event-list_helptexts.php:113
1812
  #, php-format
1813
  msgid "With the standard value %1$s the full text is displayed."
1814
  msgstr ""
1815
 
1816
+ #: includes/sc_event-list_helptexts.php:117
1817
  msgid ""
1818
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1819
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1820
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1821
  "\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."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:123
1825
  msgid ""
1826
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1827
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1829
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1830
  msgstr ""
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:129
1833
  msgid ""
1834
  "This attribute specifies if a rss feed link should be added.<br />\n"
1835
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1838
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1839
  msgstr ""
1840
 
1841
+ #: includes/sc_event-list_helptexts.php:136
1842
+ msgid ""
1843
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1844
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1845
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1846
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1847
+ msgstr ""
1848
+
1849
+ #: includes/sc_event-list_helptexts.php:142
1850
  msgid ""
1851
  "This attribute specifies the page or post url for event links.<br />\n"
1852
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1853
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1854
  msgstr ""
1855
 
1856
+ #: includes/sc_event-list_helptexts.php:149
1857
  msgid ""
1858
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1859
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1860
  msgstr ""
1861
 
1862
+ #: includes/sc_event-list.php:145
1863
  msgid "Event Information:"
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list.php:391
1867
+ msgid "Link to RSS feed"
1868
+ msgstr ""
1869
+
1870
+ #: includes/sc_event-list.php:399
1871
+ msgid "Link to iCal feed"
1872
+ msgstr ""
1873
+
1874
  #: includes/widget_helptexts.php:10
1875
  msgid "This option defines the displayed title for the widget."
1876
  msgstr ""
languages/event-list-de_DE.mo CHANGED
Binary file
languages/event-list-de_DE.po CHANGED
@@ -12,8 +12,8 @@ msgid ""
12
  msgstr ""
13
  "Project-Id-Version: wp-event-list\n"
14
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
15
- "POT-Creation-Date: 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"
@@ -32,7 +32,7 @@ msgstr "Fehler während des %1$s Plugin Upgrades"
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
 
@@ -55,7 +55,7 @@ msgid_plural "%s Events"
55
  msgstr[0] "%s Termin"
56
  msgstr[1] "%s Termine"
57
 
58
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
59
  msgid "General"
60
  msgstr "Allgemein"
61
 
@@ -563,13 +563,13 @@ msgid "End Date"
563
  msgstr "End-Datum"
564
 
565
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
566
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
567
  msgid "Time"
568
  msgstr "Uhrzeit"
569
 
570
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
571
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
572
- #: includes/options_helptexts.php:58
573
  msgid "Location"
574
  msgstr "Ort"
575
 
@@ -709,23 +709,23 @@ msgstr "Termin eingeplant für: %1$s"
709
  msgid "Event draft updated."
710
  msgstr "Termin-Entwurf aktualisiert."
711
 
712
- #: admin/includes/admin-settings.php:71
713
  msgid "Go to Event Category switching page"
714
  msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien"
715
 
716
- #: admin/includes/admin-settings.php:83
717
  msgid "Frontend Settings"
718
  msgstr "Frontend Einstellungen"
719
 
720
- #: admin/includes/admin-settings.php:84
721
  msgid "Admin Page Settings"
722
  msgstr "Admin-Seiten Einstellungen"
723
 
724
- #: admin/includes/admin-settings.php:85
725
  msgid "Feed Settings"
726
  msgstr "Feed Einstellungen"
727
 
728
- #: admin/includes/admin-settings.php:86
729
  msgid "Category Taxonomy"
730
  msgstr "Kategorie-Taxonomie"
731
 
@@ -980,146 +980,146 @@ msgstr "Alle"
980
  msgid "All Dates"
981
  msgstr "Alle Datumsbereiche"
982
 
983
- #: includes/options_helptexts.php:10
984
  msgid "CSV File to import"
985
  msgstr "Zu importierende CSV-Datei"
986
 
987
- #: includes/options_helptexts.php:12
988
  msgid "Please select the file which contains the event data in CSV format."
989
  msgstr "Bitte wähle die Datei aus, welche die Eventdaten im CSV-Format enthält."
990
 
991
- #: includes/options_helptexts.php:15
992
  msgid "Used date format"
993
  msgstr "Verwendetes Datumsformat"
994
 
995
- #: includes/options_helptexts.php:17
996
  msgid ""
997
  "With this option the given date format for event start and end date in the "
998
  "CSV file can be specified."
999
  msgstr ""
1000
 
1001
- #: includes/options_helptexts.php:18
1002
  #, php-format
1003
  msgid ""
1004
  "You can use the php date format options given in %1$s, the most important "
1005
  "ones are:"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:20
1009
  msgid "full year representation, with 4 digits"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:21
1013
  msgid "numeric representation of a month, with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:22
1017
  msgid "day of the month, 2 digits with leading zeros"
1018
  msgstr ""
1019
 
1020
- #: includes/options_helptexts.php:24
1021
  msgid ""
1022
  "If the date format in the CSV file does not correspond to the given format, "
1023
  "the import script tries to recognize the date format by itself."
1024
  msgstr ""
1025
 
1026
- #: includes/options_helptexts.php:25
1027
  msgid ""
1028
  "But this can cause problems or result in wrong dates, so it is recommended "
1029
  "to specify the correct date format here."
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:26
1033
  msgid "Examples"
1034
  msgstr ""
1035
 
1036
- #: includes/options_helptexts.php:33
1037
  msgid "Text for no events"
1038
  msgstr "Text für keine Termine"
1039
 
1040
- #: includes/options_helptexts.php:35
1041
  msgid ""
1042
  "This option defines the displayed text when no events are available for the "
1043
  "selected view."
1044
  msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
1045
 
1046
- #: includes/options_helptexts.php:38
1047
  msgid "Multiday filter range"
1048
  msgstr "Mehrtägiger Bereich für Filter"
1049
 
1050
- #: includes/options_helptexts.php:39
1051
  msgid "Use the complete event range in the date filter"
1052
  msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
1053
 
1054
- #: includes/options_helptexts.php:40
1055
  msgid ""
1056
  "This option defines if the complete range of a multiday event shall be "
1057
  "considered in the date filter."
1058
  msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
1059
 
1060
- #: includes/options_helptexts.php:41
1061
  msgid ""
1062
  "If disabled, only the start day of an event is considered in the filter."
1063
  msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
1064
 
1065
- #: includes/options_helptexts.php:42
1066
  msgid ""
1067
  "For an example multiday event which started yesterday and ends tomorrow this"
1068
  " means, that it is displayed in umcoming dates when this option is enabled, "
1069
  "but it is hidden when the option is disabled."
1070
  msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
1071
 
1072
- #: includes/options_helptexts.php:45
1073
  msgid "Date display"
1074
  msgstr "Datumsanzeige"
1075
 
1076
- #: includes/options_helptexts.php:46
1077
  msgid "Show the date only once per day"
1078
  msgstr "Zeige das Datum nur einmal pro Tag"
1079
 
1080
- #: includes/options_helptexts.php:47
1081
  msgid ""
1082
  "With this option enabled the date is only displayed once per day if more "
1083
  "than one event is available on the same day."
1084
  msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
1085
 
1086
- #: includes/options_helptexts.php:48
1087
  msgid ""
1088
  "If enabled, the events are ordered in a different way (end date before start"
1089
  " time) to allow using the same date for as much events as possible."
1090
  msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
1091
 
1092
- #: includes/options_helptexts.php:51
1093
  msgid "HTML tags"
1094
  msgstr "HTML-Tags"
1095
 
1096
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1097
  #, php-format
1098
  msgid "Allow HTML tags in the event field \"%1$s\""
1099
  msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
1100
 
1101
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1102
  #, php-format
1103
  msgid ""
1104
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1105
  msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
1106
 
1107
- #: includes/options_helptexts.php:61
1108
  msgid "Preferred language file"
1109
  msgstr "Bevorzugte Sprachdatei"
1110
 
1111
- #: includes/options_helptexts.php:62
1112
  msgid "Load translations from general language directory first"
1113
  msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis"
1114
 
1115
- #: includes/options_helptexts.php:63
1116
  #, php-format
1117
  msgid ""
1118
  "The default is to load the %1$s translation file from the plugin language "
1119
  "directory first (%2$s)."
1120
  msgstr "Standardmäßig wird zuerst die %1$s Übersetzungsdatei aus dem Sprachverzeichnis des Plugins geladen (%2$s)."
1121
 
1122
- #: includes/options_helptexts.php:64
1123
  #, php-format
1124
  msgid ""
1125
  "If you want to load your own language file from the general language "
@@ -1127,273 +1127,290 @@ msgid ""
1127
  "language directory, you have to enable this option."
1128
  msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverzeichnis %1$s verwendet werden soll, die bereits im Sprachverzeichnis des Plugins vorhanden ist, dann muss diese Option aktiviert werden."
1129
 
1130
- #: includes/options_helptexts.php:68
1131
  msgid "Events permalink slug"
1132
  msgstr ""
1133
 
1134
- #: includes/options_helptexts.php:69
1135
  msgid ""
1136
  "With this option the slug for the events permalink URLs can be defined."
1137
  msgstr ""
1138
 
1139
- #: includes/options_helptexts.php:72
1140
  msgid "Text for \"Show content\""
1141
  msgstr ""
1142
 
1143
- #: includes/options_helptexts.php:73
1144
  msgid ""
1145
  "With this option the displayed text for the link to show the event content "
1146
  "can be changed, when collapsing is enabled."
1147
  msgstr ""
1148
 
1149
- #: includes/options_helptexts.php:76
1150
  msgid "Text for \"Hide content\""
1151
  msgstr ""
1152
 
1153
- #: includes/options_helptexts.php:77
1154
  msgid ""
1155
  "With this option the displayed text for the link to hide the event content "
1156
  "can be changed, when collapsing is enabled."
1157
  msgstr ""
1158
 
1159
- #: includes/options_helptexts.php:80
1160
  msgid "Disable CSS file"
1161
  msgstr "Deaktiviere die CSS-Datei"
1162
 
1163
- #: includes/options_helptexts.php:81
1164
  #, php-format
1165
  msgid "Disable the %1$s file."
1166
  msgstr "Deaktiviere die %1$s Datei."
1167
 
1168
- #: includes/options_helptexts.php:82
1169
  #, php-format
1170
  msgid "With this option you can disable the inclusion of the %1$s file."
1171
  msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
1172
 
1173
- #: includes/options_helptexts.php:83
1174
  msgid ""
1175
  "This normally only make sense if you have css conflicts with your theme and "
1176
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1177
  msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
1178
 
1179
- #: includes/options_helptexts.php:87
1180
  msgid "Date format in edit form"
1181
  msgstr "Datumsformat im Formular"
1182
 
1183
- #: includes/options_helptexts.php:88
1184
  msgid ""
1185
  "This option sets the displayed date format for the event date fields in the "
1186
  "event new / edit form."
1187
  msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
1188
 
1189
- #: includes/options_helptexts.php:89
1190
  msgid "The default is an empty string to use the Wordpress standard setting."
1191
  msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
1192
 
1193
- #: includes/options_helptexts.php:90
1194
  #, php-format
1195
  msgid ""
1196
  "All available options to specify the date format can be found %1$shere%2$s."
1197
  msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
1198
 
1199
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1200
  msgid "Enable RSS feed"
1201
  msgstr "RSS feed aktivieren"
1202
 
1203
- #: includes/options_helptexts.php:95
1204
- msgid "Enable support for an event RSS feed"
1205
- msgstr "Support für ein Termin-RSS-Feed aktivieren"
1206
 
1207
- #: includes/options_helptexts.php:96
1208
- msgid "This option activates a RSS feed for the events."
1209
- msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine."
 
 
1210
 
1211
- #: includes/options_helptexts.php:97
1212
  msgid ""
1213
  "You have to enable this option if you want to use one of the RSS feed "
1214
  "features."
1215
  msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
1216
 
1217
- #: includes/options_helptexts.php:100
1218
- msgid "Feed name"
1219
- msgstr "Feed-Name"
1220
-
1221
- #: includes/options_helptexts.php:101
1222
- #, php-format
1223
- msgid "This option sets the feed name. The default value is %1$s."
1224
- msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s."
1225
-
1226
- #: includes/options_helptexts.php:102
1227
- #, php-format
1228
- msgid ""
1229
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1230
- "enabled)."
1231
- msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
1232
-
1233
- #: includes/options_helptexts.php:105
1234
- msgid "Feed Description"
1235
- msgstr "Feed-Beschreibung"
1236
-
1237
- #: includes/options_helptexts.php:106
1238
- #, php-format
1239
- msgid "This options set the feed description. The default value is %1$s."
1240
- msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s."
1241
-
1242
- #: includes/options_helptexts.php:107
1243
- msgid ""
1244
- "This description will be used in the title for the feed link in the html "
1245
- "head and for the description in the feed itself."
1246
- msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
1247
-
1248
- #: includes/options_helptexts.php:110
1249
- msgid "Listed events"
1250
- msgstr "Anzuzeigende Termine"
1251
-
1252
- #: includes/options_helptexts.php:111
1253
- msgid "Only show upcoming events in feed"
1254
- msgstr "Zeige nur anstehende Termine im Feed an"
1255
-
1256
- #: includes/options_helptexts.php:112
1257
- msgid ""
1258
- "If this option is enabled only the upcoming events are listed in the feed."
1259
- msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt."
1260
-
1261
- #: includes/options_helptexts.php:113
1262
- msgid "If disabled all events (upcoming and past) will be listed."
1263
- msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden."
1264
-
1265
- #: includes/options_helptexts.php:116
1266
- msgid "Add RSS feed link in head"
1267
- msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
1268
-
1269
- #: includes/options_helptexts.php:117
1270
- msgid "Add RSS feed link in the html head"
1271
- msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein"
1272
-
1273
- #: includes/options_helptexts.php:118
1274
- msgid "This option adds a RSS feed in the html head for the events."
1275
- msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein."
1276
 
1277
- #: includes/options_helptexts.php:119
1278
- msgid "There are 2 alternatives to include the RSS feed"
1279
- msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed"
1280
 
1281
- #: includes/options_helptexts.php:120
1282
- msgid ""
1283
- "The first way is this option to include a link in the html head. This link "
1284
- "will be recognized by browers or feed readers."
1285
- msgstr "Die erste Variante ist diese Einstellung, mit der ein Link in den HTML-Kopfeingefügt wird. Dieser Link wird von den Browsern und Feed-Readern erkannt."
1286
 
1287
- #: includes/options_helptexts.php:121
1288
- #, php-format
1289
  msgid ""
1290
- "The second way is to include a visible feed link directly in the event list."
1291
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1292
- msgstr "Die 2. Variante ist die Einbindung eines sichtbaren Feed-Links direkt in der Terminliste. Dies kann durch das Setzen des Shortcode-Attributs %1$s auf %2$s erreicht werden."
1293
-
1294
- #: includes/options_helptexts.php:122
1295
- #, php-format
1296
- msgid "This option is only valid if the setting %1$s is enabled."
1297
- msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist."
1298
 
1299
- #: includes/options_helptexts.php:125
1300
  msgid "Position of the RSS feed link"
1301
  msgstr "Position des RSS feed Links"
1302
 
1303
- #: includes/options_helptexts.php:126
1304
  msgid "at the top (above the navigation bar)"
1305
  msgstr "oben (über der Navigationsleiste)"
1306
 
1307
- #: includes/options_helptexts.php:126
1308
  msgid "between navigation bar and events"
1309
  msgstr "zwischen Navigationsleiste und Terminliste"
1310
 
1311
- #: includes/options_helptexts.php:126
1312
  msgid "at the bottom"
1313
  msgstr "unterhalb der Terminliste"
1314
 
1315
- #: includes/options_helptexts.php:127
1316
  msgid ""
1317
  "This option specifies the position of the RSS feed link in the event list."
1318
  msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
1319
 
1320
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1321
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1322
- #, php-format
1323
- msgid ""
1324
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1325
- " feed link."
1326
- msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren."
1327
-
1328
- #: includes/options_helptexts.php:131
1329
  msgid "Align of the RSS feed link"
1330
  msgstr "Ausrichtung des RSS-Feed-Links"
1331
 
1332
- #: includes/options_helptexts.php:132
1333
  msgid "left"
1334
  msgstr "links"
1335
 
1336
- #: includes/options_helptexts.php:132
1337
  msgid "center"
1338
  msgstr "mittig"
1339
 
1340
- #: includes/options_helptexts.php:132
1341
  msgid "right"
1342
  msgstr "rechts"
1343
 
1344
- #: includes/options_helptexts.php:133
1345
  msgid ""
1346
  "This option specifies the align of the RSS feed link in the event list."
1347
  msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
1348
 
1349
- #: includes/options_helptexts.php:137
1350
- msgid "Feed link text"
1351
- msgstr "Feed Link Text"
1352
 
1353
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1354
  msgid ""
1355
- "This option specifies the caption of the RSS feed link in the event list."
1356
- msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste."
 
1357
 
1358
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
 
1359
  msgid ""
1360
- "Insert an empty text to hide any text if you only want to show the rss "
1361
- "image."
1362
- msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt."
 
 
 
 
1363
 
1364
- #: includes/options_helptexts.php:143
1365
- msgid "Feed link image"
1366
- msgstr "Bild für den Feed-Link"
 
 
 
 
 
 
1367
 
1368
- #: includes/options_helptexts.php:144
1369
- msgid "Show rss image in feed link"
1370
- msgstr "Zeige das RSS-Bild im Feed-Link an"
1371
 
1372
- #: includes/options_helptexts.php:145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1373
  msgid ""
1374
- "This option specifies if the an image should be dispayed in the feed link in"
1375
- " front of the text."
1376
- msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1377
 
1378
- #: includes/options_helptexts.php:151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1379
  msgid "Event Category handling"
1380
  msgstr ""
1381
 
1382
- #: includes/options_helptexts.php:152
1383
  msgid "Use Post Categories"
1384
  msgstr ""
1385
 
1386
- #: includes/options_helptexts.php:153
1387
  msgid ""
1388
  "Do not maintain seperate categories for the events, and use the existing "
1389
  "post categories instead."
1390
  msgstr ""
1391
 
1392
- #: includes/options_helptexts.php:154
1393
  msgid "Attention"
1394
  msgstr "Achtung"
1395
 
1396
- #: includes/options_helptexts.php:155
1397
  msgid ""
1398
  "This option cannot be changed directly, but you can go to the Event Category"
1399
  " switching page from here."
@@ -1519,7 +1536,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:109
1523
  msgid "number"
1524
  msgstr "Nummer"
1525
 
@@ -1748,7 +1765,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: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,38 +1792,40 @@ msgstr ""
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"
1805
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1833,7 @@ msgid ""
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,23 +1842,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1843
  #: includes/widget_helptexts.php:10
1844
  msgid "This option defines the displayed title for the widget."
1845
  msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
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-11-16 17:29+0100\n"
16
+ "PO-Revision-Date: 2020-11-16 16:29+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"
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:67
36
  msgid "Event List Settings"
37
  msgstr "Event List Einstellungen"
38
 
55
  msgstr[0] "%s Termin"
56
  msgstr[1] "%s Termine"
57
 
58
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
59
  msgid "General"
60
  msgstr "Allgemein"
61
 
563
  msgstr "End-Datum"
564
 
565
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
566
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
567
  msgid "Time"
568
  msgstr "Uhrzeit"
569
 
570
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
571
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
572
+ #: includes/options_helptexts.php:74
573
  msgid "Location"
574
  msgstr "Ort"
575
 
709
  msgid "Event draft updated."
710
  msgstr "Termin-Entwurf aktualisiert."
711
 
712
+ #: admin/includes/admin-settings.php:73
713
  msgid "Go to Event Category switching page"
714
  msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien"
715
 
716
+ #: admin/includes/admin-settings.php:85
717
  msgid "Frontend Settings"
718
  msgstr "Frontend Einstellungen"
719
 
720
+ #: admin/includes/admin-settings.php:86
721
  msgid "Admin Page Settings"
722
  msgstr "Admin-Seiten Einstellungen"
723
 
724
+ #: admin/includes/admin-settings.php:87
725
  msgid "Feed Settings"
726
  msgstr "Feed Einstellungen"
727
 
728
+ #: admin/includes/admin-settings.php:88
729
  msgid "Category Taxonomy"
730
  msgstr "Kategorie-Taxonomie"
731
 
980
  msgid "All Dates"
981
  msgstr "Alle Datumsbereiche"
982
 
983
+ #: includes/options_helptexts.php:11
984
  msgid "CSV File to import"
985
  msgstr "Zu importierende CSV-Datei"
986
 
987
+ #: includes/options_helptexts.php:13
988
  msgid "Please select the file which contains the event data in CSV format."
989
  msgstr "Bitte wähle die Datei aus, welche die Eventdaten im CSV-Format enthält."
990
 
991
+ #: includes/options_helptexts.php:18
992
  msgid "Used date format"
993
  msgstr "Verwendetes Datumsformat"
994
 
995
+ #: includes/options_helptexts.php:21
996
  msgid ""
997
  "With this option the given date format for event start and end date in the "
998
  "CSV file can be specified."
999
  msgstr ""
1000
 
1001
+ #: includes/options_helptexts.php:22
1002
  #, php-format
1003
  msgid ""
1004
  "You can use the php date format options given in %1$s, the most important "
1005
  "ones are:"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:24
1009
  msgid "full year representation, with 4 digits"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:25
1013
  msgid "numeric representation of a month, with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:26
1017
  msgid "day of the month, 2 digits with leading zeros"
1018
  msgstr ""
1019
 
1020
+ #: includes/options_helptexts.php:28
1021
  msgid ""
1022
  "If the date format in the CSV file does not correspond to the given format, "
1023
  "the import script tries to recognize the date format by itself."
1024
  msgstr ""
1025
 
1026
+ #: includes/options_helptexts.php:29
1027
  msgid ""
1028
  "But this can cause problems or result in wrong dates, so it is recommended "
1029
  "to specify the correct date format here."
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:30
1033
  msgid "Examples"
1034
  msgstr ""
1035
 
1036
+ #: includes/options_helptexts.php:39
1037
  msgid "Text for no events"
1038
  msgstr "Text für keine Termine"
1039
 
1040
+ #: includes/options_helptexts.php:41
1041
  msgid ""
1042
  "This option defines the displayed text when no events are available for the "
1043
  "selected view."
1044
  msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
1045
 
1046
+ #: includes/options_helptexts.php:46
1047
  msgid "Multiday filter range"
1048
  msgstr "Mehrtägiger Bereich für Filter"
1049
 
1050
+ #: includes/options_helptexts.php:47
1051
  msgid "Use the complete event range in the date filter"
1052
  msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
1053
 
1054
+ #: includes/options_helptexts.php:49
1055
  msgid ""
1056
  "This option defines if the complete range of a multiday event shall be "
1057
  "considered in the date filter."
1058
  msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
1059
 
1060
+ #: includes/options_helptexts.php:50
1061
  msgid ""
1062
  "If disabled, only the start day of an event is considered in the filter."
1063
  msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
1064
 
1065
+ #: includes/options_helptexts.php:51
1066
  msgid ""
1067
  "For an example multiday event which started yesterday and ends tomorrow this"
1068
  " means, that it is displayed in umcoming dates when this option is enabled, "
1069
  "but it is hidden when the option is disabled."
1070
  msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
1071
 
1072
+ #: includes/options_helptexts.php:56
1073
  msgid "Date display"
1074
  msgstr "Datumsanzeige"
1075
 
1076
+ #: includes/options_helptexts.php:57
1077
  msgid "Show the date only once per day"
1078
  msgstr "Zeige das Datum nur einmal pro Tag"
1079
 
1080
+ #: includes/options_helptexts.php:59
1081
  msgid ""
1082
  "With this option enabled the date is only displayed once per day if more "
1083
  "than one event is available on the same day."
1084
  msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
1085
 
1086
+ #: includes/options_helptexts.php:60
1087
  msgid ""
1088
  "If enabled, the events are ordered in a different way (end date before start"
1089
  " time) to allow using the same date for as much events as possible."
1090
  msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
1091
 
1092
+ #: includes/options_helptexts.php:65
1093
  msgid "HTML tags"
1094
  msgstr "HTML-Tags"
1095
 
1096
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1097
  #, php-format
1098
  msgid "Allow HTML tags in the event field \"%1$s\""
1099
  msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
1100
 
1101
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1102
  #, php-format
1103
  msgid ""
1104
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1105
  msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
1106
 
1107
+ #: includes/options_helptexts.php:79
1108
  msgid "Preferred language file"
1109
  msgstr "Bevorzugte Sprachdatei"
1110
 
1111
+ #: includes/options_helptexts.php:80
1112
  msgid "Load translations from general language directory first"
1113
  msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis"
1114
 
1115
+ #: includes/options_helptexts.php:82
1116
  #, php-format
1117
  msgid ""
1118
  "The default is to load the %1$s translation file from the plugin language "
1119
  "directory first (%2$s)."
1120
  msgstr "Standardmäßig wird zuerst die %1$s Übersetzungsdatei aus dem Sprachverzeichnis des Plugins geladen (%2$s)."
1121
 
1122
+ #: includes/options_helptexts.php:83
1123
  #, php-format
1124
  msgid ""
1125
  "If you want to load your own language file from the general language "
1127
  "language directory, you have to enable this option."
1128
  msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverzeichnis %1$s verwendet werden soll, die bereits im Sprachverzeichnis des Plugins vorhanden ist, dann muss diese Option aktiviert werden."
1129
 
1130
+ #: includes/options_helptexts.php:89
1131
  msgid "Events permalink slug"
1132
  msgstr ""
1133
 
1134
+ #: includes/options_helptexts.php:90
1135
  msgid ""
1136
  "With this option the slug for the events permalink URLs can be defined."
1137
  msgstr ""
1138
 
1139
+ #: includes/options_helptexts.php:95
1140
  msgid "Text for \"Show content\""
1141
  msgstr ""
1142
 
1143
+ #: includes/options_helptexts.php:96
1144
  msgid ""
1145
  "With this option the displayed text for the link to show the event content "
1146
  "can be changed, when collapsing is enabled."
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:101
1150
  msgid "Text for \"Hide content\""
1151
  msgstr ""
1152
 
1153
+ #: includes/options_helptexts.php:102
1154
  msgid ""
1155
  "With this option the displayed text for the link to hide the event content "
1156
  "can be changed, when collapsing is enabled."
1157
  msgstr ""
1158
 
1159
+ #: includes/options_helptexts.php:107
1160
  msgid "Disable CSS file"
1161
  msgstr "Deaktiviere die CSS-Datei"
1162
 
1163
+ #: includes/options_helptexts.php:108
1164
  #, php-format
1165
  msgid "Disable the %1$s file."
1166
  msgstr "Deaktiviere die %1$s Datei."
1167
 
1168
+ #: includes/options_helptexts.php:110
1169
  #, php-format
1170
  msgid "With this option you can disable the inclusion of the %1$s file."
1171
  msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
1172
 
1173
+ #: includes/options_helptexts.php:111
1174
  msgid ""
1175
  "This normally only make sense if you have css conflicts with your theme and "
1176
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1177
  msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
1178
 
1179
+ #: includes/options_helptexts.php:117
1180
  msgid "Date format in edit form"
1181
  msgstr "Datumsformat im Formular"
1182
 
1183
+ #: includes/options_helptexts.php:119
1184
  msgid ""
1185
  "This option sets the displayed date format for the event date fields in the "
1186
  "event new / edit form."
1187
  msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
1188
 
1189
+ #: includes/options_helptexts.php:120
1190
  msgid "The default is an empty string to use the Wordpress standard setting."
1191
  msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
1192
 
1193
+ #: includes/options_helptexts.php:121
1194
  #, php-format
1195
  msgid ""
1196
  "All available options to specify the date format can be found %1$shere%2$s."
1197
  msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
1198
 
1199
+ #: includes/options_helptexts.php:127
1200
  msgid "Enable RSS feed"
1201
  msgstr "RSS feed aktivieren"
1202
 
1203
+ #: includes/options_helptexts.php:128
1204
+ msgid "Enable support for the event RSS feed"
1205
+ msgstr ""
1206
 
1207
+ #: includes/options_helptexts.php:130
1208
+ msgid ""
1209
+ "This option activates the RSS feed for the events and adds a feed link in "
1210
+ "the html head."
1211
+ msgstr ""
1212
 
1213
+ #: includes/options_helptexts.php:131
1214
  msgid ""
1215
  "You have to enable this option if you want to use one of the RSS feed "
1216
  "features."
1217
  msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
1218
 
1219
+ #: includes/options_helptexts.php:136
1220
+ msgid "Enable iCal feed"
1221
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1222
 
1223
+ #: includes/options_helptexts.php:137
1224
+ msgid "Enable support for the event iCal feed"
1225
+ msgstr ""
1226
 
1227
+ #: includes/options_helptexts.php:139
1228
+ msgid "This option activates the iCal feed for events."
1229
+ msgstr ""
 
 
1230
 
1231
+ #: includes/options_helptexts.php:140
 
1232
  msgid ""
1233
+ "You have to enable this option if you want to use one of the iCal features."
1234
+ msgstr ""
 
 
 
 
 
 
1235
 
1236
+ #: includes/options_helptexts.php:145
1237
  msgid "Position of the RSS feed link"
1238
  msgstr "Position des RSS feed Links"
1239
 
1240
+ #: includes/options_helptexts.php:146
1241
  msgid "at the top (above the navigation bar)"
1242
  msgstr "oben (über der Navigationsleiste)"
1243
 
1244
+ #: includes/options_helptexts.php:146
1245
  msgid "between navigation bar and events"
1246
  msgstr "zwischen Navigationsleiste und Terminliste"
1247
 
1248
+ #: includes/options_helptexts.php:146
1249
  msgid "at the bottom"
1250
  msgstr "unterhalb der Terminliste"
1251
 
1252
+ #: includes/options_helptexts.php:147
1253
  msgid ""
1254
  "This option specifies the position of the RSS feed link in the event list."
1255
  msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
1256
 
1257
+ #: includes/options_helptexts.php:152
 
 
 
 
 
 
 
 
1258
  msgid "Align of the RSS feed link"
1259
  msgstr "Ausrichtung des RSS-Feed-Links"
1260
 
1261
+ #: includes/options_helptexts.php:153
1262
  msgid "left"
1263
  msgstr "links"
1264
 
1265
+ #: includes/options_helptexts.php:153
1266
  msgid "center"
1267
  msgstr "mittig"
1268
 
1269
+ #: includes/options_helptexts.php:153
1270
  msgid "right"
1271
  msgstr "rechts"
1272
 
1273
+ #: includes/options_helptexts.php:154
1274
  msgid ""
1275
  "This option specifies the align of the RSS feed link in the event list."
1276
  msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
1277
 
1278
+ #: includes/options_helptexts.php:159
1279
+ msgid "RSS feed name"
1280
+ msgstr ""
1281
 
1282
+ #: includes/options_helptexts.php:161
1283
+ #, php-format
1284
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1285
+ msgstr ""
1286
+
1287
+ #: includes/options_helptexts.php:162
1288
+ #, php-format
1289
  msgid ""
1290
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1291
+ "enabled)."
1292
+ msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
1293
 
1294
+ #: includes/options_helptexts.php:167
1295
+ msgid "RSS feed Description"
1296
+ msgstr ""
1297
+
1298
+ #: includes/options_helptexts.php:169
1299
+ #, php-format
1300
+ msgid "This options set the RSS feed description. The default value is %1$s."
1301
+ msgstr ""
1302
+
1303
+ #: includes/options_helptexts.php:170
1304
  msgid ""
1305
+ "This description will be used in the title for the feed link in the html "
1306
+ "head and for the description in the feed itself."
1307
+ msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
1308
+
1309
+ #: includes/options_helptexts.php:175
1310
+ msgid "RSS feed events"
1311
+ msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:176
1314
+ msgid "Only show upcoming events in the RSS feed"
1315
+ msgstr ""
1316
+
1317
+ #: includes/options_helptexts.php:178
1318
+ msgid ""
1319
+ "If this option is enabled only the upcoming events are listed in the RSS "
1320
+ "feed."
1321
+ msgstr ""
1322
 
1323
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1324
+ msgid "If disabled, all events (upcoming and past) will be listed."
1325
+ msgstr ""
1326
 
1327
+ #: includes/options_helptexts.php:184
1328
+ msgid "RSS link text"
1329
+ msgstr ""
1330
+
1331
+ #: includes/options_helptexts.php:186
1332
+ msgid "This option sets the caption of the RSS feed link in the event list."
1333
+ msgstr ""
1334
+
1335
+ #: includes/options_helptexts.php:187
1336
+ msgid "Use an empty text to only show the rss image."
1337
+ msgstr ""
1338
+
1339
+ #: includes/options_helptexts.php:188
1340
+ #, php-format
1341
+ msgid ""
1342
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1343
+ " RSS feed link."
1344
+ msgstr ""
1345
+
1346
+ #: includes/options_helptexts.php:193
1347
+ msgid "iCal feed name"
1348
+ msgstr ""
1349
+
1350
+ #: includes/options_helptexts.php:195
1351
+ #, php-format
1352
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1353
+ msgstr ""
1354
+
1355
+ #: includes/options_helptexts.php:196
1356
+ #, php-format
1357
  msgid ""
1358
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1359
+ "permalinks enabled)."
1360
+ msgstr ""
1361
+
1362
+ #: includes/options_helptexts.php:201
1363
+ msgid "iCal feed events"
1364
+ msgstr ""
1365
+
1366
+ #: includes/options_helptexts.php:202
1367
+ msgid "Only show upcoming events in the iCal feed"
1368
+ msgstr ""
1369
+
1370
+ #: includes/options_helptexts.php:204
1371
+ msgid ""
1372
+ "If this option is enabled only the upcoming events are listed in the iCal "
1373
+ "file."
1374
+ msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:210
1377
+ msgid "iCal link text"
1378
+ msgstr ""
1379
+
1380
+ #: includes/options_helptexts.php:212
1381
+ msgid "This option sets the iCal link text in the event list."
1382
+ msgstr ""
1383
+
1384
+ #: includes/options_helptexts.php:213
1385
+ msgid "Use an empty text to only show the iCal image."
1386
+ msgstr ""
1387
+
1388
+ #: includes/options_helptexts.php:214
1389
+ #, php-format
1390
+ msgid ""
1391
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1392
+ " iCal feed link."
1393
+ msgstr ""
1394
+
1395
+ #: includes/options_helptexts.php:221
1396
  msgid "Event Category handling"
1397
  msgstr ""
1398
 
1399
+ #: includes/options_helptexts.php:222
1400
  msgid "Use Post Categories"
1401
  msgstr ""
1402
 
1403
+ #: includes/options_helptexts.php:224
1404
  msgid ""
1405
  "Do not maintain seperate categories for the events, and use the existing "
1406
  "post categories instead."
1407
  msgstr ""
1408
 
1409
+ #: includes/options_helptexts.php:225
1410
  msgid "Attention"
1411
  msgstr "Achtung"
1412
 
1413
+ #: includes/options_helptexts.php:226
1414
  msgid ""
1415
  "This option cannot be changed directly, but you can go to the Event Category"
1416
  " switching page from here."
1536
  #: includes/sc_event-list_helptexts.php:33
1537
  #: includes/sc_event-list_helptexts.php:74
1538
  #: includes/sc_event-list_helptexts.php:89
1539
+ #: includes/sc_event-list_helptexts.php:111
1540
  msgid "number"
1541
  msgstr "Nummer"
1542
 
1765
 
1766
  #: includes/sc_event-list_helptexts.php:77
1767
  #: includes/sc_event-list_helptexts.php:92
1768
+ #: includes/sc_event-list_helptexts.php:114
1769
  msgid "This attribute has no influence if only a single event is shown."
1770
  msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
1771
 
1792
 
1793
  #: includes/sc_event-list_helptexts.php:100
1794
  msgid ""
1795
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1796
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1797
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1798
  msgstr ""
1799
 
1800
  #: includes/sc_event-list_helptexts.php:105
1801
  msgid ""
1802
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1803
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1805
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1806
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:112
1810
  msgid ""
1811
  "This attribute specifies if the content should be truncate to the given "
1812
  "number of characters in the event list."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:113
1816
  #, php-format
1817
  msgid "With the standard value %1$s the full text is displayed."
1818
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:117
1821
  msgid ""
1822
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1823
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1824
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1825
  "\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."
1826
  msgstr ""
1827
 
1828
+ #: includes/sc_event-list_helptexts.php:123
1829
  msgid ""
1830
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1831
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1834
  msgstr ""
1835
 
1836
+ #: includes/sc_event-list_helptexts.php:129
1837
  msgid ""
1838
  "This attribute specifies if a rss feed link should be added.<br />\n"
1839
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1842
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1843
  msgstr ""
1844
 
1845
+ #: includes/sc_event-list_helptexts.php:136
1846
+ msgid ""
1847
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1848
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1849
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1850
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1851
+ msgstr ""
1852
+
1853
+ #: includes/sc_event-list_helptexts.php:142
1854
  msgid ""
1855
  "This attribute specifies the page or post url for event links.<br />\n"
1856
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1857
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1858
  msgstr ""
1859
 
1860
+ #: includes/sc_event-list_helptexts.php:149
1861
  msgid ""
1862
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1863
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list.php:145
1867
  msgid "Event Information:"
1868
  msgstr "Termin Informationen:"
1869
 
1870
+ #: includes/sc_event-list.php:391
1871
+ msgid "Link to RSS feed"
1872
+ msgstr ""
1873
+
1874
+ #: includes/sc_event-list.php:399
1875
+ msgid "Link to iCal feed"
1876
+ msgstr ""
1877
+
1878
  #: includes/widget_helptexts.php:10
1879
  msgid "This option defines the displayed title for the widget."
1880
  msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
languages/event-list-es_AR.mo CHANGED
Binary file
languages/event-list-es_AR.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -51,7 +51,7 @@ msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
55
  msgid "General"
56
  msgstr ""
57
 
@@ -559,13 +559,13 @@ msgid "End Date"
559
  msgstr ""
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
563
  msgid "Time"
564
  msgstr ""
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
568
- #: includes/options_helptexts.php:58
569
  msgid "Location"
570
  msgstr ""
571
 
@@ -705,23 +705,23 @@ msgstr ""
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
- #: admin/includes/admin-settings.php:71
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:83
713
  msgid "Frontend Settings"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:84
717
  msgid "Admin Page Settings"
718
  msgstr ""
719
 
720
- #: admin/includes/admin-settings.php:85
721
  msgid "Feed Settings"
722
  msgstr ""
723
 
724
- #: admin/includes/admin-settings.php:86
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -976,146 +976,146 @@ msgstr "Todos"
976
  msgid "All Dates"
977
  msgstr ""
978
 
979
- #: includes/options_helptexts.php:10
980
  msgid "CSV File to import"
981
  msgstr ""
982
 
983
- #: includes/options_helptexts.php:12
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr ""
986
 
987
- #: includes/options_helptexts.php:15
988
  msgid "Used date format"
989
  msgstr ""
990
 
991
- #: includes/options_helptexts.php:17
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
- #: includes/options_helptexts.php:18
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
- #: includes/options_helptexts.php:20
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:21
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:22
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:24
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
- #: includes/options_helptexts.php:25
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
- #: includes/options_helptexts.php:26
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:33
1033
  msgid "Text for no events"
1034
  msgstr ""
1035
 
1036
- #: includes/options_helptexts.php:35
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
- #: includes/options_helptexts.php:38
1043
  msgid "Multiday filter range"
1044
  msgstr ""
1045
 
1046
- #: includes/options_helptexts.php:39
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
- #: includes/options_helptexts.php:40
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
- #: includes/options_helptexts.php:41
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
- #: includes/options_helptexts.php:42
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
- #: includes/options_helptexts.php:45
1069
  msgid "Date display"
1070
  msgstr ""
1071
 
1072
- #: includes/options_helptexts.php:46
1073
  msgid "Show the date only once per day"
1074
  msgstr ""
1075
 
1076
- #: includes/options_helptexts.php:47
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
- #: includes/options_helptexts.php:48
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
- #: includes/options_helptexts.php:51
1089
  msgid "HTML tags"
1090
  msgstr ""
1091
 
1092
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
- #: includes/options_helptexts.php:61
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
- #: includes/options_helptexts.php:62
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
- #: includes/options_helptexts.php:63
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
- #: includes/options_helptexts.php:64
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
@@ -1123,273 +1123,290 @@ msgid ""
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
- #: includes/options_helptexts.php:68
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
- #: includes/options_helptexts.php:69
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
- #: includes/options_helptexts.php:72
1136
  msgid "Text for \"Show content\""
1137
  msgstr ""
1138
 
1139
- #: includes/options_helptexts.php:73
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
- #: includes/options_helptexts.php:76
1146
  msgid "Text for \"Hide content\""
1147
  msgstr ""
1148
 
1149
- #: includes/options_helptexts.php:77
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
- #: includes/options_helptexts.php:80
1156
  msgid "Disable CSS file"
1157
  msgstr ""
1158
 
1159
- #: includes/options_helptexts.php:81
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr ""
1163
 
1164
- #: includes/options_helptexts.php:82
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
- #: includes/options_helptexts.php:83
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
- #: includes/options_helptexts.php:87
1176
  msgid "Date format in edit form"
1177
  msgstr ""
1178
 
1179
- #: includes/options_helptexts.php:88
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
- #: includes/options_helptexts.php:89
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
- #: includes/options_helptexts.php:90
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1196
  msgid "Enable RSS feed"
1197
  msgstr ""
1198
 
1199
- #: includes/options_helptexts.php:95
1200
- msgid "Enable support for an event RSS feed"
1201
  msgstr ""
1202
 
1203
- #: includes/options_helptexts.php:96
1204
- msgid "This option activates a RSS feed for the events."
 
 
1205
  msgstr ""
1206
 
1207
- #: includes/options_helptexts.php:97
1208
  msgid ""
1209
  "You have to enable this option if you want to use one of the RSS feed "
1210
  "features."
1211
  msgstr ""
1212
 
1213
- #: includes/options_helptexts.php:100
1214
- msgid "Feed name"
1215
  msgstr ""
1216
 
1217
- #: includes/options_helptexts.php:101
1218
- #, php-format
1219
- msgid "This option sets the feed name. The default value is %1$s."
1220
  msgstr ""
1221
 
1222
- #: includes/options_helptexts.php:102
1223
- #, php-format
1224
- msgid ""
1225
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1226
- "enabled)."
1227
  msgstr ""
1228
 
1229
- #: includes/options_helptexts.php:105
1230
- msgid "Feed Description"
 
1231
  msgstr ""
1232
 
1233
- #: includes/options_helptexts.php:106
1234
- #, php-format
1235
- msgid "This options set the feed description. The default value is %1$s."
1236
  msgstr ""
1237
 
1238
- #: includes/options_helptexts.php:107
1239
- msgid ""
1240
- "This description will be used in the title for the feed link in the html "
1241
- "head and for the description in the feed itself."
1242
  msgstr ""
1243
 
1244
- #: includes/options_helptexts.php:110
1245
- msgid "Listed events"
1246
- msgstr "Eventos Listados"
1247
 
1248
- #: includes/options_helptexts.php:111
1249
- msgid "Only show upcoming events in feed"
1250
  msgstr ""
1251
 
1252
- #: includes/options_helptexts.php:112
1253
  msgid ""
1254
- "If this option is enabled only the upcoming events are listed in the feed."
1255
  msgstr ""
1256
 
1257
- #: includes/options_helptexts.php:113
1258
- msgid "If disabled all events (upcoming and past) will be listed."
1259
  msgstr ""
1260
 
1261
- #: includes/options_helptexts.php:116
1262
- msgid "Add RSS feed link in head"
1263
  msgstr ""
1264
 
1265
- #: includes/options_helptexts.php:117
1266
- msgid "Add RSS feed link in the html head"
1267
  msgstr ""
1268
 
1269
- #: includes/options_helptexts.php:118
1270
- msgid "This option adds a RSS feed in the html head for the events."
1271
  msgstr ""
1272
 
1273
- #: includes/options_helptexts.php:119
1274
- msgid "There are 2 alternatives to include the RSS feed"
 
1275
  msgstr ""
1276
 
1277
- #: includes/options_helptexts.php:120
1278
- msgid ""
1279
- "The first way is this option to include a link in the html head. This link "
1280
- "will be recognized by browers or feed readers."
1281
  msgstr ""
1282
 
1283
- #: includes/options_helptexts.php:121
1284
  #, php-format
1285
- msgid ""
1286
- "The second way is to include a visible feed link directly in the event list."
1287
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1288
  msgstr ""
1289
 
1290
- #: includes/options_helptexts.php:122
1291
  #, php-format
1292
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1293
  msgstr ""
1294
 
1295
- #: includes/options_helptexts.php:125
1296
- msgid "Position of the RSS feed link"
1297
  msgstr ""
1298
 
1299
- #: includes/options_helptexts.php:126
1300
- msgid "at the top (above the navigation bar)"
 
1301
  msgstr ""
1302
 
1303
- #: includes/options_helptexts.php:126
1304
- msgid "between navigation bar and events"
 
 
1305
  msgstr ""
1306
 
1307
- #: includes/options_helptexts.php:126
1308
- msgid "at the bottom"
1309
  msgstr ""
1310
 
1311
- #: includes/options_helptexts.php:127
1312
- msgid ""
1313
- "This option specifies the position of the RSS feed link in the event list."
1314
  msgstr ""
1315
 
1316
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1317
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1318
- #, php-format
1319
  msgid ""
1320
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1321
- " feed link."
1322
  msgstr ""
1323
 
1324
- #: includes/options_helptexts.php:131
1325
- msgid "Align of the RSS feed link"
1326
  msgstr ""
1327
 
1328
- #: includes/options_helptexts.php:132
1329
- msgid "left"
1330
  msgstr ""
1331
 
1332
- #: includes/options_helptexts.php:132
1333
- msgid "center"
1334
  msgstr ""
1335
 
1336
- #: includes/options_helptexts.php:132
1337
- msgid "right"
1338
  msgstr ""
1339
 
1340
- #: includes/options_helptexts.php:133
 
1341
  msgid ""
1342
- "This option specifies the align of the RSS feed link in the event list."
 
1343
  msgstr ""
1344
 
1345
- #: includes/options_helptexts.php:137
1346
- msgid "Feed link text"
1347
  msgstr ""
1348
 
1349
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1350
  msgid ""
1351
- "This option specifies the caption of the RSS feed link in the event list."
 
1352
  msgstr ""
1353
 
1354
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1355
  msgid ""
1356
- "Insert an empty text to hide any text if you only want to show the rss "
1357
- "image."
1358
  msgstr ""
1359
 
1360
- #: includes/options_helptexts.php:143
1361
- msgid "Feed link image"
1362
  msgstr ""
1363
 
1364
- #: includes/options_helptexts.php:144
1365
- msgid "Show rss image in feed link"
1366
  msgstr ""
1367
 
1368
- #: includes/options_helptexts.php:145
 
 
 
 
 
1369
  msgid ""
1370
- "This option specifies if the an image should be dispayed in the feed link in"
1371
- " front of the text."
1372
  msgstr ""
1373
 
1374
- #: includes/options_helptexts.php:151
1375
  msgid "Event Category handling"
1376
  msgstr ""
1377
 
1378
- #: includes/options_helptexts.php:152
1379
  msgid "Use Post Categories"
1380
  msgstr ""
1381
 
1382
- #: includes/options_helptexts.php:153
1383
  msgid ""
1384
  "Do not maintain seperate categories for the events, and use the existing "
1385
  "post categories instead."
1386
  msgstr ""
1387
 
1388
- #: includes/options_helptexts.php:154
1389
  msgid "Attention"
1390
  msgstr ""
1391
 
1392
- #: includes/options_helptexts.php:155
1393
  msgid ""
1394
  "This option cannot be changed directly, but you can go to the Event Category"
1395
  " switching page from here."
@@ -1515,7 +1532,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:109
1519
  msgid "number"
1520
  msgstr ""
1521
 
@@ -1744,7 +1761,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:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,38 +1788,40 @@ msgstr ""
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"
1801
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1829,7 @@ msgid ""
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,23 +1838,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1839
  #: includes/widget_helptexts.php:10
1840
  msgid "This option defines the displayed title for the widget."
1841
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Configuraciones del Listado de Eventos"
34
 
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
55
  msgid "General"
56
  msgstr ""
57
 
559
  msgstr ""
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
563
  msgid "Time"
564
  msgstr ""
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
568
+ #: includes/options_helptexts.php:74
569
  msgid "Location"
570
  msgstr ""
571
 
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-settings.php:73
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:85
713
  msgid "Frontend Settings"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:86
717
  msgid "Admin Page Settings"
718
  msgstr ""
719
 
720
+ #: admin/includes/admin-settings.php:87
721
  msgid "Feed Settings"
722
  msgstr ""
723
 
724
+ #: admin/includes/admin-settings.php:88
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
976
  msgid "All Dates"
977
  msgstr ""
978
 
979
+ #: includes/options_helptexts.php:11
980
  msgid "CSV File to import"
981
  msgstr ""
982
 
983
+ #: includes/options_helptexts.php:13
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr ""
986
 
987
+ #: includes/options_helptexts.php:18
988
  msgid "Used date format"
989
  msgstr ""
990
 
991
+ #: includes/options_helptexts.php:21
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
+ #: includes/options_helptexts.php:22
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
+ #: includes/options_helptexts.php:24
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:25
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:26
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:28
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
+ #: includes/options_helptexts.php:29
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
+ #: includes/options_helptexts.php:30
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:39
1033
  msgid "Text for no events"
1034
  msgstr ""
1035
 
1036
+ #: includes/options_helptexts.php:41
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
+ #: includes/options_helptexts.php:46
1043
  msgid "Multiday filter range"
1044
  msgstr ""
1045
 
1046
+ #: includes/options_helptexts.php:47
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
+ #: includes/options_helptexts.php:49
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
+ #: includes/options_helptexts.php:50
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
+ #: includes/options_helptexts.php:51
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
+ #: includes/options_helptexts.php:56
1069
  msgid "Date display"
1070
  msgstr ""
1071
 
1072
+ #: includes/options_helptexts.php:57
1073
  msgid "Show the date only once per day"
1074
  msgstr ""
1075
 
1076
+ #: includes/options_helptexts.php:59
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
+ #: includes/options_helptexts.php:60
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
+ #: includes/options_helptexts.php:65
1089
  msgid "HTML tags"
1090
  msgstr ""
1091
 
1092
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
+ #: includes/options_helptexts.php:79
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
+ #: includes/options_helptexts.php:80
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
+ #: includes/options_helptexts.php:82
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
+ #: includes/options_helptexts.php:83
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
+ #: includes/options_helptexts.php:89
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
+ #: includes/options_helptexts.php:90
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
+ #: includes/options_helptexts.php:95
1136
  msgid "Text for \"Show content\""
1137
  msgstr ""
1138
 
1139
+ #: includes/options_helptexts.php:96
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
+ #: includes/options_helptexts.php:101
1146
  msgid "Text for \"Hide content\""
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:102
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
+ #: includes/options_helptexts.php:107
1156
  msgid "Disable CSS file"
1157
  msgstr ""
1158
 
1159
+ #: includes/options_helptexts.php:108
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr ""
1163
 
1164
+ #: includes/options_helptexts.php:110
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
+ #: includes/options_helptexts.php:111
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
+ #: includes/options_helptexts.php:117
1176
  msgid "Date format in edit form"
1177
  msgstr ""
1178
 
1179
+ #: includes/options_helptexts.php:119
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
+ #: includes/options_helptexts.php:120
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
+ #: includes/options_helptexts.php:121
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
+ #: includes/options_helptexts.php:127
1196
  msgid "Enable RSS feed"
1197
  msgstr ""
1198
 
1199
+ #: includes/options_helptexts.php:128
1200
+ msgid "Enable support for the event RSS feed"
1201
  msgstr ""
1202
 
1203
+ #: includes/options_helptexts.php:130
1204
+ msgid ""
1205
+ "This option activates the RSS feed for the events and adds a feed link in "
1206
+ "the html head."
1207
  msgstr ""
1208
 
1209
+ #: includes/options_helptexts.php:131
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
+ #: includes/options_helptexts.php:136
1216
+ msgid "Enable iCal feed"
1217
  msgstr ""
1218
 
1219
+ #: includes/options_helptexts.php:137
1220
+ msgid "Enable support for the event iCal feed"
 
1221
  msgstr ""
1222
 
1223
+ #: includes/options_helptexts.php:139
1224
+ msgid "This option activates the iCal feed for events."
 
 
 
1225
  msgstr ""
1226
 
1227
+ #: includes/options_helptexts.php:140
1228
+ msgid ""
1229
+ "You have to enable this option if you want to use one of the iCal features."
1230
  msgstr ""
1231
 
1232
+ #: includes/options_helptexts.php:145
1233
+ msgid "Position of the RSS feed link"
 
1234
  msgstr ""
1235
 
1236
+ #: includes/options_helptexts.php:146
1237
+ msgid "at the top (above the navigation bar)"
 
 
1238
  msgstr ""
1239
 
1240
+ #: includes/options_helptexts.php:146
1241
+ msgid "between navigation bar and events"
1242
+ msgstr ""
1243
 
1244
+ #: includes/options_helptexts.php:146
1245
+ msgid "at the bottom"
1246
  msgstr ""
1247
 
1248
+ #: includes/options_helptexts.php:147
1249
  msgid ""
1250
+ "This option specifies the position of the RSS feed link in the event list."
1251
  msgstr ""
1252
 
1253
+ #: includes/options_helptexts.php:152
1254
+ msgid "Align of the RSS feed link"
1255
  msgstr ""
1256
 
1257
+ #: includes/options_helptexts.php:153
1258
+ msgid "left"
1259
  msgstr ""
1260
 
1261
+ #: includes/options_helptexts.php:153
1262
+ msgid "center"
1263
  msgstr ""
1264
 
1265
+ #: includes/options_helptexts.php:153
1266
+ msgid "right"
1267
  msgstr ""
1268
 
1269
+ #: includes/options_helptexts.php:154
1270
+ msgid ""
1271
+ "This option specifies the align of the RSS feed link in the event list."
1272
  msgstr ""
1273
 
1274
+ #: includes/options_helptexts.php:159
1275
+ msgid "RSS feed name"
 
 
1276
  msgstr ""
1277
 
1278
+ #: includes/options_helptexts.php:161
1279
  #, php-format
1280
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1281
  msgstr ""
1282
 
1283
+ #: includes/options_helptexts.php:162
1284
  #, php-format
1285
+ msgid ""
1286
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1287
+ "enabled)."
1288
  msgstr ""
1289
 
1290
+ #: includes/options_helptexts.php:167
1291
+ msgid "RSS feed Description"
1292
  msgstr ""
1293
 
1294
+ #: includes/options_helptexts.php:169
1295
+ #, php-format
1296
+ msgid "This options set the RSS feed description. The default value is %1$s."
1297
  msgstr ""
1298
 
1299
+ #: includes/options_helptexts.php:170
1300
+ msgid ""
1301
+ "This description will be used in the title for the feed link in the html "
1302
+ "head and for the description in the feed itself."
1303
  msgstr ""
1304
 
1305
+ #: includes/options_helptexts.php:175
1306
+ msgid "RSS feed events"
1307
  msgstr ""
1308
 
1309
+ #: includes/options_helptexts.php:176
1310
+ msgid "Only show upcoming events in the RSS feed"
 
1311
  msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:178
 
 
1314
  msgid ""
1315
+ "If this option is enabled only the upcoming events are listed in the RSS "
1316
+ "feed."
1317
  msgstr ""
1318
 
1319
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1320
+ msgid "If disabled, all events (upcoming and past) will be listed."
1321
  msgstr ""
1322
 
1323
+ #: includes/options_helptexts.php:184
1324
+ msgid "RSS link text"
1325
  msgstr ""
1326
 
1327
+ #: includes/options_helptexts.php:186
1328
+ msgid "This option sets the caption of the RSS feed link in the event list."
1329
  msgstr ""
1330
 
1331
+ #: includes/options_helptexts.php:187
1332
+ msgid "Use an empty text to only show the rss image."
1333
  msgstr ""
1334
 
1335
+ #: includes/options_helptexts.php:188
1336
+ #, php-format
1337
  msgid ""
1338
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1339
+ " RSS feed link."
1340
  msgstr ""
1341
 
1342
+ #: includes/options_helptexts.php:193
1343
+ msgid "iCal feed name"
1344
  msgstr ""
1345
 
1346
+ #: includes/options_helptexts.php:195
1347
+ #, php-format
1348
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1349
+ msgstr ""
1350
+
1351
+ #: includes/options_helptexts.php:196
1352
+ #, php-format
1353
  msgid ""
1354
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1355
+ "permalinks enabled)."
1356
  msgstr ""
1357
 
1358
+ #: includes/options_helptexts.php:201
1359
+ msgid "iCal feed events"
1360
+ msgstr ""
1361
+
1362
+ #: includes/options_helptexts.php:202
1363
+ msgid "Only show upcoming events in the iCal feed"
1364
+ msgstr ""
1365
+
1366
+ #: includes/options_helptexts.php:204
1367
  msgid ""
1368
+ "If this option is enabled only the upcoming events are listed in the iCal "
1369
+ "file."
1370
  msgstr ""
1371
 
1372
+ #: includes/options_helptexts.php:210
1373
+ msgid "iCal link text"
1374
  msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:212
1377
+ msgid "This option sets the iCal link text in the event list."
1378
  msgstr ""
1379
 
1380
+ #: includes/options_helptexts.php:213
1381
+ msgid "Use an empty text to only show the iCal image."
1382
+ msgstr ""
1383
+
1384
+ #: includes/options_helptexts.php:214
1385
+ #, php-format
1386
  msgid ""
1387
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1388
+ " iCal feed link."
1389
  msgstr ""
1390
 
1391
+ #: includes/options_helptexts.php:221
1392
  msgid "Event Category handling"
1393
  msgstr ""
1394
 
1395
+ #: includes/options_helptexts.php:222
1396
  msgid "Use Post Categories"
1397
  msgstr ""
1398
 
1399
+ #: includes/options_helptexts.php:224
1400
  msgid ""
1401
  "Do not maintain seperate categories for the events, and use the existing "
1402
  "post categories instead."
1403
  msgstr ""
1404
 
1405
+ #: includes/options_helptexts.php:225
1406
  msgid "Attention"
1407
  msgstr ""
1408
 
1409
+ #: includes/options_helptexts.php:226
1410
  msgid ""
1411
  "This option cannot be changed directly, but you can go to the Event Category"
1412
  " switching page from here."
1532
  #: includes/sc_event-list_helptexts.php:33
1533
  #: includes/sc_event-list_helptexts.php:74
1534
  #: includes/sc_event-list_helptexts.php:89
1535
+ #: includes/sc_event-list_helptexts.php:111
1536
  msgid "number"
1537
  msgstr ""
1538
 
1761
 
1762
  #: includes/sc_event-list_helptexts.php:77
1763
  #: includes/sc_event-list_helptexts.php:92
1764
+ #: includes/sc_event-list_helptexts.php:114
1765
  msgid "This attribute has no influence if only a single event is shown."
1766
  msgstr ""
1767
 
1788
 
1789
  #: includes/sc_event-list_helptexts.php:100
1790
  msgid ""
1791
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1792
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1793
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1794
  msgstr ""
1795
 
1796
  #: includes/sc_event-list_helptexts.php:105
1797
  msgid ""
1798
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1799
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1801
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:112
1806
  msgid ""
1807
  "This attribute specifies if the content should be truncate to the given "
1808
  "number of characters in the event list."
1809
  msgstr ""
1810
 
1811
+ #: includes/sc_event-list_helptexts.php:113
1812
  #, php-format
1813
  msgid "With the standard value %1$s the full text is displayed."
1814
  msgstr ""
1815
 
1816
+ #: includes/sc_event-list_helptexts.php:117
1817
  msgid ""
1818
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1819
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1820
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1821
  "\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."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:123
1825
  msgid ""
1826
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1827
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1829
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1830
  msgstr ""
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:129
1833
  msgid ""
1834
  "This attribute specifies if a rss feed link should be added.<br />\n"
1835
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1838
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1839
  msgstr ""
1840
 
1841
+ #: includes/sc_event-list_helptexts.php:136
1842
+ msgid ""
1843
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1844
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1845
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1846
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1847
+ msgstr ""
1848
+
1849
+ #: includes/sc_event-list_helptexts.php:142
1850
  msgid ""
1851
  "This attribute specifies the page or post url for event links.<br />\n"
1852
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1853
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1854
  msgstr ""
1855
 
1856
+ #: includes/sc_event-list_helptexts.php:149
1857
  msgid ""
1858
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1859
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1860
  msgstr ""
1861
 
1862
+ #: includes/sc_event-list.php:145
1863
  msgid "Event Information:"
1864
  msgstr "Información del evento:"
1865
 
1866
+ #: includes/sc_event-list.php:391
1867
+ msgid "Link to RSS feed"
1868
+ msgstr ""
1869
+
1870
+ #: includes/sc_event-list.php:399
1871
+ msgid "Link to iCal feed"
1872
+ msgstr ""
1873
+
1874
  #: includes/widget_helptexts.php:10
1875
  msgid "This option defines the displayed title for the widget."
1876
  msgstr ""
languages/event-list-es_ES.mo CHANGED
Binary file
languages/event-list-es_ES.po CHANGED
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
- "POT-Creation-Date: 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"
@@ -27,7 +27,7 @@ msgstr ""
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
 
@@ -50,7 +50,7 @@ msgid_plural "%s Events"
50
  msgstr[0] ""
51
  msgstr[1] ""
52
 
53
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
54
  msgid "General"
55
  msgstr "General"
56
 
@@ -558,13 +558,13 @@ msgid "End Date"
558
  msgstr "Fecha Final"
559
 
560
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
561
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
562
  msgid "Time"
563
  msgstr "Hora"
564
 
565
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
566
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
567
- #: includes/options_helptexts.php:58
568
  msgid "Location"
569
  msgstr "Ubicación"
570
 
@@ -704,23 +704,23 @@ msgstr ""
704
  msgid "Event draft updated."
705
  msgstr ""
706
 
707
- #: admin/includes/admin-settings.php:71
708
  msgid "Go to Event Category switching page"
709
  msgstr ""
710
 
711
- #: admin/includes/admin-settings.php:83
712
  msgid "Frontend Settings"
713
  msgstr "Configuración de interfaz"
714
 
715
- #: admin/includes/admin-settings.php:84
716
  msgid "Admin Page Settings"
717
  msgstr "Configuración de página de administrador"
718
 
719
- #: admin/includes/admin-settings.php:85
720
  msgid "Feed Settings"
721
  msgstr "Configuración Conectores"
722
 
723
- #: admin/includes/admin-settings.php:86
724
  msgid "Category Taxonomy"
725
  msgstr ""
726
 
@@ -975,146 +975,146 @@ msgstr "Todos"
975
  msgid "All Dates"
976
  msgstr ""
977
 
978
- #: includes/options_helptexts.php:10
979
  msgid "CSV File to import"
980
  msgstr "Importar vía archivo CSV"
981
 
982
- #: includes/options_helptexts.php:12
983
  msgid "Please select the file which contains the event data in CSV format."
984
  msgstr ""
985
 
986
- #: includes/options_helptexts.php:15
987
  msgid "Used date format"
988
  msgstr "Formato de Fecha utilizado"
989
 
990
- #: includes/options_helptexts.php:17
991
  msgid ""
992
  "With this option the given date format for event start and end date in the "
993
  "CSV file can be specified."
994
  msgstr ""
995
 
996
- #: includes/options_helptexts.php:18
997
  #, php-format
998
  msgid ""
999
  "You can use the php date format options given in %1$s, the most important "
1000
  "ones are:"
1001
  msgstr ""
1002
 
1003
- #: includes/options_helptexts.php:20
1004
  msgid "full year representation, with 4 digits"
1005
  msgstr ""
1006
 
1007
- #: includes/options_helptexts.php:21
1008
  msgid "numeric representation of a month, with leading zeros"
1009
  msgstr ""
1010
 
1011
- #: includes/options_helptexts.php:22
1012
  msgid "day of the month, 2 digits with leading zeros"
1013
  msgstr ""
1014
 
1015
- #: includes/options_helptexts.php:24
1016
  msgid ""
1017
  "If the date format in the CSV file does not correspond to the given format, "
1018
  "the import script tries to recognize the date format by itself."
1019
  msgstr ""
1020
 
1021
- #: includes/options_helptexts.php:25
1022
  msgid ""
1023
  "But this can cause problems or result in wrong dates, so it is recommended "
1024
  "to specify the correct date format here."
1025
  msgstr ""
1026
 
1027
- #: includes/options_helptexts.php:26
1028
  msgid "Examples"
1029
  msgstr ""
1030
 
1031
- #: includes/options_helptexts.php:33
1032
  msgid "Text for no events"
1033
  msgstr "Texto para ningún evento"
1034
 
1035
- #: includes/options_helptexts.php:35
1036
  msgid ""
1037
  "This option defines the displayed text when no events are available for the "
1038
  "selected view."
1039
  msgstr ""
1040
 
1041
- #: includes/options_helptexts.php:38
1042
  msgid "Multiday filter range"
1043
  msgstr ""
1044
 
1045
- #: includes/options_helptexts.php:39
1046
  msgid "Use the complete event range in the date filter"
1047
  msgstr ""
1048
 
1049
- #: includes/options_helptexts.php:40
1050
  msgid ""
1051
  "This option defines if the complete range of a multiday event shall be "
1052
  "considered in the date filter."
1053
  msgstr ""
1054
 
1055
- #: includes/options_helptexts.php:41
1056
  msgid ""
1057
  "If disabled, only the start day of an event is considered in the filter."
1058
  msgstr ""
1059
 
1060
- #: includes/options_helptexts.php:42
1061
  msgid ""
1062
  "For an example multiday event which started yesterday and ends tomorrow this"
1063
  " means, that it is displayed in umcoming dates when this option is enabled, "
1064
  "but it is hidden when the option is disabled."
1065
  msgstr ""
1066
 
1067
- #: includes/options_helptexts.php:45
1068
  msgid "Date display"
1069
  msgstr "Indicación de la fecha"
1070
 
1071
- #: includes/options_helptexts.php:46
1072
  msgid "Show the date only once per day"
1073
  msgstr ""
1074
 
1075
- #: includes/options_helptexts.php:47
1076
  msgid ""
1077
  "With this option enabled the date is only displayed once per day if more "
1078
  "than one event is available on the same day."
1079
  msgstr ""
1080
 
1081
- #: includes/options_helptexts.php:48
1082
  msgid ""
1083
  "If enabled, the events are ordered in a different way (end date before start"
1084
  " time) to allow using the same date for as much events as possible."
1085
  msgstr ""
1086
 
1087
- #: includes/options_helptexts.php:51
1088
  msgid "HTML tags"
1089
  msgstr "Etiquetas HTML"
1090
 
1091
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1092
  #, php-format
1093
  msgid "Allow HTML tags in the event field \"%1$s\""
1094
  msgstr ""
1095
 
1096
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1097
  #, php-format
1098
  msgid ""
1099
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1100
  msgstr ""
1101
 
1102
- #: includes/options_helptexts.php:61
1103
  msgid "Preferred language file"
1104
  msgstr ""
1105
 
1106
- #: includes/options_helptexts.php:62
1107
  msgid "Load translations from general language directory first"
1108
  msgstr ""
1109
 
1110
- #: includes/options_helptexts.php:63
1111
  #, php-format
1112
  msgid ""
1113
  "The default is to load the %1$s translation file from the plugin language "
1114
  "directory first (%2$s)."
1115
  msgstr ""
1116
 
1117
- #: includes/options_helptexts.php:64
1118
  #, php-format
1119
  msgid ""
1120
  "If you want to load your own language file from the general language "
@@ -1122,273 +1122,290 @@ msgid ""
1122
  "language directory, you have to enable this option."
1123
  msgstr ""
1124
 
1125
- #: includes/options_helptexts.php:68
1126
  msgid "Events permalink slug"
1127
  msgstr ""
1128
 
1129
- #: includes/options_helptexts.php:69
1130
  msgid ""
1131
  "With this option the slug for the events permalink URLs can be defined."
1132
  msgstr ""
1133
 
1134
- #: includes/options_helptexts.php:72
1135
  msgid "Text for \"Show content\""
1136
  msgstr ""
1137
 
1138
- #: includes/options_helptexts.php:73
1139
  msgid ""
1140
  "With this option the displayed text for the link to show the event content "
1141
  "can be changed, when collapsing is enabled."
1142
  msgstr ""
1143
 
1144
- #: includes/options_helptexts.php:76
1145
  msgid "Text for \"Hide content\""
1146
  msgstr ""
1147
 
1148
- #: includes/options_helptexts.php:77
1149
  msgid ""
1150
  "With this option the displayed text for the link to hide the event content "
1151
  "can be changed, when collapsing is enabled."
1152
  msgstr ""
1153
 
1154
- #: includes/options_helptexts.php:80
1155
  msgid "Disable CSS file"
1156
  msgstr "Deshabitar CSS"
1157
 
1158
- #: includes/options_helptexts.php:81
1159
  #, php-format
1160
  msgid "Disable the %1$s file."
1161
  msgstr ""
1162
 
1163
- #: includes/options_helptexts.php:82
1164
  #, php-format
1165
  msgid "With this option you can disable the inclusion of the %1$s file."
1166
  msgstr ""
1167
 
1168
- #: includes/options_helptexts.php:83
1169
  msgid ""
1170
  "This normally only make sense if you have css conflicts with your theme and "
1171
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1172
  msgstr ""
1173
 
1174
- #: includes/options_helptexts.php:87
1175
  msgid "Date format in edit form"
1176
  msgstr ""
1177
 
1178
- #: includes/options_helptexts.php:88
1179
  msgid ""
1180
  "This option sets the displayed date format for the event date fields in the "
1181
  "event new / edit form."
1182
  msgstr ""
1183
 
1184
- #: includes/options_helptexts.php:89
1185
  msgid "The default is an empty string to use the Wordpress standard setting."
1186
  msgstr ""
1187
 
1188
- #: includes/options_helptexts.php:90
1189
  #, php-format
1190
  msgid ""
1191
  "All available options to specify the date format can be found %1$shere%2$s."
1192
  msgstr ""
1193
 
1194
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1195
  msgid "Enable RSS feed"
1196
  msgstr ""
1197
 
1198
- #: includes/options_helptexts.php:95
1199
- msgid "Enable support for an event RSS feed"
1200
  msgstr ""
1201
 
1202
- #: includes/options_helptexts.php:96
1203
- msgid "This option activates a RSS feed for the events."
 
 
1204
  msgstr ""
1205
 
1206
- #: includes/options_helptexts.php:97
1207
  msgid ""
1208
  "You have to enable this option if you want to use one of the RSS feed "
1209
  "features."
1210
  msgstr ""
1211
 
1212
- #: includes/options_helptexts.php:100
1213
- msgid "Feed name"
1214
  msgstr ""
1215
 
1216
- #: includes/options_helptexts.php:101
1217
- #, php-format
1218
- msgid "This option sets the feed name. The default value is %1$s."
1219
  msgstr ""
1220
 
1221
- #: includes/options_helptexts.php:102
1222
- #, php-format
1223
- msgid ""
1224
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1225
- "enabled)."
1226
  msgstr ""
1227
 
1228
- #: includes/options_helptexts.php:105
1229
- msgid "Feed Description"
 
1230
  msgstr ""
1231
 
1232
- #: includes/options_helptexts.php:106
1233
- #, php-format
1234
- msgid "This options set the feed description. The default value is %1$s."
1235
  msgstr ""
1236
 
1237
- #: includes/options_helptexts.php:107
1238
- msgid ""
1239
- "This description will be used in the title for the feed link in the html "
1240
- "head and for the description in the feed itself."
1241
  msgstr ""
1242
 
1243
- #: includes/options_helptexts.php:110
1244
- msgid "Listed events"
1245
  msgstr ""
1246
 
1247
- #: includes/options_helptexts.php:111
1248
- msgid "Only show upcoming events in feed"
1249
  msgstr ""
1250
 
1251
- #: includes/options_helptexts.php:112
1252
  msgid ""
1253
- "If this option is enabled only the upcoming events are listed in the feed."
1254
  msgstr ""
1255
 
1256
- #: includes/options_helptexts.php:113
1257
- msgid "If disabled all events (upcoming and past) will be listed."
1258
  msgstr ""
1259
 
1260
- #: includes/options_helptexts.php:116
1261
- msgid "Add RSS feed link in head"
1262
  msgstr ""
1263
 
1264
- #: includes/options_helptexts.php:117
1265
- msgid "Add RSS feed link in the html head"
1266
  msgstr ""
1267
 
1268
- #: includes/options_helptexts.php:118
1269
- msgid "This option adds a RSS feed in the html head for the events."
1270
  msgstr ""
1271
 
1272
- #: includes/options_helptexts.php:119
1273
- msgid "There are 2 alternatives to include the RSS feed"
 
1274
  msgstr ""
1275
 
1276
- #: includes/options_helptexts.php:120
1277
- msgid ""
1278
- "The first way is this option to include a link in the html head. This link "
1279
- "will be recognized by browers or feed readers."
1280
  msgstr ""
1281
 
1282
- #: includes/options_helptexts.php:121
1283
  #, php-format
1284
- msgid ""
1285
- "The second way is to include a visible feed link directly in the event list."
1286
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1287
  msgstr ""
1288
 
1289
- #: includes/options_helptexts.php:122
1290
  #, php-format
1291
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1292
  msgstr ""
1293
 
1294
- #: includes/options_helptexts.php:125
1295
- msgid "Position of the RSS feed link"
1296
  msgstr ""
1297
 
1298
- #: includes/options_helptexts.php:126
1299
- msgid "at the top (above the navigation bar)"
 
1300
  msgstr ""
1301
 
1302
- #: includes/options_helptexts.php:126
1303
- msgid "between navigation bar and events"
 
 
1304
  msgstr ""
1305
 
1306
- #: includes/options_helptexts.php:126
1307
- msgid "at the bottom"
1308
  msgstr ""
1309
 
1310
- #: includes/options_helptexts.php:127
1311
- msgid ""
1312
- "This option specifies the position of the RSS feed link in the event list."
1313
  msgstr ""
1314
 
1315
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1316
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1317
- #, php-format
1318
  msgid ""
1319
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1320
- " feed link."
1321
  msgstr ""
1322
 
1323
- #: includes/options_helptexts.php:131
1324
- msgid "Align of the RSS feed link"
1325
  msgstr ""
1326
 
1327
- #: includes/options_helptexts.php:132
1328
- msgid "left"
1329
  msgstr ""
1330
 
1331
- #: includes/options_helptexts.php:132
1332
- msgid "center"
1333
  msgstr ""
1334
 
1335
- #: includes/options_helptexts.php:132
1336
- msgid "right"
1337
  msgstr ""
1338
 
1339
- #: includes/options_helptexts.php:133
 
1340
  msgid ""
1341
- "This option specifies the align of the RSS feed link in the event list."
 
1342
  msgstr ""
1343
 
1344
- #: includes/options_helptexts.php:137
1345
- msgid "Feed link text"
1346
  msgstr ""
1347
 
1348
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1349
  msgid ""
1350
- "This option specifies the caption of the RSS feed link in the event list."
 
1351
  msgstr ""
1352
 
1353
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1354
  msgid ""
1355
- "Insert an empty text to hide any text if you only want to show the rss "
1356
- "image."
1357
  msgstr ""
1358
 
1359
- #: includes/options_helptexts.php:143
1360
- msgid "Feed link image"
1361
  msgstr ""
1362
 
1363
- #: includes/options_helptexts.php:144
1364
- msgid "Show rss image in feed link"
1365
  msgstr ""
1366
 
1367
- #: includes/options_helptexts.php:145
 
 
 
 
 
1368
  msgid ""
1369
- "This option specifies if the an image should be dispayed in the feed link in"
1370
- " front of the text."
1371
  msgstr ""
1372
 
1373
- #: includes/options_helptexts.php:151
1374
  msgid "Event Category handling"
1375
  msgstr ""
1376
 
1377
- #: includes/options_helptexts.php:152
1378
  msgid "Use Post Categories"
1379
  msgstr ""
1380
 
1381
- #: includes/options_helptexts.php:153
1382
  msgid ""
1383
  "Do not maintain seperate categories for the events, and use the existing "
1384
  "post categories instead."
1385
  msgstr ""
1386
 
1387
- #: includes/options_helptexts.php:154
1388
  msgid "Attention"
1389
  msgstr "Atención"
1390
 
1391
- #: includes/options_helptexts.php:155
1392
  msgid ""
1393
  "This option cannot be changed directly, but you can go to the Event Category"
1394
  " switching page from here."
@@ -1514,7 +1531,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:109
1518
  msgid "number"
1519
  msgstr ""
1520
 
@@ -1743,7 +1760,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:112
1747
  msgid "This attribute has no influence if only a single event is shown."
1748
  msgstr ""
1749
 
@@ -1770,38 +1787,40 @@ msgstr ""
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"
1800
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1828,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: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,23 +1837,39 @@ 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: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
 
 
 
 
 
 
 
 
 
1838
  #: includes/widget_helptexts.php:10
1839
  msgid "This option defines the displayed title for the widget."
1840
  msgstr ""
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-11-16 17:29+0100\n"
11
+ "PO-Revision-Date: 2020-11-16 16:29+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"
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
31
  msgid "Event List Settings"
32
  msgstr "Ajustes de eventos"
33
 
50
  msgstr[0] ""
51
  msgstr[1] ""
52
 
53
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
54
  msgid "General"
55
  msgstr "General"
56
 
558
  msgstr "Fecha Final"
559
 
560
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
561
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
562
  msgid "Time"
563
  msgstr "Hora"
564
 
565
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
566
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
567
+ #: includes/options_helptexts.php:74
568
  msgid "Location"
569
  msgstr "Ubicación"
570
 
704
  msgid "Event draft updated."
705
  msgstr ""
706
 
707
+ #: admin/includes/admin-settings.php:73
708
  msgid "Go to Event Category switching page"
709
  msgstr ""
710
 
711
+ #: admin/includes/admin-settings.php:85
712
  msgid "Frontend Settings"
713
  msgstr "Configuración de interfaz"
714
 
715
+ #: admin/includes/admin-settings.php:86
716
  msgid "Admin Page Settings"
717
  msgstr "Configuración de página de administrador"
718
 
719
+ #: admin/includes/admin-settings.php:87
720
  msgid "Feed Settings"
721
  msgstr "Configuración Conectores"
722
 
723
+ #: admin/includes/admin-settings.php:88
724
  msgid "Category Taxonomy"
725
  msgstr ""
726
 
975
  msgid "All Dates"
976
  msgstr ""
977
 
978
+ #: includes/options_helptexts.php:11
979
  msgid "CSV File to import"
980
  msgstr "Importar vía archivo CSV"
981
 
982
+ #: includes/options_helptexts.php:13
983
  msgid "Please select the file which contains the event data in CSV format."
984
  msgstr ""
985
 
986
+ #: includes/options_helptexts.php:18
987
  msgid "Used date format"
988
  msgstr "Formato de Fecha utilizado"
989
 
990
+ #: includes/options_helptexts.php:21
991
  msgid ""
992
  "With this option the given date format for event start and end date in the "
993
  "CSV file can be specified."
994
  msgstr ""
995
 
996
+ #: includes/options_helptexts.php:22
997
  #, php-format
998
  msgid ""
999
  "You can use the php date format options given in %1$s, the most important "
1000
  "ones are:"
1001
  msgstr ""
1002
 
1003
+ #: includes/options_helptexts.php:24
1004
  msgid "full year representation, with 4 digits"
1005
  msgstr ""
1006
 
1007
+ #: includes/options_helptexts.php:25
1008
  msgid "numeric representation of a month, with leading zeros"
1009
  msgstr ""
1010
 
1011
+ #: includes/options_helptexts.php:26
1012
  msgid "day of the month, 2 digits with leading zeros"
1013
  msgstr ""
1014
 
1015
+ #: includes/options_helptexts.php:28
1016
  msgid ""
1017
  "If the date format in the CSV file does not correspond to the given format, "
1018
  "the import script tries to recognize the date format by itself."
1019
  msgstr ""
1020
 
1021
+ #: includes/options_helptexts.php:29
1022
  msgid ""
1023
  "But this can cause problems or result in wrong dates, so it is recommended "
1024
  "to specify the correct date format here."
1025
  msgstr ""
1026
 
1027
+ #: includes/options_helptexts.php:30
1028
  msgid "Examples"
1029
  msgstr ""
1030
 
1031
+ #: includes/options_helptexts.php:39
1032
  msgid "Text for no events"
1033
  msgstr "Texto para ningún evento"
1034
 
1035
+ #: includes/options_helptexts.php:41
1036
  msgid ""
1037
  "This option defines the displayed text when no events are available for the "
1038
  "selected view."
1039
  msgstr ""
1040
 
1041
+ #: includes/options_helptexts.php:46
1042
  msgid "Multiday filter range"
1043
  msgstr ""
1044
 
1045
+ #: includes/options_helptexts.php:47
1046
  msgid "Use the complete event range in the date filter"
1047
  msgstr ""
1048
 
1049
+ #: includes/options_helptexts.php:49
1050
  msgid ""
1051
  "This option defines if the complete range of a multiday event shall be "
1052
  "considered in the date filter."
1053
  msgstr ""
1054
 
1055
+ #: includes/options_helptexts.php:50
1056
  msgid ""
1057
  "If disabled, only the start day of an event is considered in the filter."
1058
  msgstr ""
1059
 
1060
+ #: includes/options_helptexts.php:51
1061
  msgid ""
1062
  "For an example multiday event which started yesterday and ends tomorrow this"
1063
  " means, that it is displayed in umcoming dates when this option is enabled, "
1064
  "but it is hidden when the option is disabled."
1065
  msgstr ""
1066
 
1067
+ #: includes/options_helptexts.php:56
1068
  msgid "Date display"
1069
  msgstr "Indicación de la fecha"
1070
 
1071
+ #: includes/options_helptexts.php:57
1072
  msgid "Show the date only once per day"
1073
  msgstr ""
1074
 
1075
+ #: includes/options_helptexts.php:59
1076
  msgid ""
1077
  "With this option enabled the date is only displayed once per day if more "
1078
  "than one event is available on the same day."
1079
  msgstr ""
1080
 
1081
+ #: includes/options_helptexts.php:60
1082
  msgid ""
1083
  "If enabled, the events are ordered in a different way (end date before start"
1084
  " time) to allow using the same date for as much events as possible."
1085
  msgstr ""
1086
 
1087
+ #: includes/options_helptexts.php:65
1088
  msgid "HTML tags"
1089
  msgstr "Etiquetas HTML"
1090
 
1091
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1092
  #, php-format
1093
  msgid "Allow HTML tags in the event field \"%1$s\""
1094
  msgstr ""
1095
 
1096
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1097
  #, php-format
1098
  msgid ""
1099
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1100
  msgstr ""
1101
 
1102
+ #: includes/options_helptexts.php:79
1103
  msgid "Preferred language file"
1104
  msgstr ""
1105
 
1106
+ #: includes/options_helptexts.php:80
1107
  msgid "Load translations from general language directory first"
1108
  msgstr ""
1109
 
1110
+ #: includes/options_helptexts.php:82
1111
  #, php-format
1112
  msgid ""
1113
  "The default is to load the %1$s translation file from the plugin language "
1114
  "directory first (%2$s)."
1115
  msgstr ""
1116
 
1117
+ #: includes/options_helptexts.php:83
1118
  #, php-format
1119
  msgid ""
1120
  "If you want to load your own language file from the general language "
1122
  "language directory, you have to enable this option."
1123
  msgstr ""
1124
 
1125
+ #: includes/options_helptexts.php:89
1126
  msgid "Events permalink slug"
1127
  msgstr ""
1128
 
1129
+ #: includes/options_helptexts.php:90
1130
  msgid ""
1131
  "With this option the slug for the events permalink URLs can be defined."
1132
  msgstr ""
1133
 
1134
+ #: includes/options_helptexts.php:95
1135
  msgid "Text for \"Show content\""
1136
  msgstr ""
1137
 
1138
+ #: includes/options_helptexts.php:96
1139
  msgid ""
1140
  "With this option the displayed text for the link to show the event content "
1141
  "can be changed, when collapsing is enabled."
1142
  msgstr ""
1143
 
1144
+ #: includes/options_helptexts.php:101
1145
  msgid "Text for \"Hide content\""
1146
  msgstr ""
1147
 
1148
+ #: includes/options_helptexts.php:102
1149
  msgid ""
1150
  "With this option the displayed text for the link to hide the event content "
1151
  "can be changed, when collapsing is enabled."
1152
  msgstr ""
1153
 
1154
+ #: includes/options_helptexts.php:107
1155
  msgid "Disable CSS file"
1156
  msgstr "Deshabitar CSS"
1157
 
1158
+ #: includes/options_helptexts.php:108
1159
  #, php-format
1160
  msgid "Disable the %1$s file."
1161
  msgstr ""
1162
 
1163
+ #: includes/options_helptexts.php:110
1164
  #, php-format
1165
  msgid "With this option you can disable the inclusion of the %1$s file."
1166
  msgstr ""
1167
 
1168
+ #: includes/options_helptexts.php:111
1169
  msgid ""
1170
  "This normally only make sense if you have css conflicts with your theme and "
1171
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1172
  msgstr ""
1173
 
1174
+ #: includes/options_helptexts.php:117
1175
  msgid "Date format in edit form"
1176
  msgstr ""
1177
 
1178
+ #: includes/options_helptexts.php:119
1179
  msgid ""
1180
  "This option sets the displayed date format for the event date fields in the "
1181
  "event new / edit form."
1182
  msgstr ""
1183
 
1184
+ #: includes/options_helptexts.php:120
1185
  msgid "The default is an empty string to use the Wordpress standard setting."
1186
  msgstr ""
1187
 
1188
+ #: includes/options_helptexts.php:121
1189
  #, php-format
1190
  msgid ""
1191
  "All available options to specify the date format can be found %1$shere%2$s."
1192
  msgstr ""
1193
 
1194
+ #: includes/options_helptexts.php:127
1195
  msgid "Enable RSS feed"
1196
  msgstr ""
1197
 
1198
+ #: includes/options_helptexts.php:128
1199
+ msgid "Enable support for the event RSS feed"
1200
  msgstr ""
1201
 
1202
+ #: includes/options_helptexts.php:130
1203
+ msgid ""
1204
+ "This option activates the RSS feed for the events and adds a feed link in "
1205
+ "the html head."
1206
  msgstr ""
1207
 
1208
+ #: includes/options_helptexts.php:131
1209
  msgid ""
1210
  "You have to enable this option if you want to use one of the RSS feed "
1211
  "features."
1212
  msgstr ""
1213
 
1214
+ #: includes/options_helptexts.php:136
1215
+ msgid "Enable iCal feed"
1216
  msgstr ""
1217
 
1218
+ #: includes/options_helptexts.php:137
1219
+ msgid "Enable support for the event iCal feed"
 
1220
  msgstr ""
1221
 
1222
+ #: includes/options_helptexts.php:139
1223
+ msgid "This option activates the iCal feed for events."
 
 
 
1224
  msgstr ""
1225
 
1226
+ #: includes/options_helptexts.php:140
1227
+ msgid ""
1228
+ "You have to enable this option if you want to use one of the iCal features."
1229
  msgstr ""
1230
 
1231
+ #: includes/options_helptexts.php:145
1232
+ msgid "Position of the RSS feed link"
 
1233
  msgstr ""
1234
 
1235
+ #: includes/options_helptexts.php:146
1236
+ msgid "at the top (above the navigation bar)"
 
 
1237
  msgstr ""
1238
 
1239
+ #: includes/options_helptexts.php:146
1240
+ msgid "between navigation bar and events"
1241
  msgstr ""
1242
 
1243
+ #: includes/options_helptexts.php:146
1244
+ msgid "at the bottom"
1245
  msgstr ""
1246
 
1247
+ #: includes/options_helptexts.php:147
1248
  msgid ""
1249
+ "This option specifies the position of the RSS feed link in the event list."
1250
  msgstr ""
1251
 
1252
+ #: includes/options_helptexts.php:152
1253
+ msgid "Align of the RSS feed link"
1254
  msgstr ""
1255
 
1256
+ #: includes/options_helptexts.php:153
1257
+ msgid "left"
1258
  msgstr ""
1259
 
1260
+ #: includes/options_helptexts.php:153
1261
+ msgid "center"
1262
  msgstr ""
1263
 
1264
+ #: includes/options_helptexts.php:153
1265
+ msgid "right"
1266
  msgstr ""
1267
 
1268
+ #: includes/options_helptexts.php:154
1269
+ msgid ""
1270
+ "This option specifies the align of the RSS feed link in the event list."
1271
  msgstr ""
1272
 
1273
+ #: includes/options_helptexts.php:159
1274
+ msgid "RSS feed name"
 
 
1275
  msgstr ""
1276
 
1277
+ #: includes/options_helptexts.php:161
1278
  #, php-format
1279
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1280
  msgstr ""
1281
 
1282
+ #: includes/options_helptexts.php:162
1283
  #, php-format
1284
+ msgid ""
1285
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1286
+ "enabled)."
1287
  msgstr ""
1288
 
1289
+ #: includes/options_helptexts.php:167
1290
+ msgid "RSS feed Description"
1291
  msgstr ""
1292
 
1293
+ #: includes/options_helptexts.php:169
1294
+ #, php-format
1295
+ msgid "This options set the RSS feed description. The default value is %1$s."
1296
  msgstr ""
1297
 
1298
+ #: includes/options_helptexts.php:170
1299
+ msgid ""
1300
+ "This description will be used in the title for the feed link in the html "
1301
+ "head and for the description in the feed itself."
1302
  msgstr ""
1303
 
1304
+ #: includes/options_helptexts.php:175
1305
+ msgid "RSS feed events"
1306
  msgstr ""
1307
 
1308
+ #: includes/options_helptexts.php:176
1309
+ msgid "Only show upcoming events in the RSS feed"
 
1310
  msgstr ""
1311
 
1312
+ #: includes/options_helptexts.php:178
 
 
1313
  msgid ""
1314
+ "If this option is enabled only the upcoming events are listed in the RSS "
1315
+ "feed."
1316
  msgstr ""
1317
 
1318
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1319
+ msgid "If disabled, all events (upcoming and past) will be listed."
1320
  msgstr ""
1321
 
1322
+ #: includes/options_helptexts.php:184
1323
+ msgid "RSS link text"
1324
  msgstr ""
1325
 
1326
+ #: includes/options_helptexts.php:186
1327
+ msgid "This option sets the caption of the RSS feed link in the event list."
1328
  msgstr ""
1329
 
1330
+ #: includes/options_helptexts.php:187
1331
+ msgid "Use an empty text to only show the rss image."
1332
  msgstr ""
1333
 
1334
+ #: includes/options_helptexts.php:188
1335
+ #, php-format
1336
  msgid ""
1337
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1338
+ " RSS feed link."
1339
  msgstr ""
1340
 
1341
+ #: includes/options_helptexts.php:193
1342
+ msgid "iCal feed name"
1343
  msgstr ""
1344
 
1345
+ #: includes/options_helptexts.php:195
1346
+ #, php-format
1347
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1348
+ msgstr ""
1349
+
1350
+ #: includes/options_helptexts.php:196
1351
+ #, php-format
1352
  msgid ""
1353
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1354
+ "permalinks enabled)."
1355
  msgstr ""
1356
 
1357
+ #: includes/options_helptexts.php:201
1358
+ msgid "iCal feed events"
1359
+ msgstr ""
1360
+
1361
+ #: includes/options_helptexts.php:202
1362
+ msgid "Only show upcoming events in the iCal feed"
1363
+ msgstr ""
1364
+
1365
+ #: includes/options_helptexts.php:204
1366
  msgid ""
1367
+ "If this option is enabled only the upcoming events are listed in the iCal "
1368
+ "file."
1369
  msgstr ""
1370
 
1371
+ #: includes/options_helptexts.php:210
1372
+ msgid "iCal link text"
1373
  msgstr ""
1374
 
1375
+ #: includes/options_helptexts.php:212
1376
+ msgid "This option sets the iCal link text in the event list."
1377
  msgstr ""
1378
 
1379
+ #: includes/options_helptexts.php:213
1380
+ msgid "Use an empty text to only show the iCal image."
1381
+ msgstr ""
1382
+
1383
+ #: includes/options_helptexts.php:214
1384
+ #, php-format
1385
  msgid ""
1386
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1387
+ " iCal feed link."
1388
  msgstr ""
1389
 
1390
+ #: includes/options_helptexts.php:221
1391
  msgid "Event Category handling"
1392
  msgstr ""
1393
 
1394
+ #: includes/options_helptexts.php:222
1395
  msgid "Use Post Categories"
1396
  msgstr ""
1397
 
1398
+ #: includes/options_helptexts.php:224
1399
  msgid ""
1400
  "Do not maintain seperate categories for the events, and use the existing "
1401
  "post categories instead."
1402
  msgstr ""
1403
 
1404
+ #: includes/options_helptexts.php:225
1405
  msgid "Attention"
1406
  msgstr "Atención"
1407
 
1408
+ #: includes/options_helptexts.php:226
1409
  msgid ""
1410
  "This option cannot be changed directly, but you can go to the Event Category"
1411
  " switching page from here."
1531
  #: includes/sc_event-list_helptexts.php:33
1532
  #: includes/sc_event-list_helptexts.php:74
1533
  #: includes/sc_event-list_helptexts.php:89
1534
+ #: includes/sc_event-list_helptexts.php:111
1535
  msgid "number"
1536
  msgstr ""
1537
 
1760
 
1761
  #: includes/sc_event-list_helptexts.php:77
1762
  #: includes/sc_event-list_helptexts.php:92
1763
+ #: includes/sc_event-list_helptexts.php:114
1764
  msgid "This attribute has no influence if only a single event is shown."
1765
  msgstr ""
1766
 
1787
 
1788
  #: includes/sc_event-list_helptexts.php:100
1789
  msgid ""
1790
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1791
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1792
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1793
  msgstr ""
1794
 
1795
  #: includes/sc_event-list_helptexts.php:105
1796
  msgid ""
1797
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1798
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1799
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1801
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1802
  msgstr ""
1803
 
1804
+ #: includes/sc_event-list_helptexts.php:112
1805
  msgid ""
1806
  "This attribute specifies if the content should be truncate to the given "
1807
  "number of characters in the event list."
1808
  msgstr ""
1809
 
1810
+ #: includes/sc_event-list_helptexts.php:113
1811
  #, php-format
1812
  msgid "With the standard value %1$s the full text is displayed."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:117
1816
  msgid ""
1817
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1818
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1819
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1820
  "\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."
1821
  msgstr ""
1822
 
1823
+ #: includes/sc_event-list_helptexts.php:123
1824
  msgid ""
1825
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1826
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1828
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1829
  msgstr ""
1830
 
1831
+ #: includes/sc_event-list_helptexts.php:129
1832
  msgid ""
1833
  "This attribute specifies if a rss feed link should be added.<br />\n"
1834
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1837
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1838
  msgstr ""
1839
 
1840
+ #: includes/sc_event-list_helptexts.php:136
1841
+ msgid ""
1842
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1843
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1844
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1845
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1846
+ msgstr ""
1847
+
1848
+ #: includes/sc_event-list_helptexts.php:142
1849
  msgid ""
1850
  "This attribute specifies the page or post url for event links.<br />\n"
1851
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1852
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1853
  msgstr ""
1854
 
1855
+ #: includes/sc_event-list_helptexts.php:149
1856
  msgid ""
1857
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1858
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1859
  msgstr ""
1860
 
1861
+ #: includes/sc_event-list.php:145
1862
  msgid "Event Information:"
1863
  msgstr "Información del evento:"
1864
 
1865
+ #: includes/sc_event-list.php:391
1866
+ msgid "Link to RSS feed"
1867
+ msgstr ""
1868
+
1869
+ #: includes/sc_event-list.php:399
1870
+ msgid "Link to iCal feed"
1871
+ msgstr ""
1872
+
1873
  #: includes/widget_helptexts.php:10
1874
  msgid "This option defines the displayed title for the widget."
1875
  msgstr ""
languages/event-list-et_EE.mo CHANGED
Binary file
languages/event-list-et_EE.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -51,7 +51,7 @@ msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
55
  msgid "General"
56
  msgstr ""
57
 
@@ -559,13 +559,13 @@ msgid "End Date"
559
  msgstr "Lõppkuupäev"
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
563
  msgid "Time"
564
  msgstr "Aeg"
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
568
- #: includes/options_helptexts.php:58
569
  msgid "Location"
570
  msgstr "Koht"
571
 
@@ -705,23 +705,23 @@ msgstr ""
705
  msgid "Event draft updated."
706
  msgstr "Sündmuse visand uuendatud."
707
 
708
- #: admin/includes/admin-settings.php:71
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:83
713
  msgid "Frontend Settings"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:84
717
  msgid "Admin Page Settings"
718
  msgstr ""
719
 
720
- #: admin/includes/admin-settings.php:85
721
  msgid "Feed Settings"
722
  msgstr ""
723
 
724
- #: admin/includes/admin-settings.php:86
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -976,146 +976,146 @@ msgstr "Kõik"
976
  msgid "All Dates"
977
  msgstr "Kõik kuupäevad"
978
 
979
- #: includes/options_helptexts.php:10
980
  msgid "CSV File to import"
981
  msgstr ""
982
 
983
- #: includes/options_helptexts.php:12
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr ""
986
 
987
- #: includes/options_helptexts.php:15
988
  msgid "Used date format"
989
  msgstr "Kasutatud kuupäevavorming"
990
 
991
- #: includes/options_helptexts.php:17
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
- #: includes/options_helptexts.php:18
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
- #: includes/options_helptexts.php:20
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:21
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:22
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:24
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
- #: includes/options_helptexts.php:25
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
- #: includes/options_helptexts.php:26
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:33
1033
  msgid "Text for no events"
1034
  msgstr "Tekst sündmuste puudumisel"
1035
 
1036
- #: includes/options_helptexts.php:35
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
- #: includes/options_helptexts.php:38
1043
  msgid "Multiday filter range"
1044
  msgstr "Mitmepäevase filtri vahemik"
1045
 
1046
- #: includes/options_helptexts.php:39
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
- #: includes/options_helptexts.php:40
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
- #: includes/options_helptexts.php:41
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
- #: includes/options_helptexts.php:42
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
- #: includes/options_helptexts.php:45
1069
  msgid "Date display"
1070
  msgstr "Kuupäeva kuvamine"
1071
 
1072
- #: includes/options_helptexts.php:46
1073
  msgid "Show the date only once per day"
1074
  msgstr "Kuva kuupäeva ainult ühe korra päeva kohta"
1075
 
1076
- #: includes/options_helptexts.php:47
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
- #: includes/options_helptexts.php:48
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
- #: includes/options_helptexts.php:51
1089
  msgid "HTML tags"
1090
  msgstr ""
1091
 
1092
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
- #: includes/options_helptexts.php:61
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
- #: includes/options_helptexts.php:62
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
- #: includes/options_helptexts.php:63
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
- #: includes/options_helptexts.php:64
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
@@ -1123,273 +1123,290 @@ msgid ""
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
- #: includes/options_helptexts.php:68
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
- #: includes/options_helptexts.php:69
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
- #: includes/options_helptexts.php:72
1136
  msgid "Text for \"Show content\""
1137
  msgstr "Tekst \"Näita sisu\" jaoks"
1138
 
1139
- #: includes/options_helptexts.php:73
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
- #: includes/options_helptexts.php:76
1146
  msgid "Text for \"Hide content\""
1147
  msgstr "Tekst \"Peida sisu\" jaoks"
1148
 
1149
- #: includes/options_helptexts.php:77
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
- #: includes/options_helptexts.php:80
1156
  msgid "Disable CSS file"
1157
  msgstr "Keela CSS-fail"
1158
 
1159
- #: includes/options_helptexts.php:81
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr "Keela %1$s fail."
1163
 
1164
- #: includes/options_helptexts.php:82
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
- #: includes/options_helptexts.php:83
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
- #: includes/options_helptexts.php:87
1176
  msgid "Date format in edit form"
1177
  msgstr "Kuupäevavorming muutmisvormis"
1178
 
1179
- #: includes/options_helptexts.php:88
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
- #: includes/options_helptexts.php:89
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
- #: includes/options_helptexts.php:90
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1196
  msgid "Enable RSS feed"
1197
  msgstr "Luba RSS-voog"
1198
 
1199
- #: includes/options_helptexts.php:95
1200
- msgid "Enable support for an event RSS feed"
1201
  msgstr ""
1202
 
1203
- #: includes/options_helptexts.php:96
1204
- msgid "This option activates a RSS feed for the events."
1205
- msgstr "See valik aktiveerib ürituste RSS-voo."
 
 
1206
 
1207
- #: includes/options_helptexts.php:97
1208
  msgid ""
1209
  "You have to enable this option if you want to use one of the RSS feed "
1210
  "features."
1211
  msgstr ""
1212
 
1213
- #: includes/options_helptexts.php:100
1214
- msgid "Feed name"
1215
  msgstr ""
1216
 
1217
- #: includes/options_helptexts.php:101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1218
  #, php-format
1219
- msgid "This option sets the feed name. The default value is %1$s."
1220
  msgstr ""
1221
 
1222
- #: includes/options_helptexts.php:102
1223
  #, php-format
1224
  msgid ""
1225
  "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1226
  "enabled)."
1227
  msgstr ""
1228
 
1229
- #: includes/options_helptexts.php:105
1230
- msgid "Feed Description"
1231
  msgstr ""
1232
 
1233
- #: includes/options_helptexts.php:106
1234
  #, php-format
1235
- msgid "This options set the feed description. The default value is %1$s."
1236
  msgstr ""
1237
 
1238
- #: includes/options_helptexts.php:107
1239
  msgid ""
1240
  "This description will be used in the title for the feed link in the html "
1241
  "head and for the description in the feed itself."
1242
  msgstr ""
1243
 
1244
- #: includes/options_helptexts.php:110
1245
- msgid "Listed events"
1246
- msgstr "Loetletud sündmused"
1247
 
1248
- #: includes/options_helptexts.php:111
1249
- msgid "Only show upcoming events in feed"
1250
- msgstr "Näita ainult eelseisvaid sündmusi sündmustevoos."
1251
 
1252
- #: includes/options_helptexts.php:112
1253
  msgid ""
1254
- "If this option is enabled only the upcoming events are listed in the feed."
1255
- msgstr "Kui see suvand on lubatud, kuvatakse ainult eelolevad sündmused sündmustevoos."
1256
-
1257
- #: includes/options_helptexts.php:113
1258
- msgid "If disabled all events (upcoming and past) will be listed."
1259
- msgstr "Kui see suvand ei ole lubatud, kuvatakse kõik (nii möödunud kui ka eelolevad) sündmused sündmustevoos."
1260
-
1261
- #: includes/options_helptexts.php:116
1262
- msgid "Add RSS feed link in head"
1263
  msgstr ""
1264
 
1265
- #: includes/options_helptexts.php:117
1266
- msgid "Add RSS feed link in the html head"
1267
  msgstr ""
1268
 
1269
- #: includes/options_helptexts.php:118
1270
- msgid "This option adds a RSS feed in the html head for the events."
1271
  msgstr ""
1272
 
1273
- #: includes/options_helptexts.php:119
1274
- msgid "There are 2 alternatives to include the RSS feed"
1275
  msgstr ""
1276
 
1277
- #: includes/options_helptexts.php:120
1278
- msgid ""
1279
- "The first way is this option to include a link in the html head. This link "
1280
- "will be recognized by browers or feed readers."
1281
  msgstr ""
1282
 
1283
- #: includes/options_helptexts.php:121
1284
  #, php-format
1285
  msgid ""
1286
- "The second way is to include a visible feed link directly in the event list."
1287
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1288
  msgstr ""
1289
 
1290
- #: includes/options_helptexts.php:122
1291
- #, php-format
1292
- msgid "This option is only valid if the setting %1$s is enabled."
1293
  msgstr ""
1294
 
1295
- #: includes/options_helptexts.php:125
1296
- msgid "Position of the RSS feed link"
1297
- msgstr "Paiguta RSS-voo link"
1298
-
1299
- #: includes/options_helptexts.php:126
1300
- msgid "at the top (above the navigation bar)"
1301
- msgstr "üles (navigatsiooniriba kohale)"
1302
-
1303
- #: includes/options_helptexts.php:126
1304
- msgid "between navigation bar and events"
1305
- msgstr "navigatsiooniriba ja sündmuste vahele"
1306
-
1307
- #: includes/options_helptexts.php:126
1308
- msgid "at the bottom"
1309
- msgstr "alla"
1310
-
1311
- #: includes/options_helptexts.php:127
1312
- msgid ""
1313
- "This option specifies the position of the RSS feed link in the event list."
1314
- msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel."
1315
 
1316
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1317
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1318
  #, php-format
1319
  msgid ""
1320
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1321
- " feed link."
1322
  msgstr ""
1323
 
1324
- #: includes/options_helptexts.php:131
1325
- msgid "Align of the RSS feed link"
1326
- msgstr "Joonda RSS-voo link"
1327
-
1328
- #: includes/options_helptexts.php:132
1329
- msgid "left"
1330
- msgstr "vasakule"
1331
-
1332
- #: includes/options_helptexts.php:132
1333
- msgid "center"
1334
- msgstr "keskele"
1335
-
1336
- #: includes/options_helptexts.php:132
1337
- msgid "right"
1338
- msgstr "paremale"
1339
-
1340
- #: includes/options_helptexts.php:133
1341
- msgid ""
1342
- "This option specifies the align of the RSS feed link in the event list."
1343
- msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel."
1344
 
1345
- #: includes/options_helptexts.php:137
1346
- msgid "Feed link text"
1347
  msgstr ""
1348
 
1349
- #: includes/options_helptexts.php:138
1350
  msgid ""
1351
- "This option specifies the caption of the RSS feed link in the event list."
 
1352
  msgstr ""
1353
 
1354
- #: includes/options_helptexts.php:139
1355
- msgid ""
1356
- "Insert an empty text to hide any text if you only want to show the rss "
1357
- "image."
1358
  msgstr ""
1359
 
1360
- #: includes/options_helptexts.php:143
1361
- msgid "Feed link image"
1362
  msgstr ""
1363
 
1364
- #: includes/options_helptexts.php:144
1365
- msgid "Show rss image in feed link"
1366
  msgstr ""
1367
 
1368
- #: includes/options_helptexts.php:145
 
1369
  msgid ""
1370
- "This option specifies if the an image should be dispayed in the feed link in"
1371
- " front of the text."
1372
  msgstr ""
1373
 
1374
- #: includes/options_helptexts.php:151
1375
  msgid "Event Category handling"
1376
  msgstr ""
1377
 
1378
- #: includes/options_helptexts.php:152
1379
  msgid "Use Post Categories"
1380
  msgstr "Kasuta postituste kategooriaid"
1381
 
1382
- #: includes/options_helptexts.php:153
1383
  msgid ""
1384
  "Do not maintain seperate categories for the events, and use the existing "
1385
  "post categories instead."
1386
  msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid."
1387
 
1388
- #: includes/options_helptexts.php:154
1389
  msgid "Attention"
1390
  msgstr "Tähelepanu"
1391
 
1392
- #: includes/options_helptexts.php:155
1393
  msgid ""
1394
  "This option cannot be changed directly, but you can go to the Event Category"
1395
  " switching page from here."
@@ -1515,7 +1532,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:109
1519
  msgid "number"
1520
  msgstr "number"
1521
 
@@ -1744,7 +1761,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:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,38 +1788,40 @@ msgstr ""
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"
1801
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1829,7 @@ msgid ""
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,23 +1838,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1839
  #: includes/widget_helptexts.php:10
1840
  msgid "This option defines the displayed title for the widget."
1841
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Sündmuste loendi seaded"
34
 
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
55
  msgid "General"
56
  msgstr ""
57
 
559
  msgstr "Lõppkuupäev"
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
563
  msgid "Time"
564
  msgstr "Aeg"
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
568
+ #: includes/options_helptexts.php:74
569
  msgid "Location"
570
  msgstr "Koht"
571
 
705
  msgid "Event draft updated."
706
  msgstr "Sündmuse visand uuendatud."
707
 
708
+ #: admin/includes/admin-settings.php:73
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:85
713
  msgid "Frontend Settings"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:86
717
  msgid "Admin Page Settings"
718
  msgstr ""
719
 
720
+ #: admin/includes/admin-settings.php:87
721
  msgid "Feed Settings"
722
  msgstr ""
723
 
724
+ #: admin/includes/admin-settings.php:88
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
976
  msgid "All Dates"
977
  msgstr "Kõik kuupäevad"
978
 
979
+ #: includes/options_helptexts.php:11
980
  msgid "CSV File to import"
981
  msgstr ""
982
 
983
+ #: includes/options_helptexts.php:13
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr ""
986
 
987
+ #: includes/options_helptexts.php:18
988
  msgid "Used date format"
989
  msgstr "Kasutatud kuupäevavorming"
990
 
991
+ #: includes/options_helptexts.php:21
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
+ #: includes/options_helptexts.php:22
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
+ #: includes/options_helptexts.php:24
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:25
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:26
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:28
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
+ #: includes/options_helptexts.php:29
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
+ #: includes/options_helptexts.php:30
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:39
1033
  msgid "Text for no events"
1034
  msgstr "Tekst sündmuste puudumisel"
1035
 
1036
+ #: includes/options_helptexts.php:41
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
+ #: includes/options_helptexts.php:46
1043
  msgid "Multiday filter range"
1044
  msgstr "Mitmepäevase filtri vahemik"
1045
 
1046
+ #: includes/options_helptexts.php:47
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
+ #: includes/options_helptexts.php:49
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
+ #: includes/options_helptexts.php:50
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
+ #: includes/options_helptexts.php:51
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
+ #: includes/options_helptexts.php:56
1069
  msgid "Date display"
1070
  msgstr "Kuupäeva kuvamine"
1071
 
1072
+ #: includes/options_helptexts.php:57
1073
  msgid "Show the date only once per day"
1074
  msgstr "Kuva kuupäeva ainult ühe korra päeva kohta"
1075
 
1076
+ #: includes/options_helptexts.php:59
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
+ #: includes/options_helptexts.php:60
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
+ #: includes/options_helptexts.php:65
1089
  msgid "HTML tags"
1090
  msgstr ""
1091
 
1092
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
+ #: includes/options_helptexts.php:79
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
+ #: includes/options_helptexts.php:80
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
+ #: includes/options_helptexts.php:82
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
+ #: includes/options_helptexts.php:83
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
+ #: includes/options_helptexts.php:89
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
+ #: includes/options_helptexts.php:90
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
+ #: includes/options_helptexts.php:95
1136
  msgid "Text for \"Show content\""
1137
  msgstr "Tekst \"Näita sisu\" jaoks"
1138
 
1139
+ #: includes/options_helptexts.php:96
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
+ #: includes/options_helptexts.php:101
1146
  msgid "Text for \"Hide content\""
1147
  msgstr "Tekst \"Peida sisu\" jaoks"
1148
 
1149
+ #: includes/options_helptexts.php:102
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
+ #: includes/options_helptexts.php:107
1156
  msgid "Disable CSS file"
1157
  msgstr "Keela CSS-fail"
1158
 
1159
+ #: includes/options_helptexts.php:108
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr "Keela %1$s fail."
1163
 
1164
+ #: includes/options_helptexts.php:110
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
+ #: includes/options_helptexts.php:111
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
+ #: includes/options_helptexts.php:117
1176
  msgid "Date format in edit form"
1177
  msgstr "Kuupäevavorming muutmisvormis"
1178
 
1179
+ #: includes/options_helptexts.php:119
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
+ #: includes/options_helptexts.php:120
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
+ #: includes/options_helptexts.php:121
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
+ #: includes/options_helptexts.php:127
1196
  msgid "Enable RSS feed"
1197
  msgstr "Luba RSS-voog"
1198
 
1199
+ #: includes/options_helptexts.php:128
1200
+ msgid "Enable support for the event RSS feed"
1201
  msgstr ""
1202
 
1203
+ #: includes/options_helptexts.php:130
1204
+ msgid ""
1205
+ "This option activates the RSS feed for the events and adds a feed link in "
1206
+ "the html head."
1207
+ msgstr ""
1208
 
1209
+ #: includes/options_helptexts.php:131
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
+ #: includes/options_helptexts.php:136
1216
+ msgid "Enable iCal feed"
1217
  msgstr ""
1218
 
1219
+ #: includes/options_helptexts.php:137
1220
+ msgid "Enable support for the event iCal feed"
1221
+ msgstr ""
1222
+
1223
+ #: includes/options_helptexts.php:139
1224
+ msgid "This option activates the iCal feed for events."
1225
+ msgstr ""
1226
+
1227
+ #: includes/options_helptexts.php:140
1228
+ msgid ""
1229
+ "You have to enable this option if you want to use one of the iCal features."
1230
+ msgstr ""
1231
+
1232
+ #: includes/options_helptexts.php:145
1233
+ msgid "Position of the RSS feed link"
1234
+ msgstr "Paiguta RSS-voo link"
1235
+
1236
+ #: includes/options_helptexts.php:146
1237
+ msgid "at the top (above the navigation bar)"
1238
+ msgstr "üles (navigatsiooniriba kohale)"
1239
+
1240
+ #: includes/options_helptexts.php:146
1241
+ msgid "between navigation bar and events"
1242
+ msgstr "navigatsiooniriba ja sündmuste vahele"
1243
+
1244
+ #: includes/options_helptexts.php:146
1245
+ msgid "at the bottom"
1246
+ msgstr "alla"
1247
+
1248
+ #: includes/options_helptexts.php:147
1249
+ msgid ""
1250
+ "This option specifies the position of the RSS feed link in the event list."
1251
+ msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel."
1252
+
1253
+ #: includes/options_helptexts.php:152
1254
+ msgid "Align of the RSS feed link"
1255
+ msgstr "Joonda RSS-voo link"
1256
+
1257
+ #: includes/options_helptexts.php:153
1258
+ msgid "left"
1259
+ msgstr "vasakule"
1260
+
1261
+ #: includes/options_helptexts.php:153
1262
+ msgid "center"
1263
+ msgstr "keskele"
1264
+
1265
+ #: includes/options_helptexts.php:153
1266
+ msgid "right"
1267
+ msgstr "paremale"
1268
+
1269
+ #: includes/options_helptexts.php:154
1270
+ msgid ""
1271
+ "This option specifies the align of the RSS feed link in the event list."
1272
+ msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel."
1273
+
1274
+ #: includes/options_helptexts.php:159
1275
+ msgid "RSS feed name"
1276
+ msgstr ""
1277
+
1278
+ #: includes/options_helptexts.php:161
1279
  #, php-format
1280
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1281
  msgstr ""
1282
 
1283
+ #: includes/options_helptexts.php:162
1284
  #, php-format
1285
  msgid ""
1286
  "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1287
  "enabled)."
1288
  msgstr ""
1289
 
1290
+ #: includes/options_helptexts.php:167
1291
+ msgid "RSS feed Description"
1292
  msgstr ""
1293
 
1294
+ #: includes/options_helptexts.php:169
1295
  #, php-format
1296
+ msgid "This options set the RSS feed description. The default value is %1$s."
1297
  msgstr ""
1298
 
1299
+ #: includes/options_helptexts.php:170
1300
  msgid ""
1301
  "This description will be used in the title for the feed link in the html "
1302
  "head and for the description in the feed itself."
1303
  msgstr ""
1304
 
1305
+ #: includes/options_helptexts.php:175
1306
+ msgid "RSS feed events"
1307
+ msgstr ""
1308
 
1309
+ #: includes/options_helptexts.php:176
1310
+ msgid "Only show upcoming events in the RSS feed"
1311
+ msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:178
1314
  msgid ""
1315
+ "If this option is enabled only the upcoming events are listed in the RSS "
1316
+ "feed."
 
 
 
 
 
 
 
1317
  msgstr ""
1318
 
1319
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1320
+ msgid "If disabled, all events (upcoming and past) will be listed."
1321
  msgstr ""
1322
 
1323
+ #: includes/options_helptexts.php:184
1324
+ msgid "RSS link text"
1325
  msgstr ""
1326
 
1327
+ #: includes/options_helptexts.php:186
1328
+ msgid "This option sets the caption of the RSS feed link in the event list."
1329
  msgstr ""
1330
 
1331
+ #: includes/options_helptexts.php:187
1332
+ msgid "Use an empty text to only show the rss image."
 
 
1333
  msgstr ""
1334
 
1335
+ #: includes/options_helptexts.php:188
1336
  #, php-format
1337
  msgid ""
1338
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1339
+ " RSS feed link."
1340
  msgstr ""
1341
 
1342
+ #: includes/options_helptexts.php:193
1343
+ msgid "iCal feed name"
 
1344
  msgstr ""
1345
 
1346
+ #: includes/options_helptexts.php:195
1347
+ #, php-format
1348
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1349
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1350
 
1351
+ #: includes/options_helptexts.php:196
 
1352
  #, php-format
1353
  msgid ""
1354
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1355
+ "permalinks enabled)."
1356
  msgstr ""
1357
 
1358
+ #: includes/options_helptexts.php:201
1359
+ msgid "iCal feed events"
1360
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
 
1362
+ #: includes/options_helptexts.php:202
1363
+ msgid "Only show upcoming events in the iCal feed"
1364
  msgstr ""
1365
 
1366
+ #: includes/options_helptexts.php:204
1367
  msgid ""
1368
+ "If this option is enabled only the upcoming events are listed in the iCal "
1369
+ "file."
1370
  msgstr ""
1371
 
1372
+ #: includes/options_helptexts.php:210
1373
+ msgid "iCal link text"
 
 
1374
  msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:212
1377
+ msgid "This option sets the iCal link text in the event list."
1378
  msgstr ""
1379
 
1380
+ #: includes/options_helptexts.php:213
1381
+ msgid "Use an empty text to only show the iCal image."
1382
  msgstr ""
1383
 
1384
+ #: includes/options_helptexts.php:214
1385
+ #, php-format
1386
  msgid ""
1387
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1388
+ " iCal feed link."
1389
  msgstr ""
1390
 
1391
+ #: includes/options_helptexts.php:221
1392
  msgid "Event Category handling"
1393
  msgstr ""
1394
 
1395
+ #: includes/options_helptexts.php:222
1396
  msgid "Use Post Categories"
1397
  msgstr "Kasuta postituste kategooriaid"
1398
 
1399
+ #: includes/options_helptexts.php:224
1400
  msgid ""
1401
  "Do not maintain seperate categories for the events, and use the existing "
1402
  "post categories instead."
1403
  msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid."
1404
 
1405
+ #: includes/options_helptexts.php:225
1406
  msgid "Attention"
1407
  msgstr "Tähelepanu"
1408
 
1409
+ #: includes/options_helptexts.php:226
1410
  msgid ""
1411
  "This option cannot be changed directly, but you can go to the Event Category"
1412
  " switching page from here."
1532
  #: includes/sc_event-list_helptexts.php:33
1533
  #: includes/sc_event-list_helptexts.php:74
1534
  #: includes/sc_event-list_helptexts.php:89
1535
+ #: includes/sc_event-list_helptexts.php:111
1536
  msgid "number"
1537
  msgstr "number"
1538
 
1761
 
1762
  #: includes/sc_event-list_helptexts.php:77
1763
  #: includes/sc_event-list_helptexts.php:92
1764
+ #: includes/sc_event-list_helptexts.php:114
1765
  msgid "This attribute has no influence if only a single event is shown."
1766
  msgstr ""
1767
 
1788
 
1789
  #: includes/sc_event-list_helptexts.php:100
1790
  msgid ""
1791
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1792
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1793
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1794
  msgstr ""
1795
 
1796
  #: includes/sc_event-list_helptexts.php:105
1797
  msgid ""
1798
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1799
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1801
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:112
1806
  msgid ""
1807
  "This attribute specifies if the content should be truncate to the given "
1808
  "number of characters in the event list."
1809
  msgstr ""
1810
 
1811
+ #: includes/sc_event-list_helptexts.php:113
1812
  #, php-format
1813
  msgid "With the standard value %1$s the full text is displayed."
1814
  msgstr ""
1815
 
1816
+ #: includes/sc_event-list_helptexts.php:117
1817
  msgid ""
1818
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1819
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1820
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1821
  "\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."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:123
1825
  msgid ""
1826
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1827
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1829
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1830
  msgstr ""
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:129
1833
  msgid ""
1834
  "This attribute specifies if a rss feed link should be added.<br />\n"
1835
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1838
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1839
  msgstr ""
1840
 
1841
+ #: includes/sc_event-list_helptexts.php:136
1842
+ msgid ""
1843
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1844
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1845
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1846
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1847
+ msgstr ""
1848
+
1849
+ #: includes/sc_event-list_helptexts.php:142
1850
  msgid ""
1851
  "This attribute specifies the page or post url for event links.<br />\n"
1852
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1853
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1854
  msgstr ""
1855
 
1856
+ #: includes/sc_event-list_helptexts.php:149
1857
  msgid ""
1858
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1859
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1860
  msgstr ""
1861
 
1862
+ #: includes/sc_event-list.php:145
1863
  msgid "Event Information:"
1864
  msgstr "Sündmuse info:"
1865
 
1866
+ #: includes/sc_event-list.php:391
1867
+ msgid "Link to RSS feed"
1868
+ msgstr ""
1869
+
1870
+ #: includes/sc_event-list.php:399
1871
+ msgid "Link to iCal feed"
1872
+ msgstr ""
1873
+
1874
  #: includes/widget_helptexts.php:10
1875
  msgid "This option defines the displayed title for the widget."
1876
  msgstr ""
languages/event-list-fi_FI.mo CHANGED
Binary file
languages/event-list-fi_FI.po CHANGED
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 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"
@@ -30,7 +30,7 @@ msgstr ""
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
 
@@ -53,7 +53,7 @@ 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"
58
  msgstr "Yleinen"
59
 
@@ -561,13 +561,13 @@ msgid "End Date"
561
  msgstr "Loppu päivämäärä"
562
 
563
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
564
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
565
  msgid "Time"
566
  msgstr "Aika"
567
 
568
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
569
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
570
- #: includes/options_helptexts.php:58
571
  msgid "Location"
572
  msgstr "Sijainti"
573
 
@@ -707,23 +707,23 @@ msgstr ""
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:71
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:83
715
  msgid "Frontend Settings"
716
  msgstr ""
717
 
718
- #: admin/includes/admin-settings.php:84
719
  msgid "Admin Page Settings"
720
  msgstr "Hallinnointisivun asetukset"
721
 
722
- #: admin/includes/admin-settings.php:85
723
  msgid "Feed Settings"
724
  msgstr "Syöte asetukset"
725
 
726
- #: admin/includes/admin-settings.php:86
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
@@ -978,146 +978,146 @@ msgstr "Kaikki"
978
  msgid "All Dates"
979
  msgstr ""
980
 
981
- #: includes/options_helptexts.php:10
982
  msgid "CSV File to import"
983
  msgstr "Lisättävä CSV-tiedosto"
984
 
985
- #: includes/options_helptexts.php:12
986
  msgid "Please select the file which contains the event data in CSV format."
987
  msgstr "Valitse tiedosto joka sisältää tapahtumatiedot CSV-formaatissa."
988
 
989
- #: includes/options_helptexts.php:15
990
  msgid "Used date format"
991
  msgstr ""
992
 
993
- #: includes/options_helptexts.php:17
994
  msgid ""
995
  "With this option the given date format for event start and end date in the "
996
  "CSV file can be specified."
997
  msgstr ""
998
 
999
- #: includes/options_helptexts.php:18
1000
  #, php-format
1001
  msgid ""
1002
  "You can use the php date format options given in %1$s, the most important "
1003
  "ones are:"
1004
  msgstr ""
1005
 
1006
- #: includes/options_helptexts.php:20
1007
  msgid "full year representation, with 4 digits"
1008
  msgstr ""
1009
 
1010
- #: includes/options_helptexts.php:21
1011
  msgid "numeric representation of a month, with leading zeros"
1012
  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"
1036
  msgstr "Ei tapahtumia teksti"
1037
 
1038
- #: includes/options_helptexts.php:35
1039
  msgid ""
1040
  "This option defines the displayed text when no events are available for the "
1041
  "selected view."
1042
  msgstr ""
1043
 
1044
- #: includes/options_helptexts.php:38
1045
  msgid "Multiday filter range"
1046
  msgstr ""
1047
 
1048
- #: includes/options_helptexts.php:39
1049
  msgid "Use the complete event range in the date filter"
1050
  msgstr ""
1051
 
1052
- #: includes/options_helptexts.php:40
1053
  msgid ""
1054
  "This option defines if the complete range of a multiday event shall be "
1055
  "considered in the date filter."
1056
  msgstr ""
1057
 
1058
- #: includes/options_helptexts.php:41
1059
  msgid ""
1060
  "If disabled, only the start day of an event is considered in the filter."
1061
  msgstr ""
1062
 
1063
- #: includes/options_helptexts.php:42
1064
  msgid ""
1065
  "For an example multiday event which started yesterday and ends tomorrow this"
1066
  " means, that it is displayed in umcoming dates when this option is enabled, "
1067
  "but it is hidden when the option is disabled."
1068
  msgstr ""
1069
 
1070
- #: includes/options_helptexts.php:45
1071
  msgid "Date display"
1072
  msgstr "Päivä näyttö"
1073
 
1074
- #: includes/options_helptexts.php:46
1075
  msgid "Show the date only once per day"
1076
  msgstr ""
1077
 
1078
- #: includes/options_helptexts.php:47
1079
  msgid ""
1080
  "With this option enabled the date is only displayed once per day if more "
1081
  "than one event is available on the same day."
1082
  msgstr ""
1083
 
1084
- #: includes/options_helptexts.php:48
1085
  msgid ""
1086
  "If enabled, the events are ordered in a different way (end date before start"
1087
  " time) to allow using the same date for as much events as possible."
1088
  msgstr ""
1089
 
1090
- #: includes/options_helptexts.php:51
1091
  msgid "HTML tags"
1092
  msgstr "HTML merkit"
1093
 
1094
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1095
  #, php-format
1096
  msgid "Allow HTML tags in the event field \"%1$s\""
1097
  msgstr ""
1098
 
1099
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1100
  #, php-format
1101
  msgid ""
1102
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1103
  msgstr ""
1104
 
1105
- #: includes/options_helptexts.php:61
1106
  msgid "Preferred language file"
1107
  msgstr ""
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
1115
  msgid ""
1116
  "The default is to load the %1$s translation file from the plugin language "
1117
  "directory first (%2$s)."
1118
  msgstr ""
1119
 
1120
- #: includes/options_helptexts.php:64
1121
  #, php-format
1122
  msgid ""
1123
  "If you want to load your own language file from the general language "
@@ -1125,273 +1125,290 @@ msgid ""
1125
  "language directory, you have to enable this option."
1126
  msgstr ""
1127
 
1128
- #: includes/options_helptexts.php:68
1129
  msgid "Events permalink slug"
1130
  msgstr ""
1131
 
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 ""
1143
  "With this option the displayed text for the link to show the event content "
1144
  "can be changed, when collapsing is enabled."
1145
  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 ""
1153
  "With this option the displayed text for the link to hide the event content "
1154
  "can be changed, when collapsing is enabled."
1155
  msgstr ""
1156
 
1157
- #: includes/options_helptexts.php:80
1158
  msgid "Disable CSS file"
1159
  msgstr "Estä CSS tiedosto"
1160
 
1161
- #: includes/options_helptexts.php:81
1162
  #, php-format
1163
  msgid "Disable the %1$s file."
1164
  msgstr ""
1165
 
1166
- #: includes/options_helptexts.php:82
1167
  #, php-format
1168
  msgid "With this option you can disable the inclusion of the %1$s file."
1169
  msgstr ""
1170
 
1171
- #: includes/options_helptexts.php:83
1172
  msgid ""
1173
  "This normally only make sense if you have css conflicts with your theme and "
1174
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1175
  msgstr ""
1176
 
1177
- #: includes/options_helptexts.php:87
1178
  msgid "Date format in edit form"
1179
  msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
1180
 
1181
- #: includes/options_helptexts.php:88
1182
  msgid ""
1183
  "This option sets the displayed date format for the event date fields in the "
1184
  "event new / edit form."
1185
  msgstr ""
1186
 
1187
- #: includes/options_helptexts.php:89
1188
  msgid "The default is an empty string to use the Wordpress standard setting."
1189
  msgstr ""
1190
 
1191
- #: includes/options_helptexts.php:90
1192
  #, php-format
1193
  msgid ""
1194
  "All available options to specify the date format can be found %1$shere%2$s."
1195
  msgstr ""
1196
 
1197
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1198
  msgid "Enable RSS feed"
1199
  msgstr "Salli RSS syöte"
1200
 
1201
- #: includes/options_helptexts.php:95
1202
- msgid "Enable support for an event RSS feed"
1203
  msgstr ""
1204
 
1205
- #: includes/options_helptexts.php:96
1206
- msgid "This option activates a RSS feed for the events."
 
 
1207
  msgstr ""
1208
 
1209
- #: includes/options_helptexts.php:97
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
- #: includes/options_helptexts.php:100
1216
- msgid "Feed name"
1217
- msgstr "Syötteen nimi"
1218
 
1219
- #: includes/options_helptexts.php:101
1220
- #, php-format
1221
- msgid "This option sets the feed name. The default value is %1$s."
1222
  msgstr ""
1223
 
1224
- #: includes/options_helptexts.php:102
1225
- #, php-format
1226
- msgid ""
1227
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1228
- "enabled)."
1229
  msgstr ""
1230
 
1231
- #: includes/options_helptexts.php:105
1232
- msgid "Feed Description"
1233
- msgstr "Syötteen kuvaus"
 
1234
 
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 ""
1242
- "This description will be used in the title for the feed link in the html "
1243
- "head and for the description in the feed itself."
1244
  msgstr ""
1245
 
1246
- #: includes/options_helptexts.php:110
1247
- msgid "Listed events"
1248
- msgstr "Listatut tapahtumat"
1249
 
1250
- #: includes/options_helptexts.php:111
1251
- msgid "Only show upcoming events in feed"
1252
  msgstr ""
1253
 
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"
1265
- msgstr ""
1266
 
1267
- #: includes/options_helptexts.php:117
1268
- msgid "Add RSS feed link in the html head"
 
 
 
 
 
 
 
 
 
1269
  msgstr ""
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"
1299
  msgstr ""
1300
 
1301
- #: includes/options_helptexts.php:126
1302
- msgid "at the top (above the navigation bar)"
 
 
1303
  msgstr ""
1304
 
1305
- #: includes/options_helptexts.php:126
1306
- msgid "between navigation bar and events"
1307
  msgstr ""
1308
 
1309
- #: includes/options_helptexts.php:126
1310
- msgid "at the bottom"
1311
  msgstr ""
1312
 
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
 
 
 
1320
  #, php-format
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"
1328
  msgstr ""
1329
 
1330
- #: includes/options_helptexts.php:132
1331
- msgid "left"
1332
- msgstr "vasen"
1333
-
1334
- #: includes/options_helptexts.php:132
1335
- msgid "center"
1336
- msgstr "keskitetty"
1337
-
1338
- #: includes/options_helptexts.php:132
1339
- msgid "right"
1340
- msgstr "oikea"
1341
 
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"
1349
  msgstr ""
1350
 
1351
- #: includes/options_helptexts.php:138
1352
- msgid ""
1353
- "This option specifies the caption of the RSS feed link in the event list."
1354
  msgstr ""
1355
 
1356
- #: includes/options_helptexts.php:139
1357
  msgid ""
1358
- "Insert an empty text to hide any text if you only want to show the rss "
1359
- "image."
1360
  msgstr ""
1361
 
1362
- #: includes/options_helptexts.php:143
1363
- msgid "Feed link image"
1364
  msgstr ""
1365
 
1366
- #: includes/options_helptexts.php:144
1367
- msgid "Show rss image in feed link"
1368
  msgstr ""
1369
 
1370
- #: includes/options_helptexts.php:145
 
 
 
 
 
1371
  msgid ""
1372
- "This option specifies if the an image should be dispayed in the feed link in"
1373
- " front of the text."
1374
  msgstr ""
1375
 
1376
- #: includes/options_helptexts.php:151
1377
  msgid "Event Category handling"
1378
  msgstr ""
1379
 
1380
- #: includes/options_helptexts.php:152
1381
  msgid "Use Post Categories"
1382
  msgstr ""
1383
 
1384
- #: includes/options_helptexts.php:153
1385
  msgid ""
1386
  "Do not maintain seperate categories for the events, and use the existing "
1387
  "post categories instead."
1388
  msgstr ""
1389
 
1390
- #: includes/options_helptexts.php:154
1391
  msgid "Attention"
1392
  msgstr "Huomio"
1393
 
1394
- #: includes/options_helptexts.php:155
1395
  msgid ""
1396
  "This option cannot be changed directly, but you can go to the Event Category"
1397
  " switching page from here."
@@ -1517,7 +1534,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:109
1521
  msgid "number"
1522
  msgstr "numero"
1523
 
@@ -1746,7 +1763,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:112
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
@@ -1773,38 +1790,40 @@ msgstr ""
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"
1803
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1831,7 @@ msgid ""
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,23 +1840,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1841
  #: includes/widget_helptexts.php:10
1842
  msgid "This option defines the displayed title for the widget."
1843
  msgstr "Määritä vimpaimen näkyvä otsikko"
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-11-16 17:29+0100\n"
14
+ "PO-Revision-Date: 2020-11-16 16:29+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"
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
34
  msgid "Event List Settings"
35
  msgstr "Tapahtuma listan asetukset"
36
 
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
57
  msgid "General"
58
  msgstr "Yleinen"
59
 
561
  msgstr "Loppu päivämäärä"
562
 
563
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
564
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
565
  msgid "Time"
566
  msgstr "Aika"
567
 
568
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
569
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
570
+ #: includes/options_helptexts.php:74
571
  msgid "Location"
572
  msgstr "Sijainti"
573
 
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-settings.php:73
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:85
715
  msgid "Frontend Settings"
716
  msgstr ""
717
 
718
+ #: admin/includes/admin-settings.php:86
719
  msgid "Admin Page Settings"
720
  msgstr "Hallinnointisivun asetukset"
721
 
722
+ #: admin/includes/admin-settings.php:87
723
  msgid "Feed Settings"
724
  msgstr "Syöte asetukset"
725
 
726
+ #: admin/includes/admin-settings.php:88
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
978
  msgid "All Dates"
979
  msgstr ""
980
 
981
+ #: includes/options_helptexts.php:11
982
  msgid "CSV File to import"
983
  msgstr "Lisättävä CSV-tiedosto"
984
 
985
+ #: includes/options_helptexts.php:13
986
  msgid "Please select the file which contains the event data in CSV format."
987
  msgstr "Valitse tiedosto joka sisältää tapahtumatiedot CSV-formaatissa."
988
 
989
+ #: includes/options_helptexts.php:18
990
  msgid "Used date format"
991
  msgstr ""
992
 
993
+ #: includes/options_helptexts.php:21
994
  msgid ""
995
  "With this option the given date format for event start and end date in the "
996
  "CSV file can be specified."
997
  msgstr ""
998
 
999
+ #: includes/options_helptexts.php:22
1000
  #, php-format
1001
  msgid ""
1002
  "You can use the php date format options given in %1$s, the most important "
1003
  "ones are:"
1004
  msgstr ""
1005
 
1006
+ #: includes/options_helptexts.php:24
1007
  msgid "full year representation, with 4 digits"
1008
  msgstr ""
1009
 
1010
+ #: includes/options_helptexts.php:25
1011
  msgid "numeric representation of a month, with leading zeros"
1012
  msgstr ""
1013
 
1014
+ #: includes/options_helptexts.php:26
1015
  msgid "day of the month, 2 digits with leading zeros"
1016
  msgstr ""
1017
 
1018
+ #: includes/options_helptexts.php:28
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:29
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:30
1031
  msgid "Examples"
1032
  msgstr ""
1033
 
1034
+ #: includes/options_helptexts.php:39
1035
  msgid "Text for no events"
1036
  msgstr "Ei tapahtumia teksti"
1037
 
1038
+ #: includes/options_helptexts.php:41
1039
  msgid ""
1040
  "This option defines the displayed text when no events are available for the "
1041
  "selected view."
1042
  msgstr ""
1043
 
1044
+ #: includes/options_helptexts.php:46
1045
  msgid "Multiday filter range"
1046
  msgstr ""
1047
 
1048
+ #: includes/options_helptexts.php:47
1049
  msgid "Use the complete event range in the date filter"
1050
  msgstr ""
1051
 
1052
+ #: includes/options_helptexts.php:49
1053
  msgid ""
1054
  "This option defines if the complete range of a multiday event shall be "
1055
  "considered in the date filter."
1056
  msgstr ""
1057
 
1058
+ #: includes/options_helptexts.php:50
1059
  msgid ""
1060
  "If disabled, only the start day of an event is considered in the filter."
1061
  msgstr ""
1062
 
1063
+ #: includes/options_helptexts.php:51
1064
  msgid ""
1065
  "For an example multiday event which started yesterday and ends tomorrow this"
1066
  " means, that it is displayed in umcoming dates when this option is enabled, "
1067
  "but it is hidden when the option is disabled."
1068
  msgstr ""
1069
 
1070
+ #: includes/options_helptexts.php:56
1071
  msgid "Date display"
1072
  msgstr "Päivä näyttö"
1073
 
1074
+ #: includes/options_helptexts.php:57
1075
  msgid "Show the date only once per day"
1076
  msgstr ""
1077
 
1078
+ #: includes/options_helptexts.php:59
1079
  msgid ""
1080
  "With this option enabled the date is only displayed once per day if more "
1081
  "than one event is available on the same day."
1082
  msgstr ""
1083
 
1084
+ #: includes/options_helptexts.php:60
1085
  msgid ""
1086
  "If enabled, the events are ordered in a different way (end date before start"
1087
  " time) to allow using the same date for as much events as possible."
1088
  msgstr ""
1089
 
1090
+ #: includes/options_helptexts.php:65
1091
  msgid "HTML tags"
1092
  msgstr "HTML merkit"
1093
 
1094
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1095
  #, php-format
1096
  msgid "Allow HTML tags in the event field \"%1$s\""
1097
  msgstr ""
1098
 
1099
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1100
  #, php-format
1101
  msgid ""
1102
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1103
  msgstr ""
1104
 
1105
+ #: includes/options_helptexts.php:79
1106
  msgid "Preferred language file"
1107
  msgstr ""
1108
 
1109
+ #: includes/options_helptexts.php:80
1110
  msgid "Load translations from general language directory first"
1111
  msgstr ""
1112
 
1113
+ #: includes/options_helptexts.php:82
1114
  #, php-format
1115
  msgid ""
1116
  "The default is to load the %1$s translation file from the plugin language "
1117
  "directory first (%2$s)."
1118
  msgstr ""
1119
 
1120
+ #: includes/options_helptexts.php:83
1121
  #, php-format
1122
  msgid ""
1123
  "If you want to load your own language file from the general language "
1125
  "language directory, you have to enable this option."
1126
  msgstr ""
1127
 
1128
+ #: includes/options_helptexts.php:89
1129
  msgid "Events permalink slug"
1130
  msgstr ""
1131
 
1132
+ #: includes/options_helptexts.php:90
1133
  msgid ""
1134
  "With this option the slug for the events permalink URLs can be defined."
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:95
1138
  msgid "Text for \"Show content\""
1139
  msgstr ""
1140
 
1141
+ #: includes/options_helptexts.php:96
1142
  msgid ""
1143
  "With this option the displayed text for the link to show the event content "
1144
  "can be changed, when collapsing is enabled."
1145
  msgstr ""
1146
 
1147
+ #: includes/options_helptexts.php:101
1148
  msgid "Text for \"Hide content\""
1149
  msgstr ""
1150
 
1151
+ #: includes/options_helptexts.php:102
1152
  msgid ""
1153
  "With this option the displayed text for the link to hide the event content "
1154
  "can be changed, when collapsing is enabled."
1155
  msgstr ""
1156
 
1157
+ #: includes/options_helptexts.php:107
1158
  msgid "Disable CSS file"
1159
  msgstr "Estä CSS tiedosto"
1160
 
1161
+ #: includes/options_helptexts.php:108
1162
  #, php-format
1163
  msgid "Disable the %1$s file."
1164
  msgstr ""
1165
 
1166
+ #: includes/options_helptexts.php:110
1167
  #, php-format
1168
  msgid "With this option you can disable the inclusion of the %1$s file."
1169
  msgstr ""
1170
 
1171
+ #: includes/options_helptexts.php:111
1172
  msgid ""
1173
  "This normally only make sense if you have css conflicts with your theme and "
1174
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1175
  msgstr ""
1176
 
1177
+ #: includes/options_helptexts.php:117
1178
  msgid "Date format in edit form"
1179
  msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
1180
 
1181
+ #: includes/options_helptexts.php:119
1182
  msgid ""
1183
  "This option sets the displayed date format for the event date fields in the "
1184
  "event new / edit form."
1185
  msgstr ""
1186
 
1187
+ #: includes/options_helptexts.php:120
1188
  msgid "The default is an empty string to use the Wordpress standard setting."
1189
  msgstr ""
1190
 
1191
+ #: includes/options_helptexts.php:121
1192
  #, php-format
1193
  msgid ""
1194
  "All available options to specify the date format can be found %1$shere%2$s."
1195
  msgstr ""
1196
 
1197
+ #: includes/options_helptexts.php:127
1198
  msgid "Enable RSS feed"
1199
  msgstr "Salli RSS syöte"
1200
 
1201
+ #: includes/options_helptexts.php:128
1202
+ msgid "Enable support for the event RSS feed"
1203
  msgstr ""
1204
 
1205
+ #: includes/options_helptexts.php:130
1206
+ msgid ""
1207
+ "This option activates the RSS feed for the events and adds a feed link in "
1208
+ "the html head."
1209
  msgstr ""
1210
 
1211
+ #: includes/options_helptexts.php:131
1212
  msgid ""
1213
  "You have to enable this option if you want to use one of the RSS feed "
1214
  "features."
1215
  msgstr ""
1216
 
1217
+ #: includes/options_helptexts.php:136
1218
+ msgid "Enable iCal feed"
1219
+ msgstr ""
1220
 
1221
+ #: includes/options_helptexts.php:137
1222
+ msgid "Enable support for the event iCal feed"
 
1223
  msgstr ""
1224
 
1225
+ #: includes/options_helptexts.php:139
1226
+ msgid "This option activates the iCal feed for events."
 
 
 
1227
  msgstr ""
1228
 
1229
+ #: includes/options_helptexts.php:140
1230
+ msgid ""
1231
+ "You have to enable this option if you want to use one of the iCal features."
1232
+ msgstr ""
1233
 
1234
+ #: includes/options_helptexts.php:145
1235
+ msgid "Position of the RSS feed link"
 
1236
  msgstr ""
1237
 
1238
+ #: includes/options_helptexts.php:146
1239
+ msgid "at the top (above the navigation bar)"
 
 
1240
  msgstr ""
1241
 
1242
+ #: includes/options_helptexts.php:146
1243
+ msgid "between navigation bar and events"
1244
+ msgstr ""
1245
 
1246
+ #: includes/options_helptexts.php:146
1247
+ msgid "at the bottom"
1248
  msgstr ""
1249
 
1250
+ #: includes/options_helptexts.php:147
1251
  msgid ""
1252
+ "This option specifies the position of the RSS feed link in the event list."
1253
  msgstr ""
1254
 
1255
+ #: includes/options_helptexts.php:152
1256
+ msgid "Align of the RSS feed link"
1257
  msgstr ""
1258
 
1259
+ #: includes/options_helptexts.php:153
1260
+ msgid "left"
1261
+ msgstr "vasen"
1262
 
1263
+ #: includes/options_helptexts.php:153
1264
+ msgid "center"
1265
+ msgstr "keskitetty"
1266
+
1267
+ #: includes/options_helptexts.php:153
1268
+ msgid "right"
1269
+ msgstr "oikea"
1270
+
1271
+ #: includes/options_helptexts.php:154
1272
+ msgid ""
1273
+ "This option specifies the align of the RSS feed link in the event list."
1274
  msgstr ""
1275
 
1276
+ #: includes/options_helptexts.php:159
1277
+ msgid "RSS feed name"
1278
  msgstr ""
1279
 
1280
+ #: includes/options_helptexts.php:161
1281
+ #, php-format
1282
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1283
  msgstr ""
1284
 
1285
+ #: includes/options_helptexts.php:162
1286
+ #, php-format
1287
  msgid ""
1288
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1289
+ "enabled)."
1290
  msgstr ""
1291
 
1292
+ #: includes/options_helptexts.php:167
1293
+ msgid "RSS feed Description"
1294
+ msgstr ""
1295
+
1296
+ #: includes/options_helptexts.php:169
1297
  #, php-format
1298
+ msgid "This options set the RSS feed description. The default value is %1$s."
1299
+ msgstr ""
1300
+
1301
+ #: includes/options_helptexts.php:170
1302
  msgid ""
1303
+ "This description will be used in the title for the feed link in the html "
1304
+ "head and for the description in the feed itself."
1305
  msgstr ""
1306
 
1307
+ #: includes/options_helptexts.php:175
1308
+ msgid "RSS feed events"
 
1309
  msgstr ""
1310
 
1311
+ #: includes/options_helptexts.php:176
1312
+ msgid "Only show upcoming events in the RSS feed"
1313
  msgstr ""
1314
 
1315
+ #: includes/options_helptexts.php:178
1316
+ msgid ""
1317
+ "If this option is enabled only the upcoming events are listed in the RSS "
1318
+ "feed."
1319
  msgstr ""
1320
 
1321
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1322
+ msgid "If disabled, all events (upcoming and past) will be listed."
1323
  msgstr ""
1324
 
1325
+ #: includes/options_helptexts.php:184
1326
+ msgid "RSS link text"
1327
  msgstr ""
1328
 
1329
+ #: includes/options_helptexts.php:186
1330
+ msgid "This option sets the caption of the RSS feed link in the event list."
 
1331
  msgstr ""
1332
 
1333
+ #: includes/options_helptexts.php:187
1334
+ msgid "Use an empty text to only show the rss image."
1335
+ msgstr ""
1336
+
1337
+ #: includes/options_helptexts.php:188
1338
  #, php-format
1339
  msgid ""
1340
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1341
+ " RSS feed link."
1342
  msgstr ""
1343
 
1344
+ #: includes/options_helptexts.php:193
1345
+ msgid "iCal feed name"
1346
  msgstr ""
1347
 
1348
+ #: includes/options_helptexts.php:195
1349
+ #, php-format
1350
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1351
+ msgstr ""
 
 
 
 
 
 
 
1352
 
1353
+ #: includes/options_helptexts.php:196
1354
+ #, php-format
1355
  msgid ""
1356
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1357
+ "permalinks enabled)."
1358
  msgstr ""
1359
 
1360
+ #: includes/options_helptexts.php:201
1361
+ msgid "iCal feed events"
1362
  msgstr ""
1363
 
1364
+ #: includes/options_helptexts.php:202
1365
+ msgid "Only show upcoming events in the iCal feed"
 
1366
  msgstr ""
1367
 
1368
+ #: includes/options_helptexts.php:204
1369
  msgid ""
1370
+ "If this option is enabled only the upcoming events are listed in the iCal "
1371
+ "file."
1372
  msgstr ""
1373
 
1374
+ #: includes/options_helptexts.php:210
1375
+ msgid "iCal link text"
1376
  msgstr ""
1377
 
1378
+ #: includes/options_helptexts.php:212
1379
+ msgid "This option sets the iCal link text in the event list."
1380
  msgstr ""
1381
 
1382
+ #: includes/options_helptexts.php:213
1383
+ msgid "Use an empty text to only show the iCal image."
1384
+ msgstr ""
1385
+
1386
+ #: includes/options_helptexts.php:214
1387
+ #, php-format
1388
  msgid ""
1389
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1390
+ " iCal feed link."
1391
  msgstr ""
1392
 
1393
+ #: includes/options_helptexts.php:221
1394
  msgid "Event Category handling"
1395
  msgstr ""
1396
 
1397
+ #: includes/options_helptexts.php:222
1398
  msgid "Use Post Categories"
1399
  msgstr ""
1400
 
1401
+ #: includes/options_helptexts.php:224
1402
  msgid ""
1403
  "Do not maintain seperate categories for the events, and use the existing "
1404
  "post categories instead."
1405
  msgstr ""
1406
 
1407
+ #: includes/options_helptexts.php:225
1408
  msgid "Attention"
1409
  msgstr "Huomio"
1410
 
1411
+ #: includes/options_helptexts.php:226
1412
  msgid ""
1413
  "This option cannot be changed directly, but you can go to the Event Category"
1414
  " switching page from here."
1534
  #: includes/sc_event-list_helptexts.php:33
1535
  #: includes/sc_event-list_helptexts.php:74
1536
  #: includes/sc_event-list_helptexts.php:89
1537
+ #: includes/sc_event-list_helptexts.php:111
1538
  msgid "number"
1539
  msgstr "numero"
1540
 
1763
 
1764
  #: includes/sc_event-list_helptexts.php:77
1765
  #: includes/sc_event-list_helptexts.php:92
1766
+ #: includes/sc_event-list_helptexts.php:114
1767
  msgid "This attribute has no influence if only a single event is shown."
1768
  msgstr ""
1769
 
1790
 
1791
  #: includes/sc_event-list_helptexts.php:100
1792
  msgid ""
1793
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1794
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1795
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1796
  msgstr ""
1797
 
1798
  #: includes/sc_event-list_helptexts.php:105
1799
  msgid ""
1800
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1801
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1803
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1805
  msgstr ""
1806
 
1807
+ #: includes/sc_event-list_helptexts.php:112
1808
  msgid ""
1809
  "This attribute specifies if the content should be truncate to the given "
1810
  "number of characters in the event list."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:113
1814
  #, php-format
1815
  msgid "With the standard value %1$s the full text is displayed."
1816
  msgstr ""
1817
 
1818
+ #: includes/sc_event-list_helptexts.php:117
1819
  msgid ""
1820
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1821
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1822
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1823
  "\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."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:123
1827
  msgid ""
1828
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1829
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1831
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:129
1835
  msgid ""
1836
  "This attribute specifies if a rss feed link should be added.<br />\n"
1837
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1840
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1841
  msgstr ""
1842
 
1843
+ #: includes/sc_event-list_helptexts.php:136
1844
+ msgid ""
1845
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1846
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1847
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1848
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1849
+ msgstr ""
1850
+
1851
+ #: includes/sc_event-list_helptexts.php:142
1852
  msgid ""
1853
  "This attribute specifies the page or post url for event links.<br />\n"
1854
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1855
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1856
  msgstr ""
1857
 
1858
+ #: includes/sc_event-list_helptexts.php:149
1859
  msgid ""
1860
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1861
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1862
  msgstr ""
1863
 
1864
+ #: includes/sc_event-list.php:145
1865
  msgid "Event Information:"
1866
  msgstr "Tapahtuman tiedot:"
1867
 
1868
+ #: includes/sc_event-list.php:391
1869
+ msgid "Link to RSS feed"
1870
+ msgstr ""
1871
+
1872
+ #: includes/sc_event-list.php:399
1873
+ msgid "Link to iCal feed"
1874
+ msgstr ""
1875
+
1876
  #: includes/widget_helptexts.php:10
1877
  msgid "This option defines the displayed title for the widget."
1878
  msgstr "Määritä vimpaimen näkyvä otsikko"
languages/event-list-fr_FR.mo CHANGED
Binary file
languages/event-list-fr_FR.po CHANGED
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 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"
@@ -31,7 +31,7 @@ msgstr "Erreurs lors de la mise à niveau de l'extension %1$s"
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
 
@@ -54,7 +54,7 @@ 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"
59
  msgstr "Général"
60
 
@@ -562,13 +562,13 @@ msgid "End Date"
562
  msgstr "Date de fin"
563
 
564
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
565
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
566
  msgid "Time"
567
  msgstr "Heure"
568
 
569
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
570
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
571
- #: includes/options_helptexts.php:58
572
  msgid "Location"
573
  msgstr "Lieu"
574
 
@@ -708,23 +708,23 @@ msgstr ""
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"
713
  msgstr ""
714
 
715
- #: admin/includes/admin-settings.php:83
716
  msgid "Frontend Settings"
717
  msgstr "Frontend Préférences"
718
 
719
- #: admin/includes/admin-settings.php:84
720
  msgid "Admin Page Settings"
721
  msgstr "Administration Préférences"
722
 
723
- #: admin/includes/admin-settings.php:85
724
  msgid "Feed Settings"
725
  msgstr "Flux RSS Préférences"
726
 
727
- #: admin/includes/admin-settings.php:86
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
@@ -979,146 +979,146 @@ msgstr "Tous"
979
  msgid "All Dates"
980
  msgstr "Toutes les dates"
981
 
982
- #: includes/options_helptexts.php:10
983
  msgid "CSV File to import"
984
  msgstr "Fichier CSV à importer"
985
 
986
- #: includes/options_helptexts.php:12
987
  msgid "Please select the file which contains the event data in CSV format."
988
  msgstr "Veuillez sélectionner le fichier qui contient les évènements au format CSV."
989
 
990
- #: includes/options_helptexts.php:15
991
  msgid "Used date format"
992
  msgstr "Utilise le format de date suivant"
993
 
994
- #: includes/options_helptexts.php:17
995
  msgid ""
996
  "With this option the given date format for event start and end date in the "
997
  "CSV file can be specified."
998
  msgstr ""
999
 
1000
- #: includes/options_helptexts.php:18
1001
  #, php-format
1002
  msgid ""
1003
  "You can use the php date format options given in %1$s, the most important "
1004
  "ones are:"
1005
  msgstr ""
1006
 
1007
- #: includes/options_helptexts.php:20
1008
  msgid "full year representation, with 4 digits"
1009
  msgstr ""
1010
 
1011
- #: includes/options_helptexts.php:21
1012
  msgid "numeric representation of a month, with leading zeros"
1013
  msgstr ""
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"
1037
  msgstr "Texte si pas d'événements."
1038
 
1039
- #: includes/options_helptexts.php:35
1040
  msgid ""
1041
  "This option defines the displayed text when no events are available for the "
1042
  "selected view."
1043
  msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
1044
 
1045
- #: includes/options_helptexts.php:38
1046
  msgid "Multiday filter range"
1047
  msgstr "Filtre sur plusieurs jours"
1048
 
1049
- #: includes/options_helptexts.php:39
1050
  msgid "Use the complete event range in the date filter"
1051
  msgstr "Utiliser la période complète dans le filtre par date."
1052
 
1053
- #: includes/options_helptexts.php:40
1054
  msgid ""
1055
  "This option defines if the complete range of a multiday event shall be "
1056
  "considered in the date filter."
1057
  msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
1058
 
1059
- #: includes/options_helptexts.php:41
1060
  msgid ""
1061
  "If disabled, only the start day of an event is considered in the filter."
1062
  msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
1063
 
1064
- #: includes/options_helptexts.php:42
1065
  msgid ""
1066
  "For an example multiday event which started yesterday and ends tomorrow this"
1067
  " means, that it is displayed in umcoming dates when this option is enabled, "
1068
  "but it is hidden when the option is disabled."
1069
  msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
1070
 
1071
- #: includes/options_helptexts.php:45
1072
  msgid "Date display"
1073
  msgstr "Affichage de la date"
1074
 
1075
- #: includes/options_helptexts.php:46
1076
  msgid "Show the date only once per day"
1077
  msgstr "Afficher la date seulement une fois par jour."
1078
 
1079
- #: includes/options_helptexts.php:47
1080
  msgid ""
1081
  "With this option enabled the date is only displayed once per day if more "
1082
  "than one event is available on the same day."
1083
  msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
1084
 
1085
- #: includes/options_helptexts.php:48
1086
  msgid ""
1087
  "If enabled, the events are ordered in a different way (end date before start"
1088
  " time) to allow using the same date for as much events as possible."
1089
  msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
1090
 
1091
- #: includes/options_helptexts.php:51
1092
  msgid "HTML tags"
1093
  msgstr "Tags HTML"
1094
 
1095
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1096
  #, php-format
1097
  msgid "Allow HTML tags in the event field \"%1$s\""
1098
  msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
1099
 
1100
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1101
  #, php-format
1102
  msgid ""
1103
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1104
  msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
1105
 
1106
- #: includes/options_helptexts.php:61
1107
  msgid "Preferred language file"
1108
  msgstr "Langue choisie pour le fichier"
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
1116
  msgid ""
1117
  "The default is to load the %1$s translation file from the plugin language "
1118
  "directory first (%2$s)."
1119
  msgstr ""
1120
 
1121
- #: includes/options_helptexts.php:64
1122
  #, php-format
1123
  msgid ""
1124
  "If you want to load your own language file from the general language "
@@ -1126,273 +1126,290 @@ msgid ""
1126
  "language directory, you have to enable this option."
1127
  msgstr ""
1128
 
1129
- #: includes/options_helptexts.php:68
1130
  msgid "Events permalink slug"
1131
  msgstr ""
1132
 
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 ""
1144
  "With this option the displayed text for the link to show the event content "
1145
  "can be changed, when collapsing is enabled."
1146
  msgstr ""
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 ""
1154
  "With this option the displayed text for the link to hide the event content "
1155
  "can be changed, when collapsing is enabled."
1156
  msgstr ""
1157
 
1158
- #: includes/options_helptexts.php:80
1159
  msgid "Disable CSS file"
1160
  msgstr "Désactiver le fichier CSS"
1161
 
1162
- #: includes/options_helptexts.php:81
1163
  #, php-format
1164
  msgid "Disable the %1$s file."
1165
  msgstr "Désactiver le fichier %1$s."
1166
 
1167
- #: includes/options_helptexts.php:82
1168
  #, php-format
1169
  msgid "With this option you can disable the inclusion of the %1$s file."
1170
  msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
1171
 
1172
- #: includes/options_helptexts.php:83
1173
  msgid ""
1174
  "This normally only make sense if you have css conflicts with your theme and "
1175
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1176
  msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
1177
 
1178
- #: includes/options_helptexts.php:87
1179
  msgid "Date format in edit form"
1180
  msgstr "Format de la date dans le formulaire d'édition."
1181
 
1182
- #: includes/options_helptexts.php:88
1183
  msgid ""
1184
  "This option sets the displayed date format for the event date fields in the "
1185
  "event new / edit form."
1186
  msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
1187
 
1188
- #: includes/options_helptexts.php:89
1189
  msgid "The default is an empty string to use the Wordpress standard setting."
1190
  msgstr ""
1191
 
1192
- #: includes/options_helptexts.php:90
1193
  #, php-format
1194
  msgid ""
1195
  "All available options to specify the date format can be found %1$shere%2$s."
1196
  msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
1197
 
1198
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1199
  msgid "Enable RSS feed"
1200
  msgstr "Activer flux RSS"
1201
 
1202
- #: includes/options_helptexts.php:95
1203
- msgid "Enable support for an event RSS feed"
1204
- msgstr "Activer le support pour un flux RSS des évènements"
1205
 
1206
- #: includes/options_helptexts.php:96
1207
- msgid "This option activates a RSS feed for the events."
1208
- msgstr "Cette option active un flux RSS pour les événements"
 
 
1209
 
1210
- #: includes/options_helptexts.php:97
1211
  msgid ""
1212
  "You have to enable this option if you want to use one of the RSS feed "
1213
  "features."
1214
  msgstr ""
1215
 
1216
- #: includes/options_helptexts.php:100
1217
- msgid "Feed name"
1218
- msgstr "Nom du flux"
1219
-
1220
- #: includes/options_helptexts.php:101
1221
- #, php-format
1222
- msgid "This option sets the feed name. The default value is %1$s."
1223
  msgstr ""
1224
 
1225
- #: includes/options_helptexts.php:102
1226
- #, php-format
1227
- msgid ""
1228
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1229
- "enabled)."
1230
  msgstr ""
1231
 
1232
- #: includes/options_helptexts.php:105
1233
- msgid "Feed Description"
1234
- msgstr "Description du Flux"
1235
-
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 ""
1243
- "This description will be used in the title for the feed link in the html "
1244
- "head and for the description in the feed itself."
1245
  msgstr ""
1246
 
1247
- #: includes/options_helptexts.php:110
1248
- msgid "Listed events"
1249
- msgstr "Evènements listés"
1250
-
1251
- #: includes/options_helptexts.php:111
1252
- msgid "Only show upcoming events in feed"
1253
- msgstr "Voir seulement les prochains évènements dans le flux."
1254
-
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"
1266
- msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
1267
-
1268
- #: includes/options_helptexts.php:117
1269
- msgid "Add RSS feed link in the html head"
1270
- msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
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"
1300
  msgstr "Position du flux RSS"
1301
 
1302
- #: includes/options_helptexts.php:126
1303
  msgid "at the top (above the navigation bar)"
1304
  msgstr "En haut (au dessus du menu)"
1305
 
1306
- #: includes/options_helptexts.php:126
1307
  msgid "between navigation bar and events"
1308
  msgstr "Entre le menu et les événements"
1309
 
1310
- #: includes/options_helptexts.php:126
1311
  msgid "at the bottom"
1312
  msgstr "En bas"
1313
 
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
1321
- #, php-format
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"
1329
  msgstr "Alignement du lien RSS"
1330
 
1331
- #: includes/options_helptexts.php:132
1332
  msgid "left"
1333
  msgstr "gauche"
1334
 
1335
- #: includes/options_helptexts.php:132
1336
  msgid "center"
1337
  msgstr "centré"
1338
 
1339
- #: includes/options_helptexts.php:132
1340
  msgid "right"
1341
  msgstr "droite"
1342
 
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"
1350
- msgstr "Text du lien du flux"
1351
 
1352
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1353
  msgid ""
1354
- "This option specifies the caption of the RSS feed link in the event list."
 
1355
  msgstr ""
1356
 
1357
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
 
1358
  msgid ""
1359
- "Insert an empty text to hide any text if you only want to show the rss "
1360
- "image."
1361
  msgstr ""
1362
 
1363
- #: includes/options_helptexts.php:143
1364
- msgid "Feed link image"
1365
- msgstr "Image du flux RSS"
1366
 
1367
- #: includes/options_helptexts.php:144
1368
- msgid "Show rss image in feed link"
1369
- msgstr "Afficher l'image dans le lien vers le flux RSS"
1370
 
1371
- #: includes/options_helptexts.php:145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1372
  msgid ""
1373
- "This option specifies if the an image should be dispayed in the feed link in"
1374
- " front of the text."
1375
  msgstr ""
1376
 
1377
- #: includes/options_helptexts.php:151
1378
  msgid "Event Category handling"
1379
  msgstr ""
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 ""
1387
  "Do not maintain seperate categories for the events, and use the existing "
1388
  "post categories instead."
1389
  msgstr ""
1390
 
1391
- #: includes/options_helptexts.php:154
1392
  msgid "Attention"
1393
  msgstr "Attention"
1394
 
1395
- #: includes/options_helptexts.php:155
1396
  msgid ""
1397
  "This option cannot be changed directly, but you can go to the Event Category"
1398
  " switching page from here."
@@ -1518,7 +1535,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:109
1522
  msgid "number"
1523
  msgstr "nombre"
1524
 
@@ -1747,7 +1764,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: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,38 +1791,40 @@ msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ C
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"
1804
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1832,7 @@ msgid ""
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,23 +1841,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1842
  #: includes/widget_helptexts.php:10
1843
  msgid "This option defines the displayed title for the widget."
1844
  msgstr "Cette option définie le titre affiché pour le widget"
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-11-16 17:29+0100\n"
15
+ "PO-Revision-Date: 2020-11-16 16:35+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"
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:67
35
  msgid "Event List Settings"
36
  msgstr "Préférences"
37
 
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:84
58
  msgid "General"
59
  msgstr "Général"
60
 
562
  msgstr "Date de fin"
563
 
564
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
565
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
566
  msgid "Time"
567
  msgstr "Heure"
568
 
569
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
570
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
571
+ #: includes/options_helptexts.php:74
572
  msgid "Location"
573
  msgstr "Lieu"
574
 
708
  msgid "Event draft updated."
709
  msgstr "Brouillon de l'évènement mis à jour."
710
 
711
+ #: admin/includes/admin-settings.php:73
712
  msgid "Go to Event Category switching page"
713
  msgstr ""
714
 
715
+ #: admin/includes/admin-settings.php:85
716
  msgid "Frontend Settings"
717
  msgstr "Frontend Préférences"
718
 
719
+ #: admin/includes/admin-settings.php:86
720
  msgid "Admin Page Settings"
721
  msgstr "Administration Préférences"
722
 
723
+ #: admin/includes/admin-settings.php:87
724
  msgid "Feed Settings"
725
  msgstr "Flux RSS Préférences"
726
 
727
+ #: admin/includes/admin-settings.php:88
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
979
  msgid "All Dates"
980
  msgstr "Toutes les dates"
981
 
982
+ #: includes/options_helptexts.php:11
983
  msgid "CSV File to import"
984
  msgstr "Fichier CSV à importer"
985
 
986
+ #: includes/options_helptexts.php:13
987
  msgid "Please select the file which contains the event data in CSV format."
988
  msgstr "Veuillez sélectionner le fichier qui contient les évènements au format CSV."
989
 
990
+ #: includes/options_helptexts.php:18
991
  msgid "Used date format"
992
  msgstr "Utilise le format de date suivant"
993
 
994
+ #: includes/options_helptexts.php:21
995
  msgid ""
996
  "With this option the given date format for event start and end date in the "
997
  "CSV file can be specified."
998
  msgstr ""
999
 
1000
+ #: includes/options_helptexts.php:22
1001
  #, php-format
1002
  msgid ""
1003
  "You can use the php date format options given in %1$s, the most important "
1004
  "ones are:"
1005
  msgstr ""
1006
 
1007
+ #: includes/options_helptexts.php:24
1008
  msgid "full year representation, with 4 digits"
1009
  msgstr ""
1010
 
1011
+ #: includes/options_helptexts.php:25
1012
  msgid "numeric representation of a month, with leading zeros"
1013
  msgstr ""
1014
 
1015
+ #: includes/options_helptexts.php:26
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:28
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:29
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:30
1032
  msgid "Examples"
1033
  msgstr "Exemples"
1034
 
1035
+ #: includes/options_helptexts.php:39
1036
  msgid "Text for no events"
1037
  msgstr "Texte si pas d'événements."
1038
 
1039
+ #: includes/options_helptexts.php:41
1040
  msgid ""
1041
  "This option defines the displayed text when no events are available for the "
1042
  "selected view."
1043
  msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
1044
 
1045
+ #: includes/options_helptexts.php:46
1046
  msgid "Multiday filter range"
1047
  msgstr "Filtre sur plusieurs jours"
1048
 
1049
+ #: includes/options_helptexts.php:47
1050
  msgid "Use the complete event range in the date filter"
1051
  msgstr "Utiliser la période complète dans le filtre par date."
1052
 
1053
+ #: includes/options_helptexts.php:49
1054
  msgid ""
1055
  "This option defines if the complete range of a multiday event shall be "
1056
  "considered in the date filter."
1057
  msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
1058
 
1059
+ #: includes/options_helptexts.php:50
1060
  msgid ""
1061
  "If disabled, only the start day of an event is considered in the filter."
1062
  msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
1063
 
1064
+ #: includes/options_helptexts.php:51
1065
  msgid ""
1066
  "For an example multiday event which started yesterday and ends tomorrow this"
1067
  " means, that it is displayed in umcoming dates when this option is enabled, "
1068
  "but it is hidden when the option is disabled."
1069
  msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
1070
 
1071
+ #: includes/options_helptexts.php:56
1072
  msgid "Date display"
1073
  msgstr "Affichage de la date"
1074
 
1075
+ #: includes/options_helptexts.php:57
1076
  msgid "Show the date only once per day"
1077
  msgstr "Afficher la date seulement une fois par jour."
1078
 
1079
+ #: includes/options_helptexts.php:59
1080
  msgid ""
1081
  "With this option enabled the date is only displayed once per day if more "
1082
  "than one event is available on the same day."
1083
  msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
1084
 
1085
+ #: includes/options_helptexts.php:60
1086
  msgid ""
1087
  "If enabled, the events are ordered in a different way (end date before start"
1088
  " time) to allow using the same date for as much events as possible."
1089
  msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
1090
 
1091
+ #: includes/options_helptexts.php:65
1092
  msgid "HTML tags"
1093
  msgstr "Tags HTML"
1094
 
1095
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1096
  #, php-format
1097
  msgid "Allow HTML tags in the event field \"%1$s\""
1098
  msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
1099
 
1100
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1101
  #, php-format
1102
  msgid ""
1103
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1104
  msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
1105
 
1106
+ #: includes/options_helptexts.php:79
1107
  msgid "Preferred language file"
1108
  msgstr "Langue choisie pour le fichier"
1109
 
1110
+ #: includes/options_helptexts.php:80
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:82
1115
  #, php-format
1116
  msgid ""
1117
  "The default is to load the %1$s translation file from the plugin language "
1118
  "directory first (%2$s)."
1119
  msgstr ""
1120
 
1121
+ #: includes/options_helptexts.php:83
1122
  #, php-format
1123
  msgid ""
1124
  "If you want to load your own language file from the general language "
1126
  "language directory, you have to enable this option."
1127
  msgstr ""
1128
 
1129
+ #: includes/options_helptexts.php:89
1130
  msgid "Events permalink slug"
1131
  msgstr ""
1132
 
1133
+ #: includes/options_helptexts.php:90
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:95
1139
  msgid "Text for \"Show content\""
1140
  msgstr "Texte pour \"Afficher le contenu\""
1141
 
1142
+ #: includes/options_helptexts.php:96
1143
  msgid ""
1144
  "With this option the displayed text for the link to show the event content "
1145
  "can be changed, when collapsing is enabled."
1146
  msgstr ""
1147
 
1148
+ #: includes/options_helptexts.php:101
1149
  msgid "Text for \"Hide content\""
1150
  msgstr "Texte pour \"Masquer le contenu\""
1151
 
1152
+ #: includes/options_helptexts.php:102
1153
  msgid ""
1154
  "With this option the displayed text for the link to hide the event content "
1155
  "can be changed, when collapsing is enabled."
1156
  msgstr ""
1157
 
1158
+ #: includes/options_helptexts.php:107
1159
  msgid "Disable CSS file"
1160
  msgstr "Désactiver le fichier CSS"
1161
 
1162
+ #: includes/options_helptexts.php:108
1163
  #, php-format
1164
  msgid "Disable the %1$s file."
1165
  msgstr "Désactiver le fichier %1$s."
1166
 
1167
+ #: includes/options_helptexts.php:110
1168
  #, php-format
1169
  msgid "With this option you can disable the inclusion of the %1$s file."
1170
  msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
1171
 
1172
+ #: includes/options_helptexts.php:111
1173
  msgid ""
1174
  "This normally only make sense if you have css conflicts with your theme and "
1175
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1176
  msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
1177
 
1178
+ #: includes/options_helptexts.php:117
1179
  msgid "Date format in edit form"
1180
  msgstr "Format de la date dans le formulaire d'édition."
1181
 
1182
+ #: includes/options_helptexts.php:119
1183
  msgid ""
1184
  "This option sets the displayed date format for the event date fields in the "
1185
  "event new / edit form."
1186
  msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
1187
 
1188
+ #: includes/options_helptexts.php:120
1189
  msgid "The default is an empty string to use the Wordpress standard setting."
1190
  msgstr ""
1191
 
1192
+ #: includes/options_helptexts.php:121
1193
  #, php-format
1194
  msgid ""
1195
  "All available options to specify the date format can be found %1$shere%2$s."
1196
  msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
1197
 
1198
+ #: includes/options_helptexts.php:127
1199
  msgid "Enable RSS feed"
1200
  msgstr "Activer flux RSS"
1201
 
1202
+ #: includes/options_helptexts.php:128
1203
+ msgid "Enable support for the event RSS feed"
1204
+ msgstr ""
1205
 
1206
+ #: includes/options_helptexts.php:130
1207
+ msgid ""
1208
+ "This option activates the RSS feed for the events and adds a feed link in "
1209
+ "the html head."
1210
+ msgstr ""
1211
 
1212
+ #: includes/options_helptexts.php:131
1213
  msgid ""
1214
  "You have to enable this option if you want to use one of the RSS feed "
1215
  "features."
1216
  msgstr ""
1217
 
1218
+ #: includes/options_helptexts.php:136
1219
+ msgid "Enable iCal feed"
 
 
 
 
 
1220
  msgstr ""
1221
 
1222
+ #: includes/options_helptexts.php:137
1223
+ msgid "Enable support for the event iCal feed"
 
 
 
1224
  msgstr ""
1225
 
1226
+ #: includes/options_helptexts.php:139
1227
+ msgid "This option activates the iCal feed for events."
 
 
 
 
 
 
 
 
 
 
 
1228
  msgstr ""
1229
 
1230
+ #: includes/options_helptexts.php:140
 
 
 
 
 
 
 
 
1231
  msgid ""
1232
+ "You have to enable this option if you want to use one of the iCal features."
1233
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1234
 
1235
+ #: includes/options_helptexts.php:145
1236
  msgid "Position of the RSS feed link"
1237
  msgstr "Position du flux RSS"
1238
 
1239
+ #: includes/options_helptexts.php:146
1240
  msgid "at the top (above the navigation bar)"
1241
  msgstr "En haut (au dessus du menu)"
1242
 
1243
+ #: includes/options_helptexts.php:146
1244
  msgid "between navigation bar and events"
1245
  msgstr "Entre le menu et les événements"
1246
 
1247
+ #: includes/options_helptexts.php:146
1248
  msgid "at the bottom"
1249
  msgstr "En bas"
1250
 
1251
+ #: includes/options_helptexts.php:147
1252
  msgid ""
1253
  "This option specifies the position of the RSS feed link in the event list."
1254
  msgstr "Cette option indique la position du lien du flux RSS dans la liste des évènements."
1255
 
1256
+ #: includes/options_helptexts.php:152
 
 
 
 
 
 
 
 
1257
  msgid "Align of the RSS feed link"
1258
  msgstr "Alignement du lien RSS"
1259
 
1260
+ #: includes/options_helptexts.php:153
1261
  msgid "left"
1262
  msgstr "gauche"
1263
 
1264
+ #: includes/options_helptexts.php:153
1265
  msgid "center"
1266
  msgstr "centré"
1267
 
1268
+ #: includes/options_helptexts.php:153
1269
  msgid "right"
1270
  msgstr "droite"
1271
 
1272
+ #: includes/options_helptexts.php:154
1273
  msgid ""
1274
  "This option specifies the align of the RSS feed link in the event list."
1275
  msgstr "Cette option définit l'alignement du lien du flux RSS dans la liste des évènements."
1276
 
1277
+ #: includes/options_helptexts.php:159
1278
+ msgid "RSS feed name"
1279
+ msgstr ""
1280
 
1281
+ #: includes/options_helptexts.php:161
1282
+ #, php-format
1283
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1284
+ msgstr ""
1285
+
1286
+ #: includes/options_helptexts.php:162
1287
+ #, php-format
1288
  msgid ""
1289
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1290
+ "enabled)."
1291
  msgstr ""
1292
 
1293
+ #: includes/options_helptexts.php:167
1294
+ msgid "RSS feed Description"
1295
+ msgstr ""
1296
+
1297
+ #: includes/options_helptexts.php:169
1298
+ #, php-format
1299
+ msgid "This options set the RSS feed description. The default value is %1$s."
1300
+ msgstr ""
1301
+
1302
+ #: includes/options_helptexts.php:170
1303
  msgid ""
1304
+ "This description will be used in the title for the feed link in the html "
1305
+ "head and for the description in the feed itself."
1306
  msgstr ""
1307
 
1308
+ #: includes/options_helptexts.php:175
1309
+ msgid "RSS feed events"
1310
+ msgstr ""
1311
 
1312
+ #: includes/options_helptexts.php:176
1313
+ msgid "Only show upcoming events in the RSS feed"
1314
+ msgstr ""
1315
 
1316
+ #: includes/options_helptexts.php:178
1317
+ msgid ""
1318
+ "If this option is enabled only the upcoming events are listed in the RSS "
1319
+ "feed."
1320
+ msgstr ""
1321
+
1322
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1323
+ msgid "If disabled, all events (upcoming and past) will be listed."
1324
+ msgstr ""
1325
+
1326
+ #: includes/options_helptexts.php:184
1327
+ msgid "RSS link text"
1328
+ msgstr ""
1329
+
1330
+ #: includes/options_helptexts.php:186
1331
+ msgid "This option sets the caption of the RSS feed link in the event list."
1332
+ msgstr ""
1333
+
1334
+ #: includes/options_helptexts.php:187
1335
+ msgid "Use an empty text to only show the rss image."
1336
+ msgstr ""
1337
+
1338
+ #: includes/options_helptexts.php:188
1339
+ #, php-format
1340
+ msgid ""
1341
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1342
+ " RSS feed link."
1343
+ msgstr ""
1344
+
1345
+ #: includes/options_helptexts.php:193
1346
+ msgid "iCal feed name"
1347
+ msgstr ""
1348
+
1349
+ #: includes/options_helptexts.php:195
1350
+ #, php-format
1351
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1352
+ msgstr ""
1353
+
1354
+ #: includes/options_helptexts.php:196
1355
+ #, php-format
1356
+ msgid ""
1357
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1358
+ "permalinks enabled)."
1359
+ msgstr ""
1360
+
1361
+ #: includes/options_helptexts.php:201
1362
+ msgid "iCal feed events"
1363
+ msgstr ""
1364
+
1365
+ #: includes/options_helptexts.php:202
1366
+ msgid "Only show upcoming events in the iCal feed"
1367
+ msgstr ""
1368
+
1369
+ #: includes/options_helptexts.php:204
1370
+ msgid ""
1371
+ "If this option is enabled only the upcoming events are listed in the iCal "
1372
+ "file."
1373
+ msgstr ""
1374
+
1375
+ #: includes/options_helptexts.php:210
1376
+ msgid "iCal link text"
1377
+ msgstr ""
1378
+
1379
+ #: includes/options_helptexts.php:212
1380
+ msgid "This option sets the iCal link text in the event list."
1381
+ msgstr ""
1382
+
1383
+ #: includes/options_helptexts.php:213
1384
+ msgid "Use an empty text to only show the iCal image."
1385
+ msgstr ""
1386
+
1387
+ #: includes/options_helptexts.php:214
1388
+ #, php-format
1389
  msgid ""
1390
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1391
+ " iCal feed link."
1392
  msgstr ""
1393
 
1394
+ #: includes/options_helptexts.php:221
1395
  msgid "Event Category handling"
1396
  msgstr ""
1397
 
1398
+ #: includes/options_helptexts.php:222
1399
  msgid "Use Post Categories"
1400
  msgstr "Utiliser les catégories d'articles"
1401
 
1402
+ #: includes/options_helptexts.php:224
1403
  msgid ""
1404
  "Do not maintain seperate categories for the events, and use the existing "
1405
  "post categories instead."
1406
  msgstr ""
1407
 
1408
+ #: includes/options_helptexts.php:225
1409
  msgid "Attention"
1410
  msgstr "Attention"
1411
 
1412
+ #: includes/options_helptexts.php:226
1413
  msgid ""
1414
  "This option cannot be changed directly, but you can go to the Event Category"
1415
  " switching page from here."
1535
  #: includes/sc_event-list_helptexts.php:33
1536
  #: includes/sc_event-list_helptexts.php:74
1537
  #: includes/sc_event-list_helptexts.php:89
1538
+ #: includes/sc_event-list_helptexts.php:111
1539
  msgid "number"
1540
  msgstr "nombre"
1541
 
1764
 
1765
  #: includes/sc_event-list_helptexts.php:77
1766
  #: includes/sc_event-list_helptexts.php:92
1767
+ #: includes/sc_event-list_helptexts.php:114
1768
  msgid "This attribute has no influence if only a single event is shown."
1769
  msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
1770
 
1791
 
1792
  #: includes/sc_event-list_helptexts.php:100
1793
  msgid ""
1794
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1795
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1796
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1797
  msgstr ""
1798
 
1799
  #: includes/sc_event-list_helptexts.php:105
1800
  msgid ""
1801
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1802
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1803
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1805
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1806
  msgstr ""
1807
 
1808
+ #: includes/sc_event-list_helptexts.php:112
1809
  msgid ""
1810
  "This attribute specifies if the content should be truncate to the given "
1811
  "number of characters in the event list."
1812
  msgstr ""
1813
 
1814
+ #: includes/sc_event-list_helptexts.php:113
1815
  #, php-format
1816
  msgid "With the standard value %1$s the full text is displayed."
1817
  msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
1818
 
1819
+ #: includes/sc_event-list_helptexts.php:117
1820
  msgid ""
1821
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1822
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1823
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1824
  "\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."
1825
  msgstr ""
1826
 
1827
+ #: includes/sc_event-list_helptexts.php:123
1828
  msgid ""
1829
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1830
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1832
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1833
  msgstr ""
1834
 
1835
+ #: includes/sc_event-list_helptexts.php:129
1836
  msgid ""
1837
  "This attribute specifies if a rss feed link should be added.<br />\n"
1838
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1841
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1842
  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."
1843
 
1844
+ #: includes/sc_event-list_helptexts.php:136
1845
+ msgid ""
1846
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1847
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1848
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1849
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1850
+ msgstr ""
1851
+
1852
+ #: includes/sc_event-list_helptexts.php:142
1853
  msgid ""
1854
  "This attribute specifies the page or post url for event links.<br />\n"
1855
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1856
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1857
  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."
1858
 
1859
+ #: includes/sc_event-list_helptexts.php:149
1860
  msgid ""
1861
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1862
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1863
  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."
1864
 
1865
+ #: includes/sc_event-list.php:145
1866
  msgid "Event Information:"
1867
  msgstr "Information sur l'évènement"
1868
 
1869
+ #: includes/sc_event-list.php:391
1870
+ msgid "Link to RSS feed"
1871
+ msgstr ""
1872
+
1873
+ #: includes/sc_event-list.php:399
1874
+ msgid "Link to iCal feed"
1875
+ msgstr ""
1876
+
1877
  #: includes/widget_helptexts.php:10
1878
  msgid "This option defines the displayed title for the widget."
1879
  msgstr "Cette option définie le titre affiché pour le widget"
languages/event-list-id_ID.mo CHANGED
Binary file
languages/event-list-id_ID.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -50,7 +50,7 @@ msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
 
53
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
54
  msgid "General"
55
  msgstr "Umum"
56
 
@@ -557,13 +557,13 @@ msgid "End Date"
557
  msgstr ""
558
 
559
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
560
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
561
  msgid "Time"
562
  msgstr ""
563
 
564
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
565
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
566
- #: includes/options_helptexts.php:58
567
  msgid "Location"
568
  msgstr ""
569
 
@@ -703,23 +703,23 @@ msgstr ""
703
  msgid "Event draft updated."
704
  msgstr ""
705
 
706
- #: admin/includes/admin-settings.php:71
707
  msgid "Go to Event Category switching page"
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:83
711
  msgid "Frontend Settings"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:84
715
  msgid "Admin Page Settings"
716
  msgstr ""
717
 
718
- #: admin/includes/admin-settings.php:85
719
  msgid "Feed Settings"
720
  msgstr ""
721
 
722
- #: admin/includes/admin-settings.php:86
723
  msgid "Category Taxonomy"
724
  msgstr ""
725
 
@@ -974,146 +974,146 @@ msgstr ""
974
  msgid "All Dates"
975
  msgstr ""
976
 
977
- #: includes/options_helptexts.php:10
978
  msgid "CSV File to import"
979
  msgstr ""
980
 
981
- #: includes/options_helptexts.php:12
982
  msgid "Please select the file which contains the event data in CSV format."
983
  msgstr ""
984
 
985
- #: includes/options_helptexts.php:15
986
  msgid "Used date format"
987
  msgstr ""
988
 
989
- #: includes/options_helptexts.php:17
990
  msgid ""
991
  "With this option the given date format for event start and end date in the "
992
  "CSV file can be specified."
993
  msgstr ""
994
 
995
- #: includes/options_helptexts.php:18
996
  #, php-format
997
  msgid ""
998
  "You can use the php date format options given in %1$s, the most important "
999
  "ones are:"
1000
  msgstr ""
1001
 
1002
- #: includes/options_helptexts.php:20
1003
  msgid "full year representation, with 4 digits"
1004
  msgstr ""
1005
 
1006
- #: includes/options_helptexts.php:21
1007
  msgid "numeric representation of a month, with leading zeros"
1008
  msgstr ""
1009
 
1010
- #: includes/options_helptexts.php:22
1011
  msgid "day of the month, 2 digits with leading zeros"
1012
  msgstr ""
1013
 
1014
- #: includes/options_helptexts.php:24
1015
  msgid ""
1016
  "If the date format in the CSV file does not correspond to the given format, "
1017
  "the import script tries to recognize the date format by itself."
1018
  msgstr ""
1019
 
1020
- #: includes/options_helptexts.php:25
1021
  msgid ""
1022
  "But this can cause problems or result in wrong dates, so it is recommended "
1023
  "to specify the correct date format here."
1024
  msgstr ""
1025
 
1026
- #: includes/options_helptexts.php:26
1027
  msgid "Examples"
1028
  msgstr ""
1029
 
1030
- #: includes/options_helptexts.php:33
1031
  msgid "Text for no events"
1032
  msgstr ""
1033
 
1034
- #: includes/options_helptexts.php:35
1035
  msgid ""
1036
  "This option defines the displayed text when no events are available for the "
1037
  "selected view."
1038
  msgstr ""
1039
 
1040
- #: includes/options_helptexts.php:38
1041
  msgid "Multiday filter range"
1042
  msgstr ""
1043
 
1044
- #: includes/options_helptexts.php:39
1045
  msgid "Use the complete event range in the date filter"
1046
  msgstr ""
1047
 
1048
- #: includes/options_helptexts.php:40
1049
  msgid ""
1050
  "This option defines if the complete range of a multiday event shall be "
1051
  "considered in the date filter."
1052
  msgstr ""
1053
 
1054
- #: includes/options_helptexts.php:41
1055
  msgid ""
1056
  "If disabled, only the start day of an event is considered in the filter."
1057
  msgstr ""
1058
 
1059
- #: includes/options_helptexts.php:42
1060
  msgid ""
1061
  "For an example multiday event which started yesterday and ends tomorrow this"
1062
  " means, that it is displayed in umcoming dates when this option is enabled, "
1063
  "but it is hidden when the option is disabled."
1064
  msgstr ""
1065
 
1066
- #: includes/options_helptexts.php:45
1067
  msgid "Date display"
1068
  msgstr ""
1069
 
1070
- #: includes/options_helptexts.php:46
1071
  msgid "Show the date only once per day"
1072
  msgstr ""
1073
 
1074
- #: includes/options_helptexts.php:47
1075
  msgid ""
1076
  "With this option enabled the date is only displayed once per day if more "
1077
  "than one event is available on the same day."
1078
  msgstr ""
1079
 
1080
- #: includes/options_helptexts.php:48
1081
  msgid ""
1082
  "If enabled, the events are ordered in a different way (end date before start"
1083
  " time) to allow using the same date for as much events as possible."
1084
  msgstr ""
1085
 
1086
- #: includes/options_helptexts.php:51
1087
  msgid "HTML tags"
1088
  msgstr ""
1089
 
1090
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1091
  #, php-format
1092
  msgid "Allow HTML tags in the event field \"%1$s\""
1093
  msgstr ""
1094
 
1095
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1096
  #, php-format
1097
  msgid ""
1098
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1099
  msgstr ""
1100
 
1101
- #: includes/options_helptexts.php:61
1102
  msgid "Preferred language file"
1103
  msgstr ""
1104
 
1105
- #: includes/options_helptexts.php:62
1106
  msgid "Load translations from general language directory first"
1107
  msgstr ""
1108
 
1109
- #: includes/options_helptexts.php:63
1110
  #, php-format
1111
  msgid ""
1112
  "The default is to load the %1$s translation file from the plugin language "
1113
  "directory first (%2$s)."
1114
  msgstr ""
1115
 
1116
- #: includes/options_helptexts.php:64
1117
  #, php-format
1118
  msgid ""
1119
  "If you want to load your own language file from the general language "
@@ -1121,273 +1121,290 @@ msgid ""
1121
  "language directory, you have to enable this option."
1122
  msgstr ""
1123
 
1124
- #: includes/options_helptexts.php:68
1125
  msgid "Events permalink slug"
1126
  msgstr ""
1127
 
1128
- #: includes/options_helptexts.php:69
1129
  msgid ""
1130
  "With this option the slug for the events permalink URLs can be defined."
1131
  msgstr ""
1132
 
1133
- #: includes/options_helptexts.php:72
1134
  msgid "Text for \"Show content\""
1135
  msgstr ""
1136
 
1137
- #: includes/options_helptexts.php:73
1138
  msgid ""
1139
  "With this option the displayed text for the link to show the event content "
1140
  "can be changed, when collapsing is enabled."
1141
  msgstr ""
1142
 
1143
- #: includes/options_helptexts.php:76
1144
  msgid "Text for \"Hide content\""
1145
  msgstr ""
1146
 
1147
- #: includes/options_helptexts.php:77
1148
  msgid ""
1149
  "With this option the displayed text for the link to hide the event content "
1150
  "can be changed, when collapsing is enabled."
1151
  msgstr ""
1152
 
1153
- #: includes/options_helptexts.php:80
1154
  msgid "Disable CSS file"
1155
  msgstr ""
1156
 
1157
- #: includes/options_helptexts.php:81
1158
  #, php-format
1159
  msgid "Disable the %1$s file."
1160
  msgstr ""
1161
 
1162
- #: includes/options_helptexts.php:82
1163
  #, php-format
1164
  msgid "With this option you can disable the inclusion of the %1$s file."
1165
  msgstr ""
1166
 
1167
- #: includes/options_helptexts.php:83
1168
  msgid ""
1169
  "This normally only make sense if you have css conflicts with your theme and "
1170
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1171
  msgstr ""
1172
 
1173
- #: includes/options_helptexts.php:87
1174
  msgid "Date format in edit form"
1175
  msgstr ""
1176
 
1177
- #: includes/options_helptexts.php:88
1178
  msgid ""
1179
  "This option sets the displayed date format for the event date fields in the "
1180
  "event new / edit form."
1181
  msgstr ""
1182
 
1183
- #: includes/options_helptexts.php:89
1184
  msgid "The default is an empty string to use the Wordpress standard setting."
1185
  msgstr ""
1186
 
1187
- #: includes/options_helptexts.php:90
1188
  #, php-format
1189
  msgid ""
1190
  "All available options to specify the date format can be found %1$shere%2$s."
1191
  msgstr ""
1192
 
1193
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1194
  msgid "Enable RSS feed"
1195
  msgstr ""
1196
 
1197
- #: includes/options_helptexts.php:95
1198
- msgid "Enable support for an event RSS feed"
1199
  msgstr ""
1200
 
1201
- #: includes/options_helptexts.php:96
1202
- msgid "This option activates a RSS feed for the events."
 
 
1203
  msgstr ""
1204
 
1205
- #: includes/options_helptexts.php:97
1206
  msgid ""
1207
  "You have to enable this option if you want to use one of the RSS feed "
1208
  "features."
1209
  msgstr ""
1210
 
1211
- #: includes/options_helptexts.php:100
1212
- msgid "Feed name"
1213
  msgstr ""
1214
 
1215
- #: includes/options_helptexts.php:101
1216
- #, php-format
1217
- msgid "This option sets the feed name. The default value is %1$s."
1218
  msgstr ""
1219
 
1220
- #: includes/options_helptexts.php:102
1221
- #, php-format
1222
- msgid ""
1223
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1224
- "enabled)."
1225
  msgstr ""
1226
 
1227
- #: includes/options_helptexts.php:105
1228
- msgid "Feed Description"
 
1229
  msgstr ""
1230
 
1231
- #: includes/options_helptexts.php:106
1232
- #, php-format
1233
- msgid "This options set the feed description. The default value is %1$s."
1234
  msgstr ""
1235
 
1236
- #: includes/options_helptexts.php:107
1237
- msgid ""
1238
- "This description will be used in the title for the feed link in the html "
1239
- "head and for the description in the feed itself."
1240
  msgstr ""
1241
 
1242
- #: includes/options_helptexts.php:110
1243
- msgid "Listed events"
1244
  msgstr ""
1245
 
1246
- #: includes/options_helptexts.php:111
1247
- msgid "Only show upcoming events in feed"
1248
  msgstr ""
1249
 
1250
- #: includes/options_helptexts.php:112
1251
  msgid ""
1252
- "If this option is enabled only the upcoming events are listed in the feed."
1253
  msgstr ""
1254
 
1255
- #: includes/options_helptexts.php:113
1256
- msgid "If disabled all events (upcoming and past) will be listed."
1257
  msgstr ""
1258
 
1259
- #: includes/options_helptexts.php:116
1260
- msgid "Add RSS feed link in head"
1261
  msgstr ""
1262
 
1263
- #: includes/options_helptexts.php:117
1264
- msgid "Add RSS feed link in the html head"
1265
  msgstr ""
1266
 
1267
- #: includes/options_helptexts.php:118
1268
- msgid "This option adds a RSS feed in the html head for the events."
1269
  msgstr ""
1270
 
1271
- #: includes/options_helptexts.php:119
1272
- msgid "There are 2 alternatives to include the RSS feed"
 
1273
  msgstr ""
1274
 
1275
- #: includes/options_helptexts.php:120
1276
- msgid ""
1277
- "The first way is this option to include a link in the html head. This link "
1278
- "will be recognized by browers or feed readers."
1279
  msgstr ""
1280
 
1281
- #: includes/options_helptexts.php:121
1282
  #, php-format
1283
- msgid ""
1284
- "The second way is to include a visible feed link directly in the event list."
1285
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1286
  msgstr ""
1287
 
1288
- #: includes/options_helptexts.php:122
1289
  #, php-format
1290
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1291
  msgstr ""
1292
 
1293
- #: includes/options_helptexts.php:125
1294
- msgid "Position of the RSS feed link"
1295
  msgstr ""
1296
 
1297
- #: includes/options_helptexts.php:126
1298
- msgid "at the top (above the navigation bar)"
 
1299
  msgstr ""
1300
 
1301
- #: includes/options_helptexts.php:126
1302
- msgid "between navigation bar and events"
 
 
1303
  msgstr ""
1304
 
1305
- #: includes/options_helptexts.php:126
1306
- msgid "at the bottom"
1307
  msgstr ""
1308
 
1309
- #: includes/options_helptexts.php:127
1310
- msgid ""
1311
- "This option specifies the position of the RSS feed link in the event list."
1312
  msgstr ""
1313
 
1314
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1315
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1316
- #, php-format
1317
  msgid ""
1318
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1319
- " feed link."
1320
  msgstr ""
1321
 
1322
- #: includes/options_helptexts.php:131
1323
- msgid "Align of the RSS feed link"
1324
  msgstr ""
1325
 
1326
- #: includes/options_helptexts.php:132
1327
- msgid "left"
1328
  msgstr ""
1329
 
1330
- #: includes/options_helptexts.php:132
1331
- msgid "center"
1332
  msgstr ""
1333
 
1334
- #: includes/options_helptexts.php:132
1335
- msgid "right"
1336
  msgstr ""
1337
 
1338
- #: includes/options_helptexts.php:133
 
1339
  msgid ""
1340
- "This option specifies the align of the RSS feed link in the event list."
 
1341
  msgstr ""
1342
 
1343
- #: includes/options_helptexts.php:137
1344
- msgid "Feed link text"
1345
  msgstr ""
1346
 
1347
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1348
  msgid ""
1349
- "This option specifies the caption of the RSS feed link in the event list."
 
1350
  msgstr ""
1351
 
1352
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1353
  msgid ""
1354
- "Insert an empty text to hide any text if you only want to show the rss "
1355
- "image."
1356
  msgstr ""
1357
 
1358
- #: includes/options_helptexts.php:143
1359
- msgid "Feed link image"
1360
  msgstr ""
1361
 
1362
- #: includes/options_helptexts.php:144
1363
- msgid "Show rss image in feed link"
1364
  msgstr ""
1365
 
1366
- #: includes/options_helptexts.php:145
 
 
 
 
 
1367
  msgid ""
1368
- "This option specifies if the an image should be dispayed in the feed link in"
1369
- " front of the text."
1370
  msgstr ""
1371
 
1372
- #: includes/options_helptexts.php:151
1373
  msgid "Event Category handling"
1374
  msgstr ""
1375
 
1376
- #: includes/options_helptexts.php:152
1377
  msgid "Use Post Categories"
1378
  msgstr ""
1379
 
1380
- #: includes/options_helptexts.php:153
1381
  msgid ""
1382
  "Do not maintain seperate categories for the events, and use the existing "
1383
  "post categories instead."
1384
  msgstr ""
1385
 
1386
- #: includes/options_helptexts.php:154
1387
  msgid "Attention"
1388
  msgstr ""
1389
 
1390
- #: includes/options_helptexts.php:155
1391
  msgid ""
1392
  "This option cannot be changed directly, but you can go to the Event Category"
1393
  " switching page from here."
@@ -1513,7 +1530,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:109
1517
  msgid "number"
1518
  msgstr ""
1519
 
@@ -1742,7 +1759,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:112
1746
  msgid "This attribute has no influence if only a single event is shown."
1747
  msgstr ""
1748
 
@@ -1769,38 +1786,40 @@ msgstr ""
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"
1799
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1827,7 @@ msgid ""
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,23 +1836,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1837
  #: includes/widget_helptexts.php:10
1838
  msgid "This option defines the displayed title for the widget."
1839
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Pengaturan Daftar Acara"
34
 
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
 
53
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
54
  msgid "General"
55
  msgstr "Umum"
56
 
557
  msgstr ""
558
 
559
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
560
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
561
  msgid "Time"
562
  msgstr ""
563
 
564
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
565
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
566
+ #: includes/options_helptexts.php:74
567
  msgid "Location"
568
  msgstr ""
569
 
703
  msgid "Event draft updated."
704
  msgstr ""
705
 
706
+ #: admin/includes/admin-settings.php:73
707
  msgid "Go to Event Category switching page"
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-settings.php:85
711
  msgid "Frontend Settings"
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:86
715
  msgid "Admin Page Settings"
716
  msgstr ""
717
 
718
+ #: admin/includes/admin-settings.php:87
719
  msgid "Feed Settings"
720
  msgstr ""
721
 
722
+ #: admin/includes/admin-settings.php:88
723
  msgid "Category Taxonomy"
724
  msgstr ""
725
 
974
  msgid "All Dates"
975
  msgstr ""
976
 
977
+ #: includes/options_helptexts.php:11
978
  msgid "CSV File to import"
979
  msgstr ""
980
 
981
+ #: includes/options_helptexts.php:13
982
  msgid "Please select the file which contains the event data in CSV format."
983
  msgstr ""
984
 
985
+ #: includes/options_helptexts.php:18
986
  msgid "Used date format"
987
  msgstr ""
988
 
989
+ #: includes/options_helptexts.php:21
990
  msgid ""
991
  "With this option the given date format for event start and end date in the "
992
  "CSV file can be specified."
993
  msgstr ""
994
 
995
+ #: includes/options_helptexts.php:22
996
  #, php-format
997
  msgid ""
998
  "You can use the php date format options given in %1$s, the most important "
999
  "ones are:"
1000
  msgstr ""
1001
 
1002
+ #: includes/options_helptexts.php:24
1003
  msgid "full year representation, with 4 digits"
1004
  msgstr ""
1005
 
1006
+ #: includes/options_helptexts.php:25
1007
  msgid "numeric representation of a month, with leading zeros"
1008
  msgstr ""
1009
 
1010
+ #: includes/options_helptexts.php:26
1011
  msgid "day of the month, 2 digits with leading zeros"
1012
  msgstr ""
1013
 
1014
+ #: includes/options_helptexts.php:28
1015
  msgid ""
1016
  "If the date format in the CSV file does not correspond to the given format, "
1017
  "the import script tries to recognize the date format by itself."
1018
  msgstr ""
1019
 
1020
+ #: includes/options_helptexts.php:29
1021
  msgid ""
1022
  "But this can cause problems or result in wrong dates, so it is recommended "
1023
  "to specify the correct date format here."
1024
  msgstr ""
1025
 
1026
+ #: includes/options_helptexts.php:30
1027
  msgid "Examples"
1028
  msgstr ""
1029
 
1030
+ #: includes/options_helptexts.php:39
1031
  msgid "Text for no events"
1032
  msgstr ""
1033
 
1034
+ #: includes/options_helptexts.php:41
1035
  msgid ""
1036
  "This option defines the displayed text when no events are available for the "
1037
  "selected view."
1038
  msgstr ""
1039
 
1040
+ #: includes/options_helptexts.php:46
1041
  msgid "Multiday filter range"
1042
  msgstr ""
1043
 
1044
+ #: includes/options_helptexts.php:47
1045
  msgid "Use the complete event range in the date filter"
1046
  msgstr ""
1047
 
1048
+ #: includes/options_helptexts.php:49
1049
  msgid ""
1050
  "This option defines if the complete range of a multiday event shall be "
1051
  "considered in the date filter."
1052
  msgstr ""
1053
 
1054
+ #: includes/options_helptexts.php:50
1055
  msgid ""
1056
  "If disabled, only the start day of an event is considered in the filter."
1057
  msgstr ""
1058
 
1059
+ #: includes/options_helptexts.php:51
1060
  msgid ""
1061
  "For an example multiday event which started yesterday and ends tomorrow this"
1062
  " means, that it is displayed in umcoming dates when this option is enabled, "
1063
  "but it is hidden when the option is disabled."
1064
  msgstr ""
1065
 
1066
+ #: includes/options_helptexts.php:56
1067
  msgid "Date display"
1068
  msgstr ""
1069
 
1070
+ #: includes/options_helptexts.php:57
1071
  msgid "Show the date only once per day"
1072
  msgstr ""
1073
 
1074
+ #: includes/options_helptexts.php:59
1075
  msgid ""
1076
  "With this option enabled the date is only displayed once per day if more "
1077
  "than one event is available on the same day."
1078
  msgstr ""
1079
 
1080
+ #: includes/options_helptexts.php:60
1081
  msgid ""
1082
  "If enabled, the events are ordered in a different way (end date before start"
1083
  " time) to allow using the same date for as much events as possible."
1084
  msgstr ""
1085
 
1086
+ #: includes/options_helptexts.php:65
1087
  msgid "HTML tags"
1088
  msgstr ""
1089
 
1090
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1091
  #, php-format
1092
  msgid "Allow HTML tags in the event field \"%1$s\""
1093
  msgstr ""
1094
 
1095
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1096
  #, php-format
1097
  msgid ""
1098
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1099
  msgstr ""
1100
 
1101
+ #: includes/options_helptexts.php:79
1102
  msgid "Preferred language file"
1103
  msgstr ""
1104
 
1105
+ #: includes/options_helptexts.php:80
1106
  msgid "Load translations from general language directory first"
1107
  msgstr ""
1108
 
1109
+ #: includes/options_helptexts.php:82
1110
  #, php-format
1111
  msgid ""
1112
  "The default is to load the %1$s translation file from the plugin language "
1113
  "directory first (%2$s)."
1114
  msgstr ""
1115
 
1116
+ #: includes/options_helptexts.php:83
1117
  #, php-format
1118
  msgid ""
1119
  "If you want to load your own language file from the general language "
1121
  "language directory, you have to enable this option."
1122
  msgstr ""
1123
 
1124
+ #: includes/options_helptexts.php:89
1125
  msgid "Events permalink slug"
1126
  msgstr ""
1127
 
1128
+ #: includes/options_helptexts.php:90
1129
  msgid ""
1130
  "With this option the slug for the events permalink URLs can be defined."
1131
  msgstr ""
1132
 
1133
+ #: includes/options_helptexts.php:95
1134
  msgid "Text for \"Show content\""
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:96
1138
  msgid ""
1139
  "With this option the displayed text for the link to show the event content "
1140
  "can be changed, when collapsing is enabled."
1141
  msgstr ""
1142
 
1143
+ #: includes/options_helptexts.php:101
1144
  msgid "Text for \"Hide content\""
1145
  msgstr ""
1146
 
1147
+ #: includes/options_helptexts.php:102
1148
  msgid ""
1149
  "With this option the displayed text for the link to hide the event content "
1150
  "can be changed, when collapsing is enabled."
1151
  msgstr ""
1152
 
1153
+ #: includes/options_helptexts.php:107
1154
  msgid "Disable CSS file"
1155
  msgstr ""
1156
 
1157
+ #: includes/options_helptexts.php:108
1158
  #, php-format
1159
  msgid "Disable the %1$s file."
1160
  msgstr ""
1161
 
1162
+ #: includes/options_helptexts.php:110
1163
  #, php-format
1164
  msgid "With this option you can disable the inclusion of the %1$s file."
1165
  msgstr ""
1166
 
1167
+ #: includes/options_helptexts.php:111
1168
  msgid ""
1169
  "This normally only make sense if you have css conflicts with your theme and "
1170
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1171
  msgstr ""
1172
 
1173
+ #: includes/options_helptexts.php:117
1174
  msgid "Date format in edit form"
1175
  msgstr ""
1176
 
1177
+ #: includes/options_helptexts.php:119
1178
  msgid ""
1179
  "This option sets the displayed date format for the event date fields in the "
1180
  "event new / edit form."
1181
  msgstr ""
1182
 
1183
+ #: includes/options_helptexts.php:120
1184
  msgid "The default is an empty string to use the Wordpress standard setting."
1185
  msgstr ""
1186
 
1187
+ #: includes/options_helptexts.php:121
1188
  #, php-format
1189
  msgid ""
1190
  "All available options to specify the date format can be found %1$shere%2$s."
1191
  msgstr ""
1192
 
1193
+ #: includes/options_helptexts.php:127
1194
  msgid "Enable RSS feed"
1195
  msgstr ""
1196
 
1197
+ #: includes/options_helptexts.php:128
1198
+ msgid "Enable support for the event RSS feed"
1199
  msgstr ""
1200
 
1201
+ #: includes/options_helptexts.php:130
1202
+ msgid ""
1203
+ "This option activates the RSS feed for the events and adds a feed link in "
1204
+ "the html head."
1205
  msgstr ""
1206
 
1207
+ #: includes/options_helptexts.php:131
1208
  msgid ""
1209
  "You have to enable this option if you want to use one of the RSS feed "
1210
  "features."
1211
  msgstr ""
1212
 
1213
+ #: includes/options_helptexts.php:136
1214
+ msgid "Enable iCal feed"
1215
  msgstr ""
1216
 
1217
+ #: includes/options_helptexts.php:137
1218
+ msgid "Enable support for the event iCal feed"
 
1219
  msgstr ""
1220
 
1221
+ #: includes/options_helptexts.php:139
1222
+ msgid "This option activates the iCal feed for events."
 
 
 
1223
  msgstr ""
1224
 
1225
+ #: includes/options_helptexts.php:140
1226
+ msgid ""
1227
+ "You have to enable this option if you want to use one of the iCal features."
1228
  msgstr ""
1229
 
1230
+ #: includes/options_helptexts.php:145
1231
+ msgid "Position of the RSS feed link"
 
1232
  msgstr ""
1233
 
1234
+ #: includes/options_helptexts.php:146
1235
+ msgid "at the top (above the navigation bar)"
 
 
1236
  msgstr ""
1237
 
1238
+ #: includes/options_helptexts.php:146
1239
+ msgid "between navigation bar and events"
1240
  msgstr ""
1241
 
1242
+ #: includes/options_helptexts.php:146
1243
+ msgid "at the bottom"
1244
  msgstr ""
1245
 
1246
+ #: includes/options_helptexts.php:147
1247
  msgid ""
1248
+ "This option specifies the position of the RSS feed link in the event list."
1249
  msgstr ""
1250
 
1251
+ #: includes/options_helptexts.php:152
1252
+ msgid "Align of the RSS feed link"
1253
  msgstr ""
1254
 
1255
+ #: includes/options_helptexts.php:153
1256
+ msgid "left"
1257
  msgstr ""
1258
 
1259
+ #: includes/options_helptexts.php:153
1260
+ msgid "center"
1261
  msgstr ""
1262
 
1263
+ #: includes/options_helptexts.php:153
1264
+ msgid "right"
1265
  msgstr ""
1266
 
1267
+ #: includes/options_helptexts.php:154
1268
+ msgid ""
1269
+ "This option specifies the align of the RSS feed link in the event list."
1270
  msgstr ""
1271
 
1272
+ #: includes/options_helptexts.php:159
1273
+ msgid "RSS feed name"
 
 
1274
  msgstr ""
1275
 
1276
+ #: includes/options_helptexts.php:161
1277
  #, php-format
1278
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1279
  msgstr ""
1280
 
1281
+ #: includes/options_helptexts.php:162
1282
  #, php-format
1283
+ msgid ""
1284
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1285
+ "enabled)."
1286
  msgstr ""
1287
 
1288
+ #: includes/options_helptexts.php:167
1289
+ msgid "RSS feed Description"
1290
  msgstr ""
1291
 
1292
+ #: includes/options_helptexts.php:169
1293
+ #, php-format
1294
+ msgid "This options set the RSS feed description. The default value is %1$s."
1295
  msgstr ""
1296
 
1297
+ #: includes/options_helptexts.php:170
1298
+ msgid ""
1299
+ "This description will be used in the title for the feed link in the html "
1300
+ "head and for the description in the feed itself."
1301
  msgstr ""
1302
 
1303
+ #: includes/options_helptexts.php:175
1304
+ msgid "RSS feed events"
1305
  msgstr ""
1306
 
1307
+ #: includes/options_helptexts.php:176
1308
+ msgid "Only show upcoming events in the RSS feed"
 
1309
  msgstr ""
1310
 
1311
+ #: includes/options_helptexts.php:178
 
 
1312
  msgid ""
1313
+ "If this option is enabled only the upcoming events are listed in the RSS "
1314
+ "feed."
1315
  msgstr ""
1316
 
1317
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1318
+ msgid "If disabled, all events (upcoming and past) will be listed."
1319
  msgstr ""
1320
 
1321
+ #: includes/options_helptexts.php:184
1322
+ msgid "RSS link text"
1323
  msgstr ""
1324
 
1325
+ #: includes/options_helptexts.php:186
1326
+ msgid "This option sets the caption of the RSS feed link in the event list."
1327
  msgstr ""
1328
 
1329
+ #: includes/options_helptexts.php:187
1330
+ msgid "Use an empty text to only show the rss image."
1331
  msgstr ""
1332
 
1333
+ #: includes/options_helptexts.php:188
1334
+ #, php-format
1335
  msgid ""
1336
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1337
+ " RSS feed link."
1338
  msgstr ""
1339
 
1340
+ #: includes/options_helptexts.php:193
1341
+ msgid "iCal feed name"
1342
  msgstr ""
1343
 
1344
+ #: includes/options_helptexts.php:195
1345
+ #, php-format
1346
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1347
+ msgstr ""
1348
+
1349
+ #: includes/options_helptexts.php:196
1350
+ #, php-format
1351
  msgid ""
1352
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1353
+ "permalinks enabled)."
1354
  msgstr ""
1355
 
1356
+ #: includes/options_helptexts.php:201
1357
+ msgid "iCal feed events"
1358
+ msgstr ""
1359
+
1360
+ #: includes/options_helptexts.php:202
1361
+ msgid "Only show upcoming events in the iCal feed"
1362
+ msgstr ""
1363
+
1364
+ #: includes/options_helptexts.php:204
1365
  msgid ""
1366
+ "If this option is enabled only the upcoming events are listed in the iCal "
1367
+ "file."
1368
  msgstr ""
1369
 
1370
+ #: includes/options_helptexts.php:210
1371
+ msgid "iCal link text"
1372
  msgstr ""
1373
 
1374
+ #: includes/options_helptexts.php:212
1375
+ msgid "This option sets the iCal link text in the event list."
1376
  msgstr ""
1377
 
1378
+ #: includes/options_helptexts.php:213
1379
+ msgid "Use an empty text to only show the iCal image."
1380
+ msgstr ""
1381
+
1382
+ #: includes/options_helptexts.php:214
1383
+ #, php-format
1384
  msgid ""
1385
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1386
+ " iCal feed link."
1387
  msgstr ""
1388
 
1389
+ #: includes/options_helptexts.php:221
1390
  msgid "Event Category handling"
1391
  msgstr ""
1392
 
1393
+ #: includes/options_helptexts.php:222
1394
  msgid "Use Post Categories"
1395
  msgstr ""
1396
 
1397
+ #: includes/options_helptexts.php:224
1398
  msgid ""
1399
  "Do not maintain seperate categories for the events, and use the existing "
1400
  "post categories instead."
1401
  msgstr ""
1402
 
1403
+ #: includes/options_helptexts.php:225
1404
  msgid "Attention"
1405
  msgstr ""
1406
 
1407
+ #: includes/options_helptexts.php:226
1408
  msgid ""
1409
  "This option cannot be changed directly, but you can go to the Event Category"
1410
  " switching page from here."
1530
  #: includes/sc_event-list_helptexts.php:33
1531
  #: includes/sc_event-list_helptexts.php:74
1532
  #: includes/sc_event-list_helptexts.php:89
1533
+ #: includes/sc_event-list_helptexts.php:111
1534
  msgid "number"
1535
  msgstr ""
1536
 
1759
 
1760
  #: includes/sc_event-list_helptexts.php:77
1761
  #: includes/sc_event-list_helptexts.php:92
1762
+ #: includes/sc_event-list_helptexts.php:114
1763
  msgid "This attribute has no influence if only a single event is shown."
1764
  msgstr ""
1765
 
1786
 
1787
  #: includes/sc_event-list_helptexts.php:100
1788
  msgid ""
1789
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1790
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1791
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1792
  msgstr ""
1793
 
1794
  #: includes/sc_event-list_helptexts.php:105
1795
  msgid ""
1796
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1797
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1798
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1799
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1801
  msgstr ""
1802
 
1803
+ #: includes/sc_event-list_helptexts.php:112
1804
  msgid ""
1805
  "This attribute specifies if the content should be truncate to the given "
1806
  "number of characters in the event list."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:113
1810
  #, php-format
1811
  msgid "With the standard value %1$s the full text is displayed."
1812
  msgstr ""
1813
 
1814
+ #: includes/sc_event-list_helptexts.php:117
1815
  msgid ""
1816
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1817
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1818
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1819
  "\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."
1820
  msgstr ""
1821
 
1822
+ #: includes/sc_event-list_helptexts.php:123
1823
  msgid ""
1824
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1825
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1827
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1828
  msgstr ""
1829
 
1830
+ #: includes/sc_event-list_helptexts.php:129
1831
  msgid ""
1832
  "This attribute specifies if a rss feed link should be added.<br />\n"
1833
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1836
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1837
  msgstr ""
1838
 
1839
+ #: includes/sc_event-list_helptexts.php:136
1840
+ msgid ""
1841
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1842
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1843
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1844
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1845
+ msgstr ""
1846
+
1847
+ #: includes/sc_event-list_helptexts.php:142
1848
  msgid ""
1849
  "This attribute specifies the page or post url for event links.<br />\n"
1850
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1851
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1852
  msgstr ""
1853
 
1854
+ #: includes/sc_event-list_helptexts.php:149
1855
  msgid ""
1856
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1857
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1858
  msgstr ""
1859
 
1860
+ #: includes/sc_event-list.php:145
1861
  msgid "Event Information:"
1862
  msgstr ""
1863
 
1864
+ #: includes/sc_event-list.php:391
1865
+ msgid "Link to RSS feed"
1866
+ msgstr ""
1867
+
1868
+ #: includes/sc_event-list.php:399
1869
+ msgid "Link to iCal feed"
1870
+ msgstr ""
1871
+
1872
  #: includes/widget_helptexts.php:10
1873
  msgid "This option defines the displayed title for the widget."
1874
  msgstr ""
languages/event-list-it_IT.mo CHANGED
Binary file
languages/event-list-it_IT.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -51,7 +51,7 @@ msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
55
  msgid "General"
56
  msgstr "Generico"
57
 
@@ -559,13 +559,13 @@ msgid "End Date"
559
  msgstr "Data di fine"
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
563
  msgid "Time"
564
  msgstr "Ora"
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
568
- #: includes/options_helptexts.php:58
569
  msgid "Location"
570
  msgstr "Ubicazione"
571
 
@@ -705,23 +705,23 @@ msgstr ""
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
- #: admin/includes/admin-settings.php:71
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:83
713
  msgid "Frontend Settings"
714
  msgstr "Impostazioni interfaccia grafica"
715
 
716
- #: admin/includes/admin-settings.php:84
717
  msgid "Admin Page Settings"
718
  msgstr "Impostazioni di amministrazione"
719
 
720
- #: admin/includes/admin-settings.php:85
721
  msgid "Feed Settings"
722
  msgstr "Impostazioni Feed"
723
 
724
- #: admin/includes/admin-settings.php:86
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -976,146 +976,146 @@ msgstr "Tutti"
976
  msgid "All Dates"
977
  msgstr ""
978
 
979
- #: includes/options_helptexts.php:10
980
  msgid "CSV File to import"
981
  msgstr "File CSV da importare"
982
 
983
- #: includes/options_helptexts.php:12
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV."
986
 
987
- #: includes/options_helptexts.php:15
988
  msgid "Used date format"
989
  msgstr "Formato data utilizzato"
990
 
991
- #: includes/options_helptexts.php:17
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
- #: includes/options_helptexts.php:18
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
- #: includes/options_helptexts.php:20
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:21
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:22
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:24
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
- #: includes/options_helptexts.php:25
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
- #: includes/options_helptexts.php:26
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:33
1033
  msgid "Text for no events"
1034
  msgstr "Testo per assenza di eventi"
1035
 
1036
- #: includes/options_helptexts.php:35
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
- #: includes/options_helptexts.php:38
1043
  msgid "Multiday filter range"
1044
  msgstr "Filtro intervallo multi giornaliero"
1045
 
1046
- #: includes/options_helptexts.php:39
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
- #: includes/options_helptexts.php:40
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
- #: includes/options_helptexts.php:41
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
- #: includes/options_helptexts.php:42
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
- #: includes/options_helptexts.php:45
1069
  msgid "Date display"
1070
  msgstr "Visualizza data"
1071
 
1072
- #: includes/options_helptexts.php:46
1073
  msgid "Show the date only once per day"
1074
  msgstr ""
1075
 
1076
- #: includes/options_helptexts.php:47
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
- #: includes/options_helptexts.php:48
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
- #: includes/options_helptexts.php:51
1089
  msgid "HTML tags"
1090
  msgstr "HTML tags"
1091
 
1092
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
- #: includes/options_helptexts.php:61
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
- #: includes/options_helptexts.php:62
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
- #: includes/options_helptexts.php:63
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
- #: includes/options_helptexts.php:64
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
@@ -1123,273 +1123,290 @@ msgid ""
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
- #: includes/options_helptexts.php:68
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
- #: includes/options_helptexts.php:69
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
- #: includes/options_helptexts.php:72
1136
  msgid "Text for \"Show content\""
1137
  msgstr ""
1138
 
1139
- #: includes/options_helptexts.php:73
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
- #: includes/options_helptexts.php:76
1146
  msgid "Text for \"Hide content\""
1147
  msgstr ""
1148
 
1149
- #: includes/options_helptexts.php:77
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
- #: includes/options_helptexts.php:80
1156
  msgid "Disable CSS file"
1157
  msgstr "Disabilita file CSS"
1158
 
1159
- #: includes/options_helptexts.php:81
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr ""
1163
 
1164
- #: includes/options_helptexts.php:82
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
- #: includes/options_helptexts.php:83
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
- #: includes/options_helptexts.php:87
1176
  msgid "Date format in edit form"
1177
  msgstr ""
1178
 
1179
- #: includes/options_helptexts.php:88
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
- #: includes/options_helptexts.php:89
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
- #: includes/options_helptexts.php:90
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1196
  msgid "Enable RSS feed"
1197
  msgstr "Abilita feed RSS"
1198
 
1199
- #: includes/options_helptexts.php:95
1200
- msgid "Enable support for an event RSS feed"
1201
  msgstr ""
1202
 
1203
- #: includes/options_helptexts.php:96
1204
- msgid "This option activates a RSS feed for the events."
 
 
1205
  msgstr ""
1206
 
1207
- #: includes/options_helptexts.php:97
1208
  msgid ""
1209
  "You have to enable this option if you want to use one of the RSS feed "
1210
  "features."
1211
  msgstr ""
1212
 
1213
- #: includes/options_helptexts.php:100
1214
- msgid "Feed name"
1215
- msgstr "Nome del Feed"
1216
 
1217
- #: includes/options_helptexts.php:101
1218
- #, php-format
1219
- msgid "This option sets the feed name. The default value is %1$s."
1220
  msgstr ""
1221
 
1222
- #: includes/options_helptexts.php:102
1223
- #, php-format
1224
- msgid ""
1225
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1226
- "enabled)."
1227
  msgstr ""
1228
 
1229
- #: includes/options_helptexts.php:105
1230
- msgid "Feed Description"
1231
- msgstr "Descrizione del Feed"
 
1232
 
1233
- #: includes/options_helptexts.php:106
1234
- #, php-format
1235
- msgid "This options set the feed description. The default value is %1$s."
1236
  msgstr ""
1237
 
1238
- #: includes/options_helptexts.php:107
1239
- msgid ""
1240
- "This description will be used in the title for the feed link in the html "
1241
- "head and for the description in the feed itself."
1242
  msgstr ""
1243
 
1244
- #: includes/options_helptexts.php:110
1245
- msgid "Listed events"
1246
- msgstr "Eventi elencati"
1247
 
1248
- #: includes/options_helptexts.php:111
1249
- msgid "Only show upcoming events in feed"
1250
- msgstr "Mostra solo i prossimi eventi nel Feed"
1251
 
1252
- #: includes/options_helptexts.php:112
1253
  msgid ""
1254
- "If this option is enabled only the upcoming events are listed in the feed."
1255
  msgstr ""
1256
 
1257
- #: includes/options_helptexts.php:113
1258
- msgid "If disabled all events (upcoming and past) will be listed."
1259
  msgstr ""
1260
 
1261
- #: includes/options_helptexts.php:116
1262
- msgid "Add RSS feed link in head"
1263
  msgstr ""
1264
 
1265
- #: includes/options_helptexts.php:117
1266
- msgid "Add RSS feed link in the html head"
1267
  msgstr ""
1268
 
1269
- #: includes/options_helptexts.php:118
1270
- msgid "This option adds a RSS feed in the html head for the events."
1271
  msgstr ""
1272
 
1273
- #: includes/options_helptexts.php:119
1274
- msgid "There are 2 alternatives to include the RSS feed"
 
1275
  msgstr ""
1276
 
1277
- #: includes/options_helptexts.php:120
1278
- msgid ""
1279
- "The first way is this option to include a link in the html head. This link "
1280
- "will be recognized by browers or feed readers."
1281
  msgstr ""
1282
 
1283
- #: includes/options_helptexts.php:121
1284
  #, php-format
1285
- msgid ""
1286
- "The second way is to include a visible feed link directly in the event list."
1287
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1288
  msgstr ""
1289
 
1290
- #: includes/options_helptexts.php:122
1291
  #, php-format
1292
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1293
  msgstr ""
1294
 
1295
- #: includes/options_helptexts.php:125
1296
- msgid "Position of the RSS feed link"
1297
  msgstr ""
1298
 
1299
- #: includes/options_helptexts.php:126
1300
- msgid "at the top (above the navigation bar)"
 
1301
  msgstr ""
1302
 
1303
- #: includes/options_helptexts.php:126
1304
- msgid "between navigation bar and events"
 
 
1305
  msgstr ""
1306
 
1307
- #: includes/options_helptexts.php:126
1308
- msgid "at the bottom"
1309
  msgstr ""
1310
 
1311
- #: includes/options_helptexts.php:127
1312
- msgid ""
1313
- "This option specifies the position of the RSS feed link in the event list."
1314
  msgstr ""
1315
 
1316
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1317
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1318
- #, php-format
1319
  msgid ""
1320
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1321
- " feed link."
1322
  msgstr ""
1323
 
1324
- #: includes/options_helptexts.php:131
1325
- msgid "Align of the RSS feed link"
1326
  msgstr ""
1327
 
1328
- #: includes/options_helptexts.php:132
1329
- msgid "left"
1330
  msgstr ""
1331
 
1332
- #: includes/options_helptexts.php:132
1333
- msgid "center"
1334
  msgstr ""
1335
 
1336
- #: includes/options_helptexts.php:132
1337
- msgid "right"
1338
  msgstr ""
1339
 
1340
- #: includes/options_helptexts.php:133
 
1341
  msgid ""
1342
- "This option specifies the align of the RSS feed link in the event list."
 
1343
  msgstr ""
1344
 
1345
- #: includes/options_helptexts.php:137
1346
- msgid "Feed link text"
1347
  msgstr ""
1348
 
1349
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1350
  msgid ""
1351
- "This option specifies the caption of the RSS feed link in the event list."
 
1352
  msgstr ""
1353
 
1354
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1355
  msgid ""
1356
- "Insert an empty text to hide any text if you only want to show the rss "
1357
- "image."
1358
  msgstr ""
1359
 
1360
- #: includes/options_helptexts.php:143
1361
- msgid "Feed link image"
1362
  msgstr ""
1363
 
1364
- #: includes/options_helptexts.php:144
1365
- msgid "Show rss image in feed link"
1366
  msgstr ""
1367
 
1368
- #: includes/options_helptexts.php:145
 
 
 
 
 
1369
  msgid ""
1370
- "This option specifies if the an image should be dispayed in the feed link in"
1371
- " front of the text."
1372
  msgstr ""
1373
 
1374
- #: includes/options_helptexts.php:151
1375
  msgid "Event Category handling"
1376
  msgstr ""
1377
 
1378
- #: includes/options_helptexts.php:152
1379
  msgid "Use Post Categories"
1380
  msgstr ""
1381
 
1382
- #: includes/options_helptexts.php:153
1383
  msgid ""
1384
  "Do not maintain seperate categories for the events, and use the existing "
1385
  "post categories instead."
1386
  msgstr ""
1387
 
1388
- #: includes/options_helptexts.php:154
1389
  msgid "Attention"
1390
  msgstr "Attenzione"
1391
 
1392
- #: includes/options_helptexts.php:155
1393
  msgid ""
1394
  "This option cannot be changed directly, but you can go to the Event Category"
1395
  " switching page from here."
@@ -1515,7 +1532,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:109
1519
  msgid "number"
1520
  msgstr ""
1521
 
@@ -1744,7 +1761,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:112
1748
  msgid "This attribute has no influence if only a single event is shown."
1749
  msgstr ""
1750
 
@@ -1771,38 +1788,40 @@ msgstr ""
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"
1801
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1829,7 @@ msgid ""
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,23 +1838,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1839
  #: includes/widget_helptexts.php:10
1840
  msgid "This option defines the displayed title for the widget."
1841
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Impostazioni Eventi Lista"
34
 
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
55
  msgid "General"
56
  msgstr "Generico"
57
 
559
  msgstr "Data di fine"
560
 
561
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
562
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
563
  msgid "Time"
564
  msgstr "Ora"
565
 
566
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
567
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
568
+ #: includes/options_helptexts.php:74
569
  msgid "Location"
570
  msgstr "Ubicazione"
571
 
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-settings.php:73
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:85
713
  msgid "Frontend Settings"
714
  msgstr "Impostazioni interfaccia grafica"
715
 
716
+ #: admin/includes/admin-settings.php:86
717
  msgid "Admin Page Settings"
718
  msgstr "Impostazioni di amministrazione"
719
 
720
+ #: admin/includes/admin-settings.php:87
721
  msgid "Feed Settings"
722
  msgstr "Impostazioni Feed"
723
 
724
+ #: admin/includes/admin-settings.php:88
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
976
  msgid "All Dates"
977
  msgstr ""
978
 
979
+ #: includes/options_helptexts.php:11
980
  msgid "CSV File to import"
981
  msgstr "File CSV da importare"
982
 
983
+ #: includes/options_helptexts.php:13
984
  msgid "Please select the file which contains the event data in CSV format."
985
  msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV."
986
 
987
+ #: includes/options_helptexts.php:18
988
  msgid "Used date format"
989
  msgstr "Formato data utilizzato"
990
 
991
+ #: includes/options_helptexts.php:21
992
  msgid ""
993
  "With this option the given date format for event start and end date in the "
994
  "CSV file can be specified."
995
  msgstr ""
996
 
997
+ #: includes/options_helptexts.php:22
998
  #, php-format
999
  msgid ""
1000
  "You can use the php date format options given in %1$s, the most important "
1001
  "ones are:"
1002
  msgstr ""
1003
 
1004
+ #: includes/options_helptexts.php:24
1005
  msgid "full year representation, with 4 digits"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:25
1009
  msgid "numeric representation of a month, with leading zeros"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:26
1013
  msgid "day of the month, 2 digits with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:28
1017
  msgid ""
1018
  "If the date format in the CSV file does not correspond to the given format, "
1019
  "the import script tries to recognize the date format by itself."
1020
  msgstr ""
1021
 
1022
+ #: includes/options_helptexts.php:29
1023
  msgid ""
1024
  "But this can cause problems or result in wrong dates, so it is recommended "
1025
  "to specify the correct date format here."
1026
  msgstr ""
1027
 
1028
+ #: includes/options_helptexts.php:30
1029
  msgid "Examples"
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:39
1033
  msgid "Text for no events"
1034
  msgstr "Testo per assenza di eventi"
1035
 
1036
+ #: includes/options_helptexts.php:41
1037
  msgid ""
1038
  "This option defines the displayed text when no events are available for the "
1039
  "selected view."
1040
  msgstr ""
1041
 
1042
+ #: includes/options_helptexts.php:46
1043
  msgid "Multiday filter range"
1044
  msgstr "Filtro intervallo multi giornaliero"
1045
 
1046
+ #: includes/options_helptexts.php:47
1047
  msgid "Use the complete event range in the date filter"
1048
  msgstr ""
1049
 
1050
+ #: includes/options_helptexts.php:49
1051
  msgid ""
1052
  "This option defines if the complete range of a multiday event shall be "
1053
  "considered in the date filter."
1054
  msgstr ""
1055
 
1056
+ #: includes/options_helptexts.php:50
1057
  msgid ""
1058
  "If disabled, only the start day of an event is considered in the filter."
1059
  msgstr ""
1060
 
1061
+ #: includes/options_helptexts.php:51
1062
  msgid ""
1063
  "For an example multiday event which started yesterday and ends tomorrow this"
1064
  " means, that it is displayed in umcoming dates when this option is enabled, "
1065
  "but it is hidden when the option is disabled."
1066
  msgstr ""
1067
 
1068
+ #: includes/options_helptexts.php:56
1069
  msgid "Date display"
1070
  msgstr "Visualizza data"
1071
 
1072
+ #: includes/options_helptexts.php:57
1073
  msgid "Show the date only once per day"
1074
  msgstr ""
1075
 
1076
+ #: includes/options_helptexts.php:59
1077
  msgid ""
1078
  "With this option enabled the date is only displayed once per day if more "
1079
  "than one event is available on the same day."
1080
  msgstr ""
1081
 
1082
+ #: includes/options_helptexts.php:60
1083
  msgid ""
1084
  "If enabled, the events are ordered in a different way (end date before start"
1085
  " time) to allow using the same date for as much events as possible."
1086
  msgstr ""
1087
 
1088
+ #: includes/options_helptexts.php:65
1089
  msgid "HTML tags"
1090
  msgstr "HTML tags"
1091
 
1092
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1093
  #, php-format
1094
  msgid "Allow HTML tags in the event field \"%1$s\""
1095
  msgstr ""
1096
 
1097
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1098
  #, php-format
1099
  msgid ""
1100
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1101
  msgstr ""
1102
 
1103
+ #: includes/options_helptexts.php:79
1104
  msgid "Preferred language file"
1105
  msgstr ""
1106
 
1107
+ #: includes/options_helptexts.php:80
1108
  msgid "Load translations from general language directory first"
1109
  msgstr ""
1110
 
1111
+ #: includes/options_helptexts.php:82
1112
  #, php-format
1113
  msgid ""
1114
  "The default is to load the %1$s translation file from the plugin language "
1115
  "directory first (%2$s)."
1116
  msgstr ""
1117
 
1118
+ #: includes/options_helptexts.php:83
1119
  #, php-format
1120
  msgid ""
1121
  "If you want to load your own language file from the general language "
1123
  "language directory, you have to enable this option."
1124
  msgstr ""
1125
 
1126
+ #: includes/options_helptexts.php:89
1127
  msgid "Events permalink slug"
1128
  msgstr ""
1129
 
1130
+ #: includes/options_helptexts.php:90
1131
  msgid ""
1132
  "With this option the slug for the events permalink URLs can be defined."
1133
  msgstr ""
1134
 
1135
+ #: includes/options_helptexts.php:95
1136
  msgid "Text for \"Show content\""
1137
  msgstr ""
1138
 
1139
+ #: includes/options_helptexts.php:96
1140
  msgid ""
1141
  "With this option the displayed text for the link to show the event content "
1142
  "can be changed, when collapsing is enabled."
1143
  msgstr ""
1144
 
1145
+ #: includes/options_helptexts.php:101
1146
  msgid "Text for \"Hide content\""
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:102
1150
  msgid ""
1151
  "With this option the displayed text for the link to hide the event content "
1152
  "can be changed, when collapsing is enabled."
1153
  msgstr ""
1154
 
1155
+ #: includes/options_helptexts.php:107
1156
  msgid "Disable CSS file"
1157
  msgstr "Disabilita file CSS"
1158
 
1159
+ #: includes/options_helptexts.php:108
1160
  #, php-format
1161
  msgid "Disable the %1$s file."
1162
  msgstr ""
1163
 
1164
+ #: includes/options_helptexts.php:110
1165
  #, php-format
1166
  msgid "With this option you can disable the inclusion of the %1$s file."
1167
  msgstr ""
1168
 
1169
+ #: includes/options_helptexts.php:111
1170
  msgid ""
1171
  "This normally only make sense if you have css conflicts with your theme and "
1172
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1173
  msgstr ""
1174
 
1175
+ #: includes/options_helptexts.php:117
1176
  msgid "Date format in edit form"
1177
  msgstr ""
1178
 
1179
+ #: includes/options_helptexts.php:119
1180
  msgid ""
1181
  "This option sets the displayed date format for the event date fields in the "
1182
  "event new / edit form."
1183
  msgstr ""
1184
 
1185
+ #: includes/options_helptexts.php:120
1186
  msgid "The default is an empty string to use the Wordpress standard setting."
1187
  msgstr ""
1188
 
1189
+ #: includes/options_helptexts.php:121
1190
  #, php-format
1191
  msgid ""
1192
  "All available options to specify the date format can be found %1$shere%2$s."
1193
  msgstr ""
1194
 
1195
+ #: includes/options_helptexts.php:127
1196
  msgid "Enable RSS feed"
1197
  msgstr "Abilita feed RSS"
1198
 
1199
+ #: includes/options_helptexts.php:128
1200
+ msgid "Enable support for the event RSS feed"
1201
  msgstr ""
1202
 
1203
+ #: includes/options_helptexts.php:130
1204
+ msgid ""
1205
+ "This option activates the RSS feed for the events and adds a feed link in "
1206
+ "the html head."
1207
  msgstr ""
1208
 
1209
+ #: includes/options_helptexts.php:131
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
+ #: includes/options_helptexts.php:136
1216
+ msgid "Enable iCal feed"
1217
+ msgstr ""
1218
 
1219
+ #: includes/options_helptexts.php:137
1220
+ msgid "Enable support for the event iCal feed"
 
1221
  msgstr ""
1222
 
1223
+ #: includes/options_helptexts.php:139
1224
+ msgid "This option activates the iCal feed for events."
 
 
 
1225
  msgstr ""
1226
 
1227
+ #: includes/options_helptexts.php:140
1228
+ msgid ""
1229
+ "You have to enable this option if you want to use one of the iCal features."
1230
+ msgstr ""
1231
 
1232
+ #: includes/options_helptexts.php:145
1233
+ msgid "Position of the RSS feed link"
 
1234
  msgstr ""
1235
 
1236
+ #: includes/options_helptexts.php:146
1237
+ msgid "at the top (above the navigation bar)"
 
 
1238
  msgstr ""
1239
 
1240
+ #: includes/options_helptexts.php:146
1241
+ msgid "between navigation bar and events"
1242
+ msgstr ""
1243
 
1244
+ #: includes/options_helptexts.php:146
1245
+ msgid "at the bottom"
1246
+ msgstr ""
1247
 
1248
+ #: includes/options_helptexts.php:147
1249
  msgid ""
1250
+ "This option specifies the position of the RSS feed link in the event list."
1251
  msgstr ""
1252
 
1253
+ #: includes/options_helptexts.php:152
1254
+ msgid "Align of the RSS feed link"
1255
  msgstr ""
1256
 
1257
+ #: includes/options_helptexts.php:153
1258
+ msgid "left"
1259
  msgstr ""
1260
 
1261
+ #: includes/options_helptexts.php:153
1262
+ msgid "center"
1263
  msgstr ""
1264
 
1265
+ #: includes/options_helptexts.php:153
1266
+ msgid "right"
1267
  msgstr ""
1268
 
1269
+ #: includes/options_helptexts.php:154
1270
+ msgid ""
1271
+ "This option specifies the align of the RSS feed link in the event list."
1272
  msgstr ""
1273
 
1274
+ #: includes/options_helptexts.php:159
1275
+ msgid "RSS feed name"
 
 
1276
  msgstr ""
1277
 
1278
+ #: includes/options_helptexts.php:161
1279
  #, php-format
1280
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1281
  msgstr ""
1282
 
1283
+ #: includes/options_helptexts.php:162
1284
  #, php-format
1285
+ msgid ""
1286
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1287
+ "enabled)."
1288
  msgstr ""
1289
 
1290
+ #: includes/options_helptexts.php:167
1291
+ msgid "RSS feed Description"
1292
  msgstr ""
1293
 
1294
+ #: includes/options_helptexts.php:169
1295
+ #, php-format
1296
+ msgid "This options set the RSS feed description. The default value is %1$s."
1297
  msgstr ""
1298
 
1299
+ #: includes/options_helptexts.php:170
1300
+ msgid ""
1301
+ "This description will be used in the title for the feed link in the html "
1302
+ "head and for the description in the feed itself."
1303
  msgstr ""
1304
 
1305
+ #: includes/options_helptexts.php:175
1306
+ msgid "RSS feed events"
1307
  msgstr ""
1308
 
1309
+ #: includes/options_helptexts.php:176
1310
+ msgid "Only show upcoming events in the RSS feed"
 
1311
  msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:178
 
 
1314
  msgid ""
1315
+ "If this option is enabled only the upcoming events are listed in the RSS "
1316
+ "feed."
1317
  msgstr ""
1318
 
1319
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1320
+ msgid "If disabled, all events (upcoming and past) will be listed."
1321
  msgstr ""
1322
 
1323
+ #: includes/options_helptexts.php:184
1324
+ msgid "RSS link text"
1325
  msgstr ""
1326
 
1327
+ #: includes/options_helptexts.php:186
1328
+ msgid "This option sets the caption of the RSS feed link in the event list."
1329
  msgstr ""
1330
 
1331
+ #: includes/options_helptexts.php:187
1332
+ msgid "Use an empty text to only show the rss image."
1333
  msgstr ""
1334
 
1335
+ #: includes/options_helptexts.php:188
1336
+ #, php-format
1337
  msgid ""
1338
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1339
+ " RSS feed link."
1340
  msgstr ""
1341
 
1342
+ #: includes/options_helptexts.php:193
1343
+ msgid "iCal feed name"
1344
  msgstr ""
1345
 
1346
+ #: includes/options_helptexts.php:195
1347
+ #, php-format
1348
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1349
+ msgstr ""
1350
+
1351
+ #: includes/options_helptexts.php:196
1352
+ #, php-format
1353
  msgid ""
1354
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1355
+ "permalinks enabled)."
1356
  msgstr ""
1357
 
1358
+ #: includes/options_helptexts.php:201
1359
+ msgid "iCal feed events"
1360
+ msgstr ""
1361
+
1362
+ #: includes/options_helptexts.php:202
1363
+ msgid "Only show upcoming events in the iCal feed"
1364
+ msgstr ""
1365
+
1366
+ #: includes/options_helptexts.php:204
1367
  msgid ""
1368
+ "If this option is enabled only the upcoming events are listed in the iCal "
1369
+ "file."
1370
  msgstr ""
1371
 
1372
+ #: includes/options_helptexts.php:210
1373
+ msgid "iCal link text"
1374
  msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:212
1377
+ msgid "This option sets the iCal link text in the event list."
1378
  msgstr ""
1379
 
1380
+ #: includes/options_helptexts.php:213
1381
+ msgid "Use an empty text to only show the iCal image."
1382
+ msgstr ""
1383
+
1384
+ #: includes/options_helptexts.php:214
1385
+ #, php-format
1386
  msgid ""
1387
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1388
+ " iCal feed link."
1389
  msgstr ""
1390
 
1391
+ #: includes/options_helptexts.php:221
1392
  msgid "Event Category handling"
1393
  msgstr ""
1394
 
1395
+ #: includes/options_helptexts.php:222
1396
  msgid "Use Post Categories"
1397
  msgstr ""
1398
 
1399
+ #: includes/options_helptexts.php:224
1400
  msgid ""
1401
  "Do not maintain seperate categories for the events, and use the existing "
1402
  "post categories instead."
1403
  msgstr ""
1404
 
1405
+ #: includes/options_helptexts.php:225
1406
  msgid "Attention"
1407
  msgstr "Attenzione"
1408
 
1409
+ #: includes/options_helptexts.php:226
1410
  msgid ""
1411
  "This option cannot be changed directly, but you can go to the Event Category"
1412
  " switching page from here."
1532
  #: includes/sc_event-list_helptexts.php:33
1533
  #: includes/sc_event-list_helptexts.php:74
1534
  #: includes/sc_event-list_helptexts.php:89
1535
+ #: includes/sc_event-list_helptexts.php:111
1536
  msgid "number"
1537
  msgstr ""
1538
 
1761
 
1762
  #: includes/sc_event-list_helptexts.php:77
1763
  #: includes/sc_event-list_helptexts.php:92
1764
+ #: includes/sc_event-list_helptexts.php:114
1765
  msgid "This attribute has no influence if only a single event is shown."
1766
  msgstr ""
1767
 
1788
 
1789
  #: includes/sc_event-list_helptexts.php:100
1790
  msgid ""
1791
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1792
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1793
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1794
  msgstr ""
1795
 
1796
  #: includes/sc_event-list_helptexts.php:105
1797
  msgid ""
1798
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1799
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1801
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:112
1806
  msgid ""
1807
  "This attribute specifies if the content should be truncate to the given "
1808
  "number of characters in the event list."
1809
  msgstr ""
1810
 
1811
+ #: includes/sc_event-list_helptexts.php:113
1812
  #, php-format
1813
  msgid "With the standard value %1$s the full text is displayed."
1814
  msgstr ""
1815
 
1816
+ #: includes/sc_event-list_helptexts.php:117
1817
  msgid ""
1818
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1819
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1820
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1821
  "\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."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:123
1825
  msgid ""
1826
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1827
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1829
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1830
  msgstr ""
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:129
1833
  msgid ""
1834
  "This attribute specifies if a rss feed link should be added.<br />\n"
1835
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1838
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1839
  msgstr ""
1840
 
1841
+ #: includes/sc_event-list_helptexts.php:136
1842
+ msgid ""
1843
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1844
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1845
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1846
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1847
+ msgstr ""
1848
+
1849
+ #: includes/sc_event-list_helptexts.php:142
1850
  msgid ""
1851
  "This attribute specifies the page or post url for event links.<br />\n"
1852
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1853
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1854
  msgstr ""
1855
 
1856
+ #: includes/sc_event-list_helptexts.php:149
1857
  msgid ""
1858
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1859
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1860
  msgstr ""
1861
 
1862
+ #: includes/sc_event-list.php:145
1863
  msgid "Event Information:"
1864
  msgstr "Informazioni Evento"
1865
 
1866
+ #: includes/sc_event-list.php:391
1867
+ msgid "Link to RSS feed"
1868
+ msgstr ""
1869
+
1870
+ #: includes/sc_event-list.php:399
1871
+ msgid "Link to iCal feed"
1872
+ msgstr ""
1873
+
1874
  #: includes/widget_helptexts.php:10
1875
  msgid "This option defines the displayed title for the widget."
1876
  msgstr ""
languages/event-list-nl_NL.mo CHANGED
Binary file
languages/event-list-nl_NL.po CHANGED
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 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"
@@ -31,7 +31,7 @@ msgstr ""
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
 
@@ -54,7 +54,7 @@ msgid_plural "%s Events"
54
  msgstr[0] ""
55
  msgstr[1] ""
56
 
57
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
58
  msgid "General"
59
  msgstr "Algemeen"
60
 
@@ -562,13 +562,13 @@ msgid "End Date"
562
  msgstr "Eind Datum"
563
 
564
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
565
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
566
  msgid "Time"
567
  msgstr "Tijd"
568
 
569
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
570
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
571
- #: includes/options_helptexts.php:58
572
  msgid "Location"
573
  msgstr "Locatie"
574
 
@@ -708,23 +708,23 @@ msgstr ""
708
  msgid "Event draft updated."
709
  msgstr ""
710
 
711
- #: admin/includes/admin-settings.php:71
712
  msgid "Go to Event Category switching page"
713
  msgstr ""
714
 
715
- #: admin/includes/admin-settings.php:83
716
  msgid "Frontend Settings"
717
  msgstr "Frontend Instellingen"
718
 
719
- #: admin/includes/admin-settings.php:84
720
  msgid "Admin Page Settings"
721
  msgstr "Admin Pagina Instellingen"
722
 
723
- #: admin/includes/admin-settings.php:85
724
  msgid "Feed Settings"
725
  msgstr "Feed Instellingen"
726
 
727
- #: admin/includes/admin-settings.php:86
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
@@ -979,146 +979,146 @@ msgstr "Alles"
979
  msgid "All Dates"
980
  msgstr ""
981
 
982
- #: includes/options_helptexts.php:10
983
  msgid "CSV File to import"
984
  msgstr "CSV-bestand om te importeren"
985
 
986
- #: includes/options_helptexts.php:12
987
  msgid "Please select the file which contains the event data in CSV format."
988
  msgstr "Selecteer het bestand dat de evenementen data bevat in CSV-format."
989
 
990
- #: includes/options_helptexts.php:15
991
  msgid "Used date format"
992
  msgstr "Gebruikte datumweergave"
993
 
994
- #: includes/options_helptexts.php:17
995
  msgid ""
996
  "With this option the given date format for event start and end date in the "
997
  "CSV file can be specified."
998
  msgstr ""
999
 
1000
- #: includes/options_helptexts.php:18
1001
  #, php-format
1002
  msgid ""
1003
  "You can use the php date format options given in %1$s, the most important "
1004
  "ones are:"
1005
  msgstr ""
1006
 
1007
- #: includes/options_helptexts.php:20
1008
  msgid "full year representation, with 4 digits"
1009
  msgstr ""
1010
 
1011
- #: includes/options_helptexts.php:21
1012
  msgid "numeric representation of a month, with leading zeros"
1013
  msgstr ""
1014
 
1015
- #: includes/options_helptexts.php:22
1016
  msgid "day of the month, 2 digits with leading zeros"
1017
  msgstr ""
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 ""
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 ""
1030
 
1031
- #: includes/options_helptexts.php:26
1032
  msgid "Examples"
1033
  msgstr ""
1034
 
1035
- #: includes/options_helptexts.php:33
1036
  msgid "Text for no events"
1037
  msgstr "Tekst indien geen evenementen"
1038
 
1039
- #: includes/options_helptexts.php:35
1040
  msgid ""
1041
  "This option defines the displayed text when no events are available for the "
1042
  "selected view."
1043
  msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
1044
 
1045
- #: includes/options_helptexts.php:38
1046
  msgid "Multiday filter range"
1047
  msgstr "Meerdaags filter bereik"
1048
 
1049
- #: includes/options_helptexts.php:39
1050
  msgid "Use the complete event range in the date filter"
1051
  msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
1052
 
1053
- #: includes/options_helptexts.php:40
1054
  msgid ""
1055
  "This option defines if the complete range of a multiday event shall be "
1056
  "considered in the date filter."
1057
  msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
1058
 
1059
- #: includes/options_helptexts.php:41
1060
  msgid ""
1061
  "If disabled, only the start day of an event is considered in the filter."
1062
  msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
1063
 
1064
- #: includes/options_helptexts.php:42
1065
  msgid ""
1066
  "For an example multiday event which started yesterday and ends tomorrow this"
1067
  " means, that it is displayed in umcoming dates when this option is enabled, "
1068
  "but it is hidden when the option is disabled."
1069
  msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
1070
 
1071
- #: includes/options_helptexts.php:45
1072
  msgid "Date display"
1073
  msgstr "Datumweergave"
1074
 
1075
- #: includes/options_helptexts.php:46
1076
  msgid "Show the date only once per day"
1077
  msgstr "Toon de datum slechts één keer per dag"
1078
 
1079
- #: includes/options_helptexts.php:47
1080
  msgid ""
1081
  "With this option enabled the date is only displayed once per day if more "
1082
  "than one event is available on the same day."
1083
  msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
1084
 
1085
- #: includes/options_helptexts.php:48
1086
  msgid ""
1087
  "If enabled, the events are ordered in a different way (end date before start"
1088
  " time) to allow using the same date for as much events as possible."
1089
  msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
1090
 
1091
- #: includes/options_helptexts.php:51
1092
  msgid "HTML tags"
1093
  msgstr "HTML-elementen"
1094
 
1095
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1096
  #, php-format
1097
  msgid "Allow HTML tags in the event field \"%1$s\""
1098
  msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
1099
 
1100
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1101
  #, php-format
1102
  msgid ""
1103
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1104
  msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
1105
 
1106
- #: includes/options_helptexts.php:61
1107
  msgid "Preferred language file"
1108
  msgstr "Voorkeurs taal bestand"
1109
 
1110
- #: includes/options_helptexts.php:62
1111
  msgid "Load translations from general language directory first"
1112
  msgstr "Laad de vertalingen eerst in de directory van de algemene taal"
1113
 
1114
- #: includes/options_helptexts.php:63
1115
  #, php-format
1116
  msgid ""
1117
  "The default is to load the %1$s translation file from the plugin language "
1118
  "directory first (%2$s)."
1119
  msgstr ""
1120
 
1121
- #: includes/options_helptexts.php:64
1122
  #, php-format
1123
  msgid ""
1124
  "If you want to load your own language file from the general language "
@@ -1126,273 +1126,290 @@ msgid ""
1126
  "language directory, you have to enable this option."
1127
  msgstr ""
1128
 
1129
- #: includes/options_helptexts.php:68
1130
  msgid "Events permalink slug"
1131
  msgstr ""
1132
 
1133
- #: includes/options_helptexts.php:69
1134
  msgid ""
1135
  "With this option the slug for the events permalink URLs can be defined."
1136
  msgstr ""
1137
 
1138
- #: includes/options_helptexts.php:72
1139
  msgid "Text for \"Show content\""
1140
  msgstr ""
1141
 
1142
- #: includes/options_helptexts.php:73
1143
  msgid ""
1144
  "With this option the displayed text for the link to show the event content "
1145
  "can be changed, when collapsing is enabled."
1146
  msgstr ""
1147
 
1148
- #: includes/options_helptexts.php:76
1149
  msgid "Text for \"Hide content\""
1150
  msgstr ""
1151
 
1152
- #: includes/options_helptexts.php:77
1153
  msgid ""
1154
  "With this option the displayed text for the link to hide the event content "
1155
  "can be changed, when collapsing is enabled."
1156
  msgstr ""
1157
 
1158
- #: includes/options_helptexts.php:80
1159
  msgid "Disable CSS file"
1160
  msgstr "CSS-bestand uitschakelen"
1161
 
1162
- #: includes/options_helptexts.php:81
1163
  #, php-format
1164
  msgid "Disable the %1$s file."
1165
  msgstr "Schakel het %1$s bestand uit."
1166
 
1167
- #: includes/options_helptexts.php:82
1168
  #, php-format
1169
  msgid "With this option you can disable the inclusion of the %1$s file."
1170
  msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
1171
 
1172
- #: includes/options_helptexts.php:83
1173
  msgid ""
1174
  "This normally only make sense if you have css conflicts with your theme and "
1175
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1176
  msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
1177
 
1178
- #: includes/options_helptexts.php:87
1179
  msgid "Date format in edit form"
1180
  msgstr "Datumweergave in formulieren"
1181
 
1182
- #: includes/options_helptexts.php:88
1183
  msgid ""
1184
  "This option sets the displayed date format for the event date fields in the "
1185
  "event new / edit form."
1186
  msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
1187
 
1188
- #: includes/options_helptexts.php:89
1189
  msgid "The default is an empty string to use the Wordpress standard setting."
1190
  msgstr ""
1191
 
1192
- #: includes/options_helptexts.php:90
1193
  #, php-format
1194
  msgid ""
1195
  "All available options to specify the date format can be found %1$shere%2$s."
1196
  msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
1197
 
1198
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1199
  msgid "Enable RSS feed"
1200
  msgstr "RSS feed inschakelen"
1201
 
1202
- #: includes/options_helptexts.php:95
1203
- msgid "Enable support for an event RSS feed"
1204
- msgstr "Ondersteuning voor een RSS feed inschakelen"
1205
 
1206
- #: includes/options_helptexts.php:96
1207
- msgid "This option activates a RSS feed for the events."
 
 
1208
  msgstr ""
1209
 
1210
- #: includes/options_helptexts.php:97
1211
  msgid ""
1212
  "You have to enable this option if you want to use one of the RSS feed "
1213
  "features."
1214
  msgstr ""
1215
 
1216
- #: includes/options_helptexts.php:100
1217
- msgid "Feed name"
1218
- msgstr "Feed naam"
1219
 
1220
- #: includes/options_helptexts.php:101
1221
- #, php-format
1222
- msgid "This option sets the feed name. The default value is %1$s."
1223
  msgstr ""
1224
 
1225
- #: includes/options_helptexts.php:102
1226
- #, php-format
 
 
 
1227
  msgid ""
1228
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1229
- "enabled)."
1230
  msgstr ""
1231
 
1232
- #: includes/options_helptexts.php:105
1233
- msgid "Feed Description"
1234
- msgstr "Feed beschrijving"
 
 
 
 
1235
 
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 ""
1240
 
1241
- #: includes/options_helptexts.php:107
 
 
 
 
1242
  msgid ""
1243
- "This description will be used in the title for the feed link in the html "
1244
- "head and for the description in the feed itself."
1245
  msgstr ""
1246
 
1247
- #: includes/options_helptexts.php:110
1248
- msgid "Listed events"
1249
- msgstr "Vermeldde evenementen"
1250
 
1251
- #: includes/options_helptexts.php:111
1252
- msgid "Only show upcoming events in feed"
1253
- msgstr "Toon alleen komende evenementen in feed"
 
 
 
 
 
 
 
 
1254
 
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 ""
1259
 
1260
- #: includes/options_helptexts.php:113
1261
- msgid "If disabled all events (upcoming and past) will be listed."
1262
  msgstr ""
1263
 
1264
- #: includes/options_helptexts.php:116
1265
- msgid "Add RSS feed link in head"
1266
- msgstr "Voeg RSS feed toe in kop"
 
1267
 
1268
- #: includes/options_helptexts.php:117
1269
- msgid "Add RSS feed link in the html head"
1270
- msgstr "Een link naar de RSS feed toevoegen aan de HTML '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 ""
1275
 
1276
- #: includes/options_helptexts.php:119
1277
- msgid "There are 2 alternatives to include the RSS feed"
 
1278
  msgstr ""
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 ""
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 ""
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 ""
1297
 
1298
- #: includes/options_helptexts.php:125
1299
- msgid "Position of the RSS feed link"
1300
- msgstr "Plek van de RSS feed link"
 
 
1301
 
1302
- #: includes/options_helptexts.php:126
1303
- msgid "at the top (above the navigation bar)"
1304
  msgstr ""
1305
 
1306
- #: includes/options_helptexts.php:126
1307
- msgid "between navigation bar and events"
1308
  msgstr ""
1309
 
1310
- #: includes/options_helptexts.php:126
1311
- msgid "at the bottom"
1312
- msgstr "aan de onderkant"
1313
 
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 ""
1318
 
1319
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1320
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1321
  #, php-format
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 ""
1326
 
1327
- #: includes/options_helptexts.php:131
1328
- msgid "Align of the RSS feed link"
1329
- msgstr "Uitlijning van RSS feed link"
1330
-
1331
- #: includes/options_helptexts.php:132
1332
- msgid "left"
1333
- msgstr "links"
1334
-
1335
- #: includes/options_helptexts.php:132
1336
- msgid "center"
1337
- msgstr "midden"
1338
 
1339
- #: includes/options_helptexts.php:132
1340
- msgid "right"
1341
- msgstr "rechts"
 
1342
 
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 ""
1347
 
1348
- #: includes/options_helptexts.php:137
1349
- msgid "Feed link text"
1350
- msgstr "Tekst feed link"
1351
 
1352
- #: includes/options_helptexts.php:138
1353
- msgid ""
1354
- "This option specifies the caption of the RSS feed link in the event list."
1355
  msgstr ""
1356
 
1357
- #: includes/options_helptexts.php:139
1358
  msgid ""
1359
- "Insert an empty text to hide any text if you only want to show the rss "
1360
- "image."
 
 
 
 
1361
  msgstr ""
1362
 
1363
- #: includes/options_helptexts.php:143
1364
- msgid "Feed link image"
1365
- msgstr "Afbeelding feed link"
1366
 
1367
- #: includes/options_helptexts.php:144
1368
- msgid "Show rss image in feed link"
1369
- msgstr "Toon RSS afbeelding in feed link"
1370
 
1371
- #: includes/options_helptexts.php:145
 
1372
  msgid ""
1373
- "This option specifies if the an image should be dispayed in the feed link in"
1374
- " front of the text."
1375
  msgstr ""
1376
 
1377
- #: includes/options_helptexts.php:151
1378
  msgid "Event Category handling"
1379
  msgstr ""
1380
 
1381
- #: includes/options_helptexts.php:152
1382
  msgid "Use Post Categories"
1383
  msgstr ""
1384
 
1385
- #: includes/options_helptexts.php:153
1386
  msgid ""
1387
  "Do not maintain seperate categories for the events, and use the existing "
1388
  "post categories instead."
1389
  msgstr ""
1390
 
1391
- #: includes/options_helptexts.php:154
1392
  msgid "Attention"
1393
  msgstr "Let op"
1394
 
1395
- #: includes/options_helptexts.php:155
1396
  msgid ""
1397
  "This option cannot be changed directly, but you can go to the Event Category"
1398
  " switching page from here."
@@ -1518,7 +1535,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:109
1522
  msgid "number"
1523
  msgstr "nummer"
1524
 
@@ -1747,7 +1764,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:112
1751
  msgid "This attribute has no influence if only a single event is shown."
1752
  msgstr ""
1753
 
@@ -1774,38 +1791,40 @@ 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 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"
1804
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1832,7 @@ msgid ""
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,23 +1841,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1842
  #: includes/widget_helptexts.php:10
1843
  msgid "This option defines the displayed title for the widget."
1844
  msgstr "Deze optie bepaalt de getoonde titel voor de widget."
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-11-16 17:29+0100\n"
15
+ "PO-Revision-Date: 2020-11-16 16:29+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"
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
35
  msgid "Event List Settings"
36
  msgstr "Gebeurtenislijst Instellingen"
37
 
54
  msgstr[0] ""
55
  msgstr[1] ""
56
 
57
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
58
  msgid "General"
59
  msgstr "Algemeen"
60
 
562
  msgstr "Eind Datum"
563
 
564
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
565
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
566
  msgid "Time"
567
  msgstr "Tijd"
568
 
569
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
570
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
571
+ #: includes/options_helptexts.php:74
572
  msgid "Location"
573
  msgstr "Locatie"
574
 
708
  msgid "Event draft updated."
709
  msgstr ""
710
 
711
+ #: admin/includes/admin-settings.php:73
712
  msgid "Go to Event Category switching page"
713
  msgstr ""
714
 
715
+ #: admin/includes/admin-settings.php:85
716
  msgid "Frontend Settings"
717
  msgstr "Frontend Instellingen"
718
 
719
+ #: admin/includes/admin-settings.php:86
720
  msgid "Admin Page Settings"
721
  msgstr "Admin Pagina Instellingen"
722
 
723
+ #: admin/includes/admin-settings.php:87
724
  msgid "Feed Settings"
725
  msgstr "Feed Instellingen"
726
 
727
+ #: admin/includes/admin-settings.php:88
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
979
  msgid "All Dates"
980
  msgstr ""
981
 
982
+ #: includes/options_helptexts.php:11
983
  msgid "CSV File to import"
984
  msgstr "CSV-bestand om te importeren"
985
 
986
+ #: includes/options_helptexts.php:13
987
  msgid "Please select the file which contains the event data in CSV format."
988
  msgstr "Selecteer het bestand dat de evenementen data bevat in CSV-format."
989
 
990
+ #: includes/options_helptexts.php:18
991
  msgid "Used date format"
992
  msgstr "Gebruikte datumweergave"
993
 
994
+ #: includes/options_helptexts.php:21
995
  msgid ""
996
  "With this option the given date format for event start and end date in the "
997
  "CSV file can be specified."
998
  msgstr ""
999
 
1000
+ #: includes/options_helptexts.php:22
1001
  #, php-format
1002
  msgid ""
1003
  "You can use the php date format options given in %1$s, the most important "
1004
  "ones are:"
1005
  msgstr ""
1006
 
1007
+ #: includes/options_helptexts.php:24
1008
  msgid "full year representation, with 4 digits"
1009
  msgstr ""
1010
 
1011
+ #: includes/options_helptexts.php:25
1012
  msgid "numeric representation of a month, with leading zeros"
1013
  msgstr ""
1014
 
1015
+ #: includes/options_helptexts.php:26
1016
  msgid "day of the month, 2 digits with leading zeros"
1017
  msgstr ""
1018
 
1019
+ #: includes/options_helptexts.php:28
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 ""
1024
 
1025
+ #: includes/options_helptexts.php:29
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 ""
1030
 
1031
+ #: includes/options_helptexts.php:30
1032
  msgid "Examples"
1033
  msgstr ""
1034
 
1035
+ #: includes/options_helptexts.php:39
1036
  msgid "Text for no events"
1037
  msgstr "Tekst indien geen evenementen"
1038
 
1039
+ #: includes/options_helptexts.php:41
1040
  msgid ""
1041
  "This option defines the displayed text when no events are available for the "
1042
  "selected view."
1043
  msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
1044
 
1045
+ #: includes/options_helptexts.php:46
1046
  msgid "Multiday filter range"
1047
  msgstr "Meerdaags filter bereik"
1048
 
1049
+ #: includes/options_helptexts.php:47
1050
  msgid "Use the complete event range in the date filter"
1051
  msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
1052
 
1053
+ #: includes/options_helptexts.php:49
1054
  msgid ""
1055
  "This option defines if the complete range of a multiday event shall be "
1056
  "considered in the date filter."
1057
  msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
1058
 
1059
+ #: includes/options_helptexts.php:50
1060
  msgid ""
1061
  "If disabled, only the start day of an event is considered in the filter."
1062
  msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
1063
 
1064
+ #: includes/options_helptexts.php:51
1065
  msgid ""
1066
  "For an example multiday event which started yesterday and ends tomorrow this"
1067
  " means, that it is displayed in umcoming dates when this option is enabled, "
1068
  "but it is hidden when the option is disabled."
1069
  msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
1070
 
1071
+ #: includes/options_helptexts.php:56
1072
  msgid "Date display"
1073
  msgstr "Datumweergave"
1074
 
1075
+ #: includes/options_helptexts.php:57
1076
  msgid "Show the date only once per day"
1077
  msgstr "Toon de datum slechts één keer per dag"
1078
 
1079
+ #: includes/options_helptexts.php:59
1080
  msgid ""
1081
  "With this option enabled the date is only displayed once per day if more "
1082
  "than one event is available on the same day."
1083
  msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
1084
 
1085
+ #: includes/options_helptexts.php:60
1086
  msgid ""
1087
  "If enabled, the events are ordered in a different way (end date before start"
1088
  " time) to allow using the same date for as much events as possible."
1089
  msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
1090
 
1091
+ #: includes/options_helptexts.php:65
1092
  msgid "HTML tags"
1093
  msgstr "HTML-elementen"
1094
 
1095
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1096
  #, php-format
1097
  msgid "Allow HTML tags in the event field \"%1$s\""
1098
  msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
1099
 
1100
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1101
  #, php-format
1102
  msgid ""
1103
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1104
  msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
1105
 
1106
+ #: includes/options_helptexts.php:79
1107
  msgid "Preferred language file"
1108
  msgstr "Voorkeurs taal bestand"
1109
 
1110
+ #: includes/options_helptexts.php:80
1111
  msgid "Load translations from general language directory first"
1112
  msgstr "Laad de vertalingen eerst in de directory van de algemene taal"
1113
 
1114
+ #: includes/options_helptexts.php:82
1115
  #, php-format
1116
  msgid ""
1117
  "The default is to load the %1$s translation file from the plugin language "
1118
  "directory first (%2$s)."
1119
  msgstr ""
1120
 
1121
+ #: includes/options_helptexts.php:83
1122
  #, php-format
1123
  msgid ""
1124
  "If you want to load your own language file from the general language "
1126
  "language directory, you have to enable this option."
1127
  msgstr ""
1128
 
1129
+ #: includes/options_helptexts.php:89
1130
  msgid "Events permalink slug"
1131
  msgstr ""
1132
 
1133
+ #: includes/options_helptexts.php:90
1134
  msgid ""
1135
  "With this option the slug for the events permalink URLs can be defined."
1136
  msgstr ""
1137
 
1138
+ #: includes/options_helptexts.php:95
1139
  msgid "Text for \"Show content\""
1140
  msgstr ""
1141
 
1142
+ #: includes/options_helptexts.php:96
1143
  msgid ""
1144
  "With this option the displayed text for the link to show the event content "
1145
  "can be changed, when collapsing is enabled."
1146
  msgstr ""
1147
 
1148
+ #: includes/options_helptexts.php:101
1149
  msgid "Text for \"Hide content\""
1150
  msgstr ""
1151
 
1152
+ #: includes/options_helptexts.php:102
1153
  msgid ""
1154
  "With this option the displayed text for the link to hide the event content "
1155
  "can be changed, when collapsing is enabled."
1156
  msgstr ""
1157
 
1158
+ #: includes/options_helptexts.php:107
1159
  msgid "Disable CSS file"
1160
  msgstr "CSS-bestand uitschakelen"
1161
 
1162
+ #: includes/options_helptexts.php:108
1163
  #, php-format
1164
  msgid "Disable the %1$s file."
1165
  msgstr "Schakel het %1$s bestand uit."
1166
 
1167
+ #: includes/options_helptexts.php:110
1168
  #, php-format
1169
  msgid "With this option you can disable the inclusion of the %1$s file."
1170
  msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
1171
 
1172
+ #: includes/options_helptexts.php:111
1173
  msgid ""
1174
  "This normally only make sense if you have css conflicts with your theme and "
1175
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1176
  msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
1177
 
1178
+ #: includes/options_helptexts.php:117
1179
  msgid "Date format in edit form"
1180
  msgstr "Datumweergave in formulieren"
1181
 
1182
+ #: includes/options_helptexts.php:119
1183
  msgid ""
1184
  "This option sets the displayed date format for the event date fields in the "
1185
  "event new / edit form."
1186
  msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
1187
 
1188
+ #: includes/options_helptexts.php:120
1189
  msgid "The default is an empty string to use the Wordpress standard setting."
1190
  msgstr ""
1191
 
1192
+ #: includes/options_helptexts.php:121
1193
  #, php-format
1194
  msgid ""
1195
  "All available options to specify the date format can be found %1$shere%2$s."
1196
  msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
1197
 
1198
+ #: includes/options_helptexts.php:127
1199
  msgid "Enable RSS feed"
1200
  msgstr "RSS feed inschakelen"
1201
 
1202
+ #: includes/options_helptexts.php:128
1203
+ msgid "Enable support for the event RSS feed"
1204
+ msgstr ""
1205
 
1206
+ #: includes/options_helptexts.php:130
1207
+ msgid ""
1208
+ "This option activates the RSS feed for the events and adds a feed link in "
1209
+ "the html head."
1210
  msgstr ""
1211
 
1212
+ #: includes/options_helptexts.php:131
1213
  msgid ""
1214
  "You have to enable this option if you want to use one of the RSS feed "
1215
  "features."
1216
  msgstr ""
1217
 
1218
+ #: includes/options_helptexts.php:136
1219
+ msgid "Enable iCal feed"
1220
+ msgstr ""
1221
 
1222
+ #: includes/options_helptexts.php:137
1223
+ msgid "Enable support for the event iCal feed"
 
1224
  msgstr ""
1225
 
1226
+ #: includes/options_helptexts.php:139
1227
+ msgid "This option activates the iCal feed for events."
1228
+ msgstr ""
1229
+
1230
+ #: includes/options_helptexts.php:140
1231
  msgid ""
1232
+ "You have to enable this option if you want to use one of the iCal features."
 
1233
  msgstr ""
1234
 
1235
+ #: includes/options_helptexts.php:145
1236
+ msgid "Position of the RSS feed link"
1237
+ msgstr "Plek van de RSS feed link"
1238
+
1239
+ #: includes/options_helptexts.php:146
1240
+ msgid "at the top (above the navigation bar)"
1241
+ msgstr ""
1242
 
1243
+ #: includes/options_helptexts.php:146
1244
+ msgid "between navigation bar and events"
 
1245
  msgstr ""
1246
 
1247
+ #: includes/options_helptexts.php:146
1248
+ msgid "at the bottom"
1249
+ msgstr "aan de onderkant"
1250
+
1251
+ #: includes/options_helptexts.php:147
1252
  msgid ""
1253
+ "This option specifies the position of the RSS feed link in the event list."
 
1254
  msgstr ""
1255
 
1256
+ #: includes/options_helptexts.php:152
1257
+ msgid "Align of the RSS feed link"
1258
+ msgstr "Uitlijning van RSS feed link"
1259
 
1260
+ #: includes/options_helptexts.php:153
1261
+ msgid "left"
1262
+ msgstr "links"
1263
+
1264
+ #: includes/options_helptexts.php:153
1265
+ msgid "center"
1266
+ msgstr "midden"
1267
+
1268
+ #: includes/options_helptexts.php:153
1269
+ msgid "right"
1270
+ msgstr "rechts"
1271
 
1272
+ #: includes/options_helptexts.php:154
1273
  msgid ""
1274
+ "This option specifies the align of the RSS feed link in the event list."
1275
  msgstr ""
1276
 
1277
+ #: includes/options_helptexts.php:159
1278
+ msgid "RSS feed name"
1279
  msgstr ""
1280
 
1281
+ #: includes/options_helptexts.php:161
1282
+ #, php-format
1283
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1284
+ msgstr ""
1285
 
1286
+ #: includes/options_helptexts.php:162
1287
+ #, php-format
1288
+ msgid ""
1289
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1290
+ "enabled)."
1291
+ msgstr ""
1292
 
1293
+ #: includes/options_helptexts.php:167
1294
+ msgid "RSS feed Description"
1295
  msgstr ""
1296
 
1297
+ #: includes/options_helptexts.php:169
1298
+ #, php-format
1299
+ msgid "This options set the RSS feed description. The default value is %1$s."
1300
  msgstr ""
1301
 
1302
+ #: includes/options_helptexts.php:170
1303
  msgid ""
1304
+ "This description will be used in the title for the feed link in the html "
1305
+ "head and for the description in the feed itself."
1306
  msgstr ""
1307
 
1308
+ #: includes/options_helptexts.php:175
1309
+ msgid "RSS feed events"
 
 
 
1310
  msgstr ""
1311
 
1312
+ #: includes/options_helptexts.php:176
1313
+ msgid "Only show upcoming events in the RSS feed"
 
1314
  msgstr ""
1315
 
1316
+ #: includes/options_helptexts.php:178
1317
+ msgid ""
1318
+ "If this option is enabled only the upcoming events are listed in the RSS "
1319
+ "feed."
1320
+ msgstr ""
1321
 
1322
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1323
+ msgid "If disabled, all events (upcoming and past) will be listed."
1324
  msgstr ""
1325
 
1326
+ #: includes/options_helptexts.php:184
1327
+ msgid "RSS link text"
1328
  msgstr ""
1329
 
1330
+ #: includes/options_helptexts.php:186
1331
+ msgid "This option sets the caption of the RSS feed link in the event list."
1332
+ msgstr ""
1333
 
1334
+ #: includes/options_helptexts.php:187
1335
+ msgid "Use an empty text to only show the rss image."
 
1336
  msgstr ""
1337
 
1338
+ #: includes/options_helptexts.php:188
 
1339
  #, php-format
1340
  msgid ""
1341
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1342
+ " RSS feed link."
1343
  msgstr ""
1344
 
1345
+ #: includes/options_helptexts.php:193
1346
+ msgid "iCal feed name"
1347
+ msgstr ""
 
 
 
 
 
 
 
 
1348
 
1349
+ #: includes/options_helptexts.php:195
1350
+ #, php-format
1351
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1352
+ msgstr ""
1353
 
1354
+ #: includes/options_helptexts.php:196
1355
+ #, php-format
1356
  msgid ""
1357
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1358
+ "permalinks enabled)."
1359
  msgstr ""
1360
 
1361
+ #: includes/options_helptexts.php:201
1362
+ msgid "iCal feed events"
1363
+ msgstr ""
1364
 
1365
+ #: includes/options_helptexts.php:202
1366
+ msgid "Only show upcoming events in the iCal feed"
 
1367
  msgstr ""
1368
 
1369
+ #: includes/options_helptexts.php:204
1370
  msgid ""
1371
+ "If this option is enabled only the upcoming events are listed in the iCal "
1372
+ "file."
1373
+ msgstr ""
1374
+
1375
+ #: includes/options_helptexts.php:210
1376
+ msgid "iCal link text"
1377
  msgstr ""
1378
 
1379
+ #: includes/options_helptexts.php:212
1380
+ msgid "This option sets the iCal link text in the event list."
1381
+ msgstr ""
1382
 
1383
+ #: includes/options_helptexts.php:213
1384
+ msgid "Use an empty text to only show the iCal image."
1385
+ msgstr ""
1386
 
1387
+ #: includes/options_helptexts.php:214
1388
+ #, php-format
1389
  msgid ""
1390
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1391
+ " iCal feed link."
1392
  msgstr ""
1393
 
1394
+ #: includes/options_helptexts.php:221
1395
  msgid "Event Category handling"
1396
  msgstr ""
1397
 
1398
+ #: includes/options_helptexts.php:222
1399
  msgid "Use Post Categories"
1400
  msgstr ""
1401
 
1402
+ #: includes/options_helptexts.php:224
1403
  msgid ""
1404
  "Do not maintain seperate categories for the events, and use the existing "
1405
  "post categories instead."
1406
  msgstr ""
1407
 
1408
+ #: includes/options_helptexts.php:225
1409
  msgid "Attention"
1410
  msgstr "Let op"
1411
 
1412
+ #: includes/options_helptexts.php:226
1413
  msgid ""
1414
  "This option cannot be changed directly, but you can go to the Event Category"
1415
  " switching page from here."
1535
  #: includes/sc_event-list_helptexts.php:33
1536
  #: includes/sc_event-list_helptexts.php:74
1537
  #: includes/sc_event-list_helptexts.php:89
1538
+ #: includes/sc_event-list_helptexts.php:111
1539
  msgid "number"
1540
  msgstr "nummer"
1541
 
1764
 
1765
  #: includes/sc_event-list_helptexts.php:77
1766
  #: includes/sc_event-list_helptexts.php:92
1767
+ #: includes/sc_event-list_helptexts.php:114
1768
  msgid "This attribute has no influence if only a single event is shown."
1769
  msgstr ""
1770
 
1791
 
1792
  #: includes/sc_event-list_helptexts.php:100
1793
  msgid ""
1794
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1795
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1796
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1797
  msgstr ""
1798
 
1799
  #: includes/sc_event-list_helptexts.php:105
1800
  msgid ""
1801
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1802
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1803
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1805
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1806
  msgstr ""
1807
 
1808
+ #: includes/sc_event-list_helptexts.php:112
1809
  msgid ""
1810
  "This attribute specifies if the content should be truncate to the given "
1811
  "number of characters in the event list."
1812
  msgstr ""
1813
 
1814
+ #: includes/sc_event-list_helptexts.php:113
1815
  #, php-format
1816
  msgid "With the standard value %1$s the full text is displayed."
1817
  msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven."
1818
 
1819
+ #: includes/sc_event-list_helptexts.php:117
1820
  msgid ""
1821
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1822
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1823
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1824
  "\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."
1825
  msgstr ""
1826
 
1827
+ #: includes/sc_event-list_helptexts.php:123
1828
  msgid ""
1829
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1830
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1832
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1833
  msgstr ""
1834
 
1835
+ #: includes/sc_event-list_helptexts.php:129
1836
  msgid ""
1837
  "This attribute specifies if a rss feed link should be added.<br />\n"
1838
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1841
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1842
  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."
1843
 
1844
+ #: includes/sc_event-list_helptexts.php:136
1845
+ msgid ""
1846
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1847
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1848
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1849
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1850
+ msgstr ""
1851
+
1852
+ #: includes/sc_event-list_helptexts.php:142
1853
  msgid ""
1854
  "This attribute specifies the page or post url for event links.<br />\n"
1855
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1856
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1857
  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."
1858
 
1859
+ #: includes/sc_event-list_helptexts.php:149
1860
  msgid ""
1861
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1862
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1863
  msgstr ""
1864
 
1865
+ #: includes/sc_event-list.php:145
1866
  msgid "Event Information:"
1867
  msgstr "Evenement details:"
1868
 
1869
+ #: includes/sc_event-list.php:391
1870
+ msgid "Link to RSS feed"
1871
+ msgstr ""
1872
+
1873
+ #: includes/sc_event-list.php:399
1874
+ msgid "Link to iCal feed"
1875
+ msgstr ""
1876
+
1877
  #: includes/widget_helptexts.php:10
1878
  msgid "This option defines the displayed title for the widget."
1879
  msgstr "Deze optie bepaalt de getoonde titel voor de widget."
languages/event-list-pl_PL.mo CHANGED
Binary file
languages/event-list-pl_PL.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -53,7 +53,7 @@ msgstr[1] ""
53
  msgstr[2] ""
54
  msgstr[3] ""
55
 
56
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
57
  msgid "General"
58
  msgstr "Ogólne"
59
 
@@ -563,13 +563,13 @@ msgid "End Date"
563
  msgstr "Termin zakończenia"
564
 
565
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
566
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
567
  msgid "Time"
568
  msgstr "Godzina"
569
 
570
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
571
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
572
- #: includes/options_helptexts.php:58
573
  msgid "Location"
574
  msgstr "Miejsce"
575
 
@@ -709,23 +709,23 @@ msgstr ""
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:71
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:83
717
  msgid "Frontend Settings"
718
  msgstr "Strona frontowa"
719
 
720
- #: admin/includes/admin-settings.php:84
721
  msgid "Admin Page Settings"
722
  msgstr "Panel administratora"
723
 
724
- #: admin/includes/admin-settings.php:85
725
  msgid "Feed Settings"
726
  msgstr "Ustawienia kanału"
727
 
728
- #: admin/includes/admin-settings.php:86
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
@@ -980,146 +980,146 @@ msgstr "Wszystkie"
980
  msgid "All Dates"
981
  msgstr ""
982
 
983
- #: includes/options_helptexts.php:10
984
  msgid "CSV File to import"
985
  msgstr "Plik CSV do zaimportowania"
986
 
987
- #: includes/options_helptexts.php:12
988
  msgid "Please select the file which contains the event data in CSV format."
989
  msgstr "Wybierz plik, który zawiera dane wydarzeń w formacie CSV."
990
 
991
- #: includes/options_helptexts.php:15
992
  msgid "Used date format"
993
  msgstr "Użyty format daty"
994
 
995
- #: includes/options_helptexts.php:17
996
  msgid ""
997
  "With this option the given date format for event start and end date in the "
998
  "CSV file can be specified."
999
  msgstr ""
1000
 
1001
- #: includes/options_helptexts.php:18
1002
  #, php-format
1003
  msgid ""
1004
  "You can use the php date format options given in %1$s, the most important "
1005
  "ones are:"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:20
1009
  msgid "full year representation, with 4 digits"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:21
1013
  msgid "numeric representation of a month, with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:22
1017
  msgid "day of the month, 2 digits with leading zeros"
1018
  msgstr ""
1019
 
1020
- #: includes/options_helptexts.php:24
1021
  msgid ""
1022
  "If the date format in the CSV file does not correspond to the given format, "
1023
  "the import script tries to recognize the date format by itself."
1024
  msgstr ""
1025
 
1026
- #: includes/options_helptexts.php:25
1027
  msgid ""
1028
  "But this can cause problems or result in wrong dates, so it is recommended "
1029
  "to specify the correct date format here."
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:26
1033
  msgid "Examples"
1034
  msgstr ""
1035
 
1036
- #: includes/options_helptexts.php:33
1037
  msgid "Text for no events"
1038
  msgstr "Tekst jeśli brak wydarzeń"
1039
 
1040
- #: includes/options_helptexts.php:35
1041
  msgid ""
1042
  "This option defines the displayed text when no events are available for the "
1043
  "selected view."
1044
  msgstr "Ta opcja określa tekst, jaki ma być wyświetlany, gdy nie ma żadnych wydarzeń w danym widoku."
1045
 
1046
- #: includes/options_helptexts.php:38
1047
  msgid "Multiday filter range"
1048
  msgstr "Zakresy filtrów terminów wielodniowych"
1049
 
1050
- #: includes/options_helptexts.php:39
1051
  msgid "Use the complete event range in the date filter"
1052
  msgstr "Użyj całego czasu trwania wydarzenia w filtrach terminów"
1053
 
1054
- #: includes/options_helptexts.php:40
1055
  msgid ""
1056
  "This option defines if the complete range of a multiday event shall be "
1057
  "considered in the date filter."
1058
  msgstr "Ta opcja określa, czy w filtrze daty zostanie uwzględniony pełny zakres czasu trwania wydarzenia wielodniowego."
1059
 
1060
- #: includes/options_helptexts.php:41
1061
  msgid ""
1062
  "If disabled, only the start day of an event is considered in the filter."
1063
  msgstr "Wyłącz, jeśli w filtrze ma być uwzględniany tylko dzień rozpoczęcia wydarzenia."
1064
 
1065
- #: includes/options_helptexts.php:42
1066
  msgid ""
1067
  "For an example multiday event which started yesterday and ends tomorrow this"
1068
  " means, that it is displayed in umcoming dates when this option is enabled, "
1069
  "but it is hidden when the option is disabled."
1070
  msgstr "W przypadku przykładowego wydarzenia trwającego kilka dni, który rozpoczął się wczoraj i kończy się jutro oznacza to, że wydarzenie jest wyświetlany w liście nadchodzących wydarzeń, gdy ta opcja jest włączona, a jest ukryte, gdy opcja jest wyłączona."
1071
 
1072
- #: includes/options_helptexts.php:45
1073
  msgid "Date display"
1074
  msgstr "Wyświetlanie terminu"
1075
 
1076
- #: includes/options_helptexts.php:46
1077
  msgid "Show the date only once per day"
1078
  msgstr "Wyświetlaj jedną datę na dzień"
1079
 
1080
- #: includes/options_helptexts.php:47
1081
  msgid ""
1082
  "With this option enabled the date is only displayed once per day if more "
1083
  "than one event is available on the same day."
1084
  msgstr "Po włączeniu tej opcji ikonka daty jest wyświetlana tylko raz, jeśli więcej niż jedno wydarzenie jest dostępne w tym samym dniu."
1085
 
1086
- #: includes/options_helptexts.php:48
1087
  msgid ""
1088
  "If enabled, the events are ordered in a different way (end date before start"
1089
  " time) to allow using the same date for as much events as possible."
1090
  msgstr "Jeśli opcja jest włączona, wydarzenia są układane w inny sposób (data zakończenia przed godziną rozpoczęcia), aby umożliwić użycie tej samej daty dla wszystkich wydarzeń."
1091
 
1092
- #: includes/options_helptexts.php:51
1093
  msgid "HTML tags"
1094
  msgstr "Znaczniki HTML"
1095
 
1096
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1097
  #, php-format
1098
  msgid "Allow HTML tags in the event field \"%1$s\""
1099
  msgstr "Zezwalaj na znaczniki HTML w polu wydarzenia \"%1$s\""
1100
 
1101
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1102
  #, php-format
1103
  msgid ""
1104
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1105
  msgstr "Ta opcja określa czy jest dozwolone wprowadzanie znaczników HTML w polu \"%1$s\"."
1106
 
1107
- #: includes/options_helptexts.php:61
1108
  msgid "Preferred language file"
1109
  msgstr "Preferowany plik językowy"
1110
 
1111
- #: includes/options_helptexts.php:62
1112
  msgid "Load translations from general language directory first"
1113
  msgstr "Ładuj tłumaczenia najpierw z domyślnego folderu językowego"
1114
 
1115
- #: includes/options_helptexts.php:63
1116
  #, php-format
1117
  msgid ""
1118
  "The default is to load the %1$s translation file from the plugin language "
1119
  "directory first (%2$s)."
1120
  msgstr "Domyślnie wersje językowe są ładowane z pliku tłumaczenia%1$s znajdującego się w folderze języków wtyczki (%2$s)."
1121
 
1122
- #: includes/options_helptexts.php:64
1123
  #, php-format
1124
  msgid ""
1125
  "If you want to load your own language file from the general language "
@@ -1127,273 +1127,290 @@ msgid ""
1127
  "language directory, you have to enable this option."
1128
  msgstr "Jeśli chcesz załadować własny plik językowy znajdujący się w folderze ogólnym języka %1$s dla języka, który już zawarty jest w folderze języków wtyczki, musisz włączyć tę opcję."
1129
 
1130
- #: includes/options_helptexts.php:68
1131
  msgid "Events permalink slug"
1132
  msgstr ""
1133
 
1134
- #: includes/options_helptexts.php:69
1135
  msgid ""
1136
  "With this option the slug for the events permalink URLs can be defined."
1137
  msgstr ""
1138
 
1139
- #: includes/options_helptexts.php:72
1140
  msgid "Text for \"Show content\""
1141
  msgstr ""
1142
 
1143
- #: includes/options_helptexts.php:73
1144
  msgid ""
1145
  "With this option the displayed text for the link to show the event content "
1146
  "can be changed, when collapsing is enabled."
1147
  msgstr ""
1148
 
1149
- #: includes/options_helptexts.php:76
1150
  msgid "Text for \"Hide content\""
1151
  msgstr ""
1152
 
1153
- #: includes/options_helptexts.php:77
1154
  msgid ""
1155
  "With this option the displayed text for the link to hide the event content "
1156
  "can be changed, when collapsing is enabled."
1157
  msgstr ""
1158
 
1159
- #: includes/options_helptexts.php:80
1160
  msgid "Disable CSS file"
1161
  msgstr "Wyłącz plik CSS"
1162
 
1163
- #: includes/options_helptexts.php:81
1164
  #, php-format
1165
  msgid "Disable the %1$s file."
1166
  msgstr "Wyłącz plik %1$s."
1167
 
1168
- #: includes/options_helptexts.php:82
1169
  #, php-format
1170
  msgid "With this option you can disable the inclusion of the %1$s file."
1171
  msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML."
1172
 
1173
- #: includes/options_helptexts.php:83
1174
  msgid ""
1175
  "This normally only make sense if you have css conflicts with your theme and "
1176
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1177
  msgstr "Zwykle ma to sens jeśli występują konflikty z motywami i chcesz ustawić wszystkie wymagane style CSS w innym miejscu (np. w motywie CSS)."
1178
 
1179
- #: includes/options_helptexts.php:87
1180
  msgid "Date format in edit form"
1181
  msgstr "Format daty w formularzu edycji"
1182
 
1183
- #: includes/options_helptexts.php:88
1184
  msgid ""
1185
  "This option sets the displayed date format for the event date fields in the "
1186
  "event new / edit form."
1187
  msgstr ""
1188
 
1189
- #: includes/options_helptexts.php:89
1190
  msgid "The default is an empty string to use the Wordpress standard setting."
1191
  msgstr ""
1192
 
1193
- #: includes/options_helptexts.php:90
1194
  #, php-format
1195
  msgid ""
1196
  "All available options to specify the date format can be found %1$shere%2$s."
1197
  msgstr ""
1198
 
1199
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1200
  msgid "Enable RSS feed"
1201
  msgstr "Włącz kanał RSS"
1202
 
1203
- #: includes/options_helptexts.php:95
1204
- msgid "Enable support for an event RSS feed"
1205
  msgstr ""
1206
 
1207
- #: includes/options_helptexts.php:96
1208
- msgid "This option activates a RSS feed for the events."
 
 
1209
  msgstr ""
1210
 
1211
- #: includes/options_helptexts.php:97
1212
  msgid ""
1213
  "You have to enable this option if you want to use one of the RSS feed "
1214
  "features."
1215
  msgstr ""
1216
 
1217
- #: includes/options_helptexts.php:100
1218
- msgid "Feed name"
1219
- msgstr "Nazwa kanału"
1220
-
1221
- #: includes/options_helptexts.php:101
1222
- #, php-format
1223
- msgid "This option sets the feed name. The default value is %1$s."
1224
  msgstr ""
1225
 
1226
- #: includes/options_helptexts.php:102
1227
- #, php-format
1228
- msgid ""
1229
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1230
- "enabled)."
1231
  msgstr ""
1232
 
1233
- #: includes/options_helptexts.php:105
1234
- msgid "Feed Description"
1235
- msgstr "Opis kanału"
1236
-
1237
- #: includes/options_helptexts.php:106
1238
- #, php-format
1239
- msgid "This options set the feed description. The default value is %1$s."
1240
  msgstr ""
1241
 
1242
- #: includes/options_helptexts.php:107
1243
  msgid ""
1244
- "This description will be used in the title for the feed link in the html "
1245
- "head and for the description in the feed itself."
1246
  msgstr ""
1247
 
1248
- #: includes/options_helptexts.php:110
1249
- msgid "Listed events"
1250
  msgstr ""
1251
 
1252
- #: includes/options_helptexts.php:111
1253
- msgid "Only show upcoming events in feed"
1254
- msgstr ""
 
 
 
 
 
 
 
 
1255
 
1256
- #: includes/options_helptexts.php:112
1257
  msgid ""
1258
- "If this option is enabled only the upcoming events are listed in the feed."
1259
  msgstr ""
1260
 
1261
- #: includes/options_helptexts.php:113
1262
- msgid "If disabled all events (upcoming and past) will be listed."
1263
  msgstr ""
1264
 
1265
- #: includes/options_helptexts.php:116
1266
- msgid "Add RSS feed link in head"
1267
- msgstr "Dodaj łącze kanału RSS w nagłówku"
1268
 
1269
- #: includes/options_helptexts.php:117
1270
- msgid "Add RSS feed link in the html head"
1271
- msgstr "Dodaje łącze kanału RSS w nagłówku HTML"
1272
 
1273
- #: includes/options_helptexts.php:118
1274
- msgid "This option adds a RSS feed in the html head for the events."
 
 
 
 
 
1275
  msgstr ""
1276
 
1277
- #: includes/options_helptexts.php:119
1278
- msgid "There are 2 alternatives to include the RSS feed"
1279
  msgstr ""
1280
 
1281
- #: includes/options_helptexts.php:120
1282
- msgid ""
1283
- "The first way is this option to include a link in the html head. This link "
1284
- "will be recognized by browers or feed readers."
1285
  msgstr ""
1286
 
1287
- #: includes/options_helptexts.php:121
1288
  #, php-format
1289
  msgid ""
1290
- "The second way is to include a visible feed link directly in the event list."
1291
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1292
  msgstr ""
1293
 
1294
- #: includes/options_helptexts.php:122
1295
- #, php-format
1296
- msgid "This option is only valid if the setting %1$s is enabled."
1297
  msgstr ""
1298
 
1299
- #: includes/options_helptexts.php:125
1300
- msgid "Position of the RSS feed link"
 
1301
  msgstr ""
1302
 
1303
- #: includes/options_helptexts.php:126
1304
- msgid "at the top (above the navigation bar)"
1305
- msgstr "na górze (ponad panelem nawigacyjnym)"
 
 
1306
 
1307
- #: includes/options_helptexts.php:126
1308
- msgid "between navigation bar and events"
1309
- msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami"
1310
 
1311
- #: includes/options_helptexts.php:126
1312
- msgid "at the bottom"
1313
- msgstr "na dole"
1314
 
1315
- #: includes/options_helptexts.php:127
1316
  msgid ""
1317
- "This option specifies the position of the RSS feed link in the event list."
 
 
 
 
 
 
 
 
 
 
 
 
 
1318
  msgstr ""
1319
 
1320
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1321
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
 
 
 
1322
  #, php-format
1323
  msgid ""
1324
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1325
- " feed link."
1326
  msgstr ""
1327
 
1328
- #: includes/options_helptexts.php:131
1329
- msgid "Align of the RSS feed link"
1330
  msgstr ""
1331
 
1332
- #: includes/options_helptexts.php:132
1333
- msgid "left"
1334
- msgstr "do lewej"
1335
-
1336
- #: includes/options_helptexts.php:132
1337
- msgid "center"
1338
- msgstr "do środka"
1339
-
1340
- #: includes/options_helptexts.php:132
1341
- msgid "right"
1342
- msgstr "do prawej"
1343
 
1344
- #: includes/options_helptexts.php:133
 
1345
  msgid ""
1346
- "This option specifies the align of the RSS feed link in the event list."
 
1347
  msgstr ""
1348
 
1349
- #: includes/options_helptexts.php:137
1350
- msgid "Feed link text"
1351
  msgstr ""
1352
 
1353
- #: includes/options_helptexts.php:138
1354
- msgid ""
1355
- "This option specifies the caption of the RSS feed link in the event list."
1356
  msgstr ""
1357
 
1358
- #: includes/options_helptexts.php:139
1359
  msgid ""
1360
- "Insert an empty text to hide any text if you only want to show the rss "
1361
- "image."
1362
  msgstr ""
1363
 
1364
- #: includes/options_helptexts.php:143
1365
- msgid "Feed link image"
1366
- msgstr "Obraz łącza kanału"
1367
 
1368
- #: includes/options_helptexts.php:144
1369
- msgid "Show rss image in feed link"
1370
- msgstr "Wyświetlaj braz łącza kanału RSS"
1371
 
1372
- #: includes/options_helptexts.php:145
 
 
 
 
 
1373
  msgid ""
1374
- "This option specifies if the an image should be dispayed in the feed link in"
1375
- " front of the text."
1376
- msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem."
1377
 
1378
- #: includes/options_helptexts.php:151
1379
  msgid "Event Category handling"
1380
  msgstr ""
1381
 
1382
- #: includes/options_helptexts.php:152
1383
  msgid "Use Post Categories"
1384
  msgstr ""
1385
 
1386
- #: includes/options_helptexts.php:153
1387
  msgid ""
1388
  "Do not maintain seperate categories for the events, and use the existing "
1389
  "post categories instead."
1390
  msgstr ""
1391
 
1392
- #: includes/options_helptexts.php:154
1393
  msgid "Attention"
1394
  msgstr "Uwaga"
1395
 
1396
- #: includes/options_helptexts.php:155
1397
  msgid ""
1398
  "This option cannot be changed directly, but you can go to the Event Category"
1399
  " switching page from here."
@@ -1519,7 +1536,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:109
1523
  msgid "number"
1524
  msgstr "liczba"
1525
 
@@ -1748,7 +1765,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:112
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr ""
1754
 
@@ -1775,38 +1792,40 @@ msgstr ""
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"
1805
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1833,7 @@ msgid ""
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,23 +1842,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1843
  #: includes/widget_helptexts.php:10
1844
  msgid "This option defines the displayed title for the widget."
1845
  msgstr "Ta opcja definiuje wyświetlany tytuł widgetu."
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Ustawienia Listy Wydarzeń"
34
 
53
  msgstr[2] ""
54
  msgstr[3] ""
55
 
56
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
57
  msgid "General"
58
  msgstr "Ogólne"
59
 
563
  msgstr "Termin zakończenia"
564
 
565
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
566
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
567
  msgid "Time"
568
  msgstr "Godzina"
569
 
570
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
571
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
572
+ #: includes/options_helptexts.php:74
573
  msgid "Location"
574
  msgstr "Miejsce"
575
 
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:73
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:85
717
  msgid "Frontend Settings"
718
  msgstr "Strona frontowa"
719
 
720
+ #: admin/includes/admin-settings.php:86
721
  msgid "Admin Page Settings"
722
  msgstr "Panel administratora"
723
 
724
+ #: admin/includes/admin-settings.php:87
725
  msgid "Feed Settings"
726
  msgstr "Ustawienia kanału"
727
 
728
+ #: admin/includes/admin-settings.php:88
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
980
  msgid "All Dates"
981
  msgstr ""
982
 
983
+ #: includes/options_helptexts.php:11
984
  msgid "CSV File to import"
985
  msgstr "Plik CSV do zaimportowania"
986
 
987
+ #: includes/options_helptexts.php:13
988
  msgid "Please select the file which contains the event data in CSV format."
989
  msgstr "Wybierz plik, który zawiera dane wydarzeń w formacie CSV."
990
 
991
+ #: includes/options_helptexts.php:18
992
  msgid "Used date format"
993
  msgstr "Użyty format daty"
994
 
995
+ #: includes/options_helptexts.php:21
996
  msgid ""
997
  "With this option the given date format for event start and end date in the "
998
  "CSV file can be specified."
999
  msgstr ""
1000
 
1001
+ #: includes/options_helptexts.php:22
1002
  #, php-format
1003
  msgid ""
1004
  "You can use the php date format options given in %1$s, the most important "
1005
  "ones are:"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:24
1009
  msgid "full year representation, with 4 digits"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:25
1013
  msgid "numeric representation of a month, with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:26
1017
  msgid "day of the month, 2 digits with leading zeros"
1018
  msgstr ""
1019
 
1020
+ #: includes/options_helptexts.php:28
1021
  msgid ""
1022
  "If the date format in the CSV file does not correspond to the given format, "
1023
  "the import script tries to recognize the date format by itself."
1024
  msgstr ""
1025
 
1026
+ #: includes/options_helptexts.php:29
1027
  msgid ""
1028
  "But this can cause problems or result in wrong dates, so it is recommended "
1029
  "to specify the correct date format here."
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:30
1033
  msgid "Examples"
1034
  msgstr ""
1035
 
1036
+ #: includes/options_helptexts.php:39
1037
  msgid "Text for no events"
1038
  msgstr "Tekst jeśli brak wydarzeń"
1039
 
1040
+ #: includes/options_helptexts.php:41
1041
  msgid ""
1042
  "This option defines the displayed text when no events are available for the "
1043
  "selected view."
1044
  msgstr "Ta opcja określa tekst, jaki ma być wyświetlany, gdy nie ma żadnych wydarzeń w danym widoku."
1045
 
1046
+ #: includes/options_helptexts.php:46
1047
  msgid "Multiday filter range"
1048
  msgstr "Zakresy filtrów terminów wielodniowych"
1049
 
1050
+ #: includes/options_helptexts.php:47
1051
  msgid "Use the complete event range in the date filter"
1052
  msgstr "Użyj całego czasu trwania wydarzenia w filtrach terminów"
1053
 
1054
+ #: includes/options_helptexts.php:49
1055
  msgid ""
1056
  "This option defines if the complete range of a multiday event shall be "
1057
  "considered in the date filter."
1058
  msgstr "Ta opcja określa, czy w filtrze daty zostanie uwzględniony pełny zakres czasu trwania wydarzenia wielodniowego."
1059
 
1060
+ #: includes/options_helptexts.php:50
1061
  msgid ""
1062
  "If disabled, only the start day of an event is considered in the filter."
1063
  msgstr "Wyłącz, jeśli w filtrze ma być uwzględniany tylko dzień rozpoczęcia wydarzenia."
1064
 
1065
+ #: includes/options_helptexts.php:51
1066
  msgid ""
1067
  "For an example multiday event which started yesterday and ends tomorrow this"
1068
  " means, that it is displayed in umcoming dates when this option is enabled, "
1069
  "but it is hidden when the option is disabled."
1070
  msgstr "W przypadku przykładowego wydarzenia trwającego kilka dni, który rozpoczął się wczoraj i kończy się jutro oznacza to, że wydarzenie jest wyświetlany w liście nadchodzących wydarzeń, gdy ta opcja jest włączona, a jest ukryte, gdy opcja jest wyłączona."
1071
 
1072
+ #: includes/options_helptexts.php:56
1073
  msgid "Date display"
1074
  msgstr "Wyświetlanie terminu"
1075
 
1076
+ #: includes/options_helptexts.php:57
1077
  msgid "Show the date only once per day"
1078
  msgstr "Wyświetlaj jedną datę na dzień"
1079
 
1080
+ #: includes/options_helptexts.php:59
1081
  msgid ""
1082
  "With this option enabled the date is only displayed once per day if more "
1083
  "than one event is available on the same day."
1084
  msgstr "Po włączeniu tej opcji ikonka daty jest wyświetlana tylko raz, jeśli więcej niż jedno wydarzenie jest dostępne w tym samym dniu."
1085
 
1086
+ #: includes/options_helptexts.php:60
1087
  msgid ""
1088
  "If enabled, the events are ordered in a different way (end date before start"
1089
  " time) to allow using the same date for as much events as possible."
1090
  msgstr "Jeśli opcja jest włączona, wydarzenia są układane w inny sposób (data zakończenia przed godziną rozpoczęcia), aby umożliwić użycie tej samej daty dla wszystkich wydarzeń."
1091
 
1092
+ #: includes/options_helptexts.php:65
1093
  msgid "HTML tags"
1094
  msgstr "Znaczniki HTML"
1095
 
1096
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1097
  #, php-format
1098
  msgid "Allow HTML tags in the event field \"%1$s\""
1099
  msgstr "Zezwalaj na znaczniki HTML w polu wydarzenia \"%1$s\""
1100
 
1101
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1102
  #, php-format
1103
  msgid ""
1104
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1105
  msgstr "Ta opcja określa czy jest dozwolone wprowadzanie znaczników HTML w polu \"%1$s\"."
1106
 
1107
+ #: includes/options_helptexts.php:79
1108
  msgid "Preferred language file"
1109
  msgstr "Preferowany plik językowy"
1110
 
1111
+ #: includes/options_helptexts.php:80
1112
  msgid "Load translations from general language directory first"
1113
  msgstr "Ładuj tłumaczenia najpierw z domyślnego folderu językowego"
1114
 
1115
+ #: includes/options_helptexts.php:82
1116
  #, php-format
1117
  msgid ""
1118
  "The default is to load the %1$s translation file from the plugin language "
1119
  "directory first (%2$s)."
1120
  msgstr "Domyślnie wersje językowe są ładowane z pliku tłumaczenia%1$s znajdującego się w folderze języków wtyczki (%2$s)."
1121
 
1122
+ #: includes/options_helptexts.php:83
1123
  #, php-format
1124
  msgid ""
1125
  "If you want to load your own language file from the general language "
1127
  "language directory, you have to enable this option."
1128
  msgstr "Jeśli chcesz załadować własny plik językowy znajdujący się w folderze ogólnym języka %1$s dla języka, który już zawarty jest w folderze języków wtyczki, musisz włączyć tę opcję."
1129
 
1130
+ #: includes/options_helptexts.php:89
1131
  msgid "Events permalink slug"
1132
  msgstr ""
1133
 
1134
+ #: includes/options_helptexts.php:90
1135
  msgid ""
1136
  "With this option the slug for the events permalink URLs can be defined."
1137
  msgstr ""
1138
 
1139
+ #: includes/options_helptexts.php:95
1140
  msgid "Text for \"Show content\""
1141
  msgstr ""
1142
 
1143
+ #: includes/options_helptexts.php:96
1144
  msgid ""
1145
  "With this option the displayed text for the link to show the event content "
1146
  "can be changed, when collapsing is enabled."
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:101
1150
  msgid "Text for \"Hide content\""
1151
  msgstr ""
1152
 
1153
+ #: includes/options_helptexts.php:102
1154
  msgid ""
1155
  "With this option the displayed text for the link to hide the event content "
1156
  "can be changed, when collapsing is enabled."
1157
  msgstr ""
1158
 
1159
+ #: includes/options_helptexts.php:107
1160
  msgid "Disable CSS file"
1161
  msgstr "Wyłącz plik CSS"
1162
 
1163
+ #: includes/options_helptexts.php:108
1164
  #, php-format
1165
  msgid "Disable the %1$s file."
1166
  msgstr "Wyłącz plik %1$s."
1167
 
1168
+ #: includes/options_helptexts.php:110
1169
  #, php-format
1170
  msgid "With this option you can disable the inclusion of the %1$s file."
1171
  msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML."
1172
 
1173
+ #: includes/options_helptexts.php:111
1174
  msgid ""
1175
  "This normally only make sense if you have css conflicts with your theme and "
1176
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1177
  msgstr "Zwykle ma to sens jeśli występują konflikty z motywami i chcesz ustawić wszystkie wymagane style CSS w innym miejscu (np. w motywie CSS)."
1178
 
1179
+ #: includes/options_helptexts.php:117
1180
  msgid "Date format in edit form"
1181
  msgstr "Format daty w formularzu edycji"
1182
 
1183
+ #: includes/options_helptexts.php:119
1184
  msgid ""
1185
  "This option sets the displayed date format for the event date fields in the "
1186
  "event new / edit form."
1187
  msgstr ""
1188
 
1189
+ #: includes/options_helptexts.php:120
1190
  msgid "The default is an empty string to use the Wordpress standard setting."
1191
  msgstr ""
1192
 
1193
+ #: includes/options_helptexts.php:121
1194
  #, php-format
1195
  msgid ""
1196
  "All available options to specify the date format can be found %1$shere%2$s."
1197
  msgstr ""
1198
 
1199
+ #: includes/options_helptexts.php:127
1200
  msgid "Enable RSS feed"
1201
  msgstr "Włącz kanał RSS"
1202
 
1203
+ #: includes/options_helptexts.php:128
1204
+ msgid "Enable support for the event RSS feed"
1205
  msgstr ""
1206
 
1207
+ #: includes/options_helptexts.php:130
1208
+ msgid ""
1209
+ "This option activates the RSS feed for the events and adds a feed link in "
1210
+ "the html head."
1211
  msgstr ""
1212
 
1213
+ #: includes/options_helptexts.php:131
1214
  msgid ""
1215
  "You have to enable this option if you want to use one of the RSS feed "
1216
  "features."
1217
  msgstr ""
1218
 
1219
+ #: includes/options_helptexts.php:136
1220
+ msgid "Enable iCal feed"
 
 
 
 
 
1221
  msgstr ""
1222
 
1223
+ #: includes/options_helptexts.php:137
1224
+ msgid "Enable support for the event iCal feed"
 
 
 
1225
  msgstr ""
1226
 
1227
+ #: includes/options_helptexts.php:139
1228
+ msgid "This option activates the iCal feed for events."
 
 
 
 
 
1229
  msgstr ""
1230
 
1231
+ #: includes/options_helptexts.php:140
1232
  msgid ""
1233
+ "You have to enable this option if you want to use one of the iCal features."
 
1234
  msgstr ""
1235
 
1236
+ #: includes/options_helptexts.php:145
1237
+ msgid "Position of the RSS feed link"
1238
  msgstr ""
1239
 
1240
+ #: includes/options_helptexts.php:146
1241
+ msgid "at the top (above the navigation bar)"
1242
+ msgstr "na górze (ponad panelem nawigacyjnym)"
1243
+
1244
+ #: includes/options_helptexts.php:146
1245
+ msgid "between navigation bar and events"
1246
+ msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami"
1247
+
1248
+ #: includes/options_helptexts.php:146
1249
+ msgid "at the bottom"
1250
+ msgstr "na dole"
1251
 
1252
+ #: includes/options_helptexts.php:147
1253
  msgid ""
1254
+ "This option specifies the position of the RSS feed link in the event list."
1255
  msgstr ""
1256
 
1257
+ #: includes/options_helptexts.php:152
1258
+ msgid "Align of the RSS feed link"
1259
  msgstr ""
1260
 
1261
+ #: includes/options_helptexts.php:153
1262
+ msgid "left"
1263
+ msgstr "do lewej"
1264
 
1265
+ #: includes/options_helptexts.php:153
1266
+ msgid "center"
1267
+ msgstr "do środka"
1268
 
1269
+ #: includes/options_helptexts.php:153
1270
+ msgid "right"
1271
+ msgstr "do prawej"
1272
+
1273
+ #: includes/options_helptexts.php:154
1274
+ msgid ""
1275
+ "This option specifies the align of the RSS feed link in the event list."
1276
  msgstr ""
1277
 
1278
+ #: includes/options_helptexts.php:159
1279
+ msgid "RSS feed name"
1280
  msgstr ""
1281
 
1282
+ #: includes/options_helptexts.php:161
1283
+ #, php-format
1284
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
1285
  msgstr ""
1286
 
1287
+ #: includes/options_helptexts.php:162
1288
  #, php-format
1289
  msgid ""
1290
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1291
+ "enabled)."
1292
  msgstr ""
1293
 
1294
+ #: includes/options_helptexts.php:167
1295
+ msgid "RSS feed Description"
 
1296
  msgstr ""
1297
 
1298
+ #: includes/options_helptexts.php:169
1299
+ #, php-format
1300
+ msgid "This options set the RSS feed description. The default value is %1$s."
1301
  msgstr ""
1302
 
1303
+ #: includes/options_helptexts.php:170
1304
+ msgid ""
1305
+ "This description will be used in the title for the feed link in the html "
1306
+ "head and for the description in the feed itself."
1307
+ msgstr ""
1308
 
1309
+ #: includes/options_helptexts.php:175
1310
+ msgid "RSS feed events"
1311
+ msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:176
1314
+ msgid "Only show upcoming events in the RSS feed"
1315
+ msgstr ""
1316
 
1317
+ #: includes/options_helptexts.php:178
1318
  msgid ""
1319
+ "If this option is enabled only the upcoming events are listed in the RSS "
1320
+ "feed."
1321
+ msgstr ""
1322
+
1323
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1324
+ msgid "If disabled, all events (upcoming and past) will be listed."
1325
+ msgstr ""
1326
+
1327
+ #: includes/options_helptexts.php:184
1328
+ msgid "RSS link text"
1329
+ msgstr ""
1330
+
1331
+ #: includes/options_helptexts.php:186
1332
+ msgid "This option sets the caption of the RSS feed link in the event list."
1333
  msgstr ""
1334
 
1335
+ #: includes/options_helptexts.php:187
1336
+ msgid "Use an empty text to only show the rss image."
1337
+ msgstr ""
1338
+
1339
+ #: includes/options_helptexts.php:188
1340
  #, php-format
1341
  msgid ""
1342
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1343
+ " RSS feed link."
1344
  msgstr ""
1345
 
1346
+ #: includes/options_helptexts.php:193
1347
+ msgid "iCal feed name"
1348
  msgstr ""
1349
 
1350
+ #: includes/options_helptexts.php:195
1351
+ #, php-format
1352
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1353
+ msgstr ""
 
 
 
 
 
 
 
1354
 
1355
+ #: includes/options_helptexts.php:196
1356
+ #, php-format
1357
  msgid ""
1358
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1359
+ "permalinks enabled)."
1360
  msgstr ""
1361
 
1362
+ #: includes/options_helptexts.php:201
1363
+ msgid "iCal feed events"
1364
  msgstr ""
1365
 
1366
+ #: includes/options_helptexts.php:202
1367
+ msgid "Only show upcoming events in the iCal feed"
 
1368
  msgstr ""
1369
 
1370
+ #: includes/options_helptexts.php:204
1371
  msgid ""
1372
+ "If this option is enabled only the upcoming events are listed in the iCal "
1373
+ "file."
1374
  msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:210
1377
+ msgid "iCal link text"
1378
+ msgstr ""
1379
 
1380
+ #: includes/options_helptexts.php:212
1381
+ msgid "This option sets the iCal link text in the event list."
1382
+ msgstr ""
1383
 
1384
+ #: includes/options_helptexts.php:213
1385
+ msgid "Use an empty text to only show the iCal image."
1386
+ msgstr ""
1387
+
1388
+ #: includes/options_helptexts.php:214
1389
+ #, php-format
1390
  msgid ""
1391
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1392
+ " iCal feed link."
1393
+ msgstr ""
1394
 
1395
+ #: includes/options_helptexts.php:221
1396
  msgid "Event Category handling"
1397
  msgstr ""
1398
 
1399
+ #: includes/options_helptexts.php:222
1400
  msgid "Use Post Categories"
1401
  msgstr ""
1402
 
1403
+ #: includes/options_helptexts.php:224
1404
  msgid ""
1405
  "Do not maintain seperate categories for the events, and use the existing "
1406
  "post categories instead."
1407
  msgstr ""
1408
 
1409
+ #: includes/options_helptexts.php:225
1410
  msgid "Attention"
1411
  msgstr "Uwaga"
1412
 
1413
+ #: includes/options_helptexts.php:226
1414
  msgid ""
1415
  "This option cannot be changed directly, but you can go to the Event Category"
1416
  " switching page from here."
1536
  #: includes/sc_event-list_helptexts.php:33
1537
  #: includes/sc_event-list_helptexts.php:74
1538
  #: includes/sc_event-list_helptexts.php:89
1539
+ #: includes/sc_event-list_helptexts.php:111
1540
  msgid "number"
1541
  msgstr "liczba"
1542
 
1765
 
1766
  #: includes/sc_event-list_helptexts.php:77
1767
  #: includes/sc_event-list_helptexts.php:92
1768
+ #: includes/sc_event-list_helptexts.php:114
1769
  msgid "This attribute has no influence if only a single event is shown."
1770
  msgstr ""
1771
 
1792
 
1793
  #: includes/sc_event-list_helptexts.php:100
1794
  msgid ""
1795
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1796
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1797
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1798
  msgstr ""
1799
 
1800
  #: includes/sc_event-list_helptexts.php:105
1801
  msgid ""
1802
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1803
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1805
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1806
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:112
1810
  msgid ""
1811
  "This attribute specifies if the content should be truncate to the given "
1812
  "number of characters in the event list."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:113
1816
  #, php-format
1817
  msgid "With the standard value %1$s the full text is displayed."
1818
  msgstr ""
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:117
1821
  msgid ""
1822
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1823
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1824
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1825
  "\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."
1826
  msgstr ""
1827
 
1828
+ #: includes/sc_event-list_helptexts.php:123
1829
  msgid ""
1830
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1831
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1834
  msgstr ""
1835
 
1836
+ #: includes/sc_event-list_helptexts.php:129
1837
  msgid ""
1838
  "This attribute specifies if a rss feed link should be added.<br />\n"
1839
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1842
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1843
  msgstr ""
1844
 
1845
+ #: includes/sc_event-list_helptexts.php:136
1846
+ msgid ""
1847
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1848
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1849
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1850
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1851
+ msgstr ""
1852
+
1853
+ #: includes/sc_event-list_helptexts.php:142
1854
  msgid ""
1855
  "This attribute specifies the page or post url for event links.<br />\n"
1856
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1857
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1858
  msgstr ""
1859
 
1860
+ #: includes/sc_event-list_helptexts.php:149
1861
  msgid ""
1862
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1863
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list.php:145
1867
  msgid "Event Information:"
1868
  msgstr "Informacje o wydarzeniu:"
1869
 
1870
+ #: includes/sc_event-list.php:391
1871
+ msgid "Link to RSS feed"
1872
+ msgstr ""
1873
+
1874
+ #: includes/sc_event-list.php:399
1875
+ msgid "Link to iCal feed"
1876
+ msgstr ""
1877
+
1878
  #: includes/widget_helptexts.php:10
1879
  msgid "This option defines the displayed title for the widget."
1880
  msgstr "Ta opcja definiuje wyświetlany tytuł widgetu."
languages/event-list-pt_BR.mo CHANGED
Binary file
languages/event-list-pt_BR.po CHANGED
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 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"
@@ -30,7 +30,7 @@ msgstr ""
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
 
@@ -53,7 +53,7 @@ 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"
58
  msgstr "Geral"
59
 
@@ -561,13 +561,13 @@ msgid "End Date"
561
  msgstr "Término"
562
 
563
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
564
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
565
  msgid "Time"
566
  msgstr "Hora"
567
 
568
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
569
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
570
- #: includes/options_helptexts.php:58
571
  msgid "Location"
572
  msgstr "Localização"
573
 
@@ -707,23 +707,23 @@ msgstr ""
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:71
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:83
715
  msgid "Frontend Settings"
716
  msgstr "Configurações de Frontend"
717
 
718
- #: admin/includes/admin-settings.php:84
719
  msgid "Admin Page Settings"
720
  msgstr "Configurações do Administrador"
721
 
722
- #: admin/includes/admin-settings.php:85
723
  msgid "Feed Settings"
724
  msgstr "Configurações de Feed"
725
 
726
- #: admin/includes/admin-settings.php:86
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
@@ -978,146 +978,146 @@ msgstr "Tudo"
978
  msgid "All Dates"
979
  msgstr ""
980
 
981
- #: includes/options_helptexts.php:10
982
  msgid "CSV File to import"
983
  msgstr "Arquivo CSV a importar"
984
 
985
- #: includes/options_helptexts.php:12
986
  msgid "Please select the file which contains the event data in CSV format."
987
  msgstr ""
988
 
989
- #: includes/options_helptexts.php:15
990
  msgid "Used date format"
991
  msgstr "Formato de data usado"
992
 
993
- #: includes/options_helptexts.php:17
994
  msgid ""
995
  "With this option the given date format for event start and end date in the "
996
  "CSV file can be specified."
997
  msgstr ""
998
 
999
- #: includes/options_helptexts.php:18
1000
  #, php-format
1001
  msgid ""
1002
  "You can use the php date format options given in %1$s, the most important "
1003
  "ones are:"
1004
  msgstr ""
1005
 
1006
- #: includes/options_helptexts.php:20
1007
  msgid "full year representation, with 4 digits"
1008
  msgstr ""
1009
 
1010
- #: includes/options_helptexts.php:21
1011
  msgid "numeric representation of a month, with leading zeros"
1012
  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"
1036
  msgstr "Texto para \"nenhum evento\""
1037
 
1038
- #: includes/options_helptexts.php:35
1039
  msgid ""
1040
  "This option defines the displayed text when no events are available for the "
1041
  "selected view."
1042
  msgstr ""
1043
 
1044
- #: includes/options_helptexts.php:38
1045
  msgid "Multiday filter range"
1046
  msgstr ""
1047
 
1048
- #: includes/options_helptexts.php:39
1049
  msgid "Use the complete event range in the date filter"
1050
  msgstr ""
1051
 
1052
- #: includes/options_helptexts.php:40
1053
  msgid ""
1054
  "This option defines if the complete range of a multiday event shall be "
1055
  "considered in the date filter."
1056
  msgstr ""
1057
 
1058
- #: includes/options_helptexts.php:41
1059
  msgid ""
1060
  "If disabled, only the start day of an event is considered in the filter."
1061
  msgstr ""
1062
 
1063
- #: includes/options_helptexts.php:42
1064
  msgid ""
1065
  "For an example multiday event which started yesterday and ends tomorrow this"
1066
  " means, that it is displayed in umcoming dates when this option is enabled, "
1067
  "but it is hidden when the option is disabled."
1068
  msgstr ""
1069
 
1070
- #: includes/options_helptexts.php:45
1071
  msgid "Date display"
1072
  msgstr "Exibição de data"
1073
 
1074
- #: includes/options_helptexts.php:46
1075
  msgid "Show the date only once per day"
1076
  msgstr ""
1077
 
1078
- #: includes/options_helptexts.php:47
1079
  msgid ""
1080
  "With this option enabled the date is only displayed once per day if more "
1081
  "than one event is available on the same day."
1082
  msgstr ""
1083
 
1084
- #: includes/options_helptexts.php:48
1085
  msgid ""
1086
  "If enabled, the events are ordered in a different way (end date before start"
1087
  " time) to allow using the same date for as much events as possible."
1088
  msgstr ""
1089
 
1090
- #: includes/options_helptexts.php:51
1091
  msgid "HTML tags"
1092
  msgstr "Tags HTML"
1093
 
1094
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1095
  #, php-format
1096
  msgid "Allow HTML tags in the event field \"%1$s\""
1097
  msgstr ""
1098
 
1099
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1100
  #, php-format
1101
  msgid ""
1102
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1103
  msgstr ""
1104
 
1105
- #: includes/options_helptexts.php:61
1106
  msgid "Preferred language file"
1107
  msgstr ""
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
1115
  msgid ""
1116
  "The default is to load the %1$s translation file from the plugin language "
1117
  "directory first (%2$s)."
1118
  msgstr ""
1119
 
1120
- #: includes/options_helptexts.php:64
1121
  #, php-format
1122
  msgid ""
1123
  "If you want to load your own language file from the general language "
@@ -1125,273 +1125,290 @@ msgid ""
1125
  "language directory, you have to enable this option."
1126
  msgstr ""
1127
 
1128
- #: includes/options_helptexts.php:68
1129
  msgid "Events permalink slug"
1130
  msgstr ""
1131
 
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 ""
1143
  "With this option the displayed text for the link to show the event content "
1144
  "can be changed, when collapsing is enabled."
1145
  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 ""
1153
  "With this option the displayed text for the link to hide the event content "
1154
  "can be changed, when collapsing is enabled."
1155
  msgstr ""
1156
 
1157
- #: includes/options_helptexts.php:80
1158
  msgid "Disable CSS file"
1159
  msgstr "Desativar arquivo CSS"
1160
 
1161
- #: includes/options_helptexts.php:81
1162
  #, php-format
1163
  msgid "Disable the %1$s file."
1164
  msgstr ""
1165
 
1166
- #: includes/options_helptexts.php:82
1167
  #, php-format
1168
  msgid "With this option you can disable the inclusion of the %1$s file."
1169
  msgstr ""
1170
 
1171
- #: includes/options_helptexts.php:83
1172
  msgid ""
1173
  "This normally only make sense if you have css conflicts with your theme and "
1174
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1175
  msgstr ""
1176
 
1177
- #: includes/options_helptexts.php:87
1178
  msgid "Date format in edit form"
1179
  msgstr ""
1180
 
1181
- #: includes/options_helptexts.php:88
1182
  msgid ""
1183
  "This option sets the displayed date format for the event date fields in the "
1184
  "event new / edit form."
1185
  msgstr ""
1186
 
1187
- #: includes/options_helptexts.php:89
1188
  msgid "The default is an empty string to use the Wordpress standard setting."
1189
  msgstr ""
1190
 
1191
- #: includes/options_helptexts.php:90
1192
  #, php-format
1193
  msgid ""
1194
  "All available options to specify the date format can be found %1$shere%2$s."
1195
  msgstr ""
1196
 
1197
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1198
  msgid "Enable RSS feed"
1199
  msgstr "Habilitar Feed RSS"
1200
 
1201
- #: includes/options_helptexts.php:95
1202
- msgid "Enable support for an event RSS feed"
1203
  msgstr ""
1204
 
1205
- #: includes/options_helptexts.php:96
1206
- msgid "This option activates a RSS feed for the events."
 
 
1207
  msgstr ""
1208
 
1209
- #: includes/options_helptexts.php:97
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
- #: includes/options_helptexts.php:100
1216
- msgid "Feed name"
1217
- msgstr "Nome do feed"
1218
 
1219
- #: includes/options_helptexts.php:101
1220
- #, php-format
1221
- msgid "This option sets the feed name. The default value is %1$s."
1222
  msgstr ""
1223
 
1224
- #: includes/options_helptexts.php:102
1225
- #, php-format
1226
- msgid ""
1227
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1228
- "enabled)."
1229
  msgstr ""
1230
 
1231
- #: includes/options_helptexts.php:105
1232
- msgid "Feed Description"
1233
- msgstr "Descrição do feed"
 
1234
 
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 ""
1242
- "This description will be used in the title for the feed link in the html "
1243
- "head and for the description in the feed itself."
1244
  msgstr ""
1245
 
1246
- #: includes/options_helptexts.php:110
1247
- msgid "Listed events"
1248
- msgstr "Eventos listados"
1249
 
1250
- #: includes/options_helptexts.php:111
1251
- msgid "Only show upcoming events in feed"
1252
  msgstr ""
1253
 
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"
1265
  msgstr ""
1266
 
1267
- #: includes/options_helptexts.php:117
1268
- msgid "Add RSS feed link in the html head"
1269
  msgstr ""
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"
 
1299
  msgstr ""
1300
 
1301
- #: includes/options_helptexts.php:126
1302
- msgid "at the top (above the navigation bar)"
 
 
1303
  msgstr ""
1304
 
1305
- #: includes/options_helptexts.php:126
1306
- msgid "between navigation bar and events"
1307
  msgstr ""
1308
 
1309
- #: includes/options_helptexts.php:126
1310
- msgid "at the bottom"
1311
  msgstr ""
1312
 
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
 
 
 
 
 
 
 
 
 
 
 
1320
  #, php-format
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"
1328
  msgstr ""
1329
 
1330
- #: includes/options_helptexts.php:132
1331
- msgid "left"
 
1332
  msgstr ""
1333
 
1334
- #: includes/options_helptexts.php:132
1335
- msgid "center"
 
 
 
1336
  msgstr ""
1337
 
1338
- #: includes/options_helptexts.php:132
1339
- msgid "right"
1340
  msgstr ""
1341
 
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"
1349
- msgstr "Texto do link do Feed"
1350
-
1351
- #: includes/options_helptexts.php:138
1352
  msgid ""
1353
- "This option specifies the caption of the RSS feed link in the event list."
 
1354
  msgstr ""
1355
 
1356
- #: includes/options_helptexts.php:139
1357
- msgid ""
1358
- "Insert an empty text to hide any text if you only want to show the rss "
1359
- "image."
1360
  msgstr ""
1361
 
1362
- #: includes/options_helptexts.php:143
1363
- msgid "Feed link image"
1364
- msgstr "Imagem do link do Feed"
1365
 
1366
- #: includes/options_helptexts.php:144
1367
- msgid "Show rss image in feed link"
1368
- msgstr "Exibir imagem rss no link do feed"
1369
 
1370
- #: includes/options_helptexts.php:145
 
1371
  msgid ""
1372
- "This option specifies if the an image should be dispayed in the feed link in"
1373
- " front of the text."
1374
  msgstr ""
1375
 
1376
- #: includes/options_helptexts.php:151
1377
  msgid "Event Category handling"
1378
  msgstr ""
1379
 
1380
- #: includes/options_helptexts.php:152
1381
  msgid "Use Post Categories"
1382
  msgstr ""
1383
 
1384
- #: includes/options_helptexts.php:153
1385
  msgid ""
1386
  "Do not maintain seperate categories for the events, and use the existing "
1387
  "post categories instead."
1388
  msgstr ""
1389
 
1390
- #: includes/options_helptexts.php:154
1391
  msgid "Attention"
1392
  msgstr "Atenção"
1393
 
1394
- #: includes/options_helptexts.php:155
1395
  msgid ""
1396
  "This option cannot be changed directly, but you can go to the Event Category"
1397
  " switching page from here."
@@ -1517,7 +1534,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:109
1521
  msgid "number"
1522
  msgstr ""
1523
 
@@ -1746,7 +1763,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:112
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
@@ -1773,38 +1790,40 @@ msgstr ""
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"
1803
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1831,7 @@ msgid ""
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,23 +1840,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1841
  #: includes/widget_helptexts.php:10
1842
  msgid "This option defines the displayed title for the widget."
1843
  msgstr ""
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-11-16 17:29+0100\n"
14
+ "PO-Revision-Date: 2020-11-16 16:29+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"
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
34
  msgid "Event List Settings"
35
  msgstr "Configurações da Lista de Eventos"
36
 
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
57
  msgid "General"
58
  msgstr "Geral"
59
 
561
  msgstr "Término"
562
 
563
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
564
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
565
  msgid "Time"
566
  msgstr "Hora"
567
 
568
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
569
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
570
+ #: includes/options_helptexts.php:74
571
  msgid "Location"
572
  msgstr "Localização"
573
 
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-settings.php:73
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:85
715
  msgid "Frontend Settings"
716
  msgstr "Configurações de Frontend"
717
 
718
+ #: admin/includes/admin-settings.php:86
719
  msgid "Admin Page Settings"
720
  msgstr "Configurações do Administrador"
721
 
722
+ #: admin/includes/admin-settings.php:87
723
  msgid "Feed Settings"
724
  msgstr "Configurações de Feed"
725
 
726
+ #: admin/includes/admin-settings.php:88
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
978
  msgid "All Dates"
979
  msgstr ""
980
 
981
+ #: includes/options_helptexts.php:11
982
  msgid "CSV File to import"
983
  msgstr "Arquivo CSV a importar"
984
 
985
+ #: includes/options_helptexts.php:13
986
  msgid "Please select the file which contains the event data in CSV format."
987
  msgstr ""
988
 
989
+ #: includes/options_helptexts.php:18
990
  msgid "Used date format"
991
  msgstr "Formato de data usado"
992
 
993
+ #: includes/options_helptexts.php:21
994
  msgid ""
995
  "With this option the given date format for event start and end date in the "
996
  "CSV file can be specified."
997
  msgstr ""
998
 
999
+ #: includes/options_helptexts.php:22
1000
  #, php-format
1001
  msgid ""
1002
  "You can use the php date format options given in %1$s, the most important "
1003
  "ones are:"
1004
  msgstr ""
1005
 
1006
+ #: includes/options_helptexts.php:24
1007
  msgid "full year representation, with 4 digits"
1008
  msgstr ""
1009
 
1010
+ #: includes/options_helptexts.php:25
1011
  msgid "numeric representation of a month, with leading zeros"
1012
  msgstr ""
1013
 
1014
+ #: includes/options_helptexts.php:26
1015
  msgid "day of the month, 2 digits with leading zeros"
1016
  msgstr ""
1017
 
1018
+ #: includes/options_helptexts.php:28
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:29
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:30
1031
  msgid "Examples"
1032
  msgstr ""
1033
 
1034
+ #: includes/options_helptexts.php:39
1035
  msgid "Text for no events"
1036
  msgstr "Texto para \"nenhum evento\""
1037
 
1038
+ #: includes/options_helptexts.php:41
1039
  msgid ""
1040
  "This option defines the displayed text when no events are available for the "
1041
  "selected view."
1042
  msgstr ""
1043
 
1044
+ #: includes/options_helptexts.php:46
1045
  msgid "Multiday filter range"
1046
  msgstr ""
1047
 
1048
+ #: includes/options_helptexts.php:47
1049
  msgid "Use the complete event range in the date filter"
1050
  msgstr ""
1051
 
1052
+ #: includes/options_helptexts.php:49
1053
  msgid ""
1054
  "This option defines if the complete range of a multiday event shall be "
1055
  "considered in the date filter."
1056
  msgstr ""
1057
 
1058
+ #: includes/options_helptexts.php:50
1059
  msgid ""
1060
  "If disabled, only the start day of an event is considered in the filter."
1061
  msgstr ""
1062
 
1063
+ #: includes/options_helptexts.php:51
1064
  msgid ""
1065
  "For an example multiday event which started yesterday and ends tomorrow this"
1066
  " means, that it is displayed in umcoming dates when this option is enabled, "
1067
  "but it is hidden when the option is disabled."
1068
  msgstr ""
1069
 
1070
+ #: includes/options_helptexts.php:56
1071
  msgid "Date display"
1072
  msgstr "Exibição de data"
1073
 
1074
+ #: includes/options_helptexts.php:57
1075
  msgid "Show the date only once per day"
1076
  msgstr ""
1077
 
1078
+ #: includes/options_helptexts.php:59
1079
  msgid ""
1080
  "With this option enabled the date is only displayed once per day if more "
1081
  "than one event is available on the same day."
1082
  msgstr ""
1083
 
1084
+ #: includes/options_helptexts.php:60
1085
  msgid ""
1086
  "If enabled, the events are ordered in a different way (end date before start"
1087
  " time) to allow using the same date for as much events as possible."
1088
  msgstr ""
1089
 
1090
+ #: includes/options_helptexts.php:65
1091
  msgid "HTML tags"
1092
  msgstr "Tags HTML"
1093
 
1094
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1095
  #, php-format
1096
  msgid "Allow HTML tags in the event field \"%1$s\""
1097
  msgstr ""
1098
 
1099
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1100
  #, php-format
1101
  msgid ""
1102
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1103
  msgstr ""
1104
 
1105
+ #: includes/options_helptexts.php:79
1106
  msgid "Preferred language file"
1107
  msgstr ""
1108
 
1109
+ #: includes/options_helptexts.php:80
1110
  msgid "Load translations from general language directory first"
1111
  msgstr ""
1112
 
1113
+ #: includes/options_helptexts.php:82
1114
  #, php-format
1115
  msgid ""
1116
  "The default is to load the %1$s translation file from the plugin language "
1117
  "directory first (%2$s)."
1118
  msgstr ""
1119
 
1120
+ #: includes/options_helptexts.php:83
1121
  #, php-format
1122
  msgid ""
1123
  "If you want to load your own language file from the general language "
1125
  "language directory, you have to enable this option."
1126
  msgstr ""
1127
 
1128
+ #: includes/options_helptexts.php:89
1129
  msgid "Events permalink slug"
1130
  msgstr ""
1131
 
1132
+ #: includes/options_helptexts.php:90
1133
  msgid ""
1134
  "With this option the slug for the events permalink URLs can be defined."
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:95
1138
  msgid "Text for \"Show content\""
1139
  msgstr ""
1140
 
1141
+ #: includes/options_helptexts.php:96
1142
  msgid ""
1143
  "With this option the displayed text for the link to show the event content "
1144
  "can be changed, when collapsing is enabled."
1145
  msgstr ""
1146
 
1147
+ #: includes/options_helptexts.php:101
1148
  msgid "Text for \"Hide content\""
1149
  msgstr ""
1150
 
1151
+ #: includes/options_helptexts.php:102
1152
  msgid ""
1153
  "With this option the displayed text for the link to hide the event content "
1154
  "can be changed, when collapsing is enabled."
1155
  msgstr ""
1156
 
1157
+ #: includes/options_helptexts.php:107
1158
  msgid "Disable CSS file"
1159
  msgstr "Desativar arquivo CSS"
1160
 
1161
+ #: includes/options_helptexts.php:108
1162
  #, php-format
1163
  msgid "Disable the %1$s file."
1164
  msgstr ""
1165
 
1166
+ #: includes/options_helptexts.php:110
1167
  #, php-format
1168
  msgid "With this option you can disable the inclusion of the %1$s file."
1169
  msgstr ""
1170
 
1171
+ #: includes/options_helptexts.php:111
1172
  msgid ""
1173
  "This normally only make sense if you have css conflicts with your theme and "
1174
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1175
  msgstr ""
1176
 
1177
+ #: includes/options_helptexts.php:117
1178
  msgid "Date format in edit form"
1179
  msgstr ""
1180
 
1181
+ #: includes/options_helptexts.php:119
1182
  msgid ""
1183
  "This option sets the displayed date format for the event date fields in the "
1184
  "event new / edit form."
1185
  msgstr ""
1186
 
1187
+ #: includes/options_helptexts.php:120
1188
  msgid "The default is an empty string to use the Wordpress standard setting."
1189
  msgstr ""
1190
 
1191
+ #: includes/options_helptexts.php:121
1192
  #, php-format
1193
  msgid ""
1194
  "All available options to specify the date format can be found %1$shere%2$s."
1195
  msgstr ""
1196
 
1197
+ #: includes/options_helptexts.php:127
1198
  msgid "Enable RSS feed"
1199
  msgstr "Habilitar Feed RSS"
1200
 
1201
+ #: includes/options_helptexts.php:128
1202
+ msgid "Enable support for the event RSS feed"
1203
  msgstr ""
1204
 
1205
+ #: includes/options_helptexts.php:130
1206
+ msgid ""
1207
+ "This option activates the RSS feed for the events and adds a feed link in "
1208
+ "the html head."
1209
  msgstr ""
1210
 
1211
+ #: includes/options_helptexts.php:131
1212
  msgid ""
1213
  "You have to enable this option if you want to use one of the RSS feed "
1214
  "features."
1215
  msgstr ""
1216
 
1217
+ #: includes/options_helptexts.php:136
1218
+ msgid "Enable iCal feed"
1219
+ msgstr ""
1220
 
1221
+ #: includes/options_helptexts.php:137
1222
+ msgid "Enable support for the event iCal feed"
 
1223
  msgstr ""
1224
 
1225
+ #: includes/options_helptexts.php:139
1226
+ msgid "This option activates the iCal feed for events."
 
 
 
1227
  msgstr ""
1228
 
1229
+ #: includes/options_helptexts.php:140
1230
+ msgid ""
1231
+ "You have to enable this option if you want to use one of the iCal features."
1232
+ msgstr ""
1233
 
1234
+ #: includes/options_helptexts.php:145
1235
+ msgid "Position of the RSS feed link"
 
1236
  msgstr ""
1237
 
1238
+ #: includes/options_helptexts.php:146
1239
+ msgid "at the top (above the navigation bar)"
 
 
1240
  msgstr ""
1241
 
1242
+ #: includes/options_helptexts.php:146
1243
+ msgid "between navigation bar and events"
1244
+ msgstr ""
1245
 
1246
+ #: includes/options_helptexts.php:146
1247
+ msgid "at the bottom"
1248
  msgstr ""
1249
 
1250
+ #: includes/options_helptexts.php:147
1251
  msgid ""
1252
+ "This option specifies the position of the RSS feed link in the event list."
1253
+ msgstr ""
1254
+
1255
+ #: includes/options_helptexts.php:152
1256
+ msgid "Align of the RSS feed link"
1257
  msgstr ""
1258
 
1259
+ #: includes/options_helptexts.php:153
1260
+ msgid "left"
1261
  msgstr ""
1262
 
1263
+ #: includes/options_helptexts.php:153
1264
+ msgid "center"
1265
  msgstr ""
1266
 
1267
+ #: includes/options_helptexts.php:153
1268
+ msgid "right"
1269
  msgstr ""
1270
 
1271
+ #: includes/options_helptexts.php:154
1272
+ msgid ""
1273
+ "This option specifies the align of the RSS feed link in the event list."
1274
  msgstr ""
1275
 
1276
+ #: includes/options_helptexts.php:159
1277
+ msgid "RSS feed name"
1278
  msgstr ""
1279
 
1280
+ #: includes/options_helptexts.php:161
1281
+ #, php-format
1282
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
1283
  msgstr ""
1284
 
1285
+ #: includes/options_helptexts.php:162
1286
  #, php-format
1287
  msgid ""
1288
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1289
+ "enabled)."
1290
  msgstr ""
1291
 
1292
+ #: includes/options_helptexts.php:167
1293
+ msgid "RSS feed Description"
 
1294
  msgstr ""
1295
 
1296
+ #: includes/options_helptexts.php:169
1297
+ #, php-format
1298
+ msgid "This options set the RSS feed description. The default value is %1$s."
1299
  msgstr ""
1300
 
1301
+ #: includes/options_helptexts.php:170
1302
+ msgid ""
1303
+ "This description will be used in the title for the feed link in the html "
1304
+ "head and for the description in the feed itself."
1305
  msgstr ""
1306
 
1307
+ #: includes/options_helptexts.php:175
1308
+ msgid "RSS feed events"
1309
  msgstr ""
1310
 
1311
+ #: includes/options_helptexts.php:176
1312
+ msgid "Only show upcoming events in the RSS feed"
1313
  msgstr ""
1314
 
1315
+ #: includes/options_helptexts.php:178
1316
  msgid ""
1317
+ "If this option is enabled only the upcoming events are listed in the RSS "
1318
+ "feed."
1319
+ msgstr ""
1320
+
1321
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1322
+ msgid "If disabled, all events (upcoming and past) will be listed."
1323
  msgstr ""
1324
 
1325
+ #: includes/options_helptexts.php:184
1326
+ msgid "RSS link text"
1327
+ msgstr ""
1328
+
1329
+ #: includes/options_helptexts.php:186
1330
+ msgid "This option sets the caption of the RSS feed link in the event list."
1331
+ msgstr ""
1332
+
1333
+ #: includes/options_helptexts.php:187
1334
+ msgid "Use an empty text to only show the rss image."
1335
+ msgstr ""
1336
+
1337
+ #: includes/options_helptexts.php:188
1338
  #, php-format
1339
  msgid ""
1340
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1341
+ " RSS feed link."
1342
  msgstr ""
1343
 
1344
+ #: includes/options_helptexts.php:193
1345
+ msgid "iCal feed name"
1346
  msgstr ""
1347
 
1348
+ #: includes/options_helptexts.php:195
1349
+ #, php-format
1350
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1351
  msgstr ""
1352
 
1353
+ #: includes/options_helptexts.php:196
1354
+ #, php-format
1355
+ msgid ""
1356
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1357
+ "permalinks enabled)."
1358
  msgstr ""
1359
 
1360
+ #: includes/options_helptexts.php:201
1361
+ msgid "iCal feed events"
1362
  msgstr ""
1363
 
1364
+ #: includes/options_helptexts.php:202
1365
+ msgid "Only show upcoming events in the iCal feed"
 
1366
  msgstr ""
1367
 
1368
+ #: includes/options_helptexts.php:204
 
 
 
 
1369
  msgid ""
1370
+ "If this option is enabled only the upcoming events are listed in the iCal "
1371
+ "file."
1372
  msgstr ""
1373
 
1374
+ #: includes/options_helptexts.php:210
1375
+ msgid "iCal link text"
 
 
1376
  msgstr ""
1377
 
1378
+ #: includes/options_helptexts.php:212
1379
+ msgid "This option sets the iCal link text in the event list."
1380
+ msgstr ""
1381
 
1382
+ #: includes/options_helptexts.php:213
1383
+ msgid "Use an empty text to only show the iCal image."
1384
+ msgstr ""
1385
 
1386
+ #: includes/options_helptexts.php:214
1387
+ #, php-format
1388
  msgid ""
1389
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1390
+ " iCal feed link."
1391
  msgstr ""
1392
 
1393
+ #: includes/options_helptexts.php:221
1394
  msgid "Event Category handling"
1395
  msgstr ""
1396
 
1397
+ #: includes/options_helptexts.php:222
1398
  msgid "Use Post Categories"
1399
  msgstr ""
1400
 
1401
+ #: includes/options_helptexts.php:224
1402
  msgid ""
1403
  "Do not maintain seperate categories for the events, and use the existing "
1404
  "post categories instead."
1405
  msgstr ""
1406
 
1407
+ #: includes/options_helptexts.php:225
1408
  msgid "Attention"
1409
  msgstr "Atenção"
1410
 
1411
+ #: includes/options_helptexts.php:226
1412
  msgid ""
1413
  "This option cannot be changed directly, but you can go to the Event Category"
1414
  " switching page from here."
1534
  #: includes/sc_event-list_helptexts.php:33
1535
  #: includes/sc_event-list_helptexts.php:74
1536
  #: includes/sc_event-list_helptexts.php:89
1537
+ #: includes/sc_event-list_helptexts.php:111
1538
  msgid "number"
1539
  msgstr ""
1540
 
1763
 
1764
  #: includes/sc_event-list_helptexts.php:77
1765
  #: includes/sc_event-list_helptexts.php:92
1766
+ #: includes/sc_event-list_helptexts.php:114
1767
  msgid "This attribute has no influence if only a single event is shown."
1768
  msgstr ""
1769
 
1790
 
1791
  #: includes/sc_event-list_helptexts.php:100
1792
  msgid ""
1793
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1794
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1795
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1796
  msgstr ""
1797
 
1798
  #: includes/sc_event-list_helptexts.php:105
1799
  msgid ""
1800
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1801
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1803
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1805
  msgstr ""
1806
 
1807
+ #: includes/sc_event-list_helptexts.php:112
1808
  msgid ""
1809
  "This attribute specifies if the content should be truncate to the given "
1810
  "number of characters in the event list."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:113
1814
  #, php-format
1815
  msgid "With the standard value %1$s the full text is displayed."
1816
  msgstr ""
1817
 
1818
+ #: includes/sc_event-list_helptexts.php:117
1819
  msgid ""
1820
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1821
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1822
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1823
  "\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."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:123
1827
  msgid ""
1828
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1829
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1831
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:129
1835
  msgid ""
1836
  "This attribute specifies if a rss feed link should be added.<br />\n"
1837
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1840
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1841
  msgstr ""
1842
 
1843
+ #: includes/sc_event-list_helptexts.php:136
1844
+ msgid ""
1845
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1846
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1847
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1848
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1849
+ msgstr ""
1850
+
1851
+ #: includes/sc_event-list_helptexts.php:142
1852
  msgid ""
1853
  "This attribute specifies the page or post url for event links.<br />\n"
1854
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1855
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1856
  msgstr ""
1857
 
1858
+ #: includes/sc_event-list_helptexts.php:149
1859
  msgid ""
1860
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1861
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1862
  msgstr ""
1863
 
1864
+ #: includes/sc_event-list.php:145
1865
  msgid "Event Information:"
1866
  msgstr "Informação do Evento:"
1867
 
1868
+ #: includes/sc_event-list.php:391
1869
+ msgid "Link to RSS feed"
1870
+ msgstr ""
1871
+
1872
+ #: includes/sc_event-list.php:399
1873
+ msgid "Link to iCal feed"
1874
+ msgstr ""
1875
+
1876
  #: includes/widget_helptexts.php:10
1877
  msgid "This option defines the displayed title for the widget."
1878
  msgstr ""
languages/event-list-sk_SK.mo CHANGED
Binary file
languages/event-list-sk_SK.po CHANGED
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 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"
@@ -31,7 +31,7 @@ msgstr "Chyba pri upgrade pluginu %1$s."
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
 
@@ -56,7 +56,7 @@ msgstr[1] ""
56
  msgstr[2] ""
57
  msgstr[3] ""
58
 
59
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
60
  msgid "General"
61
  msgstr "Všeobecné"
62
 
@@ -566,13 +566,13 @@ msgid "End Date"
566
  msgstr "Posledný deň"
567
 
568
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
569
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
570
  msgid "Time"
571
  msgstr "Čas"
572
 
573
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
574
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
575
- #: includes/options_helptexts.php:58
576
  msgid "Location"
577
  msgstr "Miesto"
578
 
@@ -712,23 +712,23 @@ msgstr "Udalosť naplánovaná na: %1$s>"
712
  msgid "Event draft updated."
713
  msgstr "Koncept udalosti bol aktualizovaný."
714
 
715
- #: admin/includes/admin-settings.php:71
716
  msgid "Go to Event Category switching page"
717
  msgstr "Prejdite na stránku prepínania kategórií udalostí"
718
 
719
- #: admin/includes/admin-settings.php:83
720
  msgid "Frontend Settings"
721
  msgstr "Nastavenia Frontendu"
722
 
723
- #: admin/includes/admin-settings.php:84
724
  msgid "Admin Page Settings"
725
  msgstr "Nastavenia Administračnej stránky"
726
 
727
- #: admin/includes/admin-settings.php:85
728
  msgid "Feed Settings"
729
  msgstr "Nastavenia Feedu"
730
 
731
- #: admin/includes/admin-settings.php:86
732
  msgid "Category Taxonomy"
733
  msgstr ""
734
 
@@ -983,146 +983,146 @@ msgstr "Všetko"
983
  msgid "All Dates"
984
  msgstr "Všetky dátumy"
985
 
986
- #: includes/options_helptexts.php:10
987
  msgid "CSV File to import"
988
  msgstr ""
989
 
990
- #: includes/options_helptexts.php:12
991
  msgid "Please select the file which contains the event data in CSV format."
992
  msgstr ""
993
 
994
- #: includes/options_helptexts.php:15
995
  msgid "Used date format"
996
  msgstr "Použitý formát dátumu"
997
 
998
- #: includes/options_helptexts.php:17
999
  msgid ""
1000
  "With this option the given date format for event start and end date in the "
1001
  "CSV file can be specified."
1002
  msgstr ""
1003
 
1004
- #: includes/options_helptexts.php:18
1005
  #, php-format
1006
  msgid ""
1007
  "You can use the php date format options given in %1$s, the most important "
1008
  "ones are:"
1009
  msgstr ""
1010
 
1011
- #: includes/options_helptexts.php:20
1012
  msgid "full year representation, with 4 digits"
1013
  msgstr ""
1014
 
1015
- #: includes/options_helptexts.php:21
1016
  msgid "numeric representation of a month, with leading zeros"
1017
  msgstr ""
1018
 
1019
- #: includes/options_helptexts.php:22
1020
  msgid "day of the month, 2 digits with leading zeros"
1021
  msgstr ""
1022
 
1023
- #: includes/options_helptexts.php:24
1024
  msgid ""
1025
  "If the date format in the CSV file does not correspond to the given format, "
1026
  "the import script tries to recognize the date format by itself."
1027
  msgstr ""
1028
 
1029
- #: includes/options_helptexts.php:25
1030
  msgid ""
1031
  "But this can cause problems or result in wrong dates, so it is recommended "
1032
  "to specify the correct date format here."
1033
  msgstr ""
1034
 
1035
- #: includes/options_helptexts.php:26
1036
  msgid "Examples"
1037
  msgstr ""
1038
 
1039
- #: includes/options_helptexts.php:33
1040
  msgid "Text for no events"
1041
  msgstr "Text pre žiadne udalosti"
1042
 
1043
- #: includes/options_helptexts.php:35
1044
  msgid ""
1045
  "This option defines the displayed text when no events are available for the "
1046
  "selected view."
1047
  msgstr "Táto možnosť definuje zobrazený text, ak pre vybrané zobrazenie nie sú k dispozícii žiadne udalosti."
1048
 
1049
- #: includes/options_helptexts.php:38
1050
  msgid "Multiday filter range"
1051
  msgstr "Viacdenný rozsah "
1052
 
1053
- #: includes/options_helptexts.php:39
1054
  msgid "Use the complete event range in the date filter"
1055
  msgstr ""
1056
 
1057
- #: includes/options_helptexts.php:40
1058
  msgid ""
1059
  "This option defines if the complete range of a multiday event shall be "
1060
  "considered in the date filter."
1061
  msgstr ""
1062
 
1063
- #: includes/options_helptexts.php:41
1064
  msgid ""
1065
  "If disabled, only the start day of an event is considered in the filter."
1066
  msgstr "Ak je deaktivovaný, vo filtri sa zohľadní iba začiatočný deň udalosti."
1067
 
1068
- #: includes/options_helptexts.php:42
1069
  msgid ""
1070
  "For an example multiday event which started yesterday and ends tomorrow this"
1071
  " means, that it is displayed in umcoming dates when this option is enabled, "
1072
  "but it is hidden when the option is disabled."
1073
  msgstr ""
1074
 
1075
- #: includes/options_helptexts.php:45
1076
  msgid "Date display"
1077
  msgstr "Zobrazenie dátumu"
1078
 
1079
- #: includes/options_helptexts.php:46
1080
  msgid "Show the date only once per day"
1081
  msgstr "Zobrazte dátum iba raz za deň"
1082
 
1083
- #: includes/options_helptexts.php:47
1084
  msgid ""
1085
  "With this option enabled the date is only displayed once per day if more "
1086
  "than one event is available on the same day."
1087
  msgstr ""
1088
 
1089
- #: includes/options_helptexts.php:48
1090
  msgid ""
1091
  "If enabled, the events are ordered in a different way (end date before start"
1092
  " time) to allow using the same date for as much events as possible."
1093
  msgstr ""
1094
 
1095
- #: includes/options_helptexts.php:51
1096
  msgid "HTML tags"
1097
  msgstr "HTML značky"
1098
 
1099
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1100
  #, php-format
1101
  msgid "Allow HTML tags in the event field \"%1$s\""
1102
  msgstr "Povoliť značky HTML v poli udalosti \"%1$s\""
1103
 
1104
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1105
  #, php-format
1106
  msgid ""
1107
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1108
  msgstr ""
1109
 
1110
- #: includes/options_helptexts.php:61
1111
  msgid "Preferred language file"
1112
  msgstr "Preferovaný jazykový súbor"
1113
 
1114
- #: includes/options_helptexts.php:62
1115
  msgid "Load translations from general language directory first"
1116
  msgstr "Najprv načítajte preklady zo všeobecného adresára jazykov"
1117
 
1118
- #: includes/options_helptexts.php:63
1119
  #, php-format
1120
  msgid ""
1121
  "The default is to load the %1$s translation file from the plugin language "
1122
  "directory first (%2$s)."
1123
  msgstr ""
1124
 
1125
- #: includes/options_helptexts.php:64
1126
  #, php-format
1127
  msgid ""
1128
  "If you want to load your own language file from the general language "
@@ -1130,273 +1130,290 @@ msgid ""
1130
  "language directory, you have to enable this option."
1131
  msgstr ""
1132
 
1133
- #: includes/options_helptexts.php:68
1134
  msgid "Events permalink slug"
1135
  msgstr ""
1136
 
1137
- #: includes/options_helptexts.php:69
1138
  msgid ""
1139
  "With this option the slug for the events permalink URLs can be defined."
1140
  msgstr ""
1141
 
1142
- #: includes/options_helptexts.php:72
1143
  msgid "Text for \"Show content\""
1144
  msgstr "Text pre \"Zobraziť obsah\""
1145
 
1146
- #: includes/options_helptexts.php:73
1147
  msgid ""
1148
  "With this option the displayed text for the link to show the event content "
1149
  "can be changed, when collapsing is enabled."
1150
  msgstr ""
1151
 
1152
- #: includes/options_helptexts.php:76
1153
  msgid "Text for \"Hide content\""
1154
  msgstr "Text pre položku \"Skryť obsah\""
1155
 
1156
- #: includes/options_helptexts.php:77
1157
  msgid ""
1158
  "With this option the displayed text for the link to hide the event content "
1159
  "can be changed, when collapsing is enabled."
1160
  msgstr ""
1161
 
1162
- #: includes/options_helptexts.php:80
1163
  msgid "Disable CSS file"
1164
  msgstr "Zakázať súbor CSS"
1165
 
1166
- #: includes/options_helptexts.php:81
1167
  #, php-format
1168
  msgid "Disable the %1$s file."
1169
  msgstr ""
1170
 
1171
- #: includes/options_helptexts.php:82
1172
  #, php-format
1173
  msgid "With this option you can disable the inclusion of the %1$s file."
1174
  msgstr ""
1175
 
1176
- #: includes/options_helptexts.php:83
1177
  msgid ""
1178
  "This normally only make sense if you have css conflicts with your theme and "
1179
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1180
  msgstr ""
1181
 
1182
- #: includes/options_helptexts.php:87
1183
  msgid "Date format in edit form"
1184
  msgstr "Formát dátumu vo formulári na upravenie"
1185
 
1186
- #: includes/options_helptexts.php:88
1187
  msgid ""
1188
  "This option sets the displayed date format for the event date fields in the "
1189
  "event new / edit form."
1190
  msgstr ""
1191
 
1192
- #: includes/options_helptexts.php:89
1193
  msgid "The default is an empty string to use the Wordpress standard setting."
1194
  msgstr ""
1195
 
1196
- #: includes/options_helptexts.php:90
1197
  #, php-format
1198
  msgid ""
1199
  "All available options to specify the date format can be found %1$shere%2$s."
1200
  msgstr ""
1201
 
1202
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1203
  msgid "Enable RSS feed"
1204
  msgstr "Povoliť RSS kanál"
1205
 
1206
- #: includes/options_helptexts.php:95
1207
- msgid "Enable support for an event RSS feed"
1208
  msgstr ""
1209
 
1210
- #: includes/options_helptexts.php:96
1211
- msgid "This option activates a RSS feed for the events."
 
 
1212
  msgstr ""
1213
 
1214
- #: includes/options_helptexts.php:97
1215
  msgid ""
1216
  "You have to enable this option if you want to use one of the RSS feed "
1217
  "features."
1218
  msgstr ""
1219
 
1220
- #: includes/options_helptexts.php:100
1221
- msgid "Feed name"
1222
- msgstr "Názov kanála"
1223
 
1224
- #: includes/options_helptexts.php:101
1225
- #, php-format
1226
- msgid "This option sets the feed name. The default value is %1$s."
1227
  msgstr ""
1228
 
1229
- #: includes/options_helptexts.php:102
1230
- #, php-format
 
 
 
1231
  msgid ""
1232
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1233
- "enabled)."
 
 
 
1234
  msgstr ""
1235
 
1236
- #: includes/options_helptexts.php:105
1237
- msgid "Feed Description"
1238
- msgstr "Popis kanála"
1239
 
1240
- #: includes/options_helptexts.php:106
1241
- #, php-format
1242
- msgid "This options set the feed description. The default value is %1$s."
1243
- msgstr "Tieto možnosti nastavujú popis kanála. Predvolená hodnota je %1$s."
1244
 
1245
- #: includes/options_helptexts.php:107
 
 
 
 
1246
  msgid ""
1247
- "This description will be used in the title for the feed link in the html "
1248
- "head and for the description in the feed itself."
1249
  msgstr ""
1250
 
1251
- #: includes/options_helptexts.php:110
1252
- msgid "Listed events"
1253
- msgstr "Zoznam udalostí"
1254
 
1255
- #: includes/options_helptexts.php:111
1256
- msgid "Only show upcoming events in feed"
1257
- msgstr "Zobrazovať iba nadchádzajúce udalosti v informačnom kanály"
1258
 
1259
- #: includes/options_helptexts.php:112
 
 
 
 
 
 
 
 
1260
  msgid ""
1261
- "If this option is enabled only the upcoming events are listed in the feed."
1262
  msgstr ""
1263
 
1264
- #: includes/options_helptexts.php:113
1265
- msgid "If disabled all events (upcoming and past) will be listed."
1266
- msgstr "Ak je zakázané, všetky udalosti (nadchádzajúce a minulé), budú zobrazené."
1267
 
1268
- #: includes/options_helptexts.php:116
1269
- msgid "Add RSS feed link in head"
 
1270
  msgstr ""
1271
 
1272
- #: includes/options_helptexts.php:117
1273
- msgid "Add RSS feed link in the html head"
 
 
 
1274
  msgstr ""
1275
 
1276
- #: includes/options_helptexts.php:118
1277
- msgid "This option adds a RSS feed in the html head for the events."
1278
  msgstr ""
1279
 
1280
- #: includes/options_helptexts.php:119
1281
- msgid "There are 2 alternatives to include the RSS feed"
 
1282
  msgstr ""
1283
 
1284
- #: includes/options_helptexts.php:120
1285
  msgid ""
1286
- "The first way is this option to include a link in the html head. This link "
1287
- "will be recognized by browers or feed readers."
1288
  msgstr ""
1289
 
1290
- #: includes/options_helptexts.php:121
1291
- #, php-format
1292
- msgid ""
1293
- "The second way is to include a visible feed link directly in the event list."
1294
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1295
  msgstr ""
1296
 
1297
- #: includes/options_helptexts.php:122
1298
- #, php-format
1299
- msgid "This option is only valid if the setting %1$s is enabled."
1300
- msgstr "Táto možnosť je platná len v prípade ak %1$s je povolené."
1301
 
1302
- #: includes/options_helptexts.php:125
1303
- msgid "Position of the RSS feed link"
 
 
1304
  msgstr ""
1305
 
1306
- #: includes/options_helptexts.php:126
1307
- msgid "at the top (above the navigation bar)"
1308
- msgstr "v hornej časti (nad navigačnou lištou)"
1309
 
1310
- #: includes/options_helptexts.php:126
1311
- msgid "between navigation bar and events"
1312
- msgstr "medzi navigačnou lištou a udalosťami"
1313
 
1314
- #: includes/options_helptexts.php:126
1315
- msgid "at the bottom"
1316
- msgstr "na spodku"
1317
 
1318
- #: includes/options_helptexts.php:127
1319
- msgid ""
1320
- "This option specifies the position of the RSS feed link in the event list."
1321
  msgstr ""
1322
 
1323
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1324
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1325
  #, php-format
1326
  msgid ""
1327
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1328
- " feed link."
1329
  msgstr ""
1330
 
1331
- #: includes/options_helptexts.php:131
1332
- msgid "Align of the RSS feed link"
1333
  msgstr ""
1334
 
1335
- #: includes/options_helptexts.php:132
1336
- msgid "left"
1337
- msgstr "vľavo"
1338
-
1339
- #: includes/options_helptexts.php:132
1340
- msgid "center"
1341
- msgstr "v strede"
1342
-
1343
- #: includes/options_helptexts.php:132
1344
- msgid "right"
1345
- msgstr "vpravo"
1346
 
1347
- #: includes/options_helptexts.php:133
 
1348
  msgid ""
1349
- "This option specifies the align of the RSS feed link in the event list."
 
1350
  msgstr ""
1351
 
1352
- #: includes/options_helptexts.php:137
1353
- msgid "Feed link text"
1354
  msgstr ""
1355
 
1356
- #: includes/options_helptexts.php:138
1357
- msgid ""
1358
- "This option specifies the caption of the RSS feed link in the event list."
1359
  msgstr ""
1360
 
1361
- #: includes/options_helptexts.php:139
1362
  msgid ""
1363
- "Insert an empty text to hide any text if you only want to show the rss "
1364
- "image."
1365
  msgstr ""
1366
 
1367
- #: includes/options_helptexts.php:143
1368
- msgid "Feed link image"
1369
  msgstr ""
1370
 
1371
- #: includes/options_helptexts.php:144
1372
- msgid "Show rss image in feed link"
1373
  msgstr ""
1374
 
1375
- #: includes/options_helptexts.php:145
 
 
 
 
 
1376
  msgid ""
1377
- "This option specifies if the an image should be dispayed in the feed link in"
1378
- " front of the text."
1379
  msgstr ""
1380
 
1381
- #: includes/options_helptexts.php:151
1382
  msgid "Event Category handling"
1383
  msgstr "Spracovanie kategórie udalostí"
1384
 
1385
- #: includes/options_helptexts.php:152
1386
  msgid "Use Post Categories"
1387
  msgstr ""
1388
 
1389
- #: includes/options_helptexts.php:153
1390
  msgid ""
1391
  "Do not maintain seperate categories for the events, and use the existing "
1392
  "post categories instead."
1393
  msgstr ""
1394
 
1395
- #: includes/options_helptexts.php:154
1396
  msgid "Attention"
1397
  msgstr "Upozornenie"
1398
 
1399
- #: includes/options_helptexts.php:155
1400
  msgid ""
1401
  "This option cannot be changed directly, but you can go to the Event Category"
1402
  " switching page from here."
@@ -1522,7 +1539,7 @@ msgstr ""
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,7 +1768,7 @@ msgstr ""
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,38 +1795,40 @@ msgstr ""
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"
1808
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1836,7 @@ msgid ""
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,23 +1845,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1846
  #: includes/widget_helptexts.php:10
1847
  msgid "This option defines the displayed title for the widget."
1848
  msgstr "Táto možnosť definuje zobrazený názov miniaplikácie."
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-11-16 17:29+0100\n"
15
+ "PO-Revision-Date: 2020-11-16 16:36+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"
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:67
35
  msgid "Event List Settings"
36
  msgstr "Nastavenia zoznamu udalostí"
37
 
56
  msgstr[2] ""
57
  msgstr[3] ""
58
 
59
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
60
  msgid "General"
61
  msgstr "Všeobecné"
62
 
566
  msgstr "Posledný deň"
567
 
568
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
569
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
570
  msgid "Time"
571
  msgstr "Čas"
572
 
573
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
574
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
575
+ #: includes/options_helptexts.php:74
576
  msgid "Location"
577
  msgstr "Miesto"
578
 
712
  msgid "Event draft updated."
713
  msgstr "Koncept udalosti bol aktualizovaný."
714
 
715
+ #: admin/includes/admin-settings.php:73
716
  msgid "Go to Event Category switching page"
717
  msgstr "Prejdite na stránku prepínania kategórií udalostí"
718
 
719
+ #: admin/includes/admin-settings.php:85
720
  msgid "Frontend Settings"
721
  msgstr "Nastavenia Frontendu"
722
 
723
+ #: admin/includes/admin-settings.php:86
724
  msgid "Admin Page Settings"
725
  msgstr "Nastavenia Administračnej stránky"
726
 
727
+ #: admin/includes/admin-settings.php:87
728
  msgid "Feed Settings"
729
  msgstr "Nastavenia Feedu"
730
 
731
+ #: admin/includes/admin-settings.php:88
732
  msgid "Category Taxonomy"
733
  msgstr ""
734
 
983
  msgid "All Dates"
984
  msgstr "Všetky dátumy"
985
 
986
+ #: includes/options_helptexts.php:11
987
  msgid "CSV File to import"
988
  msgstr ""
989
 
990
+ #: includes/options_helptexts.php:13
991
  msgid "Please select the file which contains the event data in CSV format."
992
  msgstr ""
993
 
994
+ #: includes/options_helptexts.php:18
995
  msgid "Used date format"
996
  msgstr "Použitý formát dátumu"
997
 
998
+ #: includes/options_helptexts.php:21
999
  msgid ""
1000
  "With this option the given date format for event start and end date in the "
1001
  "CSV file can be specified."
1002
  msgstr ""
1003
 
1004
+ #: includes/options_helptexts.php:22
1005
  #, php-format
1006
  msgid ""
1007
  "You can use the php date format options given in %1$s, the most important "
1008
  "ones are:"
1009
  msgstr ""
1010
 
1011
+ #: includes/options_helptexts.php:24
1012
  msgid "full year representation, with 4 digits"
1013
  msgstr ""
1014
 
1015
+ #: includes/options_helptexts.php:25
1016
  msgid "numeric representation of a month, with leading zeros"
1017
  msgstr ""
1018
 
1019
+ #: includes/options_helptexts.php:26
1020
  msgid "day of the month, 2 digits with leading zeros"
1021
  msgstr ""
1022
 
1023
+ #: includes/options_helptexts.php:28
1024
  msgid ""
1025
  "If the date format in the CSV file does not correspond to the given format, "
1026
  "the import script tries to recognize the date format by itself."
1027
  msgstr ""
1028
 
1029
+ #: includes/options_helptexts.php:29
1030
  msgid ""
1031
  "But this can cause problems or result in wrong dates, so it is recommended "
1032
  "to specify the correct date format here."
1033
  msgstr ""
1034
 
1035
+ #: includes/options_helptexts.php:30
1036
  msgid "Examples"
1037
  msgstr ""
1038
 
1039
+ #: includes/options_helptexts.php:39
1040
  msgid "Text for no events"
1041
  msgstr "Text pre žiadne udalosti"
1042
 
1043
+ #: includes/options_helptexts.php:41
1044
  msgid ""
1045
  "This option defines the displayed text when no events are available for the "
1046
  "selected view."
1047
  msgstr "Táto možnosť definuje zobrazený text, ak pre vybrané zobrazenie nie sú k dispozícii žiadne udalosti."
1048
 
1049
+ #: includes/options_helptexts.php:46
1050
  msgid "Multiday filter range"
1051
  msgstr "Viacdenný rozsah "
1052
 
1053
+ #: includes/options_helptexts.php:47
1054
  msgid "Use the complete event range in the date filter"
1055
  msgstr ""
1056
 
1057
+ #: includes/options_helptexts.php:49
1058
  msgid ""
1059
  "This option defines if the complete range of a multiday event shall be "
1060
  "considered in the date filter."
1061
  msgstr ""
1062
 
1063
+ #: includes/options_helptexts.php:50
1064
  msgid ""
1065
  "If disabled, only the start day of an event is considered in the filter."
1066
  msgstr "Ak je deaktivovaný, vo filtri sa zohľadní iba začiatočný deň udalosti."
1067
 
1068
+ #: includes/options_helptexts.php:51
1069
  msgid ""
1070
  "For an example multiday event which started yesterday and ends tomorrow this"
1071
  " means, that it is displayed in umcoming dates when this option is enabled, "
1072
  "but it is hidden when the option is disabled."
1073
  msgstr ""
1074
 
1075
+ #: includes/options_helptexts.php:56
1076
  msgid "Date display"
1077
  msgstr "Zobrazenie dátumu"
1078
 
1079
+ #: includes/options_helptexts.php:57
1080
  msgid "Show the date only once per day"
1081
  msgstr "Zobrazte dátum iba raz za deň"
1082
 
1083
+ #: includes/options_helptexts.php:59
1084
  msgid ""
1085
  "With this option enabled the date is only displayed once per day if more "
1086
  "than one event is available on the same day."
1087
  msgstr ""
1088
 
1089
+ #: includes/options_helptexts.php:60
1090
  msgid ""
1091
  "If enabled, the events are ordered in a different way (end date before start"
1092
  " time) to allow using the same date for as much events as possible."
1093
  msgstr ""
1094
 
1095
+ #: includes/options_helptexts.php:65
1096
  msgid "HTML tags"
1097
  msgstr "HTML značky"
1098
 
1099
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1100
  #, php-format
1101
  msgid "Allow HTML tags in the event field \"%1$s\""
1102
  msgstr "Povoliť značky HTML v poli udalosti \"%1$s\""
1103
 
1104
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1105
  #, php-format
1106
  msgid ""
1107
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1108
  msgstr ""
1109
 
1110
+ #: includes/options_helptexts.php:79
1111
  msgid "Preferred language file"
1112
  msgstr "Preferovaný jazykový súbor"
1113
 
1114
+ #: includes/options_helptexts.php:80
1115
  msgid "Load translations from general language directory first"
1116
  msgstr "Najprv načítajte preklady zo všeobecného adresára jazykov"
1117
 
1118
+ #: includes/options_helptexts.php:82
1119
  #, php-format
1120
  msgid ""
1121
  "The default is to load the %1$s translation file from the plugin language "
1122
  "directory first (%2$s)."
1123
  msgstr ""
1124
 
1125
+ #: includes/options_helptexts.php:83
1126
  #, php-format
1127
  msgid ""
1128
  "If you want to load your own language file from the general language "
1130
  "language directory, you have to enable this option."
1131
  msgstr ""
1132
 
1133
+ #: includes/options_helptexts.php:89
1134
  msgid "Events permalink slug"
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:90
1138
  msgid ""
1139
  "With this option the slug for the events permalink URLs can be defined."
1140
  msgstr ""
1141
 
1142
+ #: includes/options_helptexts.php:95
1143
  msgid "Text for \"Show content\""
1144
  msgstr "Text pre \"Zobraziť obsah\""
1145
 
1146
+ #: includes/options_helptexts.php:96
1147
  msgid ""
1148
  "With this option the displayed text for the link to show the event content "
1149
  "can be changed, when collapsing is enabled."
1150
  msgstr ""
1151
 
1152
+ #: includes/options_helptexts.php:101
1153
  msgid "Text for \"Hide content\""
1154
  msgstr "Text pre položku \"Skryť obsah\""
1155
 
1156
+ #: includes/options_helptexts.php:102
1157
  msgid ""
1158
  "With this option the displayed text for the link to hide the event content "
1159
  "can be changed, when collapsing is enabled."
1160
  msgstr ""
1161
 
1162
+ #: includes/options_helptexts.php:107
1163
  msgid "Disable CSS file"
1164
  msgstr "Zakázať súbor CSS"
1165
 
1166
+ #: includes/options_helptexts.php:108
1167
  #, php-format
1168
  msgid "Disable the %1$s file."
1169
  msgstr ""
1170
 
1171
+ #: includes/options_helptexts.php:110
1172
  #, php-format
1173
  msgid "With this option you can disable the inclusion of the %1$s file."
1174
  msgstr ""
1175
 
1176
+ #: includes/options_helptexts.php:111
1177
  msgid ""
1178
  "This normally only make sense if you have css conflicts with your theme and "
1179
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1180
  msgstr ""
1181
 
1182
+ #: includes/options_helptexts.php:117
1183
  msgid "Date format in edit form"
1184
  msgstr "Formát dátumu vo formulári na upravenie"
1185
 
1186
+ #: includes/options_helptexts.php:119
1187
  msgid ""
1188
  "This option sets the displayed date format for the event date fields in the "
1189
  "event new / edit form."
1190
  msgstr ""
1191
 
1192
+ #: includes/options_helptexts.php:120
1193
  msgid "The default is an empty string to use the Wordpress standard setting."
1194
  msgstr ""
1195
 
1196
+ #: includes/options_helptexts.php:121
1197
  #, php-format
1198
  msgid ""
1199
  "All available options to specify the date format can be found %1$shere%2$s."
1200
  msgstr ""
1201
 
1202
+ #: includes/options_helptexts.php:127
1203
  msgid "Enable RSS feed"
1204
  msgstr "Povoliť RSS kanál"
1205
 
1206
+ #: includes/options_helptexts.php:128
1207
+ msgid "Enable support for the event RSS feed"
1208
  msgstr ""
1209
 
1210
+ #: includes/options_helptexts.php:130
1211
+ msgid ""
1212
+ "This option activates the RSS feed for the events and adds a feed link in "
1213
+ "the html head."
1214
  msgstr ""
1215
 
1216
+ #: includes/options_helptexts.php:131
1217
  msgid ""
1218
  "You have to enable this option if you want to use one of the RSS feed "
1219
  "features."
1220
  msgstr ""
1221
 
1222
+ #: includes/options_helptexts.php:136
1223
+ msgid "Enable iCal feed"
1224
+ msgstr ""
1225
 
1226
+ #: includes/options_helptexts.php:137
1227
+ msgid "Enable support for the event iCal feed"
 
1228
  msgstr ""
1229
 
1230
+ #: includes/options_helptexts.php:139
1231
+ msgid "This option activates the iCal feed for events."
1232
+ msgstr ""
1233
+
1234
+ #: includes/options_helptexts.php:140
1235
  msgid ""
1236
+ "You have to enable this option if you want to use one of the iCal features."
1237
+ msgstr ""
1238
+
1239
+ #: includes/options_helptexts.php:145
1240
+ msgid "Position of the RSS feed link"
1241
  msgstr ""
1242
 
1243
+ #: includes/options_helptexts.php:146
1244
+ msgid "at the top (above the navigation bar)"
1245
+ msgstr "v hornej časti (nad navigačnou lištou)"
1246
 
1247
+ #: includes/options_helptexts.php:146
1248
+ msgid "between navigation bar and events"
1249
+ msgstr "medzi navigačnou lištou a udalosťami"
 
1250
 
1251
+ #: includes/options_helptexts.php:146
1252
+ msgid "at the bottom"
1253
+ msgstr "na spodku"
1254
+
1255
+ #: includes/options_helptexts.php:147
1256
  msgid ""
1257
+ "This option specifies the position of the RSS feed link in the event list."
 
1258
  msgstr ""
1259
 
1260
+ #: includes/options_helptexts.php:152
1261
+ msgid "Align of the RSS feed link"
1262
+ msgstr ""
1263
 
1264
+ #: includes/options_helptexts.php:153
1265
+ msgid "left"
1266
+ msgstr "vľavo"
1267
 
1268
+ #: includes/options_helptexts.php:153
1269
+ msgid "center"
1270
+ msgstr "v strede"
1271
+
1272
+ #: includes/options_helptexts.php:153
1273
+ msgid "right"
1274
+ msgstr "vpravo"
1275
+
1276
+ #: includes/options_helptexts.php:154
1277
  msgid ""
1278
+ "This option specifies the align of the RSS feed link in the event list."
1279
  msgstr ""
1280
 
1281
+ #: includes/options_helptexts.php:159
1282
+ msgid "RSS feed name"
1283
+ msgstr ""
1284
 
1285
+ #: includes/options_helptexts.php:161
1286
+ #, php-format
1287
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1288
  msgstr ""
1289
 
1290
+ #: includes/options_helptexts.php:162
1291
+ #, php-format
1292
+ msgid ""
1293
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1294
+ "enabled)."
1295
  msgstr ""
1296
 
1297
+ #: includes/options_helptexts.php:167
1298
+ msgid "RSS feed Description"
1299
  msgstr ""
1300
 
1301
+ #: includes/options_helptexts.php:169
1302
+ #, php-format
1303
+ msgid "This options set the RSS feed description. The default value is %1$s."
1304
  msgstr ""
1305
 
1306
+ #: includes/options_helptexts.php:170
1307
  msgid ""
1308
+ "This description will be used in the title for the feed link in the html "
1309
+ "head and for the description in the feed itself."
1310
  msgstr ""
1311
 
1312
+ #: includes/options_helptexts.php:175
1313
+ msgid "RSS feed events"
 
 
 
1314
  msgstr ""
1315
 
1316
+ #: includes/options_helptexts.php:176
1317
+ msgid "Only show upcoming events in the RSS feed"
1318
+ msgstr ""
 
1319
 
1320
+ #: includes/options_helptexts.php:178
1321
+ msgid ""
1322
+ "If this option is enabled only the upcoming events are listed in the RSS "
1323
+ "feed."
1324
  msgstr ""
1325
 
1326
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1327
+ msgid "If disabled, all events (upcoming and past) will be listed."
1328
+ msgstr ""
1329
 
1330
+ #: includes/options_helptexts.php:184
1331
+ msgid "RSS link text"
1332
+ msgstr ""
1333
 
1334
+ #: includes/options_helptexts.php:186
1335
+ msgid "This option sets the caption of the RSS feed link in the event list."
1336
+ msgstr ""
1337
 
1338
+ #: includes/options_helptexts.php:187
1339
+ msgid "Use an empty text to only show the rss image."
 
1340
  msgstr ""
1341
 
1342
+ #: includes/options_helptexts.php:188
 
1343
  #, php-format
1344
  msgid ""
1345
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1346
+ " RSS feed link."
1347
  msgstr ""
1348
 
1349
+ #: includes/options_helptexts.php:193
1350
+ msgid "iCal feed name"
1351
  msgstr ""
1352
 
1353
+ #: includes/options_helptexts.php:195
1354
+ #, php-format
1355
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1356
+ msgstr ""
 
 
 
 
 
 
 
1357
 
1358
+ #: includes/options_helptexts.php:196
1359
+ #, php-format
1360
  msgid ""
1361
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1362
+ "permalinks enabled)."
1363
  msgstr ""
1364
 
1365
+ #: includes/options_helptexts.php:201
1366
+ msgid "iCal feed events"
1367
  msgstr ""
1368
 
1369
+ #: includes/options_helptexts.php:202
1370
+ msgid "Only show upcoming events in the iCal feed"
 
1371
  msgstr ""
1372
 
1373
+ #: includes/options_helptexts.php:204
1374
  msgid ""
1375
+ "If this option is enabled only the upcoming events are listed in the iCal "
1376
+ "file."
1377
  msgstr ""
1378
 
1379
+ #: includes/options_helptexts.php:210
1380
+ msgid "iCal link text"
1381
  msgstr ""
1382
 
1383
+ #: includes/options_helptexts.php:212
1384
+ msgid "This option sets the iCal link text in the event list."
1385
  msgstr ""
1386
 
1387
+ #: includes/options_helptexts.php:213
1388
+ msgid "Use an empty text to only show the iCal image."
1389
+ msgstr ""
1390
+
1391
+ #: includes/options_helptexts.php:214
1392
+ #, php-format
1393
  msgid ""
1394
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1395
+ " iCal feed link."
1396
  msgstr ""
1397
 
1398
+ #: includes/options_helptexts.php:221
1399
  msgid "Event Category handling"
1400
  msgstr "Spracovanie kategórie udalostí"
1401
 
1402
+ #: includes/options_helptexts.php:222
1403
  msgid "Use Post Categories"
1404
  msgstr ""
1405
 
1406
+ #: includes/options_helptexts.php:224
1407
  msgid ""
1408
  "Do not maintain seperate categories for the events, and use the existing "
1409
  "post categories instead."
1410
  msgstr ""
1411
 
1412
+ #: includes/options_helptexts.php:225
1413
  msgid "Attention"
1414
  msgstr "Upozornenie"
1415
 
1416
+ #: includes/options_helptexts.php:226
1417
  msgid ""
1418
  "This option cannot be changed directly, but you can go to the Event Category"
1419
  " switching page from here."
1539
  #: includes/sc_event-list_helptexts.php:33
1540
  #: includes/sc_event-list_helptexts.php:74
1541
  #: includes/sc_event-list_helptexts.php:89
1542
+ #: includes/sc_event-list_helptexts.php:111
1543
  msgid "number"
1544
  msgstr "číslo"
1545
 
1768
 
1769
  #: includes/sc_event-list_helptexts.php:77
1770
  #: includes/sc_event-list_helptexts.php:92
1771
+ #: includes/sc_event-list_helptexts.php:114
1772
  msgid "This attribute has no influence if only a single event is shown."
1773
  msgstr "Tento atribút nemá žiadny vplyv, ak je zobrazená iba jedna udalosť."
1774
 
1795
 
1796
  #: includes/sc_event-list_helptexts.php:100
1797
  msgid ""
1798
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1799
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1800
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1801
  msgstr ""
1802
 
1803
  #: includes/sc_event-list_helptexts.php:105
1804
  msgid ""
1805
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1806
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1807
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1808
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1809
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1810
  msgstr ""
1811
 
1812
+ #: includes/sc_event-list_helptexts.php:112
1813
  msgid ""
1814
  "This attribute specifies if the content should be truncate to the given "
1815
  "number of characters in the event list."
1816
  msgstr "Tento atribút určuje, či by sa obsah mal skrátiť na daný počet znakov v zozname udalostí."
1817
 
1818
+ #: includes/sc_event-list_helptexts.php:113
1819
  #, php-format
1820
  msgid "With the standard value %1$s the full text is displayed."
1821
  msgstr "Pri štandardnej hodnote %1$s sa zobrazí celý text."
1822
 
1823
+ #: includes/sc_event-list_helptexts.php:117
1824
  msgid ""
1825
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1826
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1827
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1828
  "\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."
1829
  msgstr ""
1830
 
1831
+ #: includes/sc_event-list_helptexts.php:123
1832
  msgid ""
1833
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1834
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1836
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1837
  msgstr ""
1838
 
1839
+ #: includes/sc_event-list_helptexts.php:129
1840
  msgid ""
1841
  "This attribute specifies if a rss feed link should be added.<br />\n"
1842
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1845
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1846
  msgstr ""
1847
 
1848
+ #: includes/sc_event-list_helptexts.php:136
1849
+ msgid ""
1850
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1851
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1852
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1853
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1854
+ msgstr ""
1855
+
1856
+ #: includes/sc_event-list_helptexts.php:142
1857
  msgid ""
1858
  "This attribute specifies the page or post url for event links.<br />\n"
1859
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1860
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1861
  msgstr ""
1862
 
1863
+ #: includes/sc_event-list_helptexts.php:149
1864
  msgid ""
1865
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1866
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1867
  msgstr ""
1868
 
1869
+ #: includes/sc_event-list.php:145
1870
  msgid "Event Information:"
1871
  msgstr "Informácie o udalosti"
1872
 
1873
+ #: includes/sc_event-list.php:391
1874
+ msgid "Link to RSS feed"
1875
+ msgstr ""
1876
+
1877
+ #: includes/sc_event-list.php:399
1878
+ msgid "Link to iCal feed"
1879
+ msgstr ""
1880
+
1881
  #: includes/widget_helptexts.php:10
1882
  msgid "This option defines the displayed title for the widget."
1883
  msgstr "Táto možnosť definuje zobrazený názov miniaplikácie."
languages/event-list-sl_SI.mo CHANGED
Binary file
languages/event-list-sl_SI.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -53,7 +53,7 @@ msgstr[1] ""
53
  msgstr[2] ""
54
  msgstr[3] ""
55
 
56
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
57
  msgid "General"
58
  msgstr ""
59
 
@@ -563,13 +563,13 @@ msgid "End Date"
563
  msgstr ""
564
 
565
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
566
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
567
  msgid "Time"
568
  msgstr ""
569
 
570
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
571
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
572
- #: includes/options_helptexts.php:58
573
  msgid "Location"
574
  msgstr ""
575
 
@@ -709,23 +709,23 @@ msgstr ""
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:71
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:83
717
  msgid "Frontend Settings"
718
  msgstr ""
719
 
720
- #: admin/includes/admin-settings.php:84
721
  msgid "Admin Page Settings"
722
  msgstr ""
723
 
724
- #: admin/includes/admin-settings.php:85
725
  msgid "Feed Settings"
726
  msgstr ""
727
 
728
- #: admin/includes/admin-settings.php:86
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
@@ -980,146 +980,146 @@ msgstr ""
980
  msgid "All Dates"
981
  msgstr ""
982
 
983
- #: includes/options_helptexts.php:10
984
  msgid "CSV File to import"
985
  msgstr ""
986
 
987
- #: includes/options_helptexts.php:12
988
  msgid "Please select the file which contains the event data in CSV format."
989
  msgstr ""
990
 
991
- #: includes/options_helptexts.php:15
992
  msgid "Used date format"
993
  msgstr ""
994
 
995
- #: includes/options_helptexts.php:17
996
  msgid ""
997
  "With this option the given date format for event start and end date in the "
998
  "CSV file can be specified."
999
  msgstr ""
1000
 
1001
- #: includes/options_helptexts.php:18
1002
  #, php-format
1003
  msgid ""
1004
  "You can use the php date format options given in %1$s, the most important "
1005
  "ones are:"
1006
  msgstr ""
1007
 
1008
- #: includes/options_helptexts.php:20
1009
  msgid "full year representation, with 4 digits"
1010
  msgstr ""
1011
 
1012
- #: includes/options_helptexts.php:21
1013
  msgid "numeric representation of a month, with leading zeros"
1014
  msgstr ""
1015
 
1016
- #: includes/options_helptexts.php:22
1017
  msgid "day of the month, 2 digits with leading zeros"
1018
  msgstr ""
1019
 
1020
- #: includes/options_helptexts.php:24
1021
  msgid ""
1022
  "If the date format in the CSV file does not correspond to the given format, "
1023
  "the import script tries to recognize the date format by itself."
1024
  msgstr ""
1025
 
1026
- #: includes/options_helptexts.php:25
1027
  msgid ""
1028
  "But this can cause problems or result in wrong dates, so it is recommended "
1029
  "to specify the correct date format here."
1030
  msgstr ""
1031
 
1032
- #: includes/options_helptexts.php:26
1033
  msgid "Examples"
1034
  msgstr ""
1035
 
1036
- #: includes/options_helptexts.php:33
1037
  msgid "Text for no events"
1038
  msgstr ""
1039
 
1040
- #: includes/options_helptexts.php:35
1041
  msgid ""
1042
  "This option defines the displayed text when no events are available for the "
1043
  "selected view."
1044
  msgstr ""
1045
 
1046
- #: includes/options_helptexts.php:38
1047
  msgid "Multiday filter range"
1048
  msgstr ""
1049
 
1050
- #: includes/options_helptexts.php:39
1051
  msgid "Use the complete event range in the date filter"
1052
  msgstr ""
1053
 
1054
- #: includes/options_helptexts.php:40
1055
  msgid ""
1056
  "This option defines if the complete range of a multiday event shall be "
1057
  "considered in the date filter."
1058
  msgstr ""
1059
 
1060
- #: includes/options_helptexts.php:41
1061
  msgid ""
1062
  "If disabled, only the start day of an event is considered in the filter."
1063
  msgstr ""
1064
 
1065
- #: includes/options_helptexts.php:42
1066
  msgid ""
1067
  "For an example multiday event which started yesterday and ends tomorrow this"
1068
  " means, that it is displayed in umcoming dates when this option is enabled, "
1069
  "but it is hidden when the option is disabled."
1070
  msgstr ""
1071
 
1072
- #: includes/options_helptexts.php:45
1073
  msgid "Date display"
1074
  msgstr ""
1075
 
1076
- #: includes/options_helptexts.php:46
1077
  msgid "Show the date only once per day"
1078
  msgstr ""
1079
 
1080
- #: includes/options_helptexts.php:47
1081
  msgid ""
1082
  "With this option enabled the date is only displayed once per day if more "
1083
  "than one event is available on the same day."
1084
  msgstr ""
1085
 
1086
- #: includes/options_helptexts.php:48
1087
  msgid ""
1088
  "If enabled, the events are ordered in a different way (end date before start"
1089
  " time) to allow using the same date for as much events as possible."
1090
  msgstr ""
1091
 
1092
- #: includes/options_helptexts.php:51
1093
  msgid "HTML tags"
1094
  msgstr ""
1095
 
1096
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1097
  #, php-format
1098
  msgid "Allow HTML tags in the event field \"%1$s\""
1099
  msgstr ""
1100
 
1101
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1102
  #, php-format
1103
  msgid ""
1104
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1105
  msgstr ""
1106
 
1107
- #: includes/options_helptexts.php:61
1108
  msgid "Preferred language file"
1109
  msgstr ""
1110
 
1111
- #: includes/options_helptexts.php:62
1112
  msgid "Load translations from general language directory first"
1113
  msgstr ""
1114
 
1115
- #: includes/options_helptexts.php:63
1116
  #, php-format
1117
  msgid ""
1118
  "The default is to load the %1$s translation file from the plugin language "
1119
  "directory first (%2$s)."
1120
  msgstr ""
1121
 
1122
- #: includes/options_helptexts.php:64
1123
  #, php-format
1124
  msgid ""
1125
  "If you want to load your own language file from the general language "
@@ -1127,273 +1127,290 @@ msgid ""
1127
  "language directory, you have to enable this option."
1128
  msgstr ""
1129
 
1130
- #: includes/options_helptexts.php:68
1131
  msgid "Events permalink slug"
1132
  msgstr ""
1133
 
1134
- #: includes/options_helptexts.php:69
1135
  msgid ""
1136
  "With this option the slug for the events permalink URLs can be defined."
1137
  msgstr ""
1138
 
1139
- #: includes/options_helptexts.php:72
1140
  msgid "Text for \"Show content\""
1141
  msgstr ""
1142
 
1143
- #: includes/options_helptexts.php:73
1144
  msgid ""
1145
  "With this option the displayed text for the link to show the event content "
1146
  "can be changed, when collapsing is enabled."
1147
  msgstr ""
1148
 
1149
- #: includes/options_helptexts.php:76
1150
  msgid "Text for \"Hide content\""
1151
  msgstr ""
1152
 
1153
- #: includes/options_helptexts.php:77
1154
  msgid ""
1155
  "With this option the displayed text for the link to hide the event content "
1156
  "can be changed, when collapsing is enabled."
1157
  msgstr ""
1158
 
1159
- #: includes/options_helptexts.php:80
1160
  msgid "Disable CSS file"
1161
  msgstr ""
1162
 
1163
- #: includes/options_helptexts.php:81
1164
  #, php-format
1165
  msgid "Disable the %1$s file."
1166
  msgstr ""
1167
 
1168
- #: includes/options_helptexts.php:82
1169
  #, php-format
1170
  msgid "With this option you can disable the inclusion of the %1$s file."
1171
  msgstr ""
1172
 
1173
- #: includes/options_helptexts.php:83
1174
  msgid ""
1175
  "This normally only make sense if you have css conflicts with your theme and "
1176
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1177
  msgstr ""
1178
 
1179
- #: includes/options_helptexts.php:87
1180
  msgid "Date format in edit form"
1181
  msgstr ""
1182
 
1183
- #: includes/options_helptexts.php:88
1184
  msgid ""
1185
  "This option sets the displayed date format for the event date fields in the "
1186
  "event new / edit form."
1187
  msgstr ""
1188
 
1189
- #: includes/options_helptexts.php:89
1190
  msgid "The default is an empty string to use the Wordpress standard setting."
1191
  msgstr ""
1192
 
1193
- #: includes/options_helptexts.php:90
1194
  #, php-format
1195
  msgid ""
1196
  "All available options to specify the date format can be found %1$shere%2$s."
1197
  msgstr ""
1198
 
1199
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1200
  msgid "Enable RSS feed"
1201
  msgstr ""
1202
 
1203
- #: includes/options_helptexts.php:95
1204
- msgid "Enable support for an event RSS feed"
1205
  msgstr ""
1206
 
1207
- #: includes/options_helptexts.php:96
1208
- msgid "This option activates a RSS feed for the events."
 
 
1209
  msgstr ""
1210
 
1211
- #: includes/options_helptexts.php:97
1212
  msgid ""
1213
  "You have to enable this option if you want to use one of the RSS feed "
1214
  "features."
1215
  msgstr ""
1216
 
1217
- #: includes/options_helptexts.php:100
1218
- msgid "Feed name"
1219
  msgstr ""
1220
 
1221
- #: includes/options_helptexts.php:101
1222
- #, php-format
1223
- msgid "This option sets the feed name. The default value is %1$s."
1224
  msgstr ""
1225
 
1226
- #: includes/options_helptexts.php:102
1227
- #, php-format
1228
- msgid ""
1229
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1230
- "enabled)."
1231
  msgstr ""
1232
 
1233
- #: includes/options_helptexts.php:105
1234
- msgid "Feed Description"
 
1235
  msgstr ""
1236
 
1237
- #: includes/options_helptexts.php:106
1238
- #, php-format
1239
- msgid "This options set the feed description. The default value is %1$s."
1240
  msgstr ""
1241
 
1242
- #: includes/options_helptexts.php:107
1243
- msgid ""
1244
- "This description will be used in the title for the feed link in the html "
1245
- "head and for the description in the feed itself."
1246
  msgstr ""
1247
 
1248
- #: includes/options_helptexts.php:110
1249
- msgid "Listed events"
1250
  msgstr ""
1251
 
1252
- #: includes/options_helptexts.php:111
1253
- msgid "Only show upcoming events in feed"
1254
  msgstr ""
1255
 
1256
- #: includes/options_helptexts.php:112
1257
  msgid ""
1258
- "If this option is enabled only the upcoming events are listed in the feed."
1259
  msgstr ""
1260
 
1261
- #: includes/options_helptexts.php:113
1262
- msgid "If disabled all events (upcoming and past) will be listed."
1263
  msgstr ""
1264
 
1265
- #: includes/options_helptexts.php:116
1266
- msgid "Add RSS feed link in head"
1267
  msgstr ""
1268
 
1269
- #: includes/options_helptexts.php:117
1270
- msgid "Add RSS feed link in the html head"
1271
  msgstr ""
1272
 
1273
- #: includes/options_helptexts.php:118
1274
- msgid "This option adds a RSS feed in the html head for the events."
1275
  msgstr ""
1276
 
1277
- #: includes/options_helptexts.php:119
1278
- msgid "There are 2 alternatives to include the RSS feed"
 
1279
  msgstr ""
1280
 
1281
- #: includes/options_helptexts.php:120
1282
- msgid ""
1283
- "The first way is this option to include a link in the html head. This link "
1284
- "will be recognized by browers or feed readers."
1285
  msgstr ""
1286
 
1287
- #: includes/options_helptexts.php:121
1288
  #, php-format
1289
- msgid ""
1290
- "The second way is to include a visible feed link directly in the event list."
1291
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1292
  msgstr ""
1293
 
1294
- #: includes/options_helptexts.php:122
1295
  #, php-format
1296
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1297
  msgstr ""
1298
 
1299
- #: includes/options_helptexts.php:125
1300
- msgid "Position of the RSS feed link"
1301
  msgstr ""
1302
 
1303
- #: includes/options_helptexts.php:126
1304
- msgid "at the top (above the navigation bar)"
 
1305
  msgstr ""
1306
 
1307
- #: includes/options_helptexts.php:126
1308
- msgid "between navigation bar and events"
 
 
1309
  msgstr ""
1310
 
1311
- #: includes/options_helptexts.php:126
1312
- msgid "at the bottom"
1313
  msgstr ""
1314
 
1315
- #: includes/options_helptexts.php:127
1316
- msgid ""
1317
- "This option specifies the position of the RSS feed link in the event list."
1318
  msgstr ""
1319
 
1320
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1321
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1322
- #, php-format
1323
  msgid ""
1324
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1325
- " feed link."
1326
  msgstr ""
1327
 
1328
- #: includes/options_helptexts.php:131
1329
- msgid "Align of the RSS feed link"
1330
  msgstr ""
1331
 
1332
- #: includes/options_helptexts.php:132
1333
- msgid "left"
1334
  msgstr ""
1335
 
1336
- #: includes/options_helptexts.php:132
1337
- msgid "center"
1338
  msgstr ""
1339
 
1340
- #: includes/options_helptexts.php:132
1341
- msgid "right"
1342
  msgstr ""
1343
 
1344
- #: includes/options_helptexts.php:133
 
1345
  msgid ""
1346
- "This option specifies the align of the RSS feed link in the event list."
 
1347
  msgstr ""
1348
 
1349
- #: includes/options_helptexts.php:137
1350
- msgid "Feed link text"
1351
  msgstr ""
1352
 
1353
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1354
  msgid ""
1355
- "This option specifies the caption of the RSS feed link in the event list."
 
1356
  msgstr ""
1357
 
1358
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1359
  msgid ""
1360
- "Insert an empty text to hide any text if you only want to show the rss "
1361
- "image."
1362
  msgstr ""
1363
 
1364
- #: includes/options_helptexts.php:143
1365
- msgid "Feed link image"
1366
  msgstr ""
1367
 
1368
- #: includes/options_helptexts.php:144
1369
- msgid "Show rss image in feed link"
1370
  msgstr ""
1371
 
1372
- #: includes/options_helptexts.php:145
 
 
 
 
 
1373
  msgid ""
1374
- "This option specifies if the an image should be dispayed in the feed link in"
1375
- " front of the text."
1376
  msgstr ""
1377
 
1378
- #: includes/options_helptexts.php:151
1379
  msgid "Event Category handling"
1380
  msgstr ""
1381
 
1382
- #: includes/options_helptexts.php:152
1383
  msgid "Use Post Categories"
1384
  msgstr ""
1385
 
1386
- #: includes/options_helptexts.php:153
1387
  msgid ""
1388
  "Do not maintain seperate categories for the events, and use the existing "
1389
  "post categories instead."
1390
  msgstr ""
1391
 
1392
- #: includes/options_helptexts.php:154
1393
  msgid "Attention"
1394
  msgstr ""
1395
 
1396
- #: includes/options_helptexts.php:155
1397
  msgid ""
1398
  "This option cannot be changed directly, but you can go to the Event Category"
1399
  " switching page from here."
@@ -1519,7 +1536,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:109
1523
  msgid "number"
1524
  msgstr ""
1525
 
@@ -1748,7 +1765,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:112
1752
  msgid "This attribute has no influence if only a single event is shown."
1753
  msgstr ""
1754
 
@@ -1775,38 +1792,40 @@ msgstr ""
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"
1805
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1833,7 @@ msgid ""
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,23 +1842,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1843
  #: includes/widget_helptexts.php:10
1844
  msgid "This option defines the displayed title for the widget."
1845
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "Nastavitve seznama dogodkov"
34
 
53
  msgstr[2] ""
54
  msgstr[3] ""
55
 
56
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
57
  msgid "General"
58
  msgstr ""
59
 
563
  msgstr ""
564
 
565
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
566
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
567
  msgid "Time"
568
  msgstr ""
569
 
570
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
571
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
572
+ #: includes/options_helptexts.php:74
573
  msgid "Location"
574
  msgstr ""
575
 
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:73
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:85
717
  msgid "Frontend Settings"
718
  msgstr ""
719
 
720
+ #: admin/includes/admin-settings.php:86
721
  msgid "Admin Page Settings"
722
  msgstr ""
723
 
724
+ #: admin/includes/admin-settings.php:87
725
  msgid "Feed Settings"
726
  msgstr ""
727
 
728
+ #: admin/includes/admin-settings.php:88
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
980
  msgid "All Dates"
981
  msgstr ""
982
 
983
+ #: includes/options_helptexts.php:11
984
  msgid "CSV File to import"
985
  msgstr ""
986
 
987
+ #: includes/options_helptexts.php:13
988
  msgid "Please select the file which contains the event data in CSV format."
989
  msgstr ""
990
 
991
+ #: includes/options_helptexts.php:18
992
  msgid "Used date format"
993
  msgstr ""
994
 
995
+ #: includes/options_helptexts.php:21
996
  msgid ""
997
  "With this option the given date format for event start and end date in the "
998
  "CSV file can be specified."
999
  msgstr ""
1000
 
1001
+ #: includes/options_helptexts.php:22
1002
  #, php-format
1003
  msgid ""
1004
  "You can use the php date format options given in %1$s, the most important "
1005
  "ones are:"
1006
  msgstr ""
1007
 
1008
+ #: includes/options_helptexts.php:24
1009
  msgid "full year representation, with 4 digits"
1010
  msgstr ""
1011
 
1012
+ #: includes/options_helptexts.php:25
1013
  msgid "numeric representation of a month, with leading zeros"
1014
  msgstr ""
1015
 
1016
+ #: includes/options_helptexts.php:26
1017
  msgid "day of the month, 2 digits with leading zeros"
1018
  msgstr ""
1019
 
1020
+ #: includes/options_helptexts.php:28
1021
  msgid ""
1022
  "If the date format in the CSV file does not correspond to the given format, "
1023
  "the import script tries to recognize the date format by itself."
1024
  msgstr ""
1025
 
1026
+ #: includes/options_helptexts.php:29
1027
  msgid ""
1028
  "But this can cause problems or result in wrong dates, so it is recommended "
1029
  "to specify the correct date format here."
1030
  msgstr ""
1031
 
1032
+ #: includes/options_helptexts.php:30
1033
  msgid "Examples"
1034
  msgstr ""
1035
 
1036
+ #: includes/options_helptexts.php:39
1037
  msgid "Text for no events"
1038
  msgstr ""
1039
 
1040
+ #: includes/options_helptexts.php:41
1041
  msgid ""
1042
  "This option defines the displayed text when no events are available for the "
1043
  "selected view."
1044
  msgstr ""
1045
 
1046
+ #: includes/options_helptexts.php:46
1047
  msgid "Multiday filter range"
1048
  msgstr ""
1049
 
1050
+ #: includes/options_helptexts.php:47
1051
  msgid "Use the complete event range in the date filter"
1052
  msgstr ""
1053
 
1054
+ #: includes/options_helptexts.php:49
1055
  msgid ""
1056
  "This option defines if the complete range of a multiday event shall be "
1057
  "considered in the date filter."
1058
  msgstr ""
1059
 
1060
+ #: includes/options_helptexts.php:50
1061
  msgid ""
1062
  "If disabled, only the start day of an event is considered in the filter."
1063
  msgstr ""
1064
 
1065
+ #: includes/options_helptexts.php:51
1066
  msgid ""
1067
  "For an example multiday event which started yesterday and ends tomorrow this"
1068
  " means, that it is displayed in umcoming dates when this option is enabled, "
1069
  "but it is hidden when the option is disabled."
1070
  msgstr ""
1071
 
1072
+ #: includes/options_helptexts.php:56
1073
  msgid "Date display"
1074
  msgstr ""
1075
 
1076
+ #: includes/options_helptexts.php:57
1077
  msgid "Show the date only once per day"
1078
  msgstr ""
1079
 
1080
+ #: includes/options_helptexts.php:59
1081
  msgid ""
1082
  "With this option enabled the date is only displayed once per day if more "
1083
  "than one event is available on the same day."
1084
  msgstr ""
1085
 
1086
+ #: includes/options_helptexts.php:60
1087
  msgid ""
1088
  "If enabled, the events are ordered in a different way (end date before start"
1089
  " time) to allow using the same date for as much events as possible."
1090
  msgstr ""
1091
 
1092
+ #: includes/options_helptexts.php:65
1093
  msgid "HTML tags"
1094
  msgstr ""
1095
 
1096
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1097
  #, php-format
1098
  msgid "Allow HTML tags in the event field \"%1$s\""
1099
  msgstr ""
1100
 
1101
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1102
  #, php-format
1103
  msgid ""
1104
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1105
  msgstr ""
1106
 
1107
+ #: includes/options_helptexts.php:79
1108
  msgid "Preferred language file"
1109
  msgstr ""
1110
 
1111
+ #: includes/options_helptexts.php:80
1112
  msgid "Load translations from general language directory first"
1113
  msgstr ""
1114
 
1115
+ #: includes/options_helptexts.php:82
1116
  #, php-format
1117
  msgid ""
1118
  "The default is to load the %1$s translation file from the plugin language "
1119
  "directory first (%2$s)."
1120
  msgstr ""
1121
 
1122
+ #: includes/options_helptexts.php:83
1123
  #, php-format
1124
  msgid ""
1125
  "If you want to load your own language file from the general language "
1127
  "language directory, you have to enable this option."
1128
  msgstr ""
1129
 
1130
+ #: includes/options_helptexts.php:89
1131
  msgid "Events permalink slug"
1132
  msgstr ""
1133
 
1134
+ #: includes/options_helptexts.php:90
1135
  msgid ""
1136
  "With this option the slug for the events permalink URLs can be defined."
1137
  msgstr ""
1138
 
1139
+ #: includes/options_helptexts.php:95
1140
  msgid "Text for \"Show content\""
1141
  msgstr ""
1142
 
1143
+ #: includes/options_helptexts.php:96
1144
  msgid ""
1145
  "With this option the displayed text for the link to show the event content "
1146
  "can be changed, when collapsing is enabled."
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:101
1150
  msgid "Text for \"Hide content\""
1151
  msgstr ""
1152
 
1153
+ #: includes/options_helptexts.php:102
1154
  msgid ""
1155
  "With this option the displayed text for the link to hide the event content "
1156
  "can be changed, when collapsing is enabled."
1157
  msgstr ""
1158
 
1159
+ #: includes/options_helptexts.php:107
1160
  msgid "Disable CSS file"
1161
  msgstr ""
1162
 
1163
+ #: includes/options_helptexts.php:108
1164
  #, php-format
1165
  msgid "Disable the %1$s file."
1166
  msgstr ""
1167
 
1168
+ #: includes/options_helptexts.php:110
1169
  #, php-format
1170
  msgid "With this option you can disable the inclusion of the %1$s file."
1171
  msgstr ""
1172
 
1173
+ #: includes/options_helptexts.php:111
1174
  msgid ""
1175
  "This normally only make sense if you have css conflicts with your theme and "
1176
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1177
  msgstr ""
1178
 
1179
+ #: includes/options_helptexts.php:117
1180
  msgid "Date format in edit form"
1181
  msgstr ""
1182
 
1183
+ #: includes/options_helptexts.php:119
1184
  msgid ""
1185
  "This option sets the displayed date format for the event date fields in the "
1186
  "event new / edit form."
1187
  msgstr ""
1188
 
1189
+ #: includes/options_helptexts.php:120
1190
  msgid "The default is an empty string to use the Wordpress standard setting."
1191
  msgstr ""
1192
 
1193
+ #: includes/options_helptexts.php:121
1194
  #, php-format
1195
  msgid ""
1196
  "All available options to specify the date format can be found %1$shere%2$s."
1197
  msgstr ""
1198
 
1199
+ #: includes/options_helptexts.php:127
1200
  msgid "Enable RSS feed"
1201
  msgstr ""
1202
 
1203
+ #: includes/options_helptexts.php:128
1204
+ msgid "Enable support for the event RSS feed"
1205
  msgstr ""
1206
 
1207
+ #: includes/options_helptexts.php:130
1208
+ msgid ""
1209
+ "This option activates the RSS feed for the events and adds a feed link in "
1210
+ "the html head."
1211
  msgstr ""
1212
 
1213
+ #: includes/options_helptexts.php:131
1214
  msgid ""
1215
  "You have to enable this option if you want to use one of the RSS feed "
1216
  "features."
1217
  msgstr ""
1218
 
1219
+ #: includes/options_helptexts.php:136
1220
+ msgid "Enable iCal feed"
1221
  msgstr ""
1222
 
1223
+ #: includes/options_helptexts.php:137
1224
+ msgid "Enable support for the event iCal feed"
 
1225
  msgstr ""
1226
 
1227
+ #: includes/options_helptexts.php:139
1228
+ msgid "This option activates the iCal feed for events."
 
 
 
1229
  msgstr ""
1230
 
1231
+ #: includes/options_helptexts.php:140
1232
+ msgid ""
1233
+ "You have to enable this option if you want to use one of the iCal features."
1234
  msgstr ""
1235
 
1236
+ #: includes/options_helptexts.php:145
1237
+ msgid "Position of the RSS feed link"
 
1238
  msgstr ""
1239
 
1240
+ #: includes/options_helptexts.php:146
1241
+ msgid "at the top (above the navigation bar)"
 
 
1242
  msgstr ""
1243
 
1244
+ #: includes/options_helptexts.php:146
1245
+ msgid "between navigation bar and events"
1246
  msgstr ""
1247
 
1248
+ #: includes/options_helptexts.php:146
1249
+ msgid "at the bottom"
1250
  msgstr ""
1251
 
1252
+ #: includes/options_helptexts.php:147
1253
  msgid ""
1254
+ "This option specifies the position of the RSS feed link in the event list."
1255
  msgstr ""
1256
 
1257
+ #: includes/options_helptexts.php:152
1258
+ msgid "Align of the RSS feed link"
1259
  msgstr ""
1260
 
1261
+ #: includes/options_helptexts.php:153
1262
+ msgid "left"
1263
  msgstr ""
1264
 
1265
+ #: includes/options_helptexts.php:153
1266
+ msgid "center"
1267
  msgstr ""
1268
 
1269
+ #: includes/options_helptexts.php:153
1270
+ msgid "right"
1271
  msgstr ""
1272
 
1273
+ #: includes/options_helptexts.php:154
1274
+ msgid ""
1275
+ "This option specifies the align of the RSS feed link in the event list."
1276
  msgstr ""
1277
 
1278
+ #: includes/options_helptexts.php:159
1279
+ msgid "RSS feed name"
 
 
1280
  msgstr ""
1281
 
1282
+ #: includes/options_helptexts.php:161
1283
  #, php-format
1284
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1285
  msgstr ""
1286
 
1287
+ #: includes/options_helptexts.php:162
1288
  #, php-format
1289
+ msgid ""
1290
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1291
+ "enabled)."
1292
  msgstr ""
1293
 
1294
+ #: includes/options_helptexts.php:167
1295
+ msgid "RSS feed Description"
1296
  msgstr ""
1297
 
1298
+ #: includes/options_helptexts.php:169
1299
+ #, php-format
1300
+ msgid "This options set the RSS feed description. The default value is %1$s."
1301
  msgstr ""
1302
 
1303
+ #: includes/options_helptexts.php:170
1304
+ msgid ""
1305
+ "This description will be used in the title for the feed link in the html "
1306
+ "head and for the description in the feed itself."
1307
  msgstr ""
1308
 
1309
+ #: includes/options_helptexts.php:175
1310
+ msgid "RSS feed events"
1311
  msgstr ""
1312
 
1313
+ #: includes/options_helptexts.php:176
1314
+ msgid "Only show upcoming events in the RSS feed"
 
1315
  msgstr ""
1316
 
1317
+ #: includes/options_helptexts.php:178
 
 
1318
  msgid ""
1319
+ "If this option is enabled only the upcoming events are listed in the RSS "
1320
+ "feed."
1321
  msgstr ""
1322
 
1323
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1324
+ msgid "If disabled, all events (upcoming and past) will be listed."
1325
  msgstr ""
1326
 
1327
+ #: includes/options_helptexts.php:184
1328
+ msgid "RSS link text"
1329
  msgstr ""
1330
 
1331
+ #: includes/options_helptexts.php:186
1332
+ msgid "This option sets the caption of the RSS feed link in the event list."
1333
  msgstr ""
1334
 
1335
+ #: includes/options_helptexts.php:187
1336
+ msgid "Use an empty text to only show the rss image."
1337
  msgstr ""
1338
 
1339
+ #: includes/options_helptexts.php:188
1340
+ #, php-format
1341
  msgid ""
1342
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1343
+ " RSS feed link."
1344
  msgstr ""
1345
 
1346
+ #: includes/options_helptexts.php:193
1347
+ msgid "iCal feed name"
1348
  msgstr ""
1349
 
1350
+ #: includes/options_helptexts.php:195
1351
+ #, php-format
1352
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1353
+ msgstr ""
1354
+
1355
+ #: includes/options_helptexts.php:196
1356
+ #, php-format
1357
  msgid ""
1358
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1359
+ "permalinks enabled)."
1360
  msgstr ""
1361
 
1362
+ #: includes/options_helptexts.php:201
1363
+ msgid "iCal feed events"
1364
+ msgstr ""
1365
+
1366
+ #: includes/options_helptexts.php:202
1367
+ msgid "Only show upcoming events in the iCal feed"
1368
+ msgstr ""
1369
+
1370
+ #: includes/options_helptexts.php:204
1371
  msgid ""
1372
+ "If this option is enabled only the upcoming events are listed in the iCal "
1373
+ "file."
1374
  msgstr ""
1375
 
1376
+ #: includes/options_helptexts.php:210
1377
+ msgid "iCal link text"
1378
  msgstr ""
1379
 
1380
+ #: includes/options_helptexts.php:212
1381
+ msgid "This option sets the iCal link text in the event list."
1382
  msgstr ""
1383
 
1384
+ #: includes/options_helptexts.php:213
1385
+ msgid "Use an empty text to only show the iCal image."
1386
+ msgstr ""
1387
+
1388
+ #: includes/options_helptexts.php:214
1389
+ #, php-format
1390
  msgid ""
1391
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1392
+ " iCal feed link."
1393
  msgstr ""
1394
 
1395
+ #: includes/options_helptexts.php:221
1396
  msgid "Event Category handling"
1397
  msgstr ""
1398
 
1399
+ #: includes/options_helptexts.php:222
1400
  msgid "Use Post Categories"
1401
  msgstr ""
1402
 
1403
+ #: includes/options_helptexts.php:224
1404
  msgid ""
1405
  "Do not maintain seperate categories for the events, and use the existing "
1406
  "post categories instead."
1407
  msgstr ""
1408
 
1409
+ #: includes/options_helptexts.php:225
1410
  msgid "Attention"
1411
  msgstr ""
1412
 
1413
+ #: includes/options_helptexts.php:226
1414
  msgid ""
1415
  "This option cannot be changed directly, but you can go to the Event Category"
1416
  " switching page from here."
1536
  #: includes/sc_event-list_helptexts.php:33
1537
  #: includes/sc_event-list_helptexts.php:74
1538
  #: includes/sc_event-list_helptexts.php:89
1539
+ #: includes/sc_event-list_helptexts.php:111
1540
  msgid "number"
1541
  msgstr ""
1542
 
1765
 
1766
  #: includes/sc_event-list_helptexts.php:77
1767
  #: includes/sc_event-list_helptexts.php:92
1768
+ #: includes/sc_event-list_helptexts.php:114
1769
  msgid "This attribute has no influence if only a single event is shown."
1770
  msgstr ""
1771
 
1792
 
1793
  #: includes/sc_event-list_helptexts.php:100
1794
  msgid ""
1795
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1796
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1797
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1798
  msgstr ""
1799
 
1800
  #: includes/sc_event-list_helptexts.php:105
1801
  msgid ""
1802
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1803
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1805
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1806
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:112
1810
  msgid ""
1811
  "This attribute specifies if the content should be truncate to the given "
1812
  "number of characters in the event list."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:113
1816
  #, php-format
1817
  msgid "With the standard value %1$s the full text is displayed."
1818
  msgstr ""
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:117
1821
  msgid ""
1822
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1823
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1824
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1825
  "\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."
1826
  msgstr ""
1827
 
1828
+ #: includes/sc_event-list_helptexts.php:123
1829
  msgid ""
1830
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1831
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1834
  msgstr ""
1835
 
1836
+ #: includes/sc_event-list_helptexts.php:129
1837
  msgid ""
1838
  "This attribute specifies if a rss feed link should be added.<br />\n"
1839
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1842
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1843
  msgstr ""
1844
 
1845
+ #: includes/sc_event-list_helptexts.php:136
1846
+ msgid ""
1847
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1848
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1849
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1850
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1851
+ msgstr ""
1852
+
1853
+ #: includes/sc_event-list_helptexts.php:142
1854
  msgid ""
1855
  "This attribute specifies the page or post url for event links.<br />\n"
1856
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1857
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1858
  msgstr ""
1859
 
1860
+ #: includes/sc_event-list_helptexts.php:149
1861
  msgid ""
1862
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1863
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list.php:145
1867
  msgid "Event Information:"
1868
  msgstr ""
1869
 
1870
+ #: includes/sc_event-list.php:391
1871
+ msgid "Link to RSS feed"
1872
+ msgstr ""
1873
+
1874
+ #: includes/sc_event-list.php:399
1875
+ msgid "Link to iCal feed"
1876
+ msgstr ""
1877
+
1878
  #: includes/widget_helptexts.php:10
1879
  msgid "This option defines the displayed title for the widget."
1880
  msgstr ""
languages/event-list-sv_SE.mo CHANGED
Binary file
languages/event-list-sv_SE.po CHANGED
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 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"
@@ -30,7 +30,7 @@ msgstr "Fel inträffade under uppdatering av tillägget %1$s"
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
 
@@ -53,7 +53,7 @@ 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"
58
  msgstr "Allmän"
59
 
@@ -561,13 +561,13 @@ msgid "End Date"
561
  msgstr "Slutdatum"
562
 
563
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
564
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
565
  msgid "Time"
566
  msgstr "Tid"
567
 
568
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
569
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
570
- #: includes/options_helptexts.php:58
571
  msgid "Location"
572
  msgstr "Plats"
573
 
@@ -707,23 +707,23 @@ msgstr ""
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:71
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:83
715
  msgid "Frontend Settings"
716
  msgstr "Utvisningsinställningar"
717
 
718
- #: admin/includes/admin-settings.php:84
719
  msgid "Admin Page Settings"
720
  msgstr "Admininstratörsinställningar"
721
 
722
- #: admin/includes/admin-settings.php:85
723
  msgid "Feed Settings"
724
  msgstr "Flödesinställningar"
725
 
726
- #: admin/includes/admin-settings.php:86
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
@@ -978,146 +978,146 @@ msgstr "Alla"
978
  msgid "All Dates"
979
  msgstr ""
980
 
981
- #: includes/options_helptexts.php:10
982
  msgid "CSV File to import"
983
  msgstr "CSV-fil att importera"
984
 
985
- #: includes/options_helptexts.php:12
986
  msgid "Please select the file which contains the event data in CSV format."
987
  msgstr "Välj den fil som innehåller aktivitetsdata i CSV-format."
988
 
989
- #: includes/options_helptexts.php:15
990
  msgid "Used date format"
991
  msgstr "Använt datum-format"
992
 
993
- #: includes/options_helptexts.php:17
994
  msgid ""
995
  "With this option the given date format for event start and end date in the "
996
  "CSV file can be specified."
997
  msgstr ""
998
 
999
- #: includes/options_helptexts.php:18
1000
  #, php-format
1001
  msgid ""
1002
  "You can use the php date format options given in %1$s, the most important "
1003
  "ones are:"
1004
  msgstr ""
1005
 
1006
- #: includes/options_helptexts.php:20
1007
  msgid "full year representation, with 4 digits"
1008
  msgstr ""
1009
 
1010
- #: includes/options_helptexts.php:21
1011
  msgid "numeric representation of a month, with leading zeros"
1012
  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"
1036
  msgstr "Text vid inga event"
1037
 
1038
- #: includes/options_helptexts.php:35
1039
  msgid ""
1040
  "This option defines the displayed text when no events are available for the "
1041
  "selected view."
1042
  msgstr "Den här inställningen definierar den text som visas när inga händelser är tillgängliga för den valda vyn."
1043
 
1044
- #: includes/options_helptexts.php:38
1045
  msgid "Multiday filter range"
1046
  msgstr "Omfång flerdagarsfilter"
1047
 
1048
- #: includes/options_helptexts.php:39
1049
  msgid "Use the complete event range in the date filter"
1050
  msgstr "Använd hela event-omfånget i datumfiltret"
1051
 
1052
- #: includes/options_helptexts.php:40
1053
  msgid ""
1054
  "This option defines if the complete range of a multiday event shall be "
1055
  "considered in the date filter."
1056
  msgstr "Valet definierar om hela omfånget i ett flerdagarsevent ska användas i datumfiltret."
1057
 
1058
- #: includes/options_helptexts.php:41
1059
  msgid ""
1060
  "If disabled, only the start day of an event is considered in the filter."
1061
  msgstr "Om avslaget så används startdatum för event i filtret."
1062
 
1063
- #: includes/options_helptexts.php:42
1064
  msgid ""
1065
  "For an example multiday event which started yesterday and ends tomorrow this"
1066
  " means, that it is displayed in umcoming dates when this option is enabled, "
1067
  "but it is hidden when the option is disabled."
1068
  msgstr "Som exempel ett flerdagarsevent som startade igår och slutar imorgon så visas den som kommande event om vald men göms om avaktiverad."
1069
 
1070
- #: includes/options_helptexts.php:45
1071
  msgid "Date display"
1072
  msgstr "Datumvisning"
1073
 
1074
- #: includes/options_helptexts.php:46
1075
  msgid "Show the date only once per day"
1076
  msgstr "Visa endast datum en gång per dag"
1077
 
1078
- #: includes/options_helptexts.php:47
1079
  msgid ""
1080
  "With this option enabled the date is only displayed once per day if more "
1081
  "than one event is available on the same day."
1082
  msgstr "Med detta val påslaget visas bara datumet en gång om det finns fler händelser på samma dag."
1083
 
1084
- #: includes/options_helptexts.php:48
1085
  msgid ""
1086
  "If enabled, the events are ordered in a different way (end date before start"
1087
  " time) to allow using the same date for as much events as possible."
1088
  msgstr "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
1089
 
1090
- #: includes/options_helptexts.php:51
1091
  msgid "HTML tags"
1092
  msgstr "HTML-taggar"
1093
 
1094
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1095
  #, php-format
1096
  msgid "Allow HTML tags in the event field \"%1$s\""
1097
  msgstr "Tillåt HTML-taggar i aktivitetsfältet \"%1$s\""
1098
 
1099
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1100
  #, php-format
1101
  msgid ""
1102
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1103
  msgstr "Valet specificerar om HTML-taggar tillåts i eventfältet \"%1$s\"."
1104
 
1105
- #: includes/options_helptexts.php:61
1106
  msgid "Preferred language file"
1107
  msgstr ""
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
1115
  msgid ""
1116
  "The default is to load the %1$s translation file from the plugin language "
1117
  "directory first (%2$s)."
1118
  msgstr ""
1119
 
1120
- #: includes/options_helptexts.php:64
1121
  #, php-format
1122
  msgid ""
1123
  "If you want to load your own language file from the general language "
@@ -1125,273 +1125,290 @@ msgid ""
1125
  "language directory, you have to enable this option."
1126
  msgstr ""
1127
 
1128
- #: includes/options_helptexts.php:68
1129
  msgid "Events permalink slug"
1130
  msgstr ""
1131
 
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 ""
1143
  "With this option the displayed text for the link to show the event content "
1144
  "can be changed, when collapsing is enabled."
1145
  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 ""
1153
  "With this option the displayed text for the link to hide the event content "
1154
  "can be changed, when collapsing is enabled."
1155
  msgstr ""
1156
 
1157
- #: includes/options_helptexts.php:80
1158
  msgid "Disable CSS file"
1159
  msgstr "Inaktivera CSS-filen"
1160
 
1161
- #: includes/options_helptexts.php:81
1162
  #, php-format
1163
  msgid "Disable the %1$s file."
1164
  msgstr "Inaktivera %1$s filen."
1165
 
1166
- #: includes/options_helptexts.php:82
1167
  #, php-format
1168
  msgid "With this option you can disable the inclusion of the %1$s file."
1169
  msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen."
1170
 
1171
- #: includes/options_helptexts.php:83
1172
  msgid ""
1173
  "This normally only make sense if you have css conflicts with your theme and "
1174
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1175
  msgstr "Normalt används detta om du har css-konflikter i ditt tema och du vill bestämma alla valda stilar någon annanstans (ex i temats css)."
1176
 
1177
- #: includes/options_helptexts.php:87
1178
  msgid "Date format in edit form"
1179
  msgstr "Datumformat i redigeringsformulär"
1180
 
1181
- #: includes/options_helptexts.php:88
1182
  msgid ""
1183
  "This option sets the displayed date format for the event date fields in the "
1184
  "event new / edit form."
1185
  msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event."
1186
 
1187
- #: includes/options_helptexts.php:89
1188
  msgid "The default is an empty string to use the Wordpress standard setting."
1189
  msgstr ""
1190
 
1191
- #: includes/options_helptexts.php:90
1192
  #, php-format
1193
  msgid ""
1194
  "All available options to specify the date format can be found %1$shere%2$s."
1195
  msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s."
1196
 
1197
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1198
  msgid "Enable RSS feed"
1199
  msgstr "Aktivera RSS-flöde"
1200
 
1201
- #: includes/options_helptexts.php:95
1202
- msgid "Enable support for an event RSS feed"
1203
- msgstr "Aktivera stöd för en aktvitets RSS-flöde"
1204
 
1205
- #: includes/options_helptexts.php:96
1206
- msgid "This option activates a RSS feed for the events."
 
 
1207
  msgstr ""
1208
 
1209
- #: includes/options_helptexts.php:97
1210
  msgid ""
1211
  "You have to enable this option if you want to use one of the RSS feed "
1212
  "features."
1213
  msgstr ""
1214
 
1215
- #: includes/options_helptexts.php:100
1216
- msgid "Feed name"
1217
- msgstr "Flödesnamn"
1218
 
1219
- #: includes/options_helptexts.php:101
1220
- #, php-format
1221
- msgid "This option sets the feed name. The default value is %1$s."
1222
  msgstr ""
1223
 
1224
- #: includes/options_helptexts.php:102
1225
- #, php-format
 
 
 
1226
  msgid ""
1227
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1228
- "enabled)."
1229
  msgstr ""
1230
 
1231
- #: includes/options_helptexts.php:105
1232
- msgid "Feed Description"
1233
- msgstr "Flödesbeskrivning"
1234
 
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 ""
1242
- "This description will be used in the title for the feed link in the html "
1243
- "head and for the description in the feed itself."
1244
  msgstr ""
1245
 
1246
- #: includes/options_helptexts.php:110
1247
- msgid "Listed events"
1248
- msgstr "Listade aktiviteter"
1249
-
1250
- #: includes/options_helptexts.php:111
1251
- msgid "Only show upcoming events in feed"
1252
- msgstr "Visa endast kommande händelser i flödet"
1253
 
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"
1265
- msgstr "Lägg till RSS-flödeslänk i huvud"
1266
 
1267
- #: includes/options_helptexts.php:117
1268
- msgid "Add RSS feed link in the html head"
1269
- msgstr "Lägg till RSS-flödeslänk i html huvudet"
 
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"
1299
- msgstr "Position av RSS-flödeslänk"
1300
 
1301
- #: includes/options_helptexts.php:126
1302
- msgid "at the top (above the navigation bar)"
 
 
1303
  msgstr ""
1304
 
1305
- #: includes/options_helptexts.php:126
1306
- msgid "between navigation bar and events"
1307
  msgstr ""
1308
 
1309
- #: includes/options_helptexts.php:126
1310
- msgid "at the bottom"
1311
  msgstr ""
1312
 
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
1320
  #, php-format
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"
1328
- msgstr "Positionering av RSS-flödeslänk"
1329
-
1330
- #: includes/options_helptexts.php:132
1331
- msgid "left"
1332
  msgstr ""
1333
 
1334
- #: includes/options_helptexts.php:132
1335
- msgid "center"
 
1336
  msgstr ""
1337
 
1338
- #: includes/options_helptexts.php:132
1339
- msgid "right"
 
 
 
1340
  msgstr ""
1341
 
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"
1349
- msgstr "Flödets länk-text"
1350
 
1351
- #: includes/options_helptexts.php:138
1352
  msgid ""
1353
- "This option specifies the caption of the RSS feed link in the event list."
 
1354
  msgstr ""
1355
 
1356
- #: includes/options_helptexts.php:139
1357
- msgid ""
1358
- "Insert an empty text to hide any text if you only want to show the rss "
1359
- "image."
1360
  msgstr ""
1361
 
1362
- #: includes/options_helptexts.php:143
1363
- msgid "Feed link image"
1364
- msgstr "Flödets länk-bild"
1365
 
1366
- #: includes/options_helptexts.php:144
1367
- msgid "Show rss image in feed link"
1368
- msgstr "Visa RSS-bild i flödes-länken."
1369
 
1370
- #: includes/options_helptexts.php:145
 
1371
  msgid ""
1372
- "This option specifies if the an image should be dispayed in the feed link in"
1373
- " front of the text."
1374
  msgstr ""
1375
 
1376
- #: includes/options_helptexts.php:151
1377
  msgid "Event Category handling"
1378
  msgstr ""
1379
 
1380
- #: includes/options_helptexts.php:152
1381
  msgid "Use Post Categories"
1382
  msgstr ""
1383
 
1384
- #: includes/options_helptexts.php:153
1385
  msgid ""
1386
  "Do not maintain seperate categories for the events, and use the existing "
1387
  "post categories instead."
1388
  msgstr ""
1389
 
1390
- #: includes/options_helptexts.php:154
1391
  msgid "Attention"
1392
  msgstr "OBS"
1393
 
1394
- #: includes/options_helptexts.php:155
1395
  msgid ""
1396
  "This option cannot be changed directly, but you can go to the Event Category"
1397
  " switching page from here."
@@ -1517,7 +1534,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:109
1521
  msgid "number"
1522
  msgstr ""
1523
 
@@ -1746,7 +1763,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:112
1750
  msgid "This attribute has no influence if only a single event is shown."
1751
  msgstr ""
1752
 
@@ -1773,38 +1790,40 @@ msgstr ""
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"
1803
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1831,7 @@ msgid ""
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,23 +1840,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1841
  #: includes/widget_helptexts.php:10
1842
  msgid "This option defines the displayed title for the widget."
1843
  msgstr ""
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-11-16 17:29+0100\n"
14
+ "PO-Revision-Date: 2020-11-16 16:29+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"
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
34
  msgid "Event List Settings"
35
  msgstr "Inställningar Event List"
36
 
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
57
  msgid "General"
58
  msgstr "Allmän"
59
 
561
  msgstr "Slutdatum"
562
 
563
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
564
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
565
  msgid "Time"
566
  msgstr "Tid"
567
 
568
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
569
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
570
+ #: includes/options_helptexts.php:74
571
  msgid "Location"
572
  msgstr "Plats"
573
 
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-settings.php:73
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:85
715
  msgid "Frontend Settings"
716
  msgstr "Utvisningsinställningar"
717
 
718
+ #: admin/includes/admin-settings.php:86
719
  msgid "Admin Page Settings"
720
  msgstr "Admininstratörsinställningar"
721
 
722
+ #: admin/includes/admin-settings.php:87
723
  msgid "Feed Settings"
724
  msgstr "Flödesinställningar"
725
 
726
+ #: admin/includes/admin-settings.php:88
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
978
  msgid "All Dates"
979
  msgstr ""
980
 
981
+ #: includes/options_helptexts.php:11
982
  msgid "CSV File to import"
983
  msgstr "CSV-fil att importera"
984
 
985
+ #: includes/options_helptexts.php:13
986
  msgid "Please select the file which contains the event data in CSV format."
987
  msgstr "Välj den fil som innehåller aktivitetsdata i CSV-format."
988
 
989
+ #: includes/options_helptexts.php:18
990
  msgid "Used date format"
991
  msgstr "Använt datum-format"
992
 
993
+ #: includes/options_helptexts.php:21
994
  msgid ""
995
  "With this option the given date format for event start and end date in the "
996
  "CSV file can be specified."
997
  msgstr ""
998
 
999
+ #: includes/options_helptexts.php:22
1000
  #, php-format
1001
  msgid ""
1002
  "You can use the php date format options given in %1$s, the most important "
1003
  "ones are:"
1004
  msgstr ""
1005
 
1006
+ #: includes/options_helptexts.php:24
1007
  msgid "full year representation, with 4 digits"
1008
  msgstr ""
1009
 
1010
+ #: includes/options_helptexts.php:25
1011
  msgid "numeric representation of a month, with leading zeros"
1012
  msgstr ""
1013
 
1014
+ #: includes/options_helptexts.php:26
1015
  msgid "day of the month, 2 digits with leading zeros"
1016
  msgstr ""
1017
 
1018
+ #: includes/options_helptexts.php:28
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:29
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:30
1031
  msgid "Examples"
1032
  msgstr ""
1033
 
1034
+ #: includes/options_helptexts.php:39
1035
  msgid "Text for no events"
1036
  msgstr "Text vid inga event"
1037
 
1038
+ #: includes/options_helptexts.php:41
1039
  msgid ""
1040
  "This option defines the displayed text when no events are available for the "
1041
  "selected view."
1042
  msgstr "Den här inställningen definierar den text som visas när inga händelser är tillgängliga för den valda vyn."
1043
 
1044
+ #: includes/options_helptexts.php:46
1045
  msgid "Multiday filter range"
1046
  msgstr "Omfång flerdagarsfilter"
1047
 
1048
+ #: includes/options_helptexts.php:47
1049
  msgid "Use the complete event range in the date filter"
1050
  msgstr "Använd hela event-omfånget i datumfiltret"
1051
 
1052
+ #: includes/options_helptexts.php:49
1053
  msgid ""
1054
  "This option defines if the complete range of a multiday event shall be "
1055
  "considered in the date filter."
1056
  msgstr "Valet definierar om hela omfånget i ett flerdagarsevent ska användas i datumfiltret."
1057
 
1058
+ #: includes/options_helptexts.php:50
1059
  msgid ""
1060
  "If disabled, only the start day of an event is considered in the filter."
1061
  msgstr "Om avslaget så används startdatum för event i filtret."
1062
 
1063
+ #: includes/options_helptexts.php:51
1064
  msgid ""
1065
  "For an example multiday event which started yesterday and ends tomorrow this"
1066
  " means, that it is displayed in umcoming dates when this option is enabled, "
1067
  "but it is hidden when the option is disabled."
1068
  msgstr "Som exempel ett flerdagarsevent som startade igår och slutar imorgon så visas den som kommande event om vald men göms om avaktiverad."
1069
 
1070
+ #: includes/options_helptexts.php:56
1071
  msgid "Date display"
1072
  msgstr "Datumvisning"
1073
 
1074
+ #: includes/options_helptexts.php:57
1075
  msgid "Show the date only once per day"
1076
  msgstr "Visa endast datum en gång per dag"
1077
 
1078
+ #: includes/options_helptexts.php:59
1079
  msgid ""
1080
  "With this option enabled the date is only displayed once per day if more "
1081
  "than one event is available on the same day."
1082
  msgstr "Med detta val påslaget visas bara datumet en gång om det finns fler händelser på samma dag."
1083
 
1084
+ #: includes/options_helptexts.php:60
1085
  msgid ""
1086
  "If enabled, the events are ordered in a different way (end date before start"
1087
  " time) to allow using the same date for as much events as possible."
1088
  msgstr "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
1089
 
1090
+ #: includes/options_helptexts.php:65
1091
  msgid "HTML tags"
1092
  msgstr "HTML-taggar"
1093
 
1094
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1095
  #, php-format
1096
  msgid "Allow HTML tags in the event field \"%1$s\""
1097
  msgstr "Tillåt HTML-taggar i aktivitetsfältet \"%1$s\""
1098
 
1099
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1100
  #, php-format
1101
  msgid ""
1102
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1103
  msgstr "Valet specificerar om HTML-taggar tillåts i eventfältet \"%1$s\"."
1104
 
1105
+ #: includes/options_helptexts.php:79
1106
  msgid "Preferred language file"
1107
  msgstr ""
1108
 
1109
+ #: includes/options_helptexts.php:80
1110
  msgid "Load translations from general language directory first"
1111
  msgstr ""
1112
 
1113
+ #: includes/options_helptexts.php:82
1114
  #, php-format
1115
  msgid ""
1116
  "The default is to load the %1$s translation file from the plugin language "
1117
  "directory first (%2$s)."
1118
  msgstr ""
1119
 
1120
+ #: includes/options_helptexts.php:83
1121
  #, php-format
1122
  msgid ""
1123
  "If you want to load your own language file from the general language "
1125
  "language directory, you have to enable this option."
1126
  msgstr ""
1127
 
1128
+ #: includes/options_helptexts.php:89
1129
  msgid "Events permalink slug"
1130
  msgstr ""
1131
 
1132
+ #: includes/options_helptexts.php:90
1133
  msgid ""
1134
  "With this option the slug for the events permalink URLs can be defined."
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:95
1138
  msgid "Text for \"Show content\""
1139
  msgstr ""
1140
 
1141
+ #: includes/options_helptexts.php:96
1142
  msgid ""
1143
  "With this option the displayed text for the link to show the event content "
1144
  "can be changed, when collapsing is enabled."
1145
  msgstr ""
1146
 
1147
+ #: includes/options_helptexts.php:101
1148
  msgid "Text for \"Hide content\""
1149
  msgstr ""
1150
 
1151
+ #: includes/options_helptexts.php:102
1152
  msgid ""
1153
  "With this option the displayed text for the link to hide the event content "
1154
  "can be changed, when collapsing is enabled."
1155
  msgstr ""
1156
 
1157
+ #: includes/options_helptexts.php:107
1158
  msgid "Disable CSS file"
1159
  msgstr "Inaktivera CSS-filen"
1160
 
1161
+ #: includes/options_helptexts.php:108
1162
  #, php-format
1163
  msgid "Disable the %1$s file."
1164
  msgstr "Inaktivera %1$s filen."
1165
 
1166
+ #: includes/options_helptexts.php:110
1167
  #, php-format
1168
  msgid "With this option you can disable the inclusion of the %1$s file."
1169
  msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen."
1170
 
1171
+ #: includes/options_helptexts.php:111
1172
  msgid ""
1173
  "This normally only make sense if you have css conflicts with your theme and "
1174
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1175
  msgstr "Normalt används detta om du har css-konflikter i ditt tema och du vill bestämma alla valda stilar någon annanstans (ex i temats css)."
1176
 
1177
+ #: includes/options_helptexts.php:117
1178
  msgid "Date format in edit form"
1179
  msgstr "Datumformat i redigeringsformulär"
1180
 
1181
+ #: includes/options_helptexts.php:119
1182
  msgid ""
1183
  "This option sets the displayed date format for the event date fields in the "
1184
  "event new / edit form."
1185
  msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event."
1186
 
1187
+ #: includes/options_helptexts.php:120
1188
  msgid "The default is an empty string to use the Wordpress standard setting."
1189
  msgstr ""
1190
 
1191
+ #: includes/options_helptexts.php:121
1192
  #, php-format
1193
  msgid ""
1194
  "All available options to specify the date format can be found %1$shere%2$s."
1195
  msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s."
1196
 
1197
+ #: includes/options_helptexts.php:127
1198
  msgid "Enable RSS feed"
1199
  msgstr "Aktivera RSS-flöde"
1200
 
1201
+ #: includes/options_helptexts.php:128
1202
+ msgid "Enable support for the event RSS feed"
1203
+ msgstr ""
1204
 
1205
+ #: includes/options_helptexts.php:130
1206
+ msgid ""
1207
+ "This option activates the RSS feed for the events and adds a feed link in "
1208
+ "the html head."
1209
  msgstr ""
1210
 
1211
+ #: includes/options_helptexts.php:131
1212
  msgid ""
1213
  "You have to enable this option if you want to use one of the RSS feed "
1214
  "features."
1215
  msgstr ""
1216
 
1217
+ #: includes/options_helptexts.php:136
1218
+ msgid "Enable iCal feed"
1219
+ msgstr ""
1220
 
1221
+ #: includes/options_helptexts.php:137
1222
+ msgid "Enable support for the event iCal feed"
 
1223
  msgstr ""
1224
 
1225
+ #: includes/options_helptexts.php:139
1226
+ msgid "This option activates the iCal feed for events."
1227
+ msgstr ""
1228
+
1229
+ #: includes/options_helptexts.php:140
1230
  msgid ""
1231
+ "You have to enable this option if you want to use one of the iCal features."
 
1232
  msgstr ""
1233
 
1234
+ #: includes/options_helptexts.php:145
1235
+ msgid "Position of the RSS feed link"
1236
+ msgstr "Position av RSS-flödeslänk"
1237
 
1238
+ #: includes/options_helptexts.php:146
1239
+ msgid "at the top (above the navigation bar)"
 
1240
  msgstr ""
1241
 
1242
+ #: includes/options_helptexts.php:146
1243
+ msgid "between navigation bar and events"
 
 
1244
  msgstr ""
1245
 
1246
+ #: includes/options_helptexts.php:146
1247
+ msgid "at the bottom"
1248
+ msgstr ""
 
 
 
 
1249
 
1250
+ #: includes/options_helptexts.php:147
1251
  msgid ""
1252
+ "This option specifies the position of the RSS feed link in the event list."
1253
+ msgstr ""
1254
+
1255
+ #: includes/options_helptexts.php:152
1256
+ msgid "Align of the RSS feed link"
1257
+ msgstr "Positionering av RSS-flödeslänk"
1258
+
1259
+ #: includes/options_helptexts.php:153
1260
+ msgid "left"
1261
  msgstr ""
1262
 
1263
+ #: includes/options_helptexts.php:153
1264
+ msgid "center"
1265
  msgstr ""
1266
 
1267
+ #: includes/options_helptexts.php:153
1268
+ msgid "right"
1269
+ msgstr ""
1270
 
1271
+ #: includes/options_helptexts.php:154
1272
+ msgid ""
1273
+ "This option specifies the align of the RSS feed link in the event list."
1274
+ msgstr ""
1275
 
1276
+ #: includes/options_helptexts.php:159
1277
+ msgid "RSS feed name"
1278
  msgstr ""
1279
 
1280
+ #: includes/options_helptexts.php:161
1281
+ #, php-format
1282
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1283
  msgstr ""
1284
 
1285
+ #: includes/options_helptexts.php:162
1286
+ #, php-format
1287
  msgid ""
1288
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1289
+ "enabled)."
1290
  msgstr ""
1291
 
1292
+ #: includes/options_helptexts.php:167
1293
+ msgid "RSS feed Description"
1294
+ msgstr ""
1295
+
1296
+ #: includes/options_helptexts.php:169
1297
  #, php-format
1298
+ msgid "This options set the RSS feed description. The default value is %1$s."
1299
+ msgstr ""
1300
+
1301
+ #: includes/options_helptexts.php:170
1302
  msgid ""
1303
+ "This description will be used in the title for the feed link in the html "
1304
+ "head and for the description in the feed itself."
1305
  msgstr ""
1306
 
1307
+ #: includes/options_helptexts.php:175
1308
+ msgid "RSS feed events"
 
1309
  msgstr ""
1310
 
1311
+ #: includes/options_helptexts.php:176
1312
+ msgid "Only show upcoming events in the RSS feed"
1313
+ msgstr ""
1314
 
1315
+ #: includes/options_helptexts.php:178
1316
+ msgid ""
1317
+ "If this option is enabled only the upcoming events are listed in the RSS "
1318
+ "feed."
1319
  msgstr ""
1320
 
1321
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1322
+ msgid "If disabled, all events (upcoming and past) will be listed."
1323
  msgstr ""
1324
 
1325
+ #: includes/options_helptexts.php:184
1326
+ msgid "RSS link text"
1327
  msgstr ""
1328
 
1329
+ #: includes/options_helptexts.php:186
1330
+ msgid "This option sets the caption of the RSS feed link in the event list."
1331
+ msgstr ""
1332
+
1333
+ #: includes/options_helptexts.php:187
1334
+ msgid "Use an empty text to only show the rss image."
1335
  msgstr ""
1336
 
1337
+ #: includes/options_helptexts.php:188
 
1338
  #, php-format
1339
  msgid ""
1340
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1341
+ " RSS feed link."
1342
  msgstr ""
1343
 
1344
+ #: includes/options_helptexts.php:193
1345
+ msgid "iCal feed name"
 
 
 
 
1346
  msgstr ""
1347
 
1348
+ #: includes/options_helptexts.php:195
1349
+ #, php-format
1350
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1351
  msgstr ""
1352
 
1353
+ #: includes/options_helptexts.php:196
1354
+ #, php-format
1355
+ msgid ""
1356
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1357
+ "permalinks enabled)."
1358
  msgstr ""
1359
 
1360
+ #: includes/options_helptexts.php:201
1361
+ msgid "iCal feed events"
 
1362
  msgstr ""
1363
 
1364
+ #: includes/options_helptexts.php:202
1365
+ msgid "Only show upcoming events in the iCal feed"
1366
+ msgstr ""
1367
 
1368
+ #: includes/options_helptexts.php:204
1369
  msgid ""
1370
+ "If this option is enabled only the upcoming events are listed in the iCal "
1371
+ "file."
1372
  msgstr ""
1373
 
1374
+ #: includes/options_helptexts.php:210
1375
+ msgid "iCal link text"
 
 
1376
  msgstr ""
1377
 
1378
+ #: includes/options_helptexts.php:212
1379
+ msgid "This option sets the iCal link text in the event list."
1380
+ msgstr ""
1381
 
1382
+ #: includes/options_helptexts.php:213
1383
+ msgid "Use an empty text to only show the iCal image."
1384
+ msgstr ""
1385
 
1386
+ #: includes/options_helptexts.php:214
1387
+ #, php-format
1388
  msgid ""
1389
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1390
+ " iCal feed link."
1391
  msgstr ""
1392
 
1393
+ #: includes/options_helptexts.php:221
1394
  msgid "Event Category handling"
1395
  msgstr ""
1396
 
1397
+ #: includes/options_helptexts.php:222
1398
  msgid "Use Post Categories"
1399
  msgstr ""
1400
 
1401
+ #: includes/options_helptexts.php:224
1402
  msgid ""
1403
  "Do not maintain seperate categories for the events, and use the existing "
1404
  "post categories instead."
1405
  msgstr ""
1406
 
1407
+ #: includes/options_helptexts.php:225
1408
  msgid "Attention"
1409
  msgstr "OBS"
1410
 
1411
+ #: includes/options_helptexts.php:226
1412
  msgid ""
1413
  "This option cannot be changed directly, but you can go to the Event Category"
1414
  " switching page from here."
1534
  #: includes/sc_event-list_helptexts.php:33
1535
  #: includes/sc_event-list_helptexts.php:74
1536
  #: includes/sc_event-list_helptexts.php:89
1537
+ #: includes/sc_event-list_helptexts.php:111
1538
  msgid "number"
1539
  msgstr ""
1540
 
1763
 
1764
  #: includes/sc_event-list_helptexts.php:77
1765
  #: includes/sc_event-list_helptexts.php:92
1766
+ #: includes/sc_event-list_helptexts.php:114
1767
  msgid "This attribute has no influence if only a single event is shown."
1768
  msgstr ""
1769
 
1790
 
1791
  #: includes/sc_event-list_helptexts.php:100
1792
  msgid ""
1793
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1794
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1795
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1796
  msgstr ""
1797
 
1798
  #: includes/sc_event-list_helptexts.php:105
1799
  msgid ""
1800
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1801
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1802
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1803
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1804
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1805
  msgstr ""
1806
 
1807
+ #: includes/sc_event-list_helptexts.php:112
1808
  msgid ""
1809
  "This attribute specifies if the content should be truncate to the given "
1810
  "number of characters in the event list."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:113
1814
  #, php-format
1815
  msgid "With the standard value %1$s the full text is displayed."
1816
  msgstr ""
1817
 
1818
+ #: includes/sc_event-list_helptexts.php:117
1819
  msgid ""
1820
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1821
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1822
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1823
  "\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."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:123
1827
  msgid ""
1828
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1829
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1831
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:129
1835
  msgid ""
1836
  "This attribute specifies if a rss feed link should be added.<br />\n"
1837
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1840
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1841
  msgstr ""
1842
 
1843
+ #: includes/sc_event-list_helptexts.php:136
1844
+ msgid ""
1845
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1846
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1847
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1848
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1849
+ msgstr ""
1850
+
1851
+ #: includes/sc_event-list_helptexts.php:142
1852
  msgid ""
1853
  "This attribute specifies the page or post url for event links.<br />\n"
1854
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1855
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1856
  msgstr ""
1857
 
1858
+ #: includes/sc_event-list_helptexts.php:149
1859
  msgid ""
1860
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1861
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1862
  msgstr ""
1863
 
1864
+ #: includes/sc_event-list.php:145
1865
  msgid "Event Information:"
1866
  msgstr "Aktivitets Information:"
1867
 
1868
+ #: includes/sc_event-list.php:391
1869
+ msgid "Link to RSS feed"
1870
+ msgstr ""
1871
+
1872
+ #: includes/sc_event-list.php:399
1873
+ msgid "Link to iCal feed"
1874
+ msgstr ""
1875
+
1876
  #: includes/widget_helptexts.php:10
1877
  msgid "This option defines the displayed title for the widget."
1878
  msgstr ""
languages/event-list-zh_CN.mo CHANGED
Binary file
languages/event-list-zh_CN.po CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 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"
@@ -28,7 +28,7 @@ msgstr ""
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
 
@@ -50,7 +50,7 @@ msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
 
53
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
54
  msgid "General"
55
  msgstr "一般"
56
 
@@ -557,13 +557,13 @@ msgid "End Date"
557
  msgstr ""
558
 
559
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
560
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
561
  msgid "Time"
562
  msgstr ""
563
 
564
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
565
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
566
- #: includes/options_helptexts.php:58
567
  msgid "Location"
568
  msgstr ""
569
 
@@ -703,23 +703,23 @@ msgstr ""
703
  msgid "Event draft updated."
704
  msgstr ""
705
 
706
- #: admin/includes/admin-settings.php:71
707
  msgid "Go to Event Category switching page"
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:83
711
  msgid "Frontend Settings"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:84
715
  msgid "Admin Page Settings"
716
  msgstr ""
717
 
718
- #: admin/includes/admin-settings.php:85
719
  msgid "Feed Settings"
720
  msgstr ""
721
 
722
- #: admin/includes/admin-settings.php:86
723
  msgid "Category Taxonomy"
724
  msgstr ""
725
 
@@ -974,146 +974,146 @@ msgstr ""
974
  msgid "All Dates"
975
  msgstr ""
976
 
977
- #: includes/options_helptexts.php:10
978
  msgid "CSV File to import"
979
  msgstr ""
980
 
981
- #: includes/options_helptexts.php:12
982
  msgid "Please select the file which contains the event data in CSV format."
983
  msgstr ""
984
 
985
- #: includes/options_helptexts.php:15
986
  msgid "Used date format"
987
  msgstr ""
988
 
989
- #: includes/options_helptexts.php:17
990
  msgid ""
991
  "With this option the given date format for event start and end date in the "
992
  "CSV file can be specified."
993
  msgstr ""
994
 
995
- #: includes/options_helptexts.php:18
996
  #, php-format
997
  msgid ""
998
  "You can use the php date format options given in %1$s, the most important "
999
  "ones are:"
1000
  msgstr ""
1001
 
1002
- #: includes/options_helptexts.php:20
1003
  msgid "full year representation, with 4 digits"
1004
  msgstr ""
1005
 
1006
- #: includes/options_helptexts.php:21
1007
  msgid "numeric representation of a month, with leading zeros"
1008
  msgstr ""
1009
 
1010
- #: includes/options_helptexts.php:22
1011
  msgid "day of the month, 2 digits with leading zeros"
1012
  msgstr ""
1013
 
1014
- #: includes/options_helptexts.php:24
1015
  msgid ""
1016
  "If the date format in the CSV file does not correspond to the given format, "
1017
  "the import script tries to recognize the date format by itself."
1018
  msgstr ""
1019
 
1020
- #: includes/options_helptexts.php:25
1021
  msgid ""
1022
  "But this can cause problems or result in wrong dates, so it is recommended "
1023
  "to specify the correct date format here."
1024
  msgstr ""
1025
 
1026
- #: includes/options_helptexts.php:26
1027
  msgid "Examples"
1028
  msgstr ""
1029
 
1030
- #: includes/options_helptexts.php:33
1031
  msgid "Text for no events"
1032
  msgstr ""
1033
 
1034
- #: includes/options_helptexts.php:35
1035
  msgid ""
1036
  "This option defines the displayed text when no events are available for the "
1037
  "selected view."
1038
  msgstr ""
1039
 
1040
- #: includes/options_helptexts.php:38
1041
  msgid "Multiday filter range"
1042
  msgstr ""
1043
 
1044
- #: includes/options_helptexts.php:39
1045
  msgid "Use the complete event range in the date filter"
1046
  msgstr ""
1047
 
1048
- #: includes/options_helptexts.php:40
1049
  msgid ""
1050
  "This option defines if the complete range of a multiday event shall be "
1051
  "considered in the date filter."
1052
  msgstr ""
1053
 
1054
- #: includes/options_helptexts.php:41
1055
  msgid ""
1056
  "If disabled, only the start day of an event is considered in the filter."
1057
  msgstr ""
1058
 
1059
- #: includes/options_helptexts.php:42
1060
  msgid ""
1061
  "For an example multiday event which started yesterday and ends tomorrow this"
1062
  " means, that it is displayed in umcoming dates when this option is enabled, "
1063
  "but it is hidden when the option is disabled."
1064
  msgstr ""
1065
 
1066
- #: includes/options_helptexts.php:45
1067
  msgid "Date display"
1068
  msgstr ""
1069
 
1070
- #: includes/options_helptexts.php:46
1071
  msgid "Show the date only once per day"
1072
  msgstr ""
1073
 
1074
- #: includes/options_helptexts.php:47
1075
  msgid ""
1076
  "With this option enabled the date is only displayed once per day if more "
1077
  "than one event is available on the same day."
1078
  msgstr ""
1079
 
1080
- #: includes/options_helptexts.php:48
1081
  msgid ""
1082
  "If enabled, the events are ordered in a different way (end date before start"
1083
  " time) to allow using the same date for as much events as possible."
1084
  msgstr ""
1085
 
1086
- #: includes/options_helptexts.php:51
1087
  msgid "HTML tags"
1088
  msgstr ""
1089
 
1090
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1091
  #, php-format
1092
  msgid "Allow HTML tags in the event field \"%1$s\""
1093
  msgstr ""
1094
 
1095
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1096
  #, php-format
1097
  msgid ""
1098
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1099
  msgstr ""
1100
 
1101
- #: includes/options_helptexts.php:61
1102
  msgid "Preferred language file"
1103
  msgstr ""
1104
 
1105
- #: includes/options_helptexts.php:62
1106
  msgid "Load translations from general language directory first"
1107
  msgstr ""
1108
 
1109
- #: includes/options_helptexts.php:63
1110
  #, php-format
1111
  msgid ""
1112
  "The default is to load the %1$s translation file from the plugin language "
1113
  "directory first (%2$s)."
1114
  msgstr ""
1115
 
1116
- #: includes/options_helptexts.php:64
1117
  #, php-format
1118
  msgid ""
1119
  "If you want to load your own language file from the general language "
@@ -1121,273 +1121,290 @@ msgid ""
1121
  "language directory, you have to enable this option."
1122
  msgstr ""
1123
 
1124
- #: includes/options_helptexts.php:68
1125
  msgid "Events permalink slug"
1126
  msgstr ""
1127
 
1128
- #: includes/options_helptexts.php:69
1129
  msgid ""
1130
  "With this option the slug for the events permalink URLs can be defined."
1131
  msgstr ""
1132
 
1133
- #: includes/options_helptexts.php:72
1134
  msgid "Text for \"Show content\""
1135
  msgstr ""
1136
 
1137
- #: includes/options_helptexts.php:73
1138
  msgid ""
1139
  "With this option the displayed text for the link to show the event content "
1140
  "can be changed, when collapsing is enabled."
1141
  msgstr ""
1142
 
1143
- #: includes/options_helptexts.php:76
1144
  msgid "Text for \"Hide content\""
1145
  msgstr ""
1146
 
1147
- #: includes/options_helptexts.php:77
1148
  msgid ""
1149
  "With this option the displayed text for the link to hide the event content "
1150
  "can be changed, when collapsing is enabled."
1151
  msgstr ""
1152
 
1153
- #: includes/options_helptexts.php:80
1154
  msgid "Disable CSS file"
1155
  msgstr ""
1156
 
1157
- #: includes/options_helptexts.php:81
1158
  #, php-format
1159
  msgid "Disable the %1$s file."
1160
  msgstr ""
1161
 
1162
- #: includes/options_helptexts.php:82
1163
  #, php-format
1164
  msgid "With this option you can disable the inclusion of the %1$s file."
1165
  msgstr ""
1166
 
1167
- #: includes/options_helptexts.php:83
1168
  msgid ""
1169
  "This normally only make sense if you have css conflicts with your theme and "
1170
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1171
  msgstr ""
1172
 
1173
- #: includes/options_helptexts.php:87
1174
  msgid "Date format in edit form"
1175
  msgstr ""
1176
 
1177
- #: includes/options_helptexts.php:88
1178
  msgid ""
1179
  "This option sets the displayed date format for the event date fields in the "
1180
  "event new / edit form."
1181
  msgstr ""
1182
 
1183
- #: includes/options_helptexts.php:89
1184
  msgid "The default is an empty string to use the Wordpress standard setting."
1185
  msgstr ""
1186
 
1187
- #: includes/options_helptexts.php:90
1188
  #, php-format
1189
  msgid ""
1190
  "All available options to specify the date format can be found %1$shere%2$s."
1191
  msgstr ""
1192
 
1193
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1194
  msgid "Enable RSS feed"
1195
  msgstr ""
1196
 
1197
- #: includes/options_helptexts.php:95
1198
- msgid "Enable support for an event RSS feed"
1199
  msgstr ""
1200
 
1201
- #: includes/options_helptexts.php:96
1202
- msgid "This option activates a RSS feed for the events."
 
 
1203
  msgstr ""
1204
 
1205
- #: includes/options_helptexts.php:97
1206
  msgid ""
1207
  "You have to enable this option if you want to use one of the RSS feed "
1208
  "features."
1209
  msgstr ""
1210
 
1211
- #: includes/options_helptexts.php:100
1212
- msgid "Feed name"
1213
  msgstr ""
1214
 
1215
- #: includes/options_helptexts.php:101
1216
- #, php-format
1217
- msgid "This option sets the feed name. The default value is %1$s."
1218
  msgstr ""
1219
 
1220
- #: includes/options_helptexts.php:102
1221
- #, php-format
1222
- msgid ""
1223
- "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1224
- "enabled)."
1225
  msgstr ""
1226
 
1227
- #: includes/options_helptexts.php:105
1228
- msgid "Feed Description"
 
1229
  msgstr ""
1230
 
1231
- #: includes/options_helptexts.php:106
1232
- #, php-format
1233
- msgid "This options set the feed description. The default value is %1$s."
1234
  msgstr ""
1235
 
1236
- #: includes/options_helptexts.php:107
1237
- msgid ""
1238
- "This description will be used in the title for the feed link in the html "
1239
- "head and for the description in the feed itself."
1240
  msgstr ""
1241
 
1242
- #: includes/options_helptexts.php:110
1243
- msgid "Listed events"
1244
  msgstr ""
1245
 
1246
- #: includes/options_helptexts.php:111
1247
- msgid "Only show upcoming events in feed"
1248
  msgstr ""
1249
 
1250
- #: includes/options_helptexts.php:112
1251
  msgid ""
1252
- "If this option is enabled only the upcoming events are listed in the feed."
1253
  msgstr ""
1254
 
1255
- #: includes/options_helptexts.php:113
1256
- msgid "If disabled all events (upcoming and past) will be listed."
1257
  msgstr ""
1258
 
1259
- #: includes/options_helptexts.php:116
1260
- msgid "Add RSS feed link in head"
1261
  msgstr ""
1262
 
1263
- #: includes/options_helptexts.php:117
1264
- msgid "Add RSS feed link in the html head"
1265
  msgstr ""
1266
 
1267
- #: includes/options_helptexts.php:118
1268
- msgid "This option adds a RSS feed in the html head for the events."
1269
  msgstr ""
1270
 
1271
- #: includes/options_helptexts.php:119
1272
- msgid "There are 2 alternatives to include the RSS feed"
 
1273
  msgstr ""
1274
 
1275
- #: includes/options_helptexts.php:120
1276
- msgid ""
1277
- "The first way is this option to include a link in the html head. This link "
1278
- "will be recognized by browers or feed readers."
1279
  msgstr ""
1280
 
1281
- #: includes/options_helptexts.php:121
1282
  #, php-format
1283
- msgid ""
1284
- "The second way is to include a visible feed link directly in the event list."
1285
- " This can be done by setting the shortcode attribute %1$s to %2$s."
1286
  msgstr ""
1287
 
1288
- #: includes/options_helptexts.php:122
1289
  #, php-format
1290
- msgid "This option is only valid if the setting %1$s is enabled."
 
 
1291
  msgstr ""
1292
 
1293
- #: includes/options_helptexts.php:125
1294
- msgid "Position of the RSS feed link"
1295
  msgstr ""
1296
 
1297
- #: includes/options_helptexts.php:126
1298
- msgid "at the top (above the navigation bar)"
 
1299
  msgstr ""
1300
 
1301
- #: includes/options_helptexts.php:126
1302
- msgid "between navigation bar and events"
 
 
1303
  msgstr ""
1304
 
1305
- #: includes/options_helptexts.php:126
1306
- msgid "at the bottom"
1307
  msgstr ""
1308
 
1309
- #: includes/options_helptexts.php:127
1310
- msgid ""
1311
- "This option specifies the position of the RSS feed link in the event list."
1312
  msgstr ""
1313
 
1314
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1315
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1316
- #, php-format
1317
  msgid ""
1318
- "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1319
- " feed link."
1320
  msgstr ""
1321
 
1322
- #: includes/options_helptexts.php:131
1323
- msgid "Align of the RSS feed link"
1324
  msgstr ""
1325
 
1326
- #: includes/options_helptexts.php:132
1327
- msgid "left"
1328
  msgstr ""
1329
 
1330
- #: includes/options_helptexts.php:132
1331
- msgid "center"
1332
  msgstr ""
1333
 
1334
- #: includes/options_helptexts.php:132
1335
- msgid "right"
1336
  msgstr ""
1337
 
1338
- #: includes/options_helptexts.php:133
 
1339
  msgid ""
1340
- "This option specifies the align of the RSS feed link in the event list."
 
1341
  msgstr ""
1342
 
1343
- #: includes/options_helptexts.php:137
1344
- msgid "Feed link text"
1345
  msgstr ""
1346
 
1347
- #: includes/options_helptexts.php:138
 
 
 
 
 
 
1348
  msgid ""
1349
- "This option specifies the caption of the RSS feed link in the event list."
 
1350
  msgstr ""
1351
 
1352
- #: includes/options_helptexts.php:139
 
 
 
 
 
 
 
 
1353
  msgid ""
1354
- "Insert an empty text to hide any text if you only want to show the rss "
1355
- "image."
1356
  msgstr ""
1357
 
1358
- #: includes/options_helptexts.php:143
1359
- msgid "Feed link image"
1360
  msgstr ""
1361
 
1362
- #: includes/options_helptexts.php:144
1363
- msgid "Show rss image in feed link"
1364
  msgstr ""
1365
 
1366
- #: includes/options_helptexts.php:145
 
 
 
 
 
1367
  msgid ""
1368
- "This option specifies if the an image should be dispayed in the feed link in"
1369
- " front of the text."
1370
  msgstr ""
1371
 
1372
- #: includes/options_helptexts.php:151
1373
  msgid "Event Category handling"
1374
  msgstr ""
1375
 
1376
- #: includes/options_helptexts.php:152
1377
  msgid "Use Post Categories"
1378
  msgstr ""
1379
 
1380
- #: includes/options_helptexts.php:153
1381
  msgid ""
1382
  "Do not maintain seperate categories for the events, and use the existing "
1383
  "post categories instead."
1384
  msgstr ""
1385
 
1386
- #: includes/options_helptexts.php:154
1387
  msgid "Attention"
1388
  msgstr ""
1389
 
1390
- #: includes/options_helptexts.php:155
1391
  msgid ""
1392
  "This option cannot be changed directly, but you can go to the Event Category"
1393
  " switching page from here."
@@ -1513,7 +1530,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:109
1517
  msgid "number"
1518
  msgstr ""
1519
 
@@ -1742,7 +1759,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:112
1746
  msgid "This attribute has no influence if only a single event is shown."
1747
  msgstr ""
1748
 
@@ -1769,38 +1786,40 @@ msgstr ""
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"
1799
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1827,7 @@ msgid ""
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,23 +1836,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1837
  #: includes/widget_helptexts.php:10
1838
  msgid "This option defines the displayed title for the widget."
1839
  msgstr ""
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-11-16 17:29+0100\n"
12
+ "PO-Revision-Date: 2020-11-16 16:29+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"
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
32
  msgid "Event List Settings"
33
  msgstr "活动列表设置"
34
 
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
 
53
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
54
  msgid "General"
55
  msgstr "一般"
56
 
557
  msgstr ""
558
 
559
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
560
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
561
  msgid "Time"
562
  msgstr ""
563
 
564
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
565
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
566
+ #: includes/options_helptexts.php:74
567
  msgid "Location"
568
  msgstr ""
569
 
703
  msgid "Event draft updated."
704
  msgstr ""
705
 
706
+ #: admin/includes/admin-settings.php:73
707
  msgid "Go to Event Category switching page"
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-settings.php:85
711
  msgid "Frontend Settings"
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:86
715
  msgid "Admin Page Settings"
716
  msgstr ""
717
 
718
+ #: admin/includes/admin-settings.php:87
719
  msgid "Feed Settings"
720
  msgstr ""
721
 
722
+ #: admin/includes/admin-settings.php:88
723
  msgid "Category Taxonomy"
724
  msgstr ""
725
 
974
  msgid "All Dates"
975
  msgstr ""
976
 
977
+ #: includes/options_helptexts.php:11
978
  msgid "CSV File to import"
979
  msgstr ""
980
 
981
+ #: includes/options_helptexts.php:13
982
  msgid "Please select the file which contains the event data in CSV format."
983
  msgstr ""
984
 
985
+ #: includes/options_helptexts.php:18
986
  msgid "Used date format"
987
  msgstr ""
988
 
989
+ #: includes/options_helptexts.php:21
990
  msgid ""
991
  "With this option the given date format for event start and end date in the "
992
  "CSV file can be specified."
993
  msgstr ""
994
 
995
+ #: includes/options_helptexts.php:22
996
  #, php-format
997
  msgid ""
998
  "You can use the php date format options given in %1$s, the most important "
999
  "ones are:"
1000
  msgstr ""
1001
 
1002
+ #: includes/options_helptexts.php:24
1003
  msgid "full year representation, with 4 digits"
1004
  msgstr ""
1005
 
1006
+ #: includes/options_helptexts.php:25
1007
  msgid "numeric representation of a month, with leading zeros"
1008
  msgstr ""
1009
 
1010
+ #: includes/options_helptexts.php:26
1011
  msgid "day of the month, 2 digits with leading zeros"
1012
  msgstr ""
1013
 
1014
+ #: includes/options_helptexts.php:28
1015
  msgid ""
1016
  "If the date format in the CSV file does not correspond to the given format, "
1017
  "the import script tries to recognize the date format by itself."
1018
  msgstr ""
1019
 
1020
+ #: includes/options_helptexts.php:29
1021
  msgid ""
1022
  "But this can cause problems or result in wrong dates, so it is recommended "
1023
  "to specify the correct date format here."
1024
  msgstr ""
1025
 
1026
+ #: includes/options_helptexts.php:30
1027
  msgid "Examples"
1028
  msgstr ""
1029
 
1030
+ #: includes/options_helptexts.php:39
1031
  msgid "Text for no events"
1032
  msgstr ""
1033
 
1034
+ #: includes/options_helptexts.php:41
1035
  msgid ""
1036
  "This option defines the displayed text when no events are available for the "
1037
  "selected view."
1038
  msgstr ""
1039
 
1040
+ #: includes/options_helptexts.php:46
1041
  msgid "Multiday filter range"
1042
  msgstr ""
1043
 
1044
+ #: includes/options_helptexts.php:47
1045
  msgid "Use the complete event range in the date filter"
1046
  msgstr ""
1047
 
1048
+ #: includes/options_helptexts.php:49
1049
  msgid ""
1050
  "This option defines if the complete range of a multiday event shall be "
1051
  "considered in the date filter."
1052
  msgstr ""
1053
 
1054
+ #: includes/options_helptexts.php:50
1055
  msgid ""
1056
  "If disabled, only the start day of an event is considered in the filter."
1057
  msgstr ""
1058
 
1059
+ #: includes/options_helptexts.php:51
1060
  msgid ""
1061
  "For an example multiday event which started yesterday and ends tomorrow this"
1062
  " means, that it is displayed in umcoming dates when this option is enabled, "
1063
  "but it is hidden when the option is disabled."
1064
  msgstr ""
1065
 
1066
+ #: includes/options_helptexts.php:56
1067
  msgid "Date display"
1068
  msgstr ""
1069
 
1070
+ #: includes/options_helptexts.php:57
1071
  msgid "Show the date only once per day"
1072
  msgstr ""
1073
 
1074
+ #: includes/options_helptexts.php:59
1075
  msgid ""
1076
  "With this option enabled the date is only displayed once per day if more "
1077
  "than one event is available on the same day."
1078
  msgstr ""
1079
 
1080
+ #: includes/options_helptexts.php:60
1081
  msgid ""
1082
  "If enabled, the events are ordered in a different way (end date before start"
1083
  " time) to allow using the same date for as much events as possible."
1084
  msgstr ""
1085
 
1086
+ #: includes/options_helptexts.php:65
1087
  msgid "HTML tags"
1088
  msgstr ""
1089
 
1090
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1091
  #, php-format
1092
  msgid "Allow HTML tags in the event field \"%1$s\""
1093
  msgstr ""
1094
 
1095
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1096
  #, php-format
1097
  msgid ""
1098
  "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1099
  msgstr ""
1100
 
1101
+ #: includes/options_helptexts.php:79
1102
  msgid "Preferred language file"
1103
  msgstr ""
1104
 
1105
+ #: includes/options_helptexts.php:80
1106
  msgid "Load translations from general language directory first"
1107
  msgstr ""
1108
 
1109
+ #: includes/options_helptexts.php:82
1110
  #, php-format
1111
  msgid ""
1112
  "The default is to load the %1$s translation file from the plugin language "
1113
  "directory first (%2$s)."
1114
  msgstr ""
1115
 
1116
+ #: includes/options_helptexts.php:83
1117
  #, php-format
1118
  msgid ""
1119
  "If you want to load your own language file from the general language "
1121
  "language directory, you have to enable this option."
1122
  msgstr ""
1123
 
1124
+ #: includes/options_helptexts.php:89
1125
  msgid "Events permalink slug"
1126
  msgstr ""
1127
 
1128
+ #: includes/options_helptexts.php:90
1129
  msgid ""
1130
  "With this option the slug for the events permalink URLs can be defined."
1131
  msgstr ""
1132
 
1133
+ #: includes/options_helptexts.php:95
1134
  msgid "Text for \"Show content\""
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:96
1138
  msgid ""
1139
  "With this option the displayed text for the link to show the event content "
1140
  "can be changed, when collapsing is enabled."
1141
  msgstr ""
1142
 
1143
+ #: includes/options_helptexts.php:101
1144
  msgid "Text for \"Hide content\""
1145
  msgstr ""
1146
 
1147
+ #: includes/options_helptexts.php:102
1148
  msgid ""
1149
  "With this option the displayed text for the link to hide the event content "
1150
  "can be changed, when collapsing is enabled."
1151
  msgstr ""
1152
 
1153
+ #: includes/options_helptexts.php:107
1154
  msgid "Disable CSS file"
1155
  msgstr ""
1156
 
1157
+ #: includes/options_helptexts.php:108
1158
  #, php-format
1159
  msgid "Disable the %1$s file."
1160
  msgstr ""
1161
 
1162
+ #: includes/options_helptexts.php:110
1163
  #, php-format
1164
  msgid "With this option you can disable the inclusion of the %1$s file."
1165
  msgstr ""
1166
 
1167
+ #: includes/options_helptexts.php:111
1168
  msgid ""
1169
  "This normally only make sense if you have css conflicts with your theme and "
1170
  "want to set all required css styles somewhere else (e.g. in the theme css)."
1171
  msgstr ""
1172
 
1173
+ #: includes/options_helptexts.php:117
1174
  msgid "Date format in edit form"
1175
  msgstr ""
1176
 
1177
+ #: includes/options_helptexts.php:119
1178
  msgid ""
1179
  "This option sets the displayed date format for the event date fields in the "
1180
  "event new / edit form."
1181
  msgstr ""
1182
 
1183
+ #: includes/options_helptexts.php:120
1184
  msgid "The default is an empty string to use the Wordpress standard setting."
1185
  msgstr ""
1186
 
1187
+ #: includes/options_helptexts.php:121
1188
  #, php-format
1189
  msgid ""
1190
  "All available options to specify the date format can be found %1$shere%2$s."
1191
  msgstr ""
1192
 
1193
+ #: includes/options_helptexts.php:127
1194
  msgid "Enable RSS feed"
1195
  msgstr ""
1196
 
1197
+ #: includes/options_helptexts.php:128
1198
+ msgid "Enable support for the event RSS feed"
1199
  msgstr ""
1200
 
1201
+ #: includes/options_helptexts.php:130
1202
+ msgid ""
1203
+ "This option activates the RSS feed for the events and adds a feed link in "
1204
+ "the html head."
1205
  msgstr ""
1206
 
1207
+ #: includes/options_helptexts.php:131
1208
  msgid ""
1209
  "You have to enable this option if you want to use one of the RSS feed "
1210
  "features."
1211
  msgstr ""
1212
 
1213
+ #: includes/options_helptexts.php:136
1214
+ msgid "Enable iCal feed"
1215
  msgstr ""
1216
 
1217
+ #: includes/options_helptexts.php:137
1218
+ msgid "Enable support for the event iCal feed"
 
1219
  msgstr ""
1220
 
1221
+ #: includes/options_helptexts.php:139
1222
+ msgid "This option activates the iCal feed for events."
 
 
 
1223
  msgstr ""
1224
 
1225
+ #: includes/options_helptexts.php:140
1226
+ msgid ""
1227
+ "You have to enable this option if you want to use one of the iCal features."
1228
  msgstr ""
1229
 
1230
+ #: includes/options_helptexts.php:145
1231
+ msgid "Position of the RSS feed link"
 
1232
  msgstr ""
1233
 
1234
+ #: includes/options_helptexts.php:146
1235
+ msgid "at the top (above the navigation bar)"
 
 
1236
  msgstr ""
1237
 
1238
+ #: includes/options_helptexts.php:146
1239
+ msgid "between navigation bar and events"
1240
  msgstr ""
1241
 
1242
+ #: includes/options_helptexts.php:146
1243
+ msgid "at the bottom"
1244
  msgstr ""
1245
 
1246
+ #: includes/options_helptexts.php:147
1247
  msgid ""
1248
+ "This option specifies the position of the RSS feed link in the event list."
1249
  msgstr ""
1250
 
1251
+ #: includes/options_helptexts.php:152
1252
+ msgid "Align of the RSS feed link"
1253
  msgstr ""
1254
 
1255
+ #: includes/options_helptexts.php:153
1256
+ msgid "left"
1257
  msgstr ""
1258
 
1259
+ #: includes/options_helptexts.php:153
1260
+ msgid "center"
1261
  msgstr ""
1262
 
1263
+ #: includes/options_helptexts.php:153
1264
+ msgid "right"
1265
  msgstr ""
1266
 
1267
+ #: includes/options_helptexts.php:154
1268
+ msgid ""
1269
+ "This option specifies the align of the RSS feed link in the event list."
1270
  msgstr ""
1271
 
1272
+ #: includes/options_helptexts.php:159
1273
+ msgid "RSS feed name"
 
 
1274
  msgstr ""
1275
 
1276
+ #: includes/options_helptexts.php:161
1277
  #, php-format
1278
+ msgid "This option sets the RSS feed name. The default value is %1$s."
 
 
1279
  msgstr ""
1280
 
1281
+ #: includes/options_helptexts.php:162
1282
  #, php-format
1283
+ msgid ""
1284
+ "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
1285
+ "enabled)."
1286
  msgstr ""
1287
 
1288
+ #: includes/options_helptexts.php:167
1289
+ msgid "RSS feed Description"
1290
  msgstr ""
1291
 
1292
+ #: includes/options_helptexts.php:169
1293
+ #, php-format
1294
+ msgid "This options set the RSS feed description. The default value is %1$s."
1295
  msgstr ""
1296
 
1297
+ #: includes/options_helptexts.php:170
1298
+ msgid ""
1299
+ "This description will be used in the title for the feed link in the html "
1300
+ "head and for the description in the feed itself."
1301
  msgstr ""
1302
 
1303
+ #: includes/options_helptexts.php:175
1304
+ msgid "RSS feed events"
1305
  msgstr ""
1306
 
1307
+ #: includes/options_helptexts.php:176
1308
+ msgid "Only show upcoming events in the RSS feed"
 
1309
  msgstr ""
1310
 
1311
+ #: includes/options_helptexts.php:178
 
 
1312
  msgid ""
1313
+ "If this option is enabled only the upcoming events are listed in the RSS "
1314
+ "feed."
1315
  msgstr ""
1316
 
1317
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1318
+ msgid "If disabled, all events (upcoming and past) will be listed."
1319
  msgstr ""
1320
 
1321
+ #: includes/options_helptexts.php:184
1322
+ msgid "RSS link text"
1323
  msgstr ""
1324
 
1325
+ #: includes/options_helptexts.php:186
1326
+ msgid "This option sets the caption of the RSS feed link in the event list."
1327
  msgstr ""
1328
 
1329
+ #: includes/options_helptexts.php:187
1330
+ msgid "Use an empty text to only show the rss image."
1331
  msgstr ""
1332
 
1333
+ #: includes/options_helptexts.php:188
1334
+ #, php-format
1335
  msgid ""
1336
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1337
+ " RSS feed link."
1338
  msgstr ""
1339
 
1340
+ #: includes/options_helptexts.php:193
1341
+ msgid "iCal feed name"
1342
  msgstr ""
1343
 
1344
+ #: includes/options_helptexts.php:195
1345
+ #, php-format
1346
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1347
+ msgstr ""
1348
+
1349
+ #: includes/options_helptexts.php:196
1350
+ #, php-format
1351
  msgid ""
1352
+ "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1353
+ "permalinks enabled)."
1354
  msgstr ""
1355
 
1356
+ #: includes/options_helptexts.php:201
1357
+ msgid "iCal feed events"
1358
+ msgstr ""
1359
+
1360
+ #: includes/options_helptexts.php:202
1361
+ msgid "Only show upcoming events in the iCal feed"
1362
+ msgstr ""
1363
+
1364
+ #: includes/options_helptexts.php:204
1365
  msgid ""
1366
+ "If this option is enabled only the upcoming events are listed in the iCal "
1367
+ "file."
1368
  msgstr ""
1369
 
1370
+ #: includes/options_helptexts.php:210
1371
+ msgid "iCal link text"
1372
  msgstr ""
1373
 
1374
+ #: includes/options_helptexts.php:212
1375
+ msgid "This option sets the iCal link text in the event list."
1376
  msgstr ""
1377
 
1378
+ #: includes/options_helptexts.php:213
1379
+ msgid "Use an empty text to only show the iCal image."
1380
+ msgstr ""
1381
+
1382
+ #: includes/options_helptexts.php:214
1383
+ #, php-format
1384
  msgid ""
1385
+ "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1386
+ " iCal feed link."
1387
  msgstr ""
1388
 
1389
+ #: includes/options_helptexts.php:221
1390
  msgid "Event Category handling"
1391
  msgstr ""
1392
 
1393
+ #: includes/options_helptexts.php:222
1394
  msgid "Use Post Categories"
1395
  msgstr ""
1396
 
1397
+ #: includes/options_helptexts.php:224
1398
  msgid ""
1399
  "Do not maintain seperate categories for the events, and use the existing "
1400
  "post categories instead."
1401
  msgstr ""
1402
 
1403
+ #: includes/options_helptexts.php:225
1404
  msgid "Attention"
1405
  msgstr ""
1406
 
1407
+ #: includes/options_helptexts.php:226
1408
  msgid ""
1409
  "This option cannot be changed directly, but you can go to the Event Category"
1410
  " switching page from here."
1530
  #: includes/sc_event-list_helptexts.php:33
1531
  #: includes/sc_event-list_helptexts.php:74
1532
  #: includes/sc_event-list_helptexts.php:89
1533
+ #: includes/sc_event-list_helptexts.php:111
1534
  msgid "number"
1535
  msgstr ""
1536
 
1759
 
1760
  #: includes/sc_event-list_helptexts.php:77
1761
  #: includes/sc_event-list_helptexts.php:92
1762
+ #: includes/sc_event-list_helptexts.php:114
1763
  msgid "This attribute has no influence if only a single event is shown."
1764
  msgstr ""
1765
 
1786
 
1787
  #: includes/sc_event-list_helptexts.php:100
1788
  msgid ""
1789
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1790
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1791
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1792
  msgstr ""
1793
 
1794
  #: includes/sc_event-list_helptexts.php:105
1795
  msgid ""
1796
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1797
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1798
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1799
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1800
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1801
  msgstr ""
1802
 
1803
+ #: includes/sc_event-list_helptexts.php:112
1804
  msgid ""
1805
  "This attribute specifies if the content should be truncate to the given "
1806
  "number of characters in the event list."
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:113
1810
  #, php-format
1811
  msgid "With the standard value %1$s the full text is displayed."
1812
  msgstr ""
1813
 
1814
+ #: includes/sc_event-list_helptexts.php:117
1815
  msgid ""
1816
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1817
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1818
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1819
  "\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."
1820
  msgstr ""
1821
 
1822
+ #: includes/sc_event-list_helptexts.php:123
1823
  msgid ""
1824
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1825
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1827
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1828
  msgstr ""
1829
 
1830
+ #: includes/sc_event-list_helptexts.php:129
1831
  msgid ""
1832
  "This attribute specifies if a rss feed link should be added.<br />\n"
1833
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1836
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1837
  msgstr ""
1838
 
1839
+ #: includes/sc_event-list_helptexts.php:136
1840
+ msgid ""
1841
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1842
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1843
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1844
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1845
+ msgstr ""
1846
+
1847
+ #: includes/sc_event-list_helptexts.php:142
1848
  msgid ""
1849
  "This attribute specifies the page or post url for event links.<br />\n"
1850
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1851
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1852
  msgstr ""
1853
 
1854
+ #: includes/sc_event-list_helptexts.php:149
1855
  msgid ""
1856
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1857
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1858
  msgstr ""
1859
 
1860
+ #: includes/sc_event-list.php:145
1861
  msgid "Event Information:"
1862
  msgstr ""
1863
 
1864
+ #: includes/sc_event-list.php:391
1865
+ msgid "Link to RSS feed"
1866
+ msgstr ""
1867
+
1868
+ #: includes/sc_event-list.php:399
1869
+ msgid "Link to iCal feed"
1870
+ msgstr ""
1871
+
1872
  #: includes/widget_helptexts.php:10
1873
  msgid "This option defines the displayed title for the widget."
1874
  msgstr ""
languages/event-list.pot CHANGED
@@ -6,7 +6,7 @@
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"
@@ -23,7 +23,7 @@ msgstr ""
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
 
@@ -46,7 +46,7 @@ msgid_plural "%s Events"
46
  msgstr[0] ""
47
  msgstr[1] ""
48
 
49
- #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
50
  msgid "General"
51
  msgstr ""
52
 
@@ -509,13 +509,13 @@ msgid "End Date"
509
  msgstr ""
510
 
511
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
512
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:53
513
  msgid "Time"
514
  msgstr ""
515
 
516
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
517
- #: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
518
- #: includes/options_helptexts.php:58
519
  msgid "Location"
520
  msgstr ""
521
 
@@ -653,23 +653,23 @@ msgstr ""
653
  msgid "Event draft updated."
654
  msgstr ""
655
 
656
- #: admin/includes/admin-settings.php:71
657
  msgid "Go to Event Category switching page"
658
  msgstr ""
659
 
660
- #: admin/includes/admin-settings.php:83
661
  msgid "Frontend Settings"
662
  msgstr ""
663
 
664
- #: admin/includes/admin-settings.php:84
665
  msgid "Admin Page Settings"
666
  msgstr ""
667
 
668
- #: admin/includes/admin-settings.php:85
669
  msgid "Feed Settings"
670
  msgstr ""
671
 
672
- #: admin/includes/admin-settings.php:86
673
  msgid "Category Taxonomy"
674
  msgstr ""
675
 
@@ -914,362 +914,378 @@ msgstr ""
914
  msgid "All Dates"
915
  msgstr ""
916
 
917
- #: includes/options_helptexts.php:10
918
  msgid "CSV File to import"
919
  msgstr ""
920
 
921
- #: includes/options_helptexts.php:12
922
  msgid "Please select the file which contains the event data in CSV format."
923
  msgstr ""
924
 
925
- #: includes/options_helptexts.php:15
926
  msgid "Used date format"
927
  msgstr ""
928
 
929
- #: includes/options_helptexts.php:17
930
  msgid "With this option the given date format for event start and end date in the CSV file can be specified."
931
  msgstr ""
932
 
933
- #: includes/options_helptexts.php:18
934
  #, php-format
935
  msgid "You can use the php date format options given in %1$s, the most important ones are:"
936
  msgstr ""
937
 
938
- #: includes/options_helptexts.php:20
939
  msgid "full year representation, with 4 digits"
940
  msgstr ""
941
 
942
- #: includes/options_helptexts.php:21
943
  msgid "numeric representation of a month, with leading zeros"
944
  msgstr ""
945
 
946
- #: includes/options_helptexts.php:22
947
  msgid "day of the month, 2 digits with leading zeros"
948
  msgstr ""
949
 
950
- #: includes/options_helptexts.php:24
951
  msgid "If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself."
952
  msgstr ""
953
 
954
- #: includes/options_helptexts.php:25
955
  msgid "But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here."
956
  msgstr ""
957
 
958
- #: includes/options_helptexts.php:26
959
  msgid "Examples"
960
  msgstr ""
961
 
962
- #: includes/options_helptexts.php:33
963
  msgid "Text for no events"
964
  msgstr ""
965
 
966
- #: includes/options_helptexts.php:35
967
  msgid "This option defines the displayed text when no events are available for the selected view."
968
  msgstr ""
969
 
970
- #: includes/options_helptexts.php:38
971
  msgid "Multiday filter range"
972
  msgstr ""
973
 
974
- #: includes/options_helptexts.php:39
975
  msgid "Use the complete event range in the date filter"
976
  msgstr ""
977
 
978
- #: includes/options_helptexts.php:40
979
  msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
980
  msgstr ""
981
 
982
- #: includes/options_helptexts.php:41
983
  msgid "If disabled, only the start day of an event is considered in the filter."
984
  msgstr ""
985
 
986
- #: includes/options_helptexts.php:42
987
  msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
988
  msgstr ""
989
 
990
- #: includes/options_helptexts.php:45
991
  msgid "Date display"
992
  msgstr ""
993
 
994
- #: includes/options_helptexts.php:46
995
  msgid "Show the date only once per day"
996
  msgstr ""
997
 
998
- #: includes/options_helptexts.php:47
999
  msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
1000
  msgstr ""
1001
 
1002
- #: includes/options_helptexts.php:48
1003
  msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
1004
  msgstr ""
1005
 
1006
- #: includes/options_helptexts.php:51
1007
  msgid "HTML tags"
1008
  msgstr ""
1009
 
1010
- #: includes/options_helptexts.php:52 includes/options_helptexts.php:57
1011
  #, php-format
1012
  msgid "Allow HTML tags in the event field \"%1$s\""
1013
  msgstr ""
1014
 
1015
- #: includes/options_helptexts.php:53 includes/options_helptexts.php:58
1016
  #, php-format
1017
  msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1018
  msgstr ""
1019
 
1020
- #: includes/options_helptexts.php:61
1021
  msgid "Preferred language file"
1022
  msgstr ""
1023
 
1024
- #: includes/options_helptexts.php:62
1025
  msgid "Load translations from general language directory first"
1026
  msgstr ""
1027
 
1028
- #: includes/options_helptexts.php:63
1029
  #, php-format
1030
  msgid "The default is to load the %1$s translation file from the plugin language directory first (%2$s)."
1031
  msgstr ""
1032
 
1033
- #: includes/options_helptexts.php:64
1034
  #, php-format
1035
  msgid "If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option."
1036
  msgstr ""
1037
 
1038
- #: includes/options_helptexts.php:68
1039
  msgid "Events permalink slug"
1040
  msgstr ""
1041
 
1042
- #: includes/options_helptexts.php:69
1043
  msgid "With this option the slug for the events permalink URLs can be defined."
1044
  msgstr ""
1045
 
1046
- #: includes/options_helptexts.php:72
1047
  msgid "Text for \"Show content\""
1048
  msgstr ""
1049
 
1050
- #: includes/options_helptexts.php:73
1051
  msgid "With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled."
1052
  msgstr ""
1053
 
1054
- #: includes/options_helptexts.php:76
1055
  msgid "Text for \"Hide content\""
1056
  msgstr ""
1057
 
1058
- #: includes/options_helptexts.php:77
1059
  msgid "With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled."
1060
  msgstr ""
1061
 
1062
- #: includes/options_helptexts.php:80
1063
  msgid "Disable CSS file"
1064
  msgstr ""
1065
 
1066
- #: includes/options_helptexts.php:81
1067
  #, php-format
1068
  msgid "Disable the %1$s file."
1069
  msgstr ""
1070
 
1071
- #: includes/options_helptexts.php:82
1072
  #, php-format
1073
  msgid "With this option you can disable the inclusion of the %1$s file."
1074
  msgstr ""
1075
 
1076
- #: includes/options_helptexts.php:83
1077
  msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
1078
  msgstr ""
1079
 
1080
- #: includes/options_helptexts.php:87
1081
  msgid "Date format in edit form"
1082
  msgstr ""
1083
 
1084
- #: includes/options_helptexts.php:88
1085
  msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
1086
  msgstr ""
1087
 
1088
- #: includes/options_helptexts.php:89
1089
  msgid "The default is an empty string to use the Wordpress standard setting."
1090
  msgstr ""
1091
 
1092
- #: includes/options_helptexts.php:90
1093
  #, php-format
1094
  msgid "All available options to specify the date format can be found %1$shere%2$s."
1095
  msgstr ""
1096
 
1097
- #: includes/options_helptexts.php:94 includes/options_helptexts.php:122
1098
  msgid "Enable RSS feed"
1099
  msgstr ""
1100
 
1101
- #: includes/options_helptexts.php:95
1102
- msgid "Enable support for an event RSS feed"
1103
  msgstr ""
1104
 
1105
- #: includes/options_helptexts.php:96
1106
- msgid "This option activates a RSS feed for the events."
1107
  msgstr ""
1108
 
1109
- #: includes/options_helptexts.php:97
1110
  msgid "You have to enable this option if you want to use one of the RSS feed features."
1111
  msgstr ""
1112
 
1113
- #: includes/options_helptexts.php:100
1114
- msgid "Feed name"
1115
  msgstr ""
1116
 
1117
- #: includes/options_helptexts.php:101
1118
- #, php-format
1119
- msgid "This option sets the feed name. The default value is %1$s."
1120
  msgstr ""
1121
 
1122
- #: includes/options_helptexts.php:102
1123
- #, php-format
1124
- msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
1125
  msgstr ""
1126
 
1127
- #: includes/options_helptexts.php:105
1128
- msgid "Feed Description"
1129
  msgstr ""
1130
 
1131
- #: includes/options_helptexts.php:106
1132
- #, php-format
1133
- msgid "This options set the feed description. The default value is %1$s."
1134
  msgstr ""
1135
 
1136
- #: includes/options_helptexts.php:107
1137
- msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1138
  msgstr ""
1139
 
1140
- #: includes/options_helptexts.php:110
1141
- msgid "Listed events"
1142
  msgstr ""
1143
 
1144
- #: includes/options_helptexts.php:111
1145
- msgid "Only show upcoming events in feed"
1146
  msgstr ""
1147
 
1148
- #: includes/options_helptexts.php:112
1149
- msgid "If this option is enabled only the upcoming events are listed in the feed."
1150
  msgstr ""
1151
 
1152
- #: includes/options_helptexts.php:113
1153
- msgid "If disabled all events (upcoming and past) will be listed."
1154
  msgstr ""
1155
 
1156
- #: includes/options_helptexts.php:116
1157
- msgid "Add RSS feed link in head"
1158
  msgstr ""
1159
 
1160
- #: includes/options_helptexts.php:117
1161
- msgid "Add RSS feed link in the html head"
1162
  msgstr ""
1163
 
1164
- #: includes/options_helptexts.php:118
1165
- msgid "This option adds a RSS feed in the html head for the events."
1166
  msgstr ""
1167
 
1168
- #: includes/options_helptexts.php:119
1169
- msgid "There are 2 alternatives to include the RSS feed"
1170
  msgstr ""
1171
 
1172
- #: includes/options_helptexts.php:120
1173
- msgid "The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers."
1174
  msgstr ""
1175
 
1176
- #: includes/options_helptexts.php:121
1177
  #, php-format
1178
- msgid "The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s."
1179
  msgstr ""
1180
 
1181
- #: includes/options_helptexts.php:122
1182
  #, php-format
1183
- msgid "This option is only valid if the setting %1$s is enabled."
1184
  msgstr ""
1185
 
1186
- #: includes/options_helptexts.php:125
1187
- msgid "Position of the RSS feed link"
1188
  msgstr ""
1189
 
1190
- #: includes/options_helptexts.php:126
1191
- msgid "at the top (above the navigation bar)"
 
1192
  msgstr ""
1193
 
1194
- #: includes/options_helptexts.php:126
1195
- msgid "between navigation bar and events"
1196
  msgstr ""
1197
 
1198
- #: includes/options_helptexts.php:126
1199
- msgid "at the bottom"
1200
  msgstr ""
1201
 
1202
- #: includes/options_helptexts.php:127
1203
- msgid "This option specifies the position of the RSS feed link in the event list."
1204
  msgstr ""
1205
 
1206
- #: includes/options_helptexts.php:128 includes/options_helptexts.php:134
1207
- #: includes/options_helptexts.php:140 includes/options_helptexts.php:146
1208
- #, php-format
1209
- msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link."
1210
  msgstr ""
1211
 
1212
- #: includes/options_helptexts.php:131
1213
- msgid "Align of the RSS feed link"
1214
  msgstr ""
1215
 
1216
- #: includes/options_helptexts.php:132
1217
- msgid "left"
1218
  msgstr ""
1219
 
1220
- #: includes/options_helptexts.php:132
1221
- msgid "center"
1222
  msgstr ""
1223
 
1224
- #: includes/options_helptexts.php:132
1225
- msgid "right"
1226
  msgstr ""
1227
 
1228
- #: includes/options_helptexts.php:133
1229
- msgid "This option specifies the align of the RSS feed link in the event list."
 
1230
  msgstr ""
1231
 
1232
- #: includes/options_helptexts.php:137
1233
- msgid "Feed link text"
1234
  msgstr ""
1235
 
1236
- #: includes/options_helptexts.php:138
1237
- msgid "This option specifies the caption of the RSS feed link in the event list."
 
1238
  msgstr ""
1239
 
1240
- #: includes/options_helptexts.php:139
1241
- msgid "Insert an empty text to hide any text if you only want to show the rss image."
 
1242
  msgstr ""
1243
 
1244
- #: includes/options_helptexts.php:143
1245
- msgid "Feed link image"
1246
  msgstr ""
1247
 
1248
- #: includes/options_helptexts.php:144
1249
- msgid "Show rss image in feed link"
1250
  msgstr ""
1251
 
1252
- #: includes/options_helptexts.php:145
1253
- msgid "This option specifies if the an image should be dispayed in the feed link in front of the text."
1254
  msgstr ""
1255
 
1256
- #: includes/options_helptexts.php:151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1257
  msgid "Event Category handling"
1258
  msgstr ""
1259
 
1260
- #: includes/options_helptexts.php:152
1261
  msgid "Use Post Categories"
1262
  msgstr ""
1263
 
1264
- #: includes/options_helptexts.php:153
1265
  msgid "Do not maintain seperate categories for the events, and use the existing post categories instead."
1266
  msgstr ""
1267
 
1268
- #: includes/options_helptexts.php:154
1269
  msgid "Attention"
1270
  msgstr ""
1271
 
1272
- #: includes/options_helptexts.php:155
1273
  msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here."
1274
  msgstr ""
1275
 
@@ -1369,7 +1385,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:109
1373
  msgid "number"
1374
  msgstr ""
1375
 
@@ -1564,7 +1580,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:112
1568
  msgid "This attribute has no influence if only a single event is shown."
1569
  msgstr ""
1570
 
@@ -1591,36 +1607,38 @@ msgstr ""
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"
1619
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<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,7 +1646,7 @@ msgid ""
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,23 +1655,39 @@ msgid ""
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
 
 
 
 
 
 
 
 
 
1657
  #: includes/widget_helptexts.php:10
1658
  msgid "This option defines the displayed title for the widget."
1659
  msgstr ""
6
  msgid ""
7
  msgstr ""
8
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
9
+ "POT-Creation-Date: 2020-11-16 17:29+0100\n"
10
  "Language: en\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
23
  msgid "Upgrade of plugin %1$s successful"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:105 admin/includes/admin-settings.php:67
27
  msgid "Event List Settings"
28
  msgstr ""
29
 
46
  msgstr[0] ""
47
  msgstr[1] ""
48
 
49
+ #: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:84
50
  msgid "General"
51
  msgstr ""
52
 
509
  msgstr ""
510
 
511
  #: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
512
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:67
513
  msgid "Time"
514
  msgstr ""
515
 
516
  #: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
517
+ #: admin/includes/admin-new.php:93 includes/options_helptexts.php:73
518
+ #: includes/options_helptexts.php:74
519
  msgid "Location"
520
  msgstr ""
521
 
653
  msgid "Event draft updated."
654
  msgstr ""
655
 
656
+ #: admin/includes/admin-settings.php:73
657
  msgid "Go to Event Category switching page"
658
  msgstr ""
659
 
660
+ #: admin/includes/admin-settings.php:85
661
  msgid "Frontend Settings"
662
  msgstr ""
663
 
664
+ #: admin/includes/admin-settings.php:86
665
  msgid "Admin Page Settings"
666
  msgstr ""
667
 
668
+ #: admin/includes/admin-settings.php:87
669
  msgid "Feed Settings"
670
  msgstr ""
671
 
672
+ #: admin/includes/admin-settings.php:88
673
  msgid "Category Taxonomy"
674
  msgstr ""
675
 
914
  msgid "All Dates"
915
  msgstr ""
916
 
917
+ #: includes/options_helptexts.php:11
918
  msgid "CSV File to import"
919
  msgstr ""
920
 
921
+ #: includes/options_helptexts.php:13
922
  msgid "Please select the file which contains the event data in CSV format."
923
  msgstr ""
924
 
925
+ #: includes/options_helptexts.php:18
926
  msgid "Used date format"
927
  msgstr ""
928
 
929
+ #: includes/options_helptexts.php:21
930
  msgid "With this option the given date format for event start and end date in the CSV file can be specified."
931
  msgstr ""
932
 
933
+ #: includes/options_helptexts.php:22
934
  #, php-format
935
  msgid "You can use the php date format options given in %1$s, the most important ones are:"
936
  msgstr ""
937
 
938
+ #: includes/options_helptexts.php:24
939
  msgid "full year representation, with 4 digits"
940
  msgstr ""
941
 
942
+ #: includes/options_helptexts.php:25
943
  msgid "numeric representation of a month, with leading zeros"
944
  msgstr ""
945
 
946
+ #: includes/options_helptexts.php:26
947
  msgid "day of the month, 2 digits with leading zeros"
948
  msgstr ""
949
 
950
+ #: includes/options_helptexts.php:28
951
  msgid "If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself."
952
  msgstr ""
953
 
954
+ #: includes/options_helptexts.php:29
955
  msgid "But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here."
956
  msgstr ""
957
 
958
+ #: includes/options_helptexts.php:30
959
  msgid "Examples"
960
  msgstr ""
961
 
962
+ #: includes/options_helptexts.php:39
963
  msgid "Text for no events"
964
  msgstr ""
965
 
966
+ #: includes/options_helptexts.php:41
967
  msgid "This option defines the displayed text when no events are available for the selected view."
968
  msgstr ""
969
 
970
+ #: includes/options_helptexts.php:46
971
  msgid "Multiday filter range"
972
  msgstr ""
973
 
974
+ #: includes/options_helptexts.php:47
975
  msgid "Use the complete event range in the date filter"
976
  msgstr ""
977
 
978
+ #: includes/options_helptexts.php:49
979
  msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
980
  msgstr ""
981
 
982
+ #: includes/options_helptexts.php:50
983
  msgid "If disabled, only the start day of an event is considered in the filter."
984
  msgstr ""
985
 
986
+ #: includes/options_helptexts.php:51
987
  msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
988
  msgstr ""
989
 
990
+ #: includes/options_helptexts.php:56
991
  msgid "Date display"
992
  msgstr ""
993
 
994
+ #: includes/options_helptexts.php:57
995
  msgid "Show the date only once per day"
996
  msgstr ""
997
 
998
+ #: includes/options_helptexts.php:59
999
  msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
1000
  msgstr ""
1001
 
1002
+ #: includes/options_helptexts.php:60
1003
  msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
1004
  msgstr ""
1005
 
1006
+ #: includes/options_helptexts.php:65
1007
  msgid "HTML tags"
1008
  msgstr ""
1009
 
1010
+ #: includes/options_helptexts.php:66 includes/options_helptexts.php:73
1011
  #, php-format
1012
  msgid "Allow HTML tags in the event field \"%1$s\""
1013
  msgstr ""
1014
 
1015
+ #: includes/options_helptexts.php:67 includes/options_helptexts.php:74
1016
  #, php-format
1017
  msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
1018
  msgstr ""
1019
 
1020
+ #: includes/options_helptexts.php:79
1021
  msgid "Preferred language file"
1022
  msgstr ""
1023
 
1024
+ #: includes/options_helptexts.php:80
1025
  msgid "Load translations from general language directory first"
1026
  msgstr ""
1027
 
1028
+ #: includes/options_helptexts.php:82
1029
  #, php-format
1030
  msgid "The default is to load the %1$s translation file from the plugin language directory first (%2$s)."
1031
  msgstr ""
1032
 
1033
+ #: includes/options_helptexts.php:83
1034
  #, php-format
1035
  msgid "If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option."
1036
  msgstr ""
1037
 
1038
+ #: includes/options_helptexts.php:89
1039
  msgid "Events permalink slug"
1040
  msgstr ""
1041
 
1042
+ #: includes/options_helptexts.php:90
1043
  msgid "With this option the slug for the events permalink URLs can be defined."
1044
  msgstr ""
1045
 
1046
+ #: includes/options_helptexts.php:95
1047
  msgid "Text for \"Show content\""
1048
  msgstr ""
1049
 
1050
+ #: includes/options_helptexts.php:96
1051
  msgid "With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled."
1052
  msgstr ""
1053
 
1054
+ #: includes/options_helptexts.php:101
1055
  msgid "Text for \"Hide content\""
1056
  msgstr ""
1057
 
1058
+ #: includes/options_helptexts.php:102
1059
  msgid "With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled."
1060
  msgstr ""
1061
 
1062
+ #: includes/options_helptexts.php:107
1063
  msgid "Disable CSS file"
1064
  msgstr ""
1065
 
1066
+ #: includes/options_helptexts.php:108
1067
  #, php-format
1068
  msgid "Disable the %1$s file."
1069
  msgstr ""
1070
 
1071
+ #: includes/options_helptexts.php:110
1072
  #, php-format
1073
  msgid "With this option you can disable the inclusion of the %1$s file."
1074
  msgstr ""
1075
 
1076
+ #: includes/options_helptexts.php:111
1077
  msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
1078
  msgstr ""
1079
 
1080
+ #: includes/options_helptexts.php:117
1081
  msgid "Date format in edit form"
1082
  msgstr ""
1083
 
1084
+ #: includes/options_helptexts.php:119
1085
  msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
1086
  msgstr ""
1087
 
1088
+ #: includes/options_helptexts.php:120
1089
  msgid "The default is an empty string to use the Wordpress standard setting."
1090
  msgstr ""
1091
 
1092
+ #: includes/options_helptexts.php:121
1093
  #, php-format
1094
  msgid "All available options to specify the date format can be found %1$shere%2$s."
1095
  msgstr ""
1096
 
1097
+ #: includes/options_helptexts.php:127
1098
  msgid "Enable RSS feed"
1099
  msgstr ""
1100
 
1101
+ #: includes/options_helptexts.php:128
1102
+ msgid "Enable support for the event RSS feed"
1103
  msgstr ""
1104
 
1105
+ #: includes/options_helptexts.php:130
1106
+ msgid "This option activates the RSS feed for the events and adds a feed link in the html head."
1107
  msgstr ""
1108
 
1109
+ #: includes/options_helptexts.php:131
1110
  msgid "You have to enable this option if you want to use one of the RSS feed features."
1111
  msgstr ""
1112
 
1113
+ #: includes/options_helptexts.php:136
1114
+ msgid "Enable iCal feed"
1115
  msgstr ""
1116
 
1117
+ #: includes/options_helptexts.php:137
1118
+ msgid "Enable support for the event iCal feed"
 
1119
  msgstr ""
1120
 
1121
+ #: includes/options_helptexts.php:139
1122
+ msgid "This option activates the iCal feed for events."
 
1123
  msgstr ""
1124
 
1125
+ #: includes/options_helptexts.php:140
1126
+ msgid "You have to enable this option if you want to use one of the iCal features."
1127
  msgstr ""
1128
 
1129
+ #: includes/options_helptexts.php:145
1130
+ msgid "Position of the RSS feed link"
 
1131
  msgstr ""
1132
 
1133
+ #: includes/options_helptexts.php:146
1134
+ msgid "at the top (above the navigation bar)"
1135
  msgstr ""
1136
 
1137
+ #: includes/options_helptexts.php:146
1138
+ msgid "between navigation bar and events"
1139
  msgstr ""
1140
 
1141
+ #: includes/options_helptexts.php:146
1142
+ msgid "at the bottom"
1143
  msgstr ""
1144
 
1145
+ #: includes/options_helptexts.php:147
1146
+ msgid "This option specifies the position of the RSS feed link in the event list."
1147
  msgstr ""
1148
 
1149
+ #: includes/options_helptexts.php:152
1150
+ msgid "Align of the RSS feed link"
1151
  msgstr ""
1152
 
1153
+ #: includes/options_helptexts.php:153
1154
+ msgid "left"
1155
  msgstr ""
1156
 
1157
+ #: includes/options_helptexts.php:153
1158
+ msgid "center"
1159
  msgstr ""
1160
 
1161
+ #: includes/options_helptexts.php:153
1162
+ msgid "right"
1163
  msgstr ""
1164
 
1165
+ #: includes/options_helptexts.php:154
1166
+ msgid "This option specifies the align of the RSS feed link in the event list."
1167
  msgstr ""
1168
 
1169
+ #: includes/options_helptexts.php:159
1170
+ msgid "RSS feed name"
1171
  msgstr ""
1172
 
1173
+ #: includes/options_helptexts.php:161
1174
  #, php-format
1175
+ msgid "This option sets the RSS feed name. The default value is %1$s."
1176
  msgstr ""
1177
 
1178
+ #: includes/options_helptexts.php:162
1179
  #, php-format
1180
+ msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
1181
  msgstr ""
1182
 
1183
+ #: includes/options_helptexts.php:167
1184
+ msgid "RSS feed Description"
1185
  msgstr ""
1186
 
1187
+ #: includes/options_helptexts.php:169
1188
+ #, php-format
1189
+ msgid "This options set the RSS feed description. The default value is %1$s."
1190
  msgstr ""
1191
 
1192
+ #: includes/options_helptexts.php:170
1193
+ msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself."
1194
  msgstr ""
1195
 
1196
+ #: includes/options_helptexts.php:175
1197
+ msgid "RSS feed events"
1198
  msgstr ""
1199
 
1200
+ #: includes/options_helptexts.php:176
1201
+ msgid "Only show upcoming events in the RSS feed"
1202
  msgstr ""
1203
 
1204
+ #: includes/options_helptexts.php:178
1205
+ msgid "If this option is enabled only the upcoming events are listed in the RSS feed."
 
 
1206
  msgstr ""
1207
 
1208
+ #: includes/options_helptexts.php:179 includes/options_helptexts.php:205
1209
+ msgid "If disabled, all events (upcoming and past) will be listed."
1210
  msgstr ""
1211
 
1212
+ #: includes/options_helptexts.php:184
1213
+ msgid "RSS link text"
1214
  msgstr ""
1215
 
1216
+ #: includes/options_helptexts.php:186
1217
+ msgid "This option sets the caption of the RSS feed link in the event list."
1218
  msgstr ""
1219
 
1220
+ #: includes/options_helptexts.php:187
1221
+ msgid "Use an empty text to only show the rss image."
1222
  msgstr ""
1223
 
1224
+ #: includes/options_helptexts.php:188
1225
+ #, php-format
1226
+ msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the RSS feed link."
1227
  msgstr ""
1228
 
1229
+ #: includes/options_helptexts.php:193
1230
+ msgid "iCal feed name"
1231
  msgstr ""
1232
 
1233
+ #: includes/options_helptexts.php:195
1234
+ #, php-format
1235
+ msgid "This option sets the iCal feed name. The default value is %1$s."
1236
  msgstr ""
1237
 
1238
+ #: includes/options_helptexts.php:196
1239
+ #, php-format
1240
+ msgid "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with permalinks enabled)."
1241
  msgstr ""
1242
 
1243
+ #: includes/options_helptexts.php:201
1244
+ msgid "iCal feed events"
1245
  msgstr ""
1246
 
1247
+ #: includes/options_helptexts.php:202
1248
+ msgid "Only show upcoming events in the iCal feed"
1249
  msgstr ""
1250
 
1251
+ #: includes/options_helptexts.php:204
1252
+ msgid "If this option is enabled only the upcoming events are listed in the iCal file."
1253
  msgstr ""
1254
 
1255
+ #: includes/options_helptexts.php:210
1256
+ msgid "iCal link text"
1257
+ msgstr ""
1258
+
1259
+ #: includes/options_helptexts.php:212
1260
+ msgid "This option sets the iCal link text in the event list."
1261
+ msgstr ""
1262
+
1263
+ #: includes/options_helptexts.php:213
1264
+ msgid "Use an empty text to only show the iCal image."
1265
+ msgstr ""
1266
+
1267
+ #: includes/options_helptexts.php:214
1268
+ #, php-format
1269
+ msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the iCal feed link."
1270
+ msgstr ""
1271
+
1272
+ #: includes/options_helptexts.php:221
1273
  msgid "Event Category handling"
1274
  msgstr ""
1275
 
1276
+ #: includes/options_helptexts.php:222
1277
  msgid "Use Post Categories"
1278
  msgstr ""
1279
 
1280
+ #: includes/options_helptexts.php:224
1281
  msgid "Do not maintain seperate categories for the events, and use the existing post categories instead."
1282
  msgstr ""
1283
 
1284
+ #: includes/options_helptexts.php:225
1285
  msgid "Attention"
1286
  msgstr ""
1287
 
1288
+ #: includes/options_helptexts.php:226
1289
  msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here."
1290
  msgstr ""
1291
 
1385
  #: includes/sc_event-list_helptexts.php:33
1386
  #: includes/sc_event-list_helptexts.php:74
1387
  #: includes/sc_event-list_helptexts.php:89
1388
+ #: includes/sc_event-list_helptexts.php:111
1389
  msgid "number"
1390
  msgstr ""
1391
 
1580
 
1581
  #: includes/sc_event-list_helptexts.php:77
1582
  #: includes/sc_event-list_helptexts.php:92
1583
+ #: includes/sc_event-list_helptexts.php:114
1584
  msgid "This attribute has no influence if only a single event is shown."
1585
  msgstr ""
1586
 
1607
 
1608
  #: includes/sc_event-list_helptexts.php:100
1609
  msgid ""
1610
+ "This attribute specifies if the content is displayed in the event list.<br />\n"
1611
+ "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1612
+ "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1613
  msgstr ""
1614
 
1615
  #: includes/sc_event-list_helptexts.php:105
1616
  msgid ""
1617
+ "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1618
+ "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1619
+ "\t\t\t\t\t\t\t\t\t\t\t\tWith \"event_list_only\" the excerpt is only visible in the event list and with \"single_event_only\" only for a single event.<br />\n"
1620
+ "\t\t\t\t\t\t\t\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1621
+ "\t\t\t\t\t\t\t\t\t\t\t\tThis attribute will be ignored when the attribute \"show_content\" is enabled for the same display type (single event or event list)."
1622
  msgstr ""
1623
 
1624
+ #: includes/sc_event-list_helptexts.php:112
1625
  msgid "This attribute specifies if the content should be truncate to the given number of characters in the event list."
1626
  msgstr ""
1627
 
1628
+ #: includes/sc_event-list_helptexts.php:113
1629
  #, php-format
1630
  msgid "With the standard value %1$s the full text is displayed."
1631
  msgstr ""
1632
 
1633
+ #: includes/sc_event-list_helptexts.php:117
1634
  msgid ""
1635
+ "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1636
  "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1637
  "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1638
  "\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."
1639
  msgstr ""
1640
 
1641
+ #: includes/sc_event-list_helptexts.php:123
1642
  msgid ""
1643
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1644
  "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1646
  "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1647
  msgstr ""
1648
 
1649
+ #: includes/sc_event-list_helptexts.php:129
1650
  msgid ""
1651
  "This attribute specifies if a rss feed link should be added.<br />\n"
1652
  "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1655
  "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1656
  msgstr ""
1657
 
1658
+ #: includes/sc_event-list_helptexts.php:136
1659
+ msgid ""
1660
+ "This attribute specifies if a ical feed link should be added.<br />\n"
1661
+ "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1662
+ "\t On that page you can also find some settings to modify the output.<br />\n"
1663
+ "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1664
+ msgstr ""
1665
+
1666
+ #: includes/sc_event-list_helptexts.php:142
1667
  msgid ""
1668
  "This attribute specifies the page or post url for event links.<br />\n"
1669
  "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1670
  "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1671
  msgstr ""
1672
 
1673
+ #: includes/sc_event-list_helptexts.php:149
1674
  msgid ""
1675
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1676
  "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1677
  msgstr ""
1678
 
1679
+ #: includes/sc_event-list.php:145
1680
  msgid "Event Information:"
1681
  msgstr ""
1682
 
1683
+ #: includes/sc_event-list.php:391
1684
+ msgid "Link to RSS feed"
1685
+ msgstr ""
1686
+
1687
+ #: includes/sc_event-list.php:399
1688
+ msgid "Link to iCal feed"
1689
+ msgstr ""
1690
+
1691
  #: includes/widget_helptexts.php:10
1692
  msgid "This option defines the displayed title for the widget."
1693
  msgstr ""
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Event List ===
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
@@ -86,6 +86,14 @@ Another possibility would be to call the wordpress function "do_shortcode()".
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
1
  === Event List ===
2
+ Contributors: mibuthu, clhunsen, chunsen1, seeseekey
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.5
9
  Plugin URI: https://wordpress.org/plugins/event-list
10
  Licence: GPLv2
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
86
 
87
  == Changelog ==
88
 
89
+ = 0.8.5 (2020-11-16) =
90
+ * add iCal support (add a link in the event-list with the new shortcode attribute)
91
+ * changes in feed options
92
+ * updated feed link styling
93
+ * changed rss feed link attribute name from "add_feed_link" to "add_rss_link". Please update your shortcode!
94
+ * some internal changed in feed handling
95
+ * fixed logfile path for upgrade
96
+
97
  = 0.8.4 (2020-10-30) =
98
  * added support for excerpts in events
99
  * added support for authors in events