Event List - Version 0.8.7

Version Description

(2022-02-19) = * fixed a vulnerability that the plugin does not sanitize and escape the settings before safing them to the database * fixed the display of the events in the admin main page * always show all events in the admin main page by default, not only the upcoming * fixed the default order of the events in the admin main page * fixed display of widget settings in the widgets admin page * fixed a bug in the date and cat filter handling * small improvements in the admin about output * some internal code improvements * translation updates

Download this release

Release Info

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

Code changes from version 0.8.6 to 0.8.7

Files changed (52) hide show
  1. admin/admin.php +31 -5
  2. admin/css/admin_about.css +2 -0
  3. admin/includes/admin-about.php +24 -4
  4. admin/includes/admin-categories.php +37 -8
  5. admin/includes/admin-category-sync.php +42 -9
  6. admin/includes/admin-functions.php +20 -4
  7. admin/includes/admin-import.php +87 -42
  8. admin/includes/admin-main.php +81 -67
  9. admin/includes/admin-new.php +68 -19
  10. admin/includes/admin-settings.php +25 -7
  11. admin/includes/event-category_functions.php +44 -32
  12. admin/includes/upgrade.php +58 -37
  13. event-list.php +6 -4
  14. includes/daterange.php +79 -20
  15. includes/daterange_helptexts.php +108 -25
  16. includes/event.php +107 -63
  17. includes/events.php +50 -42
  18. includes/events_post_type.php +22 -6
  19. includes/filterbar.php +62 -28
  20. includes/ical.php +28 -10
  21. includes/options.php +37 -6
  22. includes/rss.php +40 -19
  23. includes/sc_event-list.php +71 -34
  24. includes/sc_event-list_helptexts.php +296 -148
  25. includes/widget.php +50 -28
  26. includes/widget_helptexts.php +20 -6
  27. languages/event-list-da_DK.mo +0 -0
  28. languages/event-list-da_DK.po +386 -381
  29. languages/event-list-de_DE.mo +0 -0
  30. languages/event-list-de_DE.po +473 -467
  31. languages/event-list-es_AR.mo +0 -0
  32. languages/event-list-es_AR.po +386 -381
  33. languages/event-list-es_ES.mo +0 -0
  34. languages/event-list-es_ES.po +386 -381
  35. languages/event-list-et_EE.mo +0 -0
  36. languages/event-list-et_EE.po +386 -381
  37. languages/event-list-fi_FI.mo +0 -0
  38. languages/event-list-fi_FI.po +386 -381
  39. languages/event-list-fr_FR.mo +0 -0
  40. languages/event-list-fr_FR.po +394 -389
  41. languages/event-list-id_ID.mo +0 -0
  42. languages/event-list-id_ID.po +392 -387
  43. languages/event-list-it_IT.mo +0 -0
  44. languages/event-list-it_IT.po +386 -381
  45. languages/event-list-nl_NL.mo +0 -0
  46. languages/event-list-nl_NL.po +392 -387
  47. languages/event-list-pl_PL.mo +0 -0
  48. languages/event-list-pl_PL.po +386 -381
  49. languages/event-list-pt_BR.mo +0 -0
  50. languages/event-list-pt_BR.po +386 -381
  51. languages/event-list-sk_SK.mo +0 -0
  52. languages/event-list-sk_SK.po +251 -246
admin/admin.php CHANGED
@@ -1,4 +1,23 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -6,13 +25,20 @@ if ( ! defined( 'WP_ADMIN' ) ) {
6
  require_once EL_PATH . 'includes/options.php';
7
  require_once EL_PATH . 'includes/events_post_type.php';
8
 
9
- // This class handles all available admin pages
 
 
10
  class EL_Admin {
11
 
12
  private static $instance;
13
 
14
  private $options;
15
 
 
 
 
 
 
16
  private $events_post_type;
17
 
18
  private $show_upgr_message = false;
@@ -47,7 +73,7 @@ class EL_Admin {
47
  // Upgrade check
48
  $file_data = get_file_data( EL_PATH . 'event-list.php', array( 'version' => 'Version' ) );
49
  $last_upgr_version = get_option( 'el_last_upgr_version', '' );
50
- if ( $file_data['version'] != $last_upgr_version || isset( $_GET['resume-el-upgr'] ) ) {
51
  // load upgrade class
52
  require_once EL_PATH . 'admin/includes/upgrade.php';
53
  EL_Upgrade::get_instance()->upgrade();
@@ -59,7 +85,7 @@ class EL_Admin {
59
  if ( $this->show_upgr_message ) {
60
  // load upgrade class
61
  require_once EL_PATH . 'admin/includes/upgrade.php';
62
- $error = 2 == $this->show_upgr_message;
63
  $class = $error ? 'error' : 'updated fade';
64
  $title = sprintf( $error ? __( 'Errors during upgrade of plugin %1$s', 'event-list' ) : __( 'Upgrade of plugin %1$s successful', 'event-list' ), '"Event List"' );
65
  $logfile = ' (<a href="' . content_url( EL_Upgrade::get_instance()->logfile ) . '">upgrade log</a>)';
@@ -121,11 +147,11 @@ class EL_Admin {
121
  add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_about_scripts' ) );
122
 
123
  // Import page (invisible in menu, but callable by import button on admin main page)
124
- $page = add_submenu_page( null, null, null, 'edit_posts', 'el_admin_import', array( &$this, 'show_import_page' ) );
125
  add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_import_scripts' ) );
126
 
127
  // Sync Post Categories page (invisible in menu, but callable by sync button on admin categories page)
128
- $page = add_submenu_page( null, null, null, 'manage_categories', 'el_admin_cat_sync', array( &$this, 'show_cat_sync_page' ) );
129
  add_action( 'load-' . $page, array( &$this, 'handle_cat_sync_actions' ) );
130
  }
131
 
1
  <?php
2
+ /**
3
+ * The main class for the admin pages
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginUnknownPropertyType
10
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
11
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
12
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
13
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
14
+ * @phan-file-suppress PhanTypeMismatchArgumentProbablyReal
15
+ * @phan-file-suppress PhanTypeMismatchProperty
16
+ * @phan-file-suppress PhanPossiblyUndeclaredProperty
17
+ *
18
+ * @package event-list
19
+ */
20
+
21
  if ( ! defined( 'WP_ADMIN' ) ) {
22
  exit;
23
  }
25
  require_once EL_PATH . 'includes/options.php';
26
  require_once EL_PATH . 'includes/events_post_type.php';
27
 
28
+ /**
29
+ * This class handles all available admin pages
30
+ */
31
  class EL_Admin {
32
 
33
  private static $instance;
34
 
35
  private $options;
36
 
37
+ /**
38
+ * The event post type
39
+ *
40
+ * @var EL_Events_Post_Type
41
+ */
42
  private $events_post_type;
43
 
44
  private $show_upgr_message = false;
73
  // Upgrade check
74
  $file_data = get_file_data( EL_PATH . 'event-list.php', array( 'version' => 'Version' ) );
75
  $last_upgr_version = get_option( 'el_last_upgr_version', '' );
76
+ if ( $file_data['version'] !== $last_upgr_version || isset( $_GET['resume-el-upgr'] ) ) {
77
  // load upgrade class
78
  require_once EL_PATH . 'admin/includes/upgrade.php';
79
  EL_Upgrade::get_instance()->upgrade();
85
  if ( $this->show_upgr_message ) {
86
  // load upgrade class
87
  require_once EL_PATH . 'admin/includes/upgrade.php';
88
+ $error = 2 === $this->show_upgr_message;
89
  $class = $error ? 'error' : 'updated fade';
90
  $title = sprintf( $error ? __( 'Errors during upgrade of plugin %1$s', 'event-list' ) : __( 'Upgrade of plugin %1$s successful', 'event-list' ), '"Event List"' );
91
  $logfile = ' (<a href="' . content_url( EL_Upgrade::get_instance()->logfile ) . '">upgrade log</a>)';
147
  add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_about_scripts' ) );
148
 
149
  // Import page (invisible in menu, but callable by import button on admin main page)
150
+ $page = add_submenu_page( '', '', '', 'edit_posts', 'el_admin_import', array( &$this, 'show_import_page' ) );
151
  add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_import_scripts' ) );
152
 
153
  // Sync Post Categories page (invisible in menu, but callable by sync button on admin categories page)
154
+ $page = add_submenu_page( '', '', '', 'manage_categories', 'el_admin_cat_sync', array( &$this, 'show_cat_sync_page' ) );
155
  add_action( 'load-' . $page, array( &$this, 'handle_cat_sync_actions' ) );
156
  }
157
 
admin/css/admin_about.css CHANGED
@@ -12,6 +12,7 @@
12
  border: 1px solid #aaa;
13
  border-collapse: collapse;
14
  width: 98%;
 
15
  }
16
  .el-atts-table th {
17
  border: 1px solid #aaa;
@@ -33,6 +34,7 @@
33
  width: 100%;
34
  margin: 0.2em 0 1.2em 0;
35
  line-height: 1.6em;
 
36
  }
37
  .el-filterbar-table th {
38
  border: 1px solid #aaa;
12
  border: 1px solid #aaa;
13
  border-collapse: collapse;
14
  width: 98%;
15
+ font-size: small;
16
  }
17
  .el-atts-table th {
18
  border: 1px solid #aaa;
34
  width: 100%;
35
  margin: 0.2em 0 1.2em 0;
36
  line-height: 1.6em;
37
+ font-size: small;
38
  }
39
  .el-filterbar-table th {
40
  border: 1px solid #aaa;
admin/includes/admin-about.php CHANGED
@@ -1,4 +1,21 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -6,7 +23,9 @@ if ( ! defined( 'WP_ADMIN' ) ) {
6
  require_once EL_PATH . 'includes/options.php';
7
  require_once EL_PATH . 'includes/daterange.php';
8
 
9
- // This class handles all data for the admin about page
 
 
10
  class EL_Admin_About {
11
 
12
  private static $instance;
@@ -34,6 +53,7 @@ class EL_Admin_About {
34
 
35
  public function show_about() {
36
  if ( ! current_user_can( 'edit_posts' ) ) {
 
37
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
38
  }
39
  // check used get parameters
@@ -42,7 +62,7 @@ class EL_Admin_About {
42
  echo '<div class="wrap">
43
  <div id="icon-edit-pages" class="icon32"><br /></div><h2>' . __( 'About Event List', 'event-list' ) . '</h2>';
44
  echo $this->show_tabs( $tab );
45
- if ( 'atts' == $tab ) {
46
  $this->daterange->load_formats_helptexts();
47
  $this->show_atts();
48
  $this->show_filter_syntax();
@@ -58,7 +78,7 @@ class EL_Admin_About {
58
 
59
 
60
  public function embed_about_scripts() {
61
- wp_enqueue_style( 'eventlist_admin_about', EL_URL . 'admin/css/admin_about.css' );
62
  }
63
 
64
 
@@ -69,7 +89,7 @@ class EL_Admin_About {
69
  );
70
  $out = '<h3 class="nav-tab-wrapper">';
71
  foreach ( $tabs as $tab => $name ) {
72
- $class = ( $tab == $current ) ? ' nav-tab-active' : '';
73
  $out .= '<a class="nav-tab' . $class . '" href="' . add_query_arg( 'tab', $tab, add_query_arg( array() ) ) . '">' . $name . '</a>';
74
  }
75
  $out .= '</h3>';
1
  <?php
2
+ /**
3
+ * The main class for the admin pages
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
15
+ *
16
+ * @package event-list
17
+ */
18
+
19
  if ( ! defined( 'WP_ADMIN' ) ) {
20
  exit;
21
  }
23
  require_once EL_PATH . 'includes/options.php';
24
  require_once EL_PATH . 'includes/daterange.php';
25
 
26
+ /**
27
+ * This class handles all data for the admin about page
28
+ */
29
  class EL_Admin_About {
30
 
31
  private static $instance;
53
 
54
  public function show_about() {
55
  if ( ! current_user_can( 'edit_posts' ) ) {
56
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
57
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
58
  }
59
  // check used get parameters
62
  echo '<div class="wrap">
63
  <div id="icon-edit-pages" class="icon32"><br /></div><h2>' . __( 'About Event List', 'event-list' ) . '</h2>';
64
  echo $this->show_tabs( $tab );
65
+ if ( 'atts' === $tab ) {
66
  $this->daterange->load_formats_helptexts();
67
  $this->show_atts();
68
  $this->show_filter_syntax();
78
 
79
 
80
  public function embed_about_scripts() {
81
+ wp_enqueue_style( 'eventlist_admin_about', EL_URL . 'admin/css/admin_about.css', array(), '1.0' );
82
  }
83
 
84
 
89
  );
90
  $out = '<h3 class="nav-tab-wrapper">';
91
  foreach ( $tabs as $tab => $name ) {
92
+ $class = ( $tab === $current ) ? ' nav-tab-active' : '';
93
  $out .= '<a class="nav-tab' . $class . '" href="' . add_query_arg( 'tab', $tab, add_query_arg( array() ) ) . '">' . $name . '</a>';
94
  }
95
  $out .= '</h3>';
admin/includes/admin-categories.php CHANGED
@@ -1,4 +1,20 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -6,11 +22,18 @@ if ( ! defined( 'WP_ADMIN' ) ) {
6
  require_once EL_PATH . 'includes/options.php';
7
  require_once EL_PATH . 'includes/events_post_type.php';
8
 
9
- // This class handles all data for the admin categories page
 
 
10
  class EL_Admin_Categories {
11
 
12
  private static $instance;
13
 
 
 
 
 
 
14
  private $events_post_type;
15
 
16
 
@@ -35,7 +58,7 @@ class EL_Admin_Categories {
35
 
36
  public function embed_categories_scripts() {
37
  wp_enqueue_script( 'jquery' );
38
- wp_enqueue_script( 'eventlist_admin_categories_js', EL_URL . 'admin/js/admin_categories.js' );
39
  }
40
 
41
 
@@ -45,7 +68,9 @@ class EL_Admin_Categories {
45
  add_query_arg(
46
  array(
47
  'page' => 'el_admin_cat_sync',
48
- '_wp_http_referer' => $_SERVER['REQUEST_URI'],
 
 
49
  ),
50
  'edit.php?post_type=el_events'
51
  )
@@ -57,12 +82,15 @@ class EL_Admin_Categories {
57
 
58
  public function prepare_syncdone_message( $messages ) {
59
  // prepare used get parameters
60
- $msgdata = isset( $_GET['msgdata'] ) ? $_GET['msgdata'] : array();
 
 
61
  $error = isset( $_GET['error'] );
62
-
63
- $items['mod_ok'] = __( '%1$s categories modified (%2$s)', 'event-list' );
64
- $items['add_ok'] = __( '%1$s categories added (%2$s)', 'event-list' );
65
- $items['del_ok'] = __( '%1$s categories deleted (%2$s)', 'event-list' );
 
66
  if ( $error ) {
67
  $items['mod_error'] = __( '%1$s categories not modified (%2$s)', 'event-list' );
68
  $items['add_error'] = __( '%1$s categories not added (%2$s)', 'event-list' );
@@ -78,6 +106,7 @@ class EL_Admin_Categories {
78
  $msgtext .= '<ul style="list-style:inside">';
79
  foreach ( $items as $name => $text ) {
80
  if ( isset( $msgdata[ $name ] ) && is_array( $msgdata[ $name ] ) ) {
 
81
  $items = array_map( 'sanitize_key', $msgdata[ $name ] );
82
  $msgtext .= $this->show_sync_items( $items, $text );
83
  }
1
  <?php
2
+ /**
3
+ * The admin categories class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ *
15
+ * @package event-list
16
+ */
17
+
18
  if ( ! defined( 'WP_ADMIN' ) ) {
19
  exit;
20
  }
22
  require_once EL_PATH . 'includes/options.php';
23
  require_once EL_PATH . 'includes/events_post_type.php';
24
 
25
+ /**
26
+ * This class handles all data for the admin categories page
27
+ */
28
  class EL_Admin_Categories {
29
 
30
  private static $instance;
31
 
32
+ /**
33
+ * The event post type
34
+ *
35
+ * @var EL_Events_Post_Type
36
+ */
37
  private $events_post_type;
38
 
39
 
58
 
59
  public function embed_categories_scripts() {
60
  wp_enqueue_script( 'jquery' );
61
+ wp_enqueue_script( 'eventlist_admin_categories_js', EL_URL . 'admin/js/admin_categories.js', array(), '1.0', true );
62
  }
63
 
64
 
68
  add_query_arg(
69
  array(
70
  'page' => 'el_admin_cat_sync',
71
+ // TODO: check sanitize of server request URI
72
+ // phpcs:ignore
73
+ '_wp_http_referer' => wp_unslash( $_SERVER['REQUEST_URI'] ),
74
  ),
75
  'edit.php?post_type=el_events'
76
  )
82
 
83
  public function prepare_syncdone_message( $messages ) {
84
  // prepare used get parameters
85
+ // msgdata is sanitized later on
86
+ // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
87
+ $msgdata = isset( $_GET['msgdata'] ) ? wp_unslash( $_GET['msgdata'] ) : array();
88
  $error = isset( $_GET['error'] );
89
+ $items = array(
90
+ 'mod_ok' => __( '%1$s categories modified (%2$s)', 'event-list' ),
91
+ 'add_ok' => __( '%1$s categories added (%2$s)', 'event-list' ),
92
+ 'del_ok' => __( '%1$s categories deleted (%2$s)', 'event-list' ),
93
+ );
94
  if ( $error ) {
95
  $items['mod_error'] = __( '%1$s categories not modified (%2$s)', 'event-list' );
96
  $items['add_error'] = __( '%1$s categories not added (%2$s)', 'event-list' );
106
  $msgtext .= '<ul style="list-style:inside">';
107
  foreach ( $items as $name => $text ) {
108
  if ( isset( $msgdata[ $name ] ) && is_array( $msgdata[ $name ] ) ) {
109
+ // @suppress PhanPartialTypeMismatchArgumentInternal
110
  $items = array_map( 'sanitize_key', $msgdata[ $name ] );
111
  $msgtext .= $this->show_sync_items( $items, $text );
112
  }
admin/includes/admin-category-sync.php CHANGED
@@ -1,4 +1,24 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -8,7 +28,9 @@ require_once EL_PATH . 'includes/events_post_type.php';
8
  require_once EL_PATH . 'includes/events.php';
9
  require_once EL_PATH . 'admin/includes/event-category_functions.php';
10
 
11
- // This class handles all data for the admin categories page
 
 
12
  class EL_Admin_Category_Sync {
13
 
14
  private static $instance;
@@ -48,6 +70,7 @@ class EL_Admin_Category_Sync {
48
 
49
  // permission checks
50
  if ( ! current_user_can( 'manage_categories' ) || ( $this->switch_taxonomy && ! current_user_can( 'manage_options' ) ) ) {
 
51
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
52
  }
53
  if ( ! (bool) wp_get_referer() || ( ! $this->switch_taxonomy && $this->use_post_cats ) ) {
@@ -70,12 +93,13 @@ class EL_Admin_Category_Sync {
70
  $main_title = __( 'Affected Categories when switching to seperate Event Categories', 'event-list' );
71
  $button_text = __( 'Switch option to seperate Event Categories', 'event-list' );
72
  $description = __( 'If you proceed, all post categories will be copied and all events will be re-assigned to this new categories.', 'event-list' ) . '<br />' .
73
- __( 'Afterwards the event categories are independent of the post categories.', 'event-list' );
74
  } elseif ( 'switch-to-post' === $action ) {
75
  $main_title = __( 'Affected Categories when switching to use Post Categories for events', 'event-list' );
76
  $button_text = __( 'Switch option to use Post Categories for events', 'event-list' );
77
  $description = __( 'Take a detailed look at the affected categories above before you proceed! All seperate event categories will be deleted, this cannot be undone!', 'event-list' );
78
- } else { // 'sync' === action
 
79
  $main_title = __( 'Event Categories: Synchronise with Post Categories', 'event-list' );
80
  $button_text = __( 'Start synchronisation', 'event-list' );
81
  $description = __( 'If this option is enabled the above listed categories will be deleted and removed from the existing events!', 'event-list' );
@@ -126,15 +150,17 @@ class EL_Admin_Category_Sync {
126
  <ul class="el-catlist">';
127
  foreach ( $cat_slugs as $cat_slug ) {
128
  $cat_name = 'event' === $cat_type ? $this->events->get_cat_by_slug( $cat_slug )->name : get_category_by_slug( $cat_slug )->name;
 
129
  echo '
130
  <li>' . $cat_name . ' (' . __( 'Slug' ) . ': ' . $cat_slug . ')</li>';
 
131
  }
132
  echo '
133
  </ul>';
134
  }
135
  echo '
136
  </div>';
137
- $this->show_hidden( $input_id, esc_html( json_encode( $cat_slugs ) ) );
138
  }
139
 
140
 
@@ -152,20 +178,25 @@ class EL_Admin_Category_Sync {
152
 
153
 
154
  public function handle_actions() {
 
 
155
  // check used post parameter
156
  $action = isset( $_POST['action'] ) ? sanitize_key( $_POST['action'] ) : '';
157
  // action handling
158
  switch ( $action ) {
159
  case 'sync':
160
  // check used post parameters
161
- $delete_cats = isset( $_POST['delete-cats'] ) ? (bool) intval( $_POST['delete-cats'] ) : false;
162
- $affected_cats['to_mod'] = isset( $_POST['cats-to-mod'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-mod'] ), true ) ) : array();
163
- $affected_cats['to_add'] = isset( $_POST['cats-to-add'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-add'] ), true ) ) : array();
 
 
164
  if ( $delete_cats ) {
165
- $affected_cats['to_del'] = isset( $_POST['cats-to-del'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-del'] ), true ) ) : array();
166
  } else {
167
  $affected_cats['to_del'] = array();
168
  }
 
169
  // do actual sync
170
  $args['msgdata'] = $this->event_category_functions->sync_categories( 'to_event_cats', $affected_cats );
171
  if ( empty( $args['msgdata']['mod_error'] ) && empty( $args['msgdata']['add_error'] ) && empty( $args['msgdata']['del_error'] ) ) {
@@ -189,7 +220,9 @@ class EL_Admin_Category_Sync {
189
  // check used post parameters
190
  $add_cats = isset( $_POST['add-cats'] ) ? (bool) intval( $_POST['add-cats'] ) : false;
191
  if ( $add_cats ) {
192
- $affected_cats['to_add'] = isset( $_POST['cats-to-add'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-add'] ), true ) ) : array();
 
 
193
  $this->event_category_functions->sync_categories( 'to_post_cats', $affected_cats );
194
  }
195
  $args['msgdata'] = $this->event_category_functions->switch_event_taxonomy( 'to_post_cats' );
1
  <?php
2
+ /**
3
+ * The admin category sync class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
15
+ * @phan-file-suppress PhanPartialTypeMismatchArgumentInternal
16
+ * @phan-file-suppress PhanPossiblyUndeclaredProperty
17
+ * @phan-file-suppress PhanPossiblyFalseTypeArgument
18
+ *
19
+ * @package event-list
20
+ */
21
+
22
  if ( ! defined( 'WP_ADMIN' ) ) {
23
  exit;
24
  }
28
  require_once EL_PATH . 'includes/events.php';
29
  require_once EL_PATH . 'admin/includes/event-category_functions.php';
30
 
31
+ /**
32
+ * This class handles all data for the admin categories page
33
+ */
34
  class EL_Admin_Category_Sync {
35
 
36
  private static $instance;
70
 
71
  // permission checks
72
  if ( ! current_user_can( 'manage_categories' ) || ( $this->switch_taxonomy && ! current_user_can( 'manage_options' ) ) ) {
73
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
74
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
75
  }
76
  if ( ! (bool) wp_get_referer() || ( ! $this->switch_taxonomy && $this->use_post_cats ) ) {
93
  $main_title = __( 'Affected Categories when switching to seperate Event Categories', 'event-list' );
94
  $button_text = __( 'Switch option to seperate Event Categories', 'event-list' );
95
  $description = __( 'If you proceed, all post categories will be copied and all events will be re-assigned to this new categories.', 'event-list' ) . '<br />' .
96
+ __( 'Afterwards the event categories are independent of the post categories.', 'event-list' );
97
  } elseif ( 'switch-to-post' === $action ) {
98
  $main_title = __( 'Affected Categories when switching to use Post Categories for events', 'event-list' );
99
  $button_text = __( 'Switch option to use Post Categories for events', 'event-list' );
100
  $description = __( 'Take a detailed look at the affected categories above before you proceed! All seperate event categories will be deleted, this cannot be undone!', 'event-list' );
101
+ } else {
102
+ // 'sync' === action
103
  $main_title = __( 'Event Categories: Synchronise with Post Categories', 'event-list' );
104
  $button_text = __( 'Start synchronisation', 'event-list' );
105
  $description = __( 'If this option is enabled the above listed categories will be deleted and removed from the existing events!', 'event-list' );
150
  <ul class="el-catlist">';
151
  foreach ( $cat_slugs as $cat_slug ) {
152
  $cat_name = 'event' === $cat_type ? $this->events->get_cat_by_slug( $cat_slug )->name : get_category_by_slug( $cat_slug )->name;
153
+ // phpcs:disable WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
154
  echo '
155
  <li>' . $cat_name . ' (' . __( 'Slug' ) . ': ' . $cat_slug . ')</li>';
156
+ // phpcs:enable
157
  }
158
  echo '
159
  </ul>';
160
  }
161
  echo '
162
  </div>';
163
+ $this->show_hidden( $input_id, esc_html( wp_json_encode( $cat_slugs ) ) );
164
  }
165
 
166
 
178
 
179
 
180
  public function handle_actions() {
181
+ $affected_cats = array();
182
+ $args = array();
183
  // check used post parameter
184
  $action = isset( $_POST['action'] ) ? sanitize_key( $_POST['action'] ) : '';
185
  // action handling
186
  switch ( $action ) {
187
  case 'sync':
188
  // check used post parameters
189
+ $delete_cats = isset( $_POST['delete-cats'] ) ? (bool) intval( $_POST['delete-cats'] ) : false;
190
+ // sanitize_key is called through array_map
191
+ // phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
192
+ $affected_cats['to_mod'] = isset( $_POST['cats-to-mod'] ) ? array_map( 'sanitize_key', json_decode( wp_unslash( $_POST['cats-to-mod'] ), true ) ) : array();
193
+ $affected_cats['to_add'] = isset( $_POST['cats-to-add'] ) ? array_map( 'sanitize_key', json_decode( wp_unslash( $_POST['cats-to-add'] ), true ) ) : array();
194
  if ( $delete_cats ) {
195
+ $affected_cats['to_del'] = isset( $_POST['cats-to-del'] ) ? array_map( 'sanitize_key', json_decode( wp_unslash( $_POST['cats-to-del'] ), true ) ) : array();
196
  } else {
197
  $affected_cats['to_del'] = array();
198
  }
199
+ // phpcs:enable
200
  // do actual sync
201
  $args['msgdata'] = $this->event_category_functions->sync_categories( 'to_event_cats', $affected_cats );
202
  if ( empty( $args['msgdata']['mod_error'] ) && empty( $args['msgdata']['add_error'] ) && empty( $args['msgdata']['del_error'] ) ) {
220
  // check used post parameters
221
  $add_cats = isset( $_POST['add-cats'] ) ? (bool) intval( $_POST['add-cats'] ) : false;
222
  if ( $add_cats ) {
223
+ // sanitize_key is called through array_map
224
+ // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
225
+ $affected_cats['to_add'] = isset( $_POST['cats-to-add'] ) ? array_map( 'sanitize_key', json_decode( wp_unslash( $_POST['cats-to-add'] ), true ) ) : array();
226
  $this->event_category_functions->sync_categories( 'to_post_cats', $affected_cats );
227
  }
228
  $args['msgdata'] = $this->event_category_functions->switch_event_taxonomy( 'to_post_cats' );
admin/includes/admin-functions.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
5
 
6
  require_once EL_PATH . 'includes/options.php';
7
 
8
- // This class handles general functions which can be used on different admin pages
 
 
9
  class EL_Admin_Functions {
10
 
11
  private static $instance;
@@ -58,11 +74,11 @@ class EL_Admin_Functions {
58
  <div class="el-settings">
59
  <table class="form-table">';
60
  foreach ( $this->options->options as $oname => $o ) {
61
- if ( $o['section'] == $section ) {
62
  $out .= '
63
  <tr>
64
  <th>';
65
- if ( $o['label'] != '' ) {
66
  $out .= '<label for="' . $oname . '">' . $o['label'] . ':</label>';
67
  }
68
  $out .= '</th>
@@ -103,7 +119,7 @@ class EL_Admin_Functions {
103
  $out = '
104
  <label for="' . $name . '">
105
  <input name="' . $name . '" type="checkbox" id="' . $name . '" value="1"';
106
- if ( $value == 1 ) {
107
  $out .= ' checked="checked"';
108
  }
109
  $out .= $this->get_disabled_text( $disabled ) . ' />
1
  <?php
2
+ /**
3
+ * The main class for the admin pages
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginUnknownPropertyType
10
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
11
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
12
+ *
13
+ * @package event-list
14
+ */
15
+
16
  if ( ! defined( 'WP_ADMIN' ) ) {
17
  exit;
18
  }
19
 
20
  require_once EL_PATH . 'includes/options.php';
21
 
22
+ /**
23
+ * This class handles general functions which can be used on different admin pages
24
+ */
25
  class EL_Admin_Functions {
26
 
27
  private static $instance;
74
  <div class="el-settings">
75
  <table class="form-table">';
76
  foreach ( $this->options->options as $oname => $o ) {
77
+ if ( $section === $o['section'] ) {
78
  $out .= '
79
  <tr>
80
  <th>';
81
+ if ( '' !== $o['label'] ) {
82
  $out .= '<label for="' . $oname . '">' . $o['label'] . ':</label>';
83
  }
84
  $out .= '</th>
119
  $out = '
120
  <label for="' . $name . '">
121
  <input name="' . $name . '" type="checkbox" id="' . $name . '" value="1"';
122
+ if ( '1' === $value ) {
123
  $out .= ' checked="checked"';
124
  }
125
  $out .= $this->get_disabled_text( $disabled ) . ' />
admin/includes/admin-import.php CHANGED
@@ -1,4 +1,29 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -12,13 +37,20 @@ if ( version_compare( PHP_VERSION, '5.3' ) < 0 ) {
12
  require_once EL_PATH . 'includes/daterange.php';
13
  }
14
 
15
- // This class handles all data for the admin new event page
 
 
16
  class EL_Admin_Import {
17
 
18
  private static $instance;
19
 
20
  private $options;
21
 
 
 
 
 
 
22
  private $events_post_type;
23
 
24
  private $functions;
@@ -50,23 +82,22 @@ class EL_Admin_Import {
50
 
51
  public function show_import() {
52
  if ( ! current_user_can( 'edit_posts' ) ) {
 
53
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
54
  }
55
  echo '
56
  <div class="wrap">
57
  <div id="icon-edit-pages" class="icon32"><br /></div>
58
  <h2>' . __( 'Import Events', 'event-list' ) . '</h2>';
59
- // Review import
60
  if ( isset( $_FILES['el_import_file'] ) ) {
 
61
  $this->show_import_review();
62
- }
63
- // Finish import (add events)
64
- elseif ( isset( $_POST['reviewed_events'] ) ) {
65
  $import_status = $this->import_events();
66
  $this->show_import_finished( $import_status );
67
- }
68
- // Import form
69
- else {
70
  $this->show_import_form();
71
  }
72
  echo '
@@ -89,17 +120,20 @@ class EL_Admin_Import {
89
 
90
 
91
  private function show_import_review() {
92
- $file = $_FILES['el_import_file']['tmp_name'];
 
 
93
  // check for file existence (upload failed?)
94
- if ( ! is_file( $file ) ) {
95
  echo '<h3>' . __( 'Sorry, there has been an error.', 'event-list' ) . '</h3>';
96
  echo __( 'The file does not exist, please try again.', 'event-list' ) . '</p>';
97
  return;
98
  }
99
 
100
  // check for file extension (csv) first
101
- $file_parts = pathinfo( $_FILES['el_import_file']['name'] );
102
- if ( $file_parts['extension'] !== 'csv' ) {
 
103
  echo '<h3>' . __( 'Sorry, there has been an error.', 'event-list' ) . '</h3>';
104
  echo __( 'The uploaded file does not have the required csv extension.', 'event-list' ) . '</p>';
105
  return;
@@ -109,7 +143,7 @@ class EL_Admin_Import {
109
  $this->save_import_settings();
110
 
111
  // parse file
112
- $import_data = $this->parse_import_file( $file );
113
 
114
  // show heading
115
  echo '
@@ -128,7 +162,7 @@ class EL_Admin_Import {
128
  // failed events
129
  $num_event_errors = count( array_filter( $import_data, 'is_wp_error' ) );
130
  if ( ! empty( $num_event_errors ) ) {
131
- if ( $num_event_errors == count( $import_data ) ) {
132
  echo '
133
  <div class="el-warning">' . __( 'Error', 'event-list' ) . ': ' . __( 'None of the events in this CSV file can be imported', 'event-list' ) . ':';
134
  } else {
@@ -145,13 +179,13 @@ class EL_Admin_Import {
145
  }
146
  echo '
147
  <ul class="el-event-errors">';
148
- foreach ( $import_data as $event ) {
149
  if ( is_wp_error( $event ) ) {
150
  echo '<li>' . sprintf( __( 'CSV line %1$s', 'event-list' ), $event->get_error_data() ) . ': ' . $event->get_error_message() . '</li>';
151
  }
152
  }
153
  echo '</ul>';
154
- if ( $num_event_errors == count( $import_data ) ) {
155
  echo '
156
  </div>';
157
  return;
@@ -164,12 +198,12 @@ class EL_Admin_Import {
164
 
165
  // missing categories
166
  $not_available_cats = array();
167
- foreach ( $import_data as $event ) {
168
  if ( is_wp_error( $event ) ) {
169
  continue;
170
  }
171
  foreach ( $event['categories'] as $cat ) {
172
- if ( ! $this->events->cat_exists( $cat ) && ! in_array( $cat, $not_available_cats ) ) {
173
  $not_available_cats[] = $cat;
174
  }
175
  }
@@ -194,7 +228,7 @@ class EL_Admin_Import {
194
  <div id="poststuff">
195
  <div id="post-body" class="metabox-holder columns-2">
196
  <div id="post-body-content">';
197
- foreach ( $import_data as $event ) {
198
  $this->show_event( $event );
199
  }
200
  echo '
@@ -205,7 +239,7 @@ class EL_Admin_Import {
205
  </div>
206
  </div>
207
  </div>
208
- <input type="hidden" name="reviewed_events" id="reviewed_events" value="' . esc_html( json_encode( $import_data ) ) . '" />
209
  </form>';
210
  }
211
 
@@ -227,7 +261,7 @@ class EL_Admin_Import {
227
  <div class="el-warning">' . __( 'Errors during Import', 'event-list' ) . ':';
228
  if ( is_wp_error( $import_status['errors'] ) ) {
229
  echo '
230
- <p>' . $import_errors->get_error_message() . '</p>';
231
  } else {
232
  echo '
233
  <ul class="el-event-errors">';
@@ -256,17 +290,20 @@ class EL_Admin_Import {
256
 
257
 
258
  /**
259
- * @return WP_Error
 
 
 
260
  */
261
- private function parse_import_file( $file ) {
262
  $delimiter = ',';
263
  $header = array( 'title', 'startdate', 'enddate', 'starttime', 'location', 'content', 'category_slugs' );
264
  $separator_line = 'sep=,';
265
 
266
  // list of events to import
267
  $events = array();
268
-
269
- $file_handle = fopen( $file, 'r' );
270
  $event_lines = -1;
271
  $empty_lines = 0;
272
  while ( ! feof( $file_handle ) ) {
@@ -277,19 +314,18 @@ class EL_Admin_Import {
277
 
278
  // skip empty lines
279
  if ( ! array_filter( $line ) ) {
280
- $empty_lines += 1;
281
  continue;
282
  }
283
  // check header
284
  if ( 0 > $event_lines ) {
285
- // check optional separator line
286
  if ( $line[0] === $separator_line ) {
287
- $empty_lines += 1;
 
288
  continue;
289
- }
290
- // check header line
291
- elseif ( $line === $header || $line === array_slice( $header, 0, -1 ) ) {
292
- $event_lines += 1;
293
  continue;
294
  } else {
295
  return new WP_Error(
@@ -299,10 +335,10 @@ class EL_Admin_Import {
299
  );
300
  }
301
  }
302
- $event_lines += 1;
303
  // check correct number of items in line
304
  if ( 6 > count( $line ) || 7 < count( $line ) ) {
305
- $events[] = new WP_Error( 'wrong_number_line_items', sprintf( __( 'Wrong number of items in line (%1$s items found, 6-7 required)', 'event-list' ), count( $line ) ), $event_lines + $empty_Lines + 1 );
306
  continue;
307
  }
308
  // check and prepare event data
@@ -321,6 +357,7 @@ class EL_Admin_Import {
321
  $events[] = $event;
322
  }
323
  // close file
 
324
  fclose( $file_handle );
325
  return $events;
326
  }
@@ -371,6 +408,7 @@ class EL_Admin_Import {
371
  $auto_detect = false;
372
  }
373
  // create date from given format
 
374
  $date = date_create_from_format( $date_format, $date_string );
375
  if ( ! $date instanceof DateTime ) {
376
  // try automatic date detection
@@ -388,9 +426,9 @@ class EL_Admin_Import {
388
  private function save_import_settings() {
389
  foreach ( $this->options->options as $oname => $o ) {
390
  // check used post parameters
391
- $ovalue = isset( $_POST[ $oname ] ) ? sanitize_text_field( $_POST[ $oname ] ) : '';
392
 
393
- if ( 'import' == $o['section'] && ! empty( $ovalue ) ) {
394
  $this->options->set( $oname, $ovalue );
395
  }
396
  }
@@ -404,16 +442,19 @@ class EL_Admin_Import {
404
 
405
 
406
  public function render_publish_metabox() {
 
407
  echo '
408
  <div class="submitbox">
409
  <div id="delete-action"><a href="?page=el_admin_main" class="submitdelete deletion">' . __( 'Cancel' ) . '</a></div>
410
- <div id="publishing-action"><input type="submit" class="button button-primary button-large" name="import" value="' . __( 'Import', 'event-list' ) . '" id="import"></div>
411
  <div class="clear"></div>
412
  </div>';
 
413
  }
414
 
415
 
416
  public function render_category_metabox( $post, $metabox ) {
 
417
  require_once ABSPATH . 'wp-admin/includes/meta-boxes.php';
418
  $dpost = get_default_post_to_edit( 'el-events' );
419
  $box = array( 'args' => array( 'taxonomy' => $this->events_post_type->taxonomy ) );
@@ -423,17 +464,21 @@ class EL_Admin_Import {
423
 
424
  private function import_events() {
425
  // check used post parameters
426
- $reviewed_events = json_decode( stripslashes( $_POST['reviewed_events'] ), true );
 
427
  if ( empty( $reviewed_events ) ) {
428
  return new WP_Error( 'no_events', __( 'No events found', 'event-list' ) );
429
  }
430
  // prepare additional categories
431
  if ( $this->events_post_type->event_cat_taxonomy === $this->events_post_type->taxonomy ) {
432
- $additional_cat_ids = isset( $_POST['tax_input'][ $this->events_post_type->taxonomy ] ) ? $_POST['tax_input'][ $this->events_post_type->taxonomy ] : array();
 
 
433
  } else {
434
- $additional_cat_ids = isset( $_POST[ 'post_' . $this->events_post_type->taxonomy ] ) ? $_POST[ 'post_' . $this->events_post_type->taxonomy ] : array();
 
 
435
  }
436
- $additional_cat_ids = is_array( $additional_cat_ids ) ? array_map( 'intval', $additional_cat_ids ) : array();
437
  $additional_cat_slugs = array();
438
  foreach ( $additional_cat_ids as $cat_id ) {
439
  $cat = $this->events->get_cat_by_id( $cat_id );
@@ -480,7 +525,7 @@ class EL_Admin_Import {
480
 
481
 
482
  public function embed_import_scripts() {
483
- wp_enqueue_style( 'eventlist_admin_import', EL_URL . 'admin/css/admin_import.css' );
484
  }
485
 
486
  }
1
  <?php
2
+ /**
3
+ * The admin import class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
15
+ * @phan-file-suppress PhanPartialTypeMismatchArgumentInternal
16
+ * @phan-file-suppress PhanTypeMismatchArgumentInternal
17
+ * @phan-file-suppress PhanPossiblyNullTypeArgumentInternal
18
+ * @phan-file-suppress PhanPossiblyFalseTypeArgument
19
+ * @phan-file-suppress PhanPossiblyFalseTypeArgumentInternal
20
+ * @phan-file-suppress PhanPossiblyNonClassMethodCall
21
+ * @phan-file-suppress PhanTypePossiblyInvalidDimOffset
22
+ * @phan-file-suppress PhanTypeErrorInInternalCall
23
+ *
24
+ * @package event-list
25
+ */
26
+
27
  if ( ! defined( 'WP_ADMIN' ) ) {
28
  exit;
29
  }
37
  require_once EL_PATH . 'includes/daterange.php';
38
  }
39
 
40
+ /**
41
+ * This class handles all data for the admin new event page
42
+ */
43
  class EL_Admin_Import {
44
 
45
  private static $instance;
46
 
47
  private $options;
48
 
49
+ /**
50
+ * The event post type
51
+ *
52
+ * @var EL_Events_Post_Type
53
+ */
54
  private $events_post_type;
55
 
56
  private $functions;
82
 
83
  public function show_import() {
84
  if ( ! current_user_can( 'edit_posts' ) ) {
85
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
86
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
87
  }
88
  echo '
89
  <div class="wrap">
90
  <div id="icon-edit-pages" class="icon32"><br /></div>
91
  <h2>' . __( 'Import Events', 'event-list' ) . '</h2>';
 
92
  if ( isset( $_FILES['el_import_file'] ) ) {
93
+ // Review import
94
  $this->show_import_review();
95
+ } elseif ( isset( $_POST['reviewed_events'] ) ) {
96
+ // Finish import (add events)
 
97
  $import_status = $this->import_events();
98
  $this->show_import_finished( $import_status );
99
+ } else {
100
+ // Import form
 
101
  $this->show_import_form();
102
  }
103
  echo '
120
 
121
 
122
  private function show_import_review() {
123
+ // TODO: Check non-sanitized filename
124
+ // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
125
+ $file_path = isset( $_FILES['el_import_file']['tmp_name'] ) ? wp_unslash( $_FILES['el_import_file']['tmp_name'] ) : null;
126
  // check for file existence (upload failed?)
127
+ if ( ! is_file( $file_path ) ) {
128
  echo '<h3>' . __( 'Sorry, there has been an error.', 'event-list' ) . '</h3>';
129
  echo __( 'The file does not exist, please try again.', 'event-list' ) . '</p>';
130
  return;
131
  }
132
 
133
  // check for file extension (csv) first
134
+ $file_name = isset( $_FILES['el_import_file']['name'] ) ? sanitize_file_name( wp_unslash( $_FILES['el_import_file']['name'] ) ) : null;
135
+ $file_parts = pathinfo( $file_name );
136
+ if ( 'csv' !== $file_parts['extension'] ) {
137
  echo '<h3>' . __( 'Sorry, there has been an error.', 'event-list' ) . '</h3>';
138
  echo __( 'The uploaded file does not have the required csv extension.', 'event-list' ) . '</p>';
139
  return;
143
  $this->save_import_settings();
144
 
145
  // parse file
146
+ $import_data = $this->parse_import_file( $file_path );
147
 
148
  // show heading
149
  echo '
162
  // failed events
163
  $num_event_errors = count( array_filter( $import_data, 'is_wp_error' ) );
164
  if ( ! empty( $num_event_errors ) ) {
165
+ if ( count( $import_data ) === $num_event_errors ) {
166
  echo '
167
  <div class="el-warning">' . __( 'Error', 'event-list' ) . ': ' . __( 'None of the events in this CSV file can be imported', 'event-list' ) . ':';
168
  } else {
179
  }
180
  echo '
181
  <ul class="el-event-errors">';
182
+ foreach ( (array) $import_data as $event ) {
183
  if ( is_wp_error( $event ) ) {
184
  echo '<li>' . sprintf( __( 'CSV line %1$s', 'event-list' ), $event->get_error_data() ) . ': ' . $event->get_error_message() . '</li>';
185
  }
186
  }
187
  echo '</ul>';
188
+ if ( count( $import_data ) === $num_event_errors ) {
189
  echo '
190
  </div>';
191
  return;
198
 
199
  // missing categories
200
  $not_available_cats = array();
201
+ foreach ( (array) $import_data as $event ) {
202
  if ( is_wp_error( $event ) ) {
203
  continue;
204
  }
205
  foreach ( $event['categories'] as $cat ) {
206
+ if ( ! $this->events->cat_exists( $cat ) && ! in_array( $cat, $not_available_cats, true ) ) {
207
  $not_available_cats[] = $cat;
208
  }
209
  }
228
  <div id="poststuff">
229
  <div id="post-body" class="metabox-holder columns-2">
230
  <div id="post-body-content">';
231
+ foreach ( (array) $import_data as $event ) {
232
  $this->show_event( $event );
233
  }
234
  echo '
239
  </div>
240
  </div>
241
  </div>
242
+ <input type="hidden" name="reviewed_events" id="reviewed_events" value="' . esc_html( wp_json_encode( $import_data ) ) . '" />
243
  </form>';
244
  }
245
 
261
  <div class="el-warning">' . __( 'Errors during Import', 'event-list' ) . ':';
262
  if ( is_wp_error( $import_status['errors'] ) ) {
263
  echo '
264
+ <p>' . $import_status['errors']->get_error_message() . '</p>';
265
  } else {
266
  echo '
267
  <ul class="el-event-errors">';
290
 
291
 
292
  /**
293
+ * Parse the file to import
294
+ *
295
+ * @param string $file_path The file path
296
+ * @return EL_Event[] | WP_Error | WP_Error[]
297
  */
298
+ private function parse_import_file( $file_path ) {
299
  $delimiter = ',';
300
  $header = array( 'title', 'startdate', 'enddate', 'starttime', 'location', 'content', 'category_slugs' );
301
  $separator_line = 'sep=,';
302
 
303
  // list of events to import
304
  $events = array();
305
+ // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fopen
306
+ $file_handle = fopen( $file_path, 'r' );
307
  $event_lines = -1;
308
  $empty_lines = 0;
309
  while ( ! feof( $file_handle ) ) {
314
 
315
  // skip empty lines
316
  if ( ! array_filter( $line ) ) {
317
+ $empty_lines ++;
318
  continue;
319
  }
320
  // check header
321
  if ( 0 > $event_lines ) {
 
322
  if ( $line[0] === $separator_line ) {
323
+ // check optional separator line
324
+ $empty_lines ++;
325
  continue;
326
+ } elseif ( $header === $line || array_slice( $header, 0, -1 ) === $line ) {
327
+ // check header line
328
+ $event_lines ++;
 
329
  continue;
330
  } else {
331
  return new WP_Error(
335
  );
336
  }
337
  }
338
+ $event_lines ++;
339
  // check correct number of items in line
340
  if ( 6 > count( $line ) || 7 < count( $line ) ) {
341
+ $events[] = new WP_Error( 'wrong_number_line_items', sprintf( __( 'Wrong number of items in line (%1$s items found, 6-7 required)', 'event-list' ), count( $line ) ), $event_lines + $empty_lines + 1 );
342
  continue;
343
  }
344
  // check and prepare event data
357
  $events[] = $event;
358
  }
359
  // close file
360
+ // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fclose
361
  fclose( $file_handle );
362
  return $events;
363
  }
408
  $auto_detect = false;
409
  }
410
  // create date from given format
411
+ // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.date_create_from_formatFound
412
  $date = date_create_from_format( $date_format, $date_string );
413
  if ( ! $date instanceof DateTime ) {
414
  // try automatic date detection
426
  private function save_import_settings() {
427
  foreach ( $this->options->options as $oname => $o ) {
428
  // check used post parameters
429
+ $ovalue = isset( $_POST[ $oname ] ) ? sanitize_text_field( wp_unslash( $_POST[ $oname ] ) ) : '';
430
 
431
+ if ( 'import' === $o['section'] && ! empty( $ovalue ) ) {
432
  $this->options->set( $oname, $ovalue );
433
  }
434
  }
442
 
443
 
444
  public function render_publish_metabox() {
445
+ // phpcs:disable WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
446
  echo '
447
  <div class="submitbox">
448
  <div id="delete-action"><a href="?page=el_admin_main" class="submitdelete deletion">' . __( 'Cancel' ) . '</a></div>
449
+ <div id="publishing-action"><input type="submit" class="button button-primary button-large" name="import" value="' . __( 'Import' ) . '" id="import"></div>
450
  <div class="clear"></div>
451
  </div>';
452
+ // phpcs:enable
453
  }
454
 
455
 
456
  public function render_category_metabox( $post, $metabox ) {
457
+ // @phan-suppress-next-line PhanMissingRequireFile This file is available in WordPress
458
  require_once ABSPATH . 'wp-admin/includes/meta-boxes.php';
459
  $dpost = get_default_post_to_edit( 'el-events' );
460
  $box = array( 'args' => array( 'taxonomy' => $this->events_post_type->taxonomy ) );
464
 
465
  private function import_events() {
466
  // check used post parameters
467
+ // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
468
+ $reviewed_events = isset( $_POST['reviewed_events'] ) ? json_decode( wp_unslash( $_POST['reviewed_events'] ), true ) : array();
469
  if ( empty( $reviewed_events ) ) {
470
  return new WP_Error( 'no_events', __( 'No events found', 'event-list' ) );
471
  }
472
  // prepare additional categories
473
  if ( $this->events_post_type->event_cat_taxonomy === $this->events_post_type->taxonomy ) {
474
+ $additional_cat_ids = isset( $_POST['tax_input'][ $this->events_post_type->taxonomy ] ) ?
475
+ array_map( 'intval', (array) wp_unslash( $_POST['tax_input'][ $this->events_post_type->taxonomy ] ) ) :
476
+ array();
477
  } else {
478
+ $additional_cat_ids = isset( $_POST[ 'post_' . $this->events_post_type->taxonomy ] ) ?
479
+ array_map( 'intval', (array) wp_unslash( $_POST[ 'post_' . $this->events_post_type->taxonomy ] ) ) :
480
+ array();
481
  }
 
482
  $additional_cat_slugs = array();
483
  foreach ( $additional_cat_ids as $cat_id ) {
484
  $cat = $this->events->get_cat_by_id( $cat_id );
525
 
526
 
527
  public function embed_import_scripts() {
528
+ wp_enqueue_style( 'eventlist_admin_import', EL_URL . 'admin/css/admin_import.css', array(), '1.0' );
529
  }
530
 
531
  }
admin/includes/admin-main.php CHANGED
@@ -1,4 +1,21 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -18,16 +35,28 @@ class EL_Admin_Main {
18
 
19
  private $options;
20
 
 
 
 
 
 
21
  private $events_post_type;
22
 
23
  private $filterbar;
24
 
25
  /**
26
- * Is the trash page displayed?
 
 
 
 
 
 
 
27
  *
28
- * @var bool
29
  */
30
- private $is_trash;
31
 
32
 
33
  public static function &get_instance() {
@@ -45,7 +74,8 @@ class EL_Admin_Main {
45
  $this->events_post_type = &EL_Events_Post_Type::get_instance();
46
  $this->filterbar = &EL_Filterbar::get_instance();
47
  // phpcs:ignore WordPress.Security.NonceVerification.Recommended
48
- $this->is_trash = isset( $_REQUEST['post_status'] ) && 'trash' === $_REQUEST['post_status'];
 
49
  add_action( 'manage_posts_custom_column', array( &$this, 'events_custom_columns' ), 10, 2 );
50
  add_filter( 'manage_edit-el_events_columns', array( &$this, 'events_edit_columns' ) );
51
  add_filter( 'manage_edit-el_events_sortable_columns', array( &$this, 'events_sortable_columns' ) );
@@ -55,29 +85,33 @@ class EL_Admin_Main {
55
  add_filter( 'disable_categories_dropdown', '__return_true' );
56
  add_action( 'restrict_manage_posts', array( &$this, 'add_table_filters' ) );
57
  add_filter( 'parse_query', array( &$this, 'filter_request' ) );
58
- add_filter( 'posts_results', array( &$this, 'check_events_results' ) );
59
  add_action( 'load-edit.php', array( &$this, 'set_default_posts_list_mode' ) );
60
  add_action( 'admin_print_scripts', array( &$this, 'embed_scripts' ) );
61
  add_action( 'admin_head', array( &$this, 'add_import_button' ) );
62
  }
63
 
64
 
65
- /** ************************************************************************
66
  * This method dictates the table's columns and titles. This should returns
67
  * an array where the key is the column slug (and class) and the value is
68
  * the column's title text.
69
  *
70
  * @see WP_List_Table::::single_row_columns()
71
- * @return array An associative array containing column information: 'slugs'=>'Visible Titles'
72
- ***************************************************************************/
 
 
73
  public function events_edit_columns( $columns ) {
74
  return array(
75
- 'cb' => '<input type="checkbox" />', // Render a checkbox instead of text
 
76
  'eventdate' => __( 'Event Date', 'event-list' ),
77
  'title' => __( 'Title', 'event-list' ),
78
  'location' => __( 'Location', 'event-list' ),
 
79
  'taxonomy-' . $this->events_post_type->taxonomy => __( 'Categories' ),
80
  'author' => __( 'Author', 'event-list' ),
 
81
  'date' => __( 'Date' ),
82
  );
83
  }
@@ -106,12 +140,12 @@ class EL_Admin_Main {
106
 
107
 
108
  public function sort_events( $args ) {
109
- // Set default order to 'eventdate' of no other sorting is set
110
- if ( ! isset( $args['orderby'] ) ) {
 
111
  $args['orderby'] = 'eventdate';
112
- $args['order'] = 'asc';
113
  }
114
- $add_args = array();
115
  switch ( $args['orderby'] ) {
116
  case 'eventdate':
117
  $add_args = array(
@@ -143,7 +177,7 @@ class EL_Admin_Main {
143
 
144
 
145
  public function add_action_row_elements( $actions, $post ) {
146
- if ( ! $this->is_trash ) {
147
  $actions['copy'] = '<a href="' . admin_url( add_query_arg( 'copy', $post->ID, 'post-new.php?post_type=el_events' ) ) .
148
  '" aria-label="' . sprintf( __( 'Add a copy of %1$s', 'event-list' ), '&#8222;' . $post->post_title . '&#8220;' ) . '">' . __( 'Copy', 'event-list' ) . '</a>';
149
  }
@@ -154,41 +188,33 @@ class EL_Admin_Main {
154
 
155
  public function add_table_filters() {
156
  global $cat;
157
- // check used get parameters
158
- // set default date ("upcoming" for All, Published; "all" for everything else)
159
- $selected_status = isset( $_GET['post_status'] ) ? sanitize_key( $_GET['post_status'] ) : 'publish';
160
- $default_date = 'publish' === $selected_status ? 'upcoming' : 'all';
161
- $args['selected_date'] = isset( $_GET['date'] ) ? sanitize_key( $_GET['date'] ) : $default_date;
162
 
163
  // date filter
164
- echo( $this->filterbar->show_years( admin_url( 'edit.php?post_type=el_events' ), $args, 'dropdown', array( 'show_past' => true ) ) );
 
 
 
 
165
  // cat filter
166
  $cat_args = array(
167
- 'show_option_all' => __( 'All Categories' ),
168
- 'taxonomy' => $this->events_post_type->taxonomy,
169
- 'orderby' => 'name',
170
- 'hierarchical' => true,
171
  );
172
- // additional parameters required if a seperate taxonomy is used
173
- if ( ! $this->events_post_type->use_post_categories ) {
174
- // check used get parameters
175
- $selected_cat = isset( $_GET['cat'] ) ? sanitize_key( $_GET['cat'] ) : '';
176
-
177
- $cat_args['value_field'] = 'slug';
178
- $cat_args['selected'] = $selected_cat;
179
- }
180
- wp_dropdown_categories( $cat_args );
181
  }
182
 
183
 
 
 
 
 
 
 
 
184
  public function filter_request( $query ) {
185
- // Check used get parameters
186
- $default_date = $this->is_trash ? 'all' : 'upcoming';
187
- $selected_date = isset( $_GET['date'] ) ? sanitize_key( $_GET['date'] ) : $default_date;
188
-
189
- $meta_query = array( 'relation' => 'AND' );
190
  // date filter
191
- $date_for_startrange = ( '' == $this->options->get( 'el_multiday_filterrange' ) ) ? 'startdate' : 'enddate';
192
  $date_range = EL_Daterange::get_instance()->check_daterange_format( $selected_date );
193
  if ( empty( $date_range ) ) {
194
  $date_range = EL_Daterange::get_instance()->check_date_format( $selected_date );
@@ -211,34 +237,19 @@ class EL_Admin_Main {
211
  if ( ! $this->events_post_type->use_post_categories ) {
212
  // check used get parameters
213
  $selected_cat = isset( $_GET['cat'] ) ? sanitize_key( $_GET['cat'] ) : '';
214
-
 
 
215
  $query->query_vars['cat'] = false;
216
  $query->query_vars[ $this->events_post_type->taxonomy ] = $selected_cat;
217
  }
218
  }
219
 
220
 
221
- /*
222
- Reload the page to show all events when:
223
- * - published events are selected
224
- * - no specific date is selected
225
- * - no upcoming events are available
226
- */
227
- public function check_events_results( $events ) {
228
- $selected_status = isset( $_GET['post_status'] ) ? sanitize_key( $_GET['post_status'] ) : 'publish';
229
- $date_selected = isset( $_GET['date'] );
230
- if ( 'publish' === $selected_status && ! $date_selected && ! count( $events ) ) {
231
- wp_safe_redirect( add_query_arg( 'date', 'all' ) );
232
- exit;
233
- }
234
- return $events;
235
- }
236
-
237
-
238
  public function set_default_posts_list_mode() {
239
  // check used get parameters
240
  $post_type = isset( $_GET['post_type'] ) ? sanitize_key( $_GET['post_type'] ) : '';
241
- $mode = isset( $_REQUEST['mode'] ) ? sanitize_title( $_REQUEST['mode'] ) : '';
242
 
243
  if ( 'el_events' === $post_type && empty( $_REQUEST['mode'] ) ) {
244
  $_REQUEST['mode'] = 'excerpt';
@@ -247,7 +258,7 @@ class EL_Admin_Main {
247
 
248
 
249
  public function embed_scripts() {
250
- wp_enqueue_style( 'eventlist_admin_main', EL_URL . 'admin/css/admin_main.css' );
251
  }
252
 
253
 
@@ -258,20 +269,23 @@ class EL_Admin_Main {
258
  }
259
 
260
 
261
- /** ************************************************************************
262
- * In this function the start date, the end date and time is formated for
263
- * the output.
264
- *
265
- * @param string $startdate The start date of the event
266
- * @param string $enddate The end date of the event
267
- * @param string $starttime The start time of the event
268
- ***************************************************************************/
 
269
  private function format_event_date( $startdate, $enddate, $starttime ) {
270
  $out = '<span style="white-space:nowrap;">';
271
  // start date
 
272
  $out .= mysql2date( __( 'Y/m/d' ), $startdate );
273
  // end date for multiday event
274
  if ( $startdate !== $enddate ) {
 
275
  $out .= ' -<br />' . mysql2date( __( 'Y/m/d' ), $enddate );
276
  }
277
  // event starttime
1
  <?php
2
+ /**
3
+ * The main class for the admin pages
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginUnknownPropertyType
10
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
11
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
12
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
13
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
14
+ * @phan-file-suppress PhanTypeMismatchProperty
15
+ *
16
+ * @package event-list
17
+ */
18
+
19
  if ( ! defined( 'WP_ADMIN' ) ) {
20
  exit;
21
  }
35
 
36
  private $options;
37
 
38
+ /**
39
+ * The event post type
40
+ *
41
+ * @var EL_Events_Post_Type
42
+ */
43
  private $events_post_type;
44
 
45
  private $filterbar;
46
 
47
  /**
48
+ * The post_status of the actual view
49
+ *
50
+ * @var string
51
+ */
52
+ private $post_status;
53
+
54
+ /**
55
+ * The default date for the actual view ('upcoming' or 'all')
56
  *
57
+ * @var string
58
  */
59
+ private $default_date;
60
 
61
 
62
  public static function &get_instance() {
74
  $this->events_post_type = &EL_Events_Post_Type::get_instance();
75
  $this->filterbar = &EL_Filterbar::get_instance();
76
  // phpcs:ignore WordPress.Security.NonceVerification.Recommended
77
+ $this->post_status = isset( $_GET['post_status'] ) ? sanitize_key( $_GET['post_status'] ) : 'publish';
78
+ $this->default_date = 'all';
79
  add_action( 'manage_posts_custom_column', array( &$this, 'events_custom_columns' ), 10, 2 );
80
  add_filter( 'manage_edit-el_events_columns', array( &$this, 'events_edit_columns' ) );
81
  add_filter( 'manage_edit-el_events_sortable_columns', array( &$this, 'events_sortable_columns' ) );
85
  add_filter( 'disable_categories_dropdown', '__return_true' );
86
  add_action( 'restrict_manage_posts', array( &$this, 'add_table_filters' ) );
87
  add_filter( 'parse_query', array( &$this, 'filter_request' ) );
 
88
  add_action( 'load-edit.php', array( &$this, 'set_default_posts_list_mode' ) );
89
  add_action( 'admin_print_scripts', array( &$this, 'embed_scripts' ) );
90
  add_action( 'admin_head', array( &$this, 'add_import_button' ) );
91
  }
92
 
93
 
94
+ /**
95
  * This method dictates the table's columns and titles. This should returns
96
  * an array where the key is the column slug (and class) and the value is
97
  * the column's title text.
98
  *
99
  * @see WP_List_Table::::single_row_columns()
100
+ *
101
+ * @param array<string,string> $columns The columns
102
+ * @return array<string,string> An associative array containing column information: 'slugs'=>'Visible Titles'
103
+ */
104
  public function events_edit_columns( $columns ) {
105
  return array(
106
+ // Render a checkbox instead of text
107
+ 'cb' => '<input type="checkbox" />',
108
  'eventdate' => __( 'Event Date', 'event-list' ),
109
  'title' => __( 'Title', 'event-list' ),
110
  'location' => __( 'Location', 'event-list' ),
111
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
112
  'taxonomy-' . $this->events_post_type->taxonomy => __( 'Categories' ),
113
  'author' => __( 'Author', 'event-list' ),
114
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
115
  'date' => __( 'Date' ),
116
  );
117
  }
140
 
141
 
142
  public function sort_events( $args ) {
143
+ $add_args = array();
144
+ // Set default order to 'eventdate' if no custom sorting is set
145
+ if ( empty( $args['orderby'] ) ) {
146
  $args['orderby'] = 'eventdate';
147
+ $args['order'] = 'desc';
148
  }
 
149
  switch ( $args['orderby'] ) {
150
  case 'eventdate':
151
  $add_args = array(
177
 
178
 
179
  public function add_action_row_elements( $actions, $post ) {
180
+ if ( 'trash' !== $this->post_status ) {
181
  $actions['copy'] = '<a href="' . admin_url( add_query_arg( 'copy', $post->ID, 'post-new.php?post_type=el_events' ) ) .
182
  '" aria-label="' . sprintf( __( 'Add a copy of %1$s', 'event-list' ), '&#8222;' . $post->post_title . '&#8220;' ) . '">' . __( 'Copy', 'event-list' ) . '</a>';
183
  }
188
 
189
  public function add_table_filters() {
190
  global $cat;
 
 
 
 
 
191
 
192
  // date filter
193
+ $date_args = array(
194
+ 'selected_date' => isset( $_GET['date'] ) ? sanitize_key( $_GET['date'] ) : $this->default_date,
195
+ );
196
+ echo( $this->filterbar->show_years( admin_url( 'edit.php?post_type=el_events' ), $date_args, 'dropdown', array( 'show_past' => true ) ) );
197
+
198
  // cat filter
199
  $cat_args = array(
200
+ 'selected_cat' => isset( $_GET['cat'] ) ? sanitize_key( $_GET['cat'] ) : 'all',
 
 
 
201
  );
202
+ echo( $this->filterbar->show_cats( admin_url( 'edit.php?post_type=el_events' ), $cat_args, 'dropdown' ) );
 
 
 
 
 
 
 
 
203
  }
204
 
205
 
206
+ /**
207
+ * Filter the request
208
+ *
209
+ * @param WP_Query $query The WordPress Query class
210
+ * @return void
211
+ * @suppress PhanPluginMixedKeyNoKey
212
+ */
213
  public function filter_request( $query ) {
214
+ $selected_date = isset( $_GET['date'] ) ? sanitize_key( $_GET['date'] ) : $this->default_date;
215
+ $meta_query = array( 'relation' => 'AND' );
 
 
 
216
  // date filter
217
+ $date_for_startrange = ( '' === $this->options->get( 'el_multiday_filterrange' ) ) ? 'startdate' : 'enddate';
218
  $date_range = EL_Daterange::get_instance()->check_daterange_format( $selected_date );
219
  if ( empty( $date_range ) ) {
220
  $date_range = EL_Daterange::get_instance()->check_date_format( $selected_date );
237
  if ( ! $this->events_post_type->use_post_categories ) {
238
  // check used get parameters
239
  $selected_cat = isset( $_GET['cat'] ) ? sanitize_key( $_GET['cat'] ) : '';
240
+ if ( 'all' === $selected_cat ) {
241
+ $selected_cat = '';
242
+ }
243
  $query->query_vars['cat'] = false;
244
  $query->query_vars[ $this->events_post_type->taxonomy ] = $selected_cat;
245
  }
246
  }
247
 
248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  public function set_default_posts_list_mode() {
250
  // check used get parameters
251
  $post_type = isset( $_GET['post_type'] ) ? sanitize_key( $_GET['post_type'] ) : '';
252
+ $mode = isset( $_REQUEST['mode'] ) ? sanitize_title( wp_unslash( $_REQUEST['mode'] ) ) : '';
253
 
254
  if ( 'el_events' === $post_type && empty( $_REQUEST['mode'] ) ) {
255
  $_REQUEST['mode'] = 'excerpt';
258
 
259
 
260
  public function embed_scripts() {
261
+ wp_enqueue_style( 'eventlist_admin_main', EL_URL . 'admin/css/admin_main.css', array(), '1.0' );
262
  }
263
 
264
 
269
  }
270
 
271
 
272
+ /**
273
+ * In this function the start date, the end date and time is formated for
274
+ * the output.
275
+ *
276
+ * @param string $startdate The start date of the event
277
+ * @param string $enddate The end date of the event
278
+ * @param string $starttime The start time of the event
279
+ * @return string
280
+ */
281
  private function format_event_date( $startdate, $enddate, $starttime ) {
282
  $out = '<span style="white-space:nowrap;">';
283
  // start date
284
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
285
  $out .= mysql2date( __( 'Y/m/d' ), $startdate );
286
  // end date for multiday event
287
  if ( $startdate !== $enddate ) {
288
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
289
  $out .= ' -<br />' . mysql2date( __( 'Y/m/d' ), $enddate );
290
  }
291
  // event starttime
admin/includes/admin-new.php CHANGED
@@ -1,4 +1,29 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -68,7 +93,8 @@ class EL_Admin_New {
68
  global $post;
69
  if ( $this->is_new && empty( $this->copy_event ) ) {
70
  // set next day as date
71
- $startdate = current_time( 'timestamp' ) + 86400; // next day (86400 seconds = 1*24*60*60 = 1 day);
 
72
  $enddate = $startdate;
73
  $starttime = '';
74
  $location = '';
@@ -81,7 +107,7 @@ class EL_Admin_New {
81
  $location = esc_html( $event->location );
82
  }
83
  // Add required data for javascript in a hidden field
84
- $json = json_encode(
85
  array(
86
  'el_date_format' => $this->datepicker_format( $this->get_event_dateformat() ),
87
  'el_start_of_week' => get_option( 'start_of_week' ),
@@ -96,8 +122,8 @@ class EL_Admin_New {
96
  echo '
97
  <input type="hidden" id="json_for_js" value=\'' . $json . '\' />
98
  <label class="event-option">' . __( 'Date', 'event-list' ) . ' (' . __( 'required', 'event-list' ) . '):</label>
99
- <div class="event-data"><span class="date-wrapper"><input type="text" class="text form-required" name="startdate" id="startdate" value="' . date( 'Y-m-d', $startdate ) . '" /><i class="dashicons dashicons-calendar-alt"></i></span>
100
- <span id="enddate-area"> - <span class="date-wrapper"><input type="text" class="text" name="enddate" id="enddate" value="' . date( 'Y-m-d', $enddate ) . '" /><i class="dashicons dashicons-calendar-alt"></i></span></span>
101
  <label class="el-inline-checkbox"><input type="checkbox" name="multiday" id="multiday" value="1" /> ' . __( 'Multi-Day Event', 'event-list' ) . '</label>
102
  <input type="hidden" id="startdate-iso" name="startdate-iso" value="" />
103
  <input type="hidden" id="enddate-iso" name="enddate-iso" value="" />
@@ -124,14 +150,15 @@ class EL_Admin_New {
124
 
125
  public function form_after_title_content() {
126
  global $post, $wp_meta_boxes;
127
-
128
  // create "primary" metabox container, show all "primary" metaboxes in that container and unset the "primary" metaboxes afterwards
129
  echo '
130
  <div id="postbox-container-0" class="postbox-container">';
131
  do_meta_boxes( get_current_screen(), 'primary', $post );
132
- unset( $wp_meta_boxes[ get_post_type( 'post' ) ]['primary'] );
133
  echo '
134
  </div>';
 
 
 
135
  // show label for event content
136
  echo '
137
  <label class="event-option">' . __( 'Event Content', 'event-list' ) . ':</label>';
@@ -140,20 +167,31 @@ class EL_Admin_New {
140
 
141
  public function embed_scripts() {
142
  wp_enqueue_script( 'jquery-ui-datepicker' );
143
- wp_enqueue_script( 'eventlist_admin_new_js', EL_URL . 'admin/js/admin_new.js' );
144
  // TODO: wp_localize_jquery_ui_datepicker is available since WordPress version 4.6.0.
145
  // For compatibility to older versions the function_exists test was added, this test can be removed again in a later version.
146
  if ( function_exists( 'wp_localize_jquery_ui_datepicker' ) ) {
147
  wp_localize_jquery_ui_datepicker();
148
  }
149
- wp_enqueue_style( 'eventlist_admin_new', EL_URL . 'admin/css/admin_new.css' );
150
  // add the jquery-ui style "smooth" (see https://jqueryui.com/download/) (required for the xwp datepicker skin)
151
- wp_enqueue_style( 'eventlist_jqueryui', EL_URL . 'admin/css/jquery-ui.min.css' );
152
  // add the xwp datepicker skin (see https://github.com/xwp/wp-jquery-ui-datepicker-skins)
153
- wp_enqueue_style( 'eventlist_datepicker', EL_URL . 'admin/css/jquery-ui-datepicker.css' );
154
  }
155
 
156
 
 
 
 
 
 
 
 
 
 
 
 
157
  public function save_eventdata( $pid, $post, $update ) {
158
  // don't do on autosave or when new posts are first created
159
  if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || 'auto-draft' === $post->post_status ) {
@@ -176,7 +214,8 @@ class EL_Admin_New {
176
 
177
 
178
  private function get_event_dateformat() {
179
- if ( '' == $this->options->get( 'el_edit_dateformat' ) ) {
 
180
  return __( 'Y/m/d' );
181
  } else {
182
  return $this->options->get( 'el_edit_dateformat' );
@@ -196,17 +235,21 @@ class EL_Admin_New {
196
 
197
  global $post, $post_ID;
198
  $messages['el_events'] = array(
199
- 0 => '', // Unused. Messages start at index 1.
 
200
  1 => __( 'Event updated.', 'event-list' ) . ' <a href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'View event', 'event-list' ) . '</a>',
201
- 2 => '', // Custom field updated is not required (no custom fields)
202
- 3 => '', // Custom field deleted is not required (no custom fields)
 
 
203
  4 => __( 'Event updated.', 'event-list' ),
204
  5 => is_null( $revision ) ? false : sprintf( __( 'Event restored to revision from %1$s', 'event-list' ), wp_post_revision_title( $revision, false ) ),
205
  6 => __( 'Event published.', 'event-list' ) . ' <a href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'View event', 'event-list' ) . '</a>',
206
- 7 => __( 'Event saved.' ),
207
  8 => __( 'Event submitted.', 'event-list' ) . ' <a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>',
 
208
  9 => sprintf( __( 'Event scheduled for: %1$s>', 'event-list' ), '<strong>' . date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ) . '</strong>' ) .
209
- ' <a target="_blank" href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>',
210
  10 => __( 'Event draft updated.', 'event-list' ) . ' <a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>',
211
  );
212
  return $messages;
@@ -230,26 +273,32 @@ class EL_Admin_New {
230
  private function datepicker_format( $format ) {
231
  return str_replace(
232
  array(
 
233
  'd',
234
  'j',
235
  'l',
236
- 'z', // Day.
 
237
  'F',
238
  'M',
239
  'n',
240
- 'm', // Month.
 
241
  'Y',
242
- 'y', // Year.
243
  ),
244
  array(
 
245
  'dd',
246
  'd',
247
  'DD',
248
  'o',
 
249
  'MM',
250
  'M',
251
  'm',
252
  'mm',
 
253
  'yy',
254
  'y',
255
  ),
1
  <?php
2
+ /**
3
+ * The admin new class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
15
+ * @phan-file-suppress PhanPartialTypeMismatchArgumentInternal
16
+ * @phan-file-suppress PhanPossiblyNullTypeArgument
17
+ * @phan-file-suppress PhanPossiblyUndeclaredVariable
18
+ * @phan-file-suppress PhanPossiblyFalseTypeArgument
19
+ * @phan-file-suppress PhanPossiblyFalseTypeArgumentInternal
20
+ *
21
+ * @package event-list
22
+ */
23
+
24
+ // TODO: Fix phpcs warnings to remove the disabled checks
25
+ // phpcs:disable WordPress.DateTime.CurrentTimeTimestamp.Requested
26
+
27
  if ( ! defined( 'WP_ADMIN' ) ) {
28
  exit;
29
  }
93
  global $post;
94
  if ( $this->is_new && empty( $this->copy_event ) ) {
95
  // set next day as date
96
+ // next day (86400 seconds = 1*24*60*60 = 1 day);
97
+ $startdate = current_time( 'timestamp' ) + 86400;
98
  $enddate = $startdate;
99
  $starttime = '';
100
  $location = '';
107
  $location = esc_html( $event->location );
108
  }
109
  // Add required data for javascript in a hidden field
110
+ $json = wp_json_encode(
111
  array(
112
  'el_date_format' => $this->datepicker_format( $this->get_event_dateformat() ),
113
  'el_start_of_week' => get_option( 'start_of_week' ),
122
  echo '
123
  <input type="hidden" id="json_for_js" value=\'' . $json . '\' />
124
  <label class="event-option">' . __( 'Date', 'event-list' ) . ' (' . __( 'required', 'event-list' ) . '):</label>
125
+ <div class="event-data"><span class="date-wrapper"><input type="text" class="text form-required" name="startdate" id="startdate" value="' . gmdate( 'Y-m-d', $startdate ) . '" /><i class="dashicons dashicons-calendar-alt"></i></span>
126
+ <span id="enddate-area"> - <span class="date-wrapper"><input type="text" class="text" name="enddate" id="enddate" value="' . gmdate( 'Y-m-d', $enddate ) . '" /><i class="dashicons dashicons-calendar-alt"></i></span></span>
127
  <label class="el-inline-checkbox"><input type="checkbox" name="multiday" id="multiday" value="1" /> ' . __( 'Multi-Day Event', 'event-list' ) . '</label>
128
  <input type="hidden" id="startdate-iso" name="startdate-iso" value="" />
129
  <input type="hidden" id="enddate-iso" name="enddate-iso" value="" />
150
 
151
  public function form_after_title_content() {
152
  global $post, $wp_meta_boxes;
 
153
  // create "primary" metabox container, show all "primary" metaboxes in that container and unset the "primary" metaboxes afterwards
154
  echo '
155
  <div id="postbox-container-0" class="postbox-container">';
156
  do_meta_boxes( get_current_screen(), 'primary', $post );
 
157
  echo '
158
  </div>';
159
+ // TODO: Check if get_post_type with argument 'post' is possible and if unsetting the primary metabox is required at all
160
+ // @phan-suppress-next-line PhanTypeMismatchArgument
161
+ unset( $wp_meta_boxes[ get_post_type( 'post' ) ]['primary'] );
162
  // show label for event content
163
  echo '
164
  <label class="event-option">' . __( 'Event Content', 'event-list' ) . ':</label>';
167
 
168
  public function embed_scripts() {
169
  wp_enqueue_script( 'jquery-ui-datepicker' );
170
+ wp_enqueue_script( 'eventlist_admin_new_js', EL_URL . 'admin/js/admin_new.js', array(), '1.0', true );
171
  // TODO: wp_localize_jquery_ui_datepicker is available since WordPress version 4.6.0.
172
  // For compatibility to older versions the function_exists test was added, this test can be removed again in a later version.
173
  if ( function_exists( 'wp_localize_jquery_ui_datepicker' ) ) {
174
  wp_localize_jquery_ui_datepicker();
175
  }
176
+ wp_enqueue_style( 'eventlist_admin_new', EL_URL . 'admin/css/admin_new.css', array(), '1.0' );
177
  // add the jquery-ui style "smooth" (see https://jqueryui.com/download/) (required for the xwp datepicker skin)
178
+ wp_enqueue_style( 'eventlist_jqueryui', EL_URL . 'admin/css/jquery-ui.min.css', array(), '1.0' );
179
  // add the xwp datepicker skin (see https://github.com/xwp/wp-jquery-ui-datepicker-skins)
180
+ wp_enqueue_style( 'eventlist_datepicker', EL_URL . 'admin/css/jquery-ui-datepicker.css', array(), '1.0' );
181
  }
182
 
183
 
184
+ /**
185
+ * Safe the event data
186
+ *
187
+ * @param int $pid Post ID
188
+ * @param WP_Post $post Post Object
189
+ * @param bool $update Whether this is an existing post being updated
190
+ * @return bool|int
191
+ *
192
+ * TODO: Prepare a new array for the metadata from the $_POST array instead of using the $_POST array directly
193
+ * @suppress PhanTypePossiblyInvalidDimOffset
194
+ */
195
  public function save_eventdata( $pid, $post, $update ) {
196
  // don't do on autosave or when new posts are first created
197
  if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || 'auto-draft' === $post->post_status ) {
214
 
215
 
216
  private function get_event_dateformat() {
217
+ if ( '' === $this->options->get( 'el_edit_dateformat' ) ) {
218
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
219
  return __( 'Y/m/d' );
220
  } else {
221
  return $this->options->get( 'el_edit_dateformat' );
235
 
236
  global $post, $post_ID;
237
  $messages['el_events'] = array(
238
+ // Unused. Messages start at index 1.
239
+ 0 => '',
240
  1 => __( 'Event updated.', 'event-list' ) . ' <a href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'View event', 'event-list' ) . '</a>',
241
+ // Custom field updated is not required (no custom fields)
242
+ 2 => '',
243
+ // Custom field deleted is not required (no custom fields)
244
+ 3 => '',
245
  4 => __( 'Event updated.', 'event-list' ),
246
  5 => is_null( $revision ) ? false : sprintf( __( 'Event restored to revision from %1$s', 'event-list' ), wp_post_revision_title( $revision, false ) ),
247
  6 => __( 'Event published.', 'event-list' ) . ' <a href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'View event', 'event-list' ) . '</a>',
248
+ 7 => __( 'Event saved.', 'event-list' ),
249
  8 => __( 'Event submitted.', 'event-list' ) . ' <a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>',
250
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
251
  9 => sprintf( __( 'Event scheduled for: %1$s>', 'event-list' ), '<strong>' . date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ) . '</strong>' ) .
252
+ ' <a target="_blank" href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>',
253
  10 => __( 'Event draft updated.', 'event-list' ) . ' <a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>',
254
  );
255
  return $messages;
273
  private function datepicker_format( $format ) {
274
  return str_replace(
275
  array(
276
+ // Day
277
  'd',
278
  'j',
279
  'l',
280
+ 'z',
281
+ // Month
282
  'F',
283
  'M',
284
  'n',
285
+ 'm',
286
+ // Year
287
  'Y',
288
+ 'y',
289
  ),
290
  array(
291
+ // Day
292
  'dd',
293
  'd',
294
  'DD',
295
  'o',
296
+ // Month
297
  'MM',
298
  'M',
299
  'm',
300
  'mm',
301
+ // Year
302
  'yy',
303
  'y',
304
  ),
admin/includes/admin-settings.php CHANGED
@@ -1,4 +1,20 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -6,7 +22,9 @@ if ( ! defined( 'WP_ADMIN' ) ) {
6
  require_once EL_PATH . 'includes/options.php';
7
  require_once EL_PATH . 'admin/includes/admin-functions.php';
8
 
9
- // This class handles all data for the admin settings page
 
 
10
  class EL_Admin_Settings {
11
 
12
  private static $instance;
@@ -34,6 +52,7 @@ class EL_Admin_Settings {
34
 
35
  public function show_settings() {
36
  if ( ! current_user_can( 'manage_options' ) ) {
 
37
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
38
  }
39
  // check used get parameters
@@ -44,9 +63,8 @@ class EL_Admin_Settings {
44
  // check for changed settings
45
  if ( 'true' === $settings_updated ) {
46
  // show "settings saved" message
47
- $out .= '<div id="message" class="updated">
48
- <p><strong>' . __( 'Settings saved.' ) . '</strong></p>
49
- </div>';
50
  switch ( $tab ) {
51
  case 'frontend':
52
  // flush rewrite rules (required if permalink slug was changed)
@@ -77,7 +95,7 @@ class EL_Admin_Settings {
77
  if ( 'taxonomy' === $tab ) {
78
  $options['page'] = admin_url( 'edit.php?post_type=el_events&page=el_admin_cat_sync&switch_taxonomy=1' );
79
  $options['button_text'] = __( 'Go to Event Category switching page', 'event-list' );
80
- $options['button_class'] = __( 'secondary' );
81
  }
82
  $out .= $this->functions->show_option_form( $tab, $options );
83
  $out .= '
@@ -97,7 +115,7 @@ class EL_Admin_Settings {
97
  );
98
  $out = '<h3 class="nav-tab-wrapper">';
99
  foreach ( $tabs as $tab => $name ) {
100
- $class = ( $tab == $current ) ? ' nav-tab-active' : '';
101
  $out .= '<a class="nav-tab' . $class . '" href="' . remove_query_arg( 'settings-updated', add_query_arg( 'tab', $tab ) ) . '">' . $name . '</a>';
102
  }
103
  $out .= '</h3>';
@@ -106,7 +124,7 @@ class EL_Admin_Settings {
106
 
107
 
108
  public function embed_settings_scripts() {
109
- wp_enqueue_style( 'eventlist_admin_settings', EL_URL . 'admin/css/admin_settings.css' );
110
  }
111
 
112
  }
1
  <?php
2
+ /**
3
+ * This file displays the admin settings page
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
12
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
13
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
14
+ *
15
+ * @package event-list
16
+ */
17
+
18
  if ( ! defined( 'WP_ADMIN' ) ) {
19
  exit;
20
  }
22
  require_once EL_PATH . 'includes/options.php';
23
  require_once EL_PATH . 'admin/includes/admin-functions.php';
24
 
25
+ /**
26
+ * This class handles all data for the admin settings page
27
+ */
28
  class EL_Admin_Settings {
29
 
30
  private static $instance;
52
 
53
  public function show_settings() {
54
  if ( ! current_user_can( 'manage_options' ) ) {
55
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
56
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
57
  }
58
  // check used get parameters
63
  // check for changed settings
64
  if ( 'true' === $settings_updated ) {
65
  // show "settings saved" message
66
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
67
+ $out .= '<div id="message" class="updated"><p><strong>' . __( 'Settings saved.' ) . '</strong></p></div>';
 
68
  switch ( $tab ) {
69
  case 'frontend':
70
  // flush rewrite rules (required if permalink slug was changed)
95
  if ( 'taxonomy' === $tab ) {
96
  $options['page'] = admin_url( 'edit.php?post_type=el_events&page=el_admin_cat_sync&switch_taxonomy=1' );
97
  $options['button_text'] = __( 'Go to Event Category switching page', 'event-list' );
98
+ $options['button_class'] = 'secondary';
99
  }
100
  $out .= $this->functions->show_option_form( $tab, $options );
101
  $out .= '
115
  );
116
  $out = '<h3 class="nav-tab-wrapper">';
117
  foreach ( $tabs as $tab => $name ) {
118
+ $class = ( $tab === $current ) ? ' nav-tab-active' : '';
119
  $out .= '<a class="nav-tab' . $class . '" href="' . remove_query_arg( 'settings-updated', add_query_arg( 'tab', $tab ) ) . '">' . $name . '</a>';
120
  }
121
  $out .= '</h3>';
124
 
125
 
126
  public function embed_settings_scripts() {
127
+ wp_enqueue_style( 'eventlist_admin_settings', EL_URL . 'admin/css/admin_settings.css', array(), '1.0' );
128
  }
129
 
130
  }
admin/includes/event-category_functions.php CHANGED
@@ -1,4 +1,27 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -6,11 +29,18 @@ if ( ! defined( 'WP_ADMIN' ) ) {
6
  require_once EL_PATH . 'includes/events_post_type.php';
7
  require_once EL_PATH . 'includes/events.php';
8
 
9
- // This class handles general functions which can be used on different admin pages
 
 
10
  class EL_Event_Category_Functions {
11
 
12
  private static $instance;
13
 
 
 
 
 
 
14
  private $events_post_type;
15
 
16
  private $events;
@@ -33,6 +63,7 @@ class EL_Event_Category_Functions {
33
 
34
 
35
  public function get_sync_affected_cats( $direction, $types = array( 'to_add', 'to_del', 'to_mod' ) ) {
 
36
  if ( 'to_event_cats' === $direction ) {
37
  $this->register_event_category_taxonomy();
38
  }
@@ -61,15 +92,15 @@ class EL_Event_Category_Functions {
61
  $target_cats = $event_cat_slugs;
62
  }
63
  // to_add:
64
- if ( in_array( 'to_add', $types ) ) {
65
  $affected_cats['to_add'] = array_diff( $source_cats, $target_cats );
66
  }
67
  // to_del:
68
- if ( in_array( 'to_del', $types ) ) {
69
  $affected_cats['to_del'] = array_diff( $target_cats, $source_cats );
70
  }
71
  // to_mod:
72
- if ( in_array( 'to_mod', $types ) ) {
73
  $cat_intersect = array_intersect( $source_cats, $target_cats );
74
  // compare intersect elements and determine which categories require an update
75
  $affected_cats['to_mod'] = array();
@@ -85,10 +116,11 @@ class EL_Event_Category_Functions {
85
  // parent checking
86
  $post_cat_parent = 0 === $post_cat->parent ? null : get_category( $post_cat->parent );
87
  $event_cat_parent = 0 === $event_cat->parent ? null : $this->events->get_cat_by_id( $event_cat->parent );
88
- /*
89
- Add to $affected_cats['to_mod'] when:
90
- * * one of the category is root (parent isnull) and the other is not
91
- * * both category parent exists (instanceof WP_Term) and parent slug of post and event category are different
 
92
  */
93
  if ( ( is_null( $post_cat_parent ) xor is_null( $event_cat_parent ) ) ||
94
  ( $post_cat_parent instanceof WP_Term && $event_cat_parent instanceof WP_Term && ( $post_cat_parent->slug !== $event_cat_parent->slug ) ) ) {
@@ -126,7 +158,8 @@ class EL_Event_Category_Functions {
126
  $parent_id = $parent_target_cat instanceof WP_Term ? $parent_target_cat->term_id : 0;
127
  $args = array(
128
  'name' => $source_cat->name,
129
- 'alias_of' => isset( $source_cat->alias_of ) ? $source_cat->alias_of : '', // availability check required for older WordPress versions
 
130
  'description' => $source_cat->description,
131
  'parent' => $parent_id,
132
  'slug' => $source_cat->slug,
@@ -189,7 +222,7 @@ class EL_Event_Category_Functions {
189
  $target_taxonomy = $this->events_post_type->post_cat_taxonomy;
190
  $use_post_cats = '1';
191
  } else {
192
- return WP_Error( 'Wrong direction specified for translate_events_cats!' );
193
  }
194
  // Iterate over all events
195
  foreach ( $events as $event ) {
@@ -259,6 +292,7 @@ class EL_Event_Category_Functions {
259
 
260
  private function unregister_event_category_taxonomy() {
261
  $this->events_post_type->taxonomy = $this->events_post_type->post_cat_taxonomy;
 
262
  unregister_taxonomy( $this->events_post_type->event_cat_taxonomy );
263
  }
264
 
@@ -290,25 +324,3 @@ class EL_Event_Category_Functions {
290
  }
291
 
292
  }
293
-
294
- /** Function to unregister taxonomy before WordPress version 4.5
295
- */
296
- if ( ! function_exists( 'unregister_taxonomy' ) ) {
297
-
298
-
299
- function unregister_taxonomy( $taxonomy ) {
300
- if ( ! taxonomy_exists( $taxonomy ) ) {
301
- return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy.' ) );
302
- }
303
- $taxonomy_object = get_taxonomy( $taxonomy );
304
- // Do not allow unregistering internal taxonomies.
305
- if ( $taxonomy_object->_builtin ) {
306
- return new WP_Error( 'invalid_taxonomy', __( 'Unregistering a built-in taxonomy is not allowed.' ) );
307
- }
308
- global $wp_taxonomies;
309
- // Remove the taxonomy.
310
- unset( $wp_taxonomies[ $taxonomy ] );
311
- return true;
312
- }
313
- }
314
-
1
  <?php
2
+ /**
3
+ * The class to handle the event category functions
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPossiblyUndeclaredProperty
14
+ * @phan-file-suppress PhanPluginDuplicateConditionalNullCoalescing
15
+ *
16
+ * @package event-list
17
+ */
18
+
19
+ // TODO: Fix phpcs warnings to remove the disabled checks
20
+ // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
21
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery
22
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.NoCaching
23
+ // phpcs:disable WordPress.PHP.DevelopmentFunctions.error_log_error_log
24
+
25
  if ( ! defined( 'WP_ADMIN' ) ) {
26
  exit;
27
  }
29
  require_once EL_PATH . 'includes/events_post_type.php';
30
  require_once EL_PATH . 'includes/events.php';
31
 
32
+ /**
33
+ * This class handles general functions which can be used on different admin pages
34
+ */
35
  class EL_Event_Category_Functions {
36
 
37
  private static $instance;
38
 
39
+ /**
40
+ * The event post type
41
+ *
42
+ * @var EL_Events_Post_Type
43
+ */
44
  private $events_post_type;
45
 
46
  private $events;
63
 
64
 
65
  public function get_sync_affected_cats( $direction, $types = array( 'to_add', 'to_del', 'to_mod' ) ) {
66
+ $affected_cats = array();
67
  if ( 'to_event_cats' === $direction ) {
68
  $this->register_event_category_taxonomy();
69
  }
92
  $target_cats = $event_cat_slugs;
93
  }
94
  // to_add:
95
+ if ( in_array( 'to_add', $types, true ) ) {
96
  $affected_cats['to_add'] = array_diff( $source_cats, $target_cats );
97
  }
98
  // to_del:
99
+ if ( in_array( 'to_del', $types, true ) ) {
100
  $affected_cats['to_del'] = array_diff( $target_cats, $source_cats );
101
  }
102
  // to_mod:
103
+ if ( in_array( 'to_mod', $types, true ) ) {
104
  $cat_intersect = array_intersect( $source_cats, $target_cats );
105
  // compare intersect elements and determine which categories require an update
106
  $affected_cats['to_mod'] = array();
116
  // parent checking
117
  $post_cat_parent = 0 === $post_cat->parent ? null : get_category( $post_cat->parent );
118
  $event_cat_parent = 0 === $event_cat->parent ? null : $this->events->get_cat_by_id( $event_cat->parent );
119
+
120
+ /**
121
+ * Add to $affected_cats['to_mod'] when:
122
+ * * one of the category is root (parent isnull) and the other is not
123
+ * * both category parent exists (instanceof WP_Term) and parent slug of post and event category are different
124
  */
125
  if ( ( is_null( $post_cat_parent ) xor is_null( $event_cat_parent ) ) ||
126
  ( $post_cat_parent instanceof WP_Term && $event_cat_parent instanceof WP_Term && ( $post_cat_parent->slug !== $event_cat_parent->slug ) ) ) {
158
  $parent_id = $parent_target_cat instanceof WP_Term ? $parent_target_cat->term_id : 0;
159
  $args = array(
160
  'name' => $source_cat->name,
161
+ // availability check required for older WordPress versions
162
+ 'alias_of' => isset( $source_cat->alias_of ) ? $source_cat->alias_of : '',
163
  'description' => $source_cat->description,
164
  'parent' => $parent_id,
165
  'slug' => $source_cat->slug,
222
  $target_taxonomy = $this->events_post_type->post_cat_taxonomy;
223
  $use_post_cats = '1';
224
  } else {
225
+ return new WP_Error( 'Wrong direction specified for translate_events_cats!' );
226
  }
227
  // Iterate over all events
228
  foreach ( $events as $event ) {
292
 
293
  private function unregister_event_category_taxonomy() {
294
  $this->events_post_type->taxonomy = $this->events_post_type->post_cat_taxonomy;
295
+ // @phan-suppress-next-line PhanUndeclaredFunction The WordPress function unregister_taxonimy() exists
296
  unregister_taxonomy( $this->events_post_type->event_cat_taxonomy );
297
  }
298
 
324
  }
325
 
326
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/includes/upgrade.php CHANGED
@@ -1,4 +1,34 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WP_ADMIN' ) ) {
3
  exit;
4
  }
@@ -46,7 +76,7 @@ class EL_Upgrade {
46
 
47
  public function upgrade() {
48
  // check required get parameters
49
- $this->resume_version = isset( $_GET['resume-el-upgr'] ) ? str_replace( '-', '.', sanitize_title( $_GET['resume-el-upgr'] ) ) : false;
50
  $this->set_max_exec_time();
51
  $this->upgrade_starttime = time();
52
  // check upgrade trigger to avoid duplicate updates
@@ -100,7 +130,7 @@ class EL_Upgrade {
100
  return false;
101
  }
102
  // show upgrade message
103
- echo 'Event list plugin upgrade in progress &hellip;<br />Please be patience until this process is finished.<br />' .
104
  flush();
105
  return true;
106
  }
@@ -144,6 +174,7 @@ class EL_Upgrade {
144
  $events_post_type->use_post_categories = false !== get_option( 'el_sync_cats' );
145
  $events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy;
146
  // re-register events post type with correct taxonomy
 
147
  unregister_post_type( 'el_events' );
148
  $events_post_type->register_event_post_type();
149
  // register event_cateogry taxonomy if required
@@ -169,8 +200,10 @@ class EL_Upgrade {
169
  continue;
170
  }
171
  // import event category
172
- $args['slug'] = $cat['slug'];
173
- $args['description'] = $cat['desc'];
 
 
174
  if ( isset( $cat['parent'] ) ) {
175
  $parent = EL_Events::get_instance()->get_cat_by_slug( $cat['parent'] );
176
  if ( ! empty( $parent ) ) {
@@ -226,16 +259,18 @@ class EL_Upgrade {
226
  continue;
227
  }
228
  // import event
229
- $eventdata['title'] = $event['title'];
230
- $eventdata['startdate'] = $event['start_date'];
231
- $eventdata['enddate'] = $event['end_date'];
232
- $eventdata['starttime'] = $event['time'];
233
- $eventdata['location'] = $event['location'];
234
- $eventdata['content'] = $event['details'];
235
- $eventdata['post_date'] = $event['pub_date'];
236
- $eventdata['post_user'] = $event['pub_user'];
237
- $eventdata['categories'] = explode( '|', substr( $event['categories'], 1, -1 ) );
238
- $ret = EL_Event::save( $eventdata );
 
 
239
  if ( empty( $ret ) ) {
240
  $this->log( 'Import of event "' . $eventdata['title'] . '" failed!', true, true );
241
  } else {
@@ -317,7 +352,7 @@ class EL_Upgrade {
317
 
318
 
319
  private function is_action_item_completed( $action, $id ) {
320
- return in_array( $id, $this->upgr_action_status[ $action ] );
321
  }
322
 
323
 
@@ -532,12 +567,13 @@ class EL_Upgrade {
532
  * This function prints the error messages to the log file, prepares the text for the admin ui message
533
  * and sets the error flag (required for the admin ui message)
534
  *
535
- * @param string $text Message text
536
- * @param bool|null $msg Print error message:
537
- * null: don't print message to debug log or upgrade log file
538
- * false: only print message to debug log
539
- * true: print message to log and upgrade log file
540
- * @return null
 
541
  */
542
  private function log( $text, $msg = true, $error = false ) {
543
  $error_text = '';
@@ -549,26 +585,11 @@ class EL_Upgrade {
549
  error_log( 'EL_UPGRADE: ' . $error_text . $text );
550
  }
551
  if ( $this->logfile_handle && $msg ) {
552
- $time = date( '[Y-m-d H:i:s] ', time() );
553
  fwrite( $this->logfile_handle, $time . $error_text . $text . PHP_EOL );
554
  }
555
  }
556
 
557
  }
558
 
559
- /** Function to unregister posttype before WordPress version 4.5
560
- */
561
- if ( ! function_exists( 'unregister_post_type' ) ) {
562
-
563
-
564
- function unregister_post_type( $post_type ) {
565
- global $wp_post_types;
566
- if ( isset( $wp_post_types[ $post_type ] ) ) {
567
- unset( $wp_post_types[ $post_type ] );
568
- return true;
569
- }
570
- return false;
571
- }
572
-
573
- }
574
 
1
  <?php
2
+ /**
3
+ * The class for version upgrade handling
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPublicProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
9
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
10
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
11
+ * @phan-file-suppress PhanPluginUnknownPropertyType
12
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
13
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
14
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
15
+ * @phan-file-suppress PhanPartialTypeMismatchProperty
16
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
17
+ * @phan-file-suppress PhanTypeMismatchArgumentProbablyReal
18
+ *
19
+ * @package event-list
20
+ */
21
+
22
+ // TODO: Fix phpcs warnings to remove the disabled checks
23
+ // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
24
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery
25
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.NoCaching
26
+ // phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
27
+ // phpcs:disable WordPress.PHP.DevelopmentFunctions.error_log_error_log
28
+ // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_fopen
29
+ // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_fwrite
30
+ // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_fclose
31
+
32
  if ( ! defined( 'WP_ADMIN' ) ) {
33
  exit;
34
  }
76
 
77
  public function upgrade() {
78
  // check required get parameters
79
+ $this->resume_version = isset( $_GET['resume-el-upgr'] ) ? str_replace( '-', '.', sanitize_title( wp_unslash( $_GET['resume-el-upgr'] ) ) ) : false;
80
  $this->set_max_exec_time();
81
  $this->upgrade_starttime = time();
82
  // check upgrade trigger to avoid duplicate updates
130
  return false;
131
  }
132
  // show upgrade message
133
+ echo 'Event list plugin upgrade in progress &hellip;<br />Please be patience until this process is finished.<br />';
134
  flush();
135
  return true;
136
  }
174
  $events_post_type->use_post_categories = false !== get_option( 'el_sync_cats' );
175
  $events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy;
176
  // re-register events post type with correct taxonomy
177
+ // @phan-suppress-next-line PhanUndeclaredFunction The WordPress function unregister_post_type() is existing.
178
  unregister_post_type( 'el_events' );
179
  $events_post_type->register_event_post_type();
180
  // register event_cateogry taxonomy if required
200
  continue;
201
  }
202
  // import event category
203
+ $args = array(
204
+ 'slug' => $cat['slug'],
205
+ 'description' => $cat['desc'],
206
+ );
207
  if ( isset( $cat['parent'] ) ) {
208
  $parent = EL_Events::get_instance()->get_cat_by_slug( $cat['parent'] );
209
  if ( ! empty( $parent ) ) {
259
  continue;
260
  }
261
  // import event
262
+ $eventdata = array(
263
+ 'title' => $event['title'],
264
+ 'startdate' => $event['start_date'],
265
+ 'enddate' => $event['end_date'],
266
+ 'starttime' => $event['time'],
267
+ 'location' => $event['location'],
268
+ 'content' => $event['details'],
269
+ 'post_date' => $event['pub_date'],
270
+ 'post_user' => $event['pub_user'],
271
+ 'categories' => explode( '|', substr( $event['categories'], 1, -1 ) ),
272
+ );
273
+ $ret = EL_Event::save( $eventdata );
274
  if ( empty( $ret ) ) {
275
  $this->log( 'Import of event "' . $eventdata['title'] . '" failed!', true, true );
276
  } else {
352
 
353
 
354
  private function is_action_item_completed( $action, $id ) {
355
+ return in_array( $id, $this->upgr_action_status[ $action ], true );
356
  }
357
 
358
 
567
  * This function prints the error messages to the log file, prepares the text for the admin ui message
568
  * and sets the error flag (required for the admin ui message)
569
  *
570
+ * @param string $text Message text
571
+ * @param bool|null $msg Print error message:
572
+ * null: don't print message to debug log or upgrade log file
573
+ * false: only print message to debug log
574
+ * true: print message to log and upgrade log file
575
+ * @param bool $error Shall the error be logged
576
+ * @return void
577
  */
578
  private function log( $text, $msg = true, $error = false ) {
579
  $error_text = '';
585
  error_log( 'EL_UPGRADE: ' . $error_text . $text );
586
  }
587
  if ( $this->logfile_handle && $msg ) {
588
+ $time = gmdate( '[Y-m-d H:i:s] ' );
589
  fwrite( $this->logfile_handle, $time . $error_text . $text . PHP_EOL );
590
  }
591
  }
592
 
593
  }
594
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
 
event-list.php CHANGED
@@ -3,14 +3,14 @@
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.6
7
  * Author: mibuthu
8
  * Author URI: https://wordpress.org/plugins/event-list/
9
  * Text Domain: event-list
10
  * License: GPLv2
11
  *
12
  * A plugin for the blogging MySQL/PHP-based WordPress.
13
- * Copyright 2012-2021 mibuthu
14
  *
15
  * This program is free software; you can redistribute it and/or
16
  * modify it under the terms of the GNUs General Public License
@@ -96,7 +96,8 @@ class Event_List {
96
  // Init admin page
97
  require_once EL_PATH . 'admin/admin.php';
98
  EL_Admin::get_instance();
99
- } else { // Front page
 
100
  // Register actions
101
  add_action( 'wp_print_styles', array( &$this, 'print_styles' ) );
102
  }
@@ -111,7 +112,8 @@ class Event_List {
111
  public function load_textdomain() {
112
  $el_lang_path = basename( EL_PATH ) . '/languages';
113
  $domain = 'event-list';
114
- if ( '' !== get_option( 'el_mo_lang_dir_first', '' ) ) { // this->option->get not available in this early stage
 
115
  // Use default WordPress function (language files from language dir wp-content/languages/plugins/ are preferred)
116
  load_plugin_textdomain( $domain, false, $el_lang_path );
117
  } else {
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.7
7
  * Author: mibuthu
8
  * Author URI: https://wordpress.org/plugins/event-list/
9
  * Text Domain: event-list
10
  * License: GPLv2
11
  *
12
  * A plugin for the blogging MySQL/PHP-based WordPress.
13
+ * Copyright 2012-2022 mibuthu
14
  *
15
  * This program is free software; you can redistribute it and/or
16
  * modify it under the terms of the GNUs General Public License
96
  // Init admin page
97
  require_once EL_PATH . 'admin/admin.php';
98
  EL_Admin::get_instance();
99
+ } else {
100
+ // Front page
101
  // Register actions
102
  add_action( 'wp_print_styles', array( &$this, 'print_styles' ) );
103
  }
112
  public function load_textdomain() {
113
  $el_lang_path = basename( EL_PATH ) . '/languages';
114
  $domain = 'event-list';
115
+ if ( '' !== get_option( 'el_mo_lang_dir_first', '' ) ) {
116
+ // this->option->get not available in this early stage
117
  // Use default WordPress function (language files from language dir wp-content/languages/plugins/ are preferred)
118
  load_plugin_textdomain( $domain, false, $el_lang_path );
119
  } else {
includes/daterange.php CHANGED
@@ -1,9 +1,32 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
5
 
6
- // Class for database access via WordPress functions
 
 
7
  class EL_Daterange {
8
 
9
  private static $instance;
@@ -63,11 +86,11 @@ class EL_Daterange {
63
  // replace special values due to some date calculation problems,
64
  // then calculate the new date
65
  // and at last remove calculated days to get first day of the week (acc. start_of_week option), add 6 day for end date (- sign due to - for first day calculation)
66
- 'rel_day' => array(
67
- 'regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$',
68
- 'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
69
- 'end' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
70
- ),
71
  );
72
  $this->daterange_formats = array(
73
  'date_range' => array( 'regex' => '.+~.+' ),
@@ -84,19 +107,27 @@ class EL_Daterange {
84
  'past' => array(
85
  'regex' => '^past$',
86
  'start' => '1970-01-01',
 
87
  'end' => '--func--date("Y-m-d", current_time("timestamp")-86400);',
88
- ), // previous day (86400 seconds = 1*24*60*60 = 1 day
89
  );
90
  }
91
 
92
 
 
 
 
 
 
 
 
93
  public function load_formats_helptexts() {
94
  require_once EL_PATH . 'includes/daterange_helptexts.php';
95
- foreach ( $date_formats_helptexts as $name => $values ) {
96
  $this->date_formats[ $name ] += $values;
97
  }
98
  unset( $date_formats_helptexts );
99
- foreach ( $daterange_formats_helptexts as $name => $values ) {
100
  $this->daterange_formats[ $name ] += $values;
101
  }
102
  unset( $daterange_formats_helptexts );
@@ -117,7 +148,7 @@ class EL_Daterange {
117
  foreach ( $this->daterange_formats as $key => $daterange_type ) {
118
  if ( preg_match( '@' . $daterange_type['regex'] . '@', $element ) ) {
119
  // check for date_range which requires special handling
120
- if ( 'date_range' == $key ) {
121
  $sep_pos = strpos( $element, '~' );
122
  $startrange = $this->check_date_format( substr( $element, 0, $sep_pos ), 'start' );
123
  $endrange = $this->check_date_format( substr( $element, $sep_pos + 1 ), 'end' );
@@ -130,20 +161,35 @@ class EL_Daterange {
130
  }
131
 
132
 
 
 
 
 
 
 
 
 
 
 
133
  public function get_date_range( $element, &$range_type, $ret_value = null ) {
134
- if ( 'end' != $ret_value ) {
 
135
  // start date:
136
  // set range values by replacing %v% in $range_type string with $element
137
  $range[0] = str_replace( '%v%', $element, $range_type['start'] );
138
  // enum function if required
139
- if ( substr( $range[0], 0, 8 ) == '--func--' ) { // start
 
 
140
  eval( '$range[0] = ' . substr( $range[0], 8 ) );
141
  }
142
  }
143
- if ( 'start' != $ret_value ) {
144
  // same for end date:
145
  $range[1] = str_replace( '%v%', $element, $range_type['end'] );
146
- if ( substr( $range[1], 0, 8 ) == '--func--' ) { // end
 
 
147
  eval( '$range[1] = ' . substr( $range[1], 8 ) );
148
  }
149
  }
@@ -152,22 +198,34 @@ class EL_Daterange {
152
 
153
  }
154
 
155
- /*
156
- create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2
157
  */
158
  if ( ! function_exists( 'date_create_from_format' ) ) {
159
 
160
 
 
 
 
 
 
 
 
 
 
161
  function date_create_from_format( $dformat, $dvalue ) {
162
  $schedule = $dvalue;
163
  $schedule_format = str_replace( array( 'Y', 'm', 'd', 'H', 'i', 'a' ), array( '%Y', '%m', '%d', '%I', '%M', '%p' ), $dformat );
164
- $ugly = strptime( $schedule, $schedule_format );
165
- $ymd = sprintf(
 
166
  // This is a format string that takes six total decimal arguments, then left-pads
167
  // them with zeros to either 4 or 2 characters, as needed
168
  '%04d-%02d-%02d %02d:%02d:%02d',
169
- $ugly['tm_year'] + 1900, // This will be "111", so we need to add 1900.
170
- $ugly['tm_mon'] + 1, // This will be the month minus one, so we add one.
 
 
171
  $ugly['tm_mday'],
172
  $ugly['tm_hour'],
173
  $ugly['tm_min'],
@@ -175,5 +233,6 @@ if ( ! function_exists( 'date_create_from_format' ) ) {
175
  );
176
  return new DateTime( $ymd );
177
  }
 
178
  }
179
 
1
  <?php
2
+ /**
3
+ * The class to handle date ranges
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPublicProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
9
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPartialTypeMismatchArgumentInternal
14
+ * @phan-file-suppress PhanPossiblyFalseTypeArgumentInternal
15
+ * @phan-file-suppress PhanTypeArraySuspiciousNullable
16
+ *
17
+ * @package event-list
18
+ */
19
+
20
+ // TODO: Fix phpcs warnings to remove the disabled checks
21
+ // phpcs:disable WordPress.WhiteSpace.ControlStructureSpacing.BlankLineAfterEnd
22
+
23
  if ( ! defined( 'WPINC' ) ) {
24
  exit;
25
  }
26
 
27
+ /**
28
+ * Class for database access via WordPress functions
29
+ */
30
  class EL_Daterange {
31
 
32
  private static $instance;
86
  // replace special values due to some date calculation problems,
87
  // then calculate the new date
88
  // and at last remove calculated days to get first day of the week (acc. start_of_week option), add 6 day for end date (- sign due to - for first day calculation)
89
+ 'rel_day' => array(
90
+ 'regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$',
91
+ 'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
92
+ 'end' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
93
+ ),
94
  );
95
  $this->daterange_formats = array(
96
  'date_range' => array( 'regex' => '.+~.+' ),
107
  'past' => array(
108
  'regex' => '^past$',
109
  'start' => '1970-01-01',
110
+ // previous day (86400 seconds = 1*24*60*60 = 1 day
111
  'end' => '--func--date("Y-m-d", current_time("timestamp")-86400);',
112
+ ),
113
  );
114
  }
115
 
116
 
117
+ /**
118
+ * Load the formats help texts required for the admin page
119
+ *
120
+ * @return void
121
+ *
122
+ * @suppress PhanUndeclaredVariable
123
+ */
124
  public function load_formats_helptexts() {
125
  require_once EL_PATH . 'includes/daterange_helptexts.php';
126
+ foreach ( (array) $date_formats_helptexts as $name => $values ) {
127
  $this->date_formats[ $name ] += $values;
128
  }
129
  unset( $date_formats_helptexts );
130
+ foreach ( (array) $daterange_formats_helptexts as $name => $values ) {
131
  $this->daterange_formats[ $name ] += $values;
132
  }
133
  unset( $daterange_formats_helptexts );
148
  foreach ( $this->daterange_formats as $key => $daterange_type ) {
149
  if ( preg_match( '@' . $daterange_type['regex'] . '@', $element ) ) {
150
  // check for date_range which requires special handling
151
+ if ( 'date_range' === $key ) {
152
  $sep_pos = strpos( $element, '~' );
153
  $startrange = $this->check_date_format( substr( $element, 0, $sep_pos ), 'start' );
154
  $endrange = $this->check_date_format( substr( $element, $sep_pos + 1 ), 'end' );
161
  }
162
 
163
 
164
+ /**
165
+ * Get the date range of an element
166
+ *
167
+ * @param string $element The element
168
+ * @param array<string,string> $range_type The range type
169
+ * @param null|string $ret_value The return value
170
+ * @return string[]
171
+ *
172
+ * @suppress PhanPluginUnsafeEval
173
+ */
174
  public function get_date_range( $element, &$range_type, $ret_value = null ) {
175
+ $range = array();
176
+ if ( 'end' !== $ret_value ) {
177
  // start date:
178
  // set range values by replacing %v% in $range_type string with $element
179
  $range[0] = str_replace( '%v%', $element, $range_type['start'] );
180
  // enum function if required
181
+ if ( substr( $range[0], 0, 8 ) === '--func--' ) {
182
+ // start
183
+ // phpcs:ignore Squiz.PHP.Eval.Discouraged
184
  eval( '$range[0] = ' . substr( $range[0], 8 ) );
185
  }
186
  }
187
+ if ( 'start' !== $ret_value ) {
188
  // same for end date:
189
  $range[1] = str_replace( '%v%', $element, $range_type['end'] );
190
+ if ( substr( $range[1], 0, 8 ) === '--func--' ) {
191
+ // end
192
+ // phpcs:ignore Squiz.PHP.Eval.Discouraged
193
  eval( '$range[1] = ' . substr( $range[1], 8 ) );
194
  }
195
  }
198
 
199
  }
200
 
201
+ /**
202
+ * Create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2
203
  */
204
  if ( ! function_exists( 'date_create_from_format' ) ) {
205
 
206
 
207
+ /**
208
+ * Undocumented function
209
+ *
210
+ * @param string $dformat The date format
211
+ * @param string $dvalue The date value
212
+ * @return DateTime
213
+ *
214
+ * @suppress PhanDeprecatedFunctionInternal
215
+ */
216
  function date_create_from_format( $dformat, $dvalue ) {
217
  $schedule = $dvalue;
218
  $schedule_format = str_replace( array( 'Y', 'm', 'd', 'H', 'i', 'a' ), array( '%Y', '%m', '%d', '%I', '%M', '%p' ), $dformat );
219
+ // phpcs:ignore Generic.PHP.DeprecatedFunctions.Deprecated
220
+ $ugly = strptime( $schedule, $schedule_format );
221
+ $ymd = sprintf(
222
  // This is a format string that takes six total decimal arguments, then left-pads
223
  // them with zeros to either 4 or 2 characters, as needed
224
  '%04d-%02d-%02d %02d:%02d:%02d',
225
+ // This will be "111", so we need to add 1900.
226
+ $ugly['tm_year'] + 1900,
227
+ // This will be the month minus one, so we add one.
228
+ $ugly['tm_mon'] + 1,
229
  $ugly['tm_mday'],
230
  $ugly['tm_hour'],
231
  $ugly['tm_min'],
233
  );
234
  return new DateTime( $ymd );
235
  }
236
+
237
  }
238
 
includes/daterange_helptexts.php CHANGED
@@ -6,15 +6,23 @@ if ( ! defined( 'WPINC' ) ) {
6
  $date_formats_helptexts = array(
7
  'year' => array(
8
  'name' => __( 'Year', 'event-list' ),
9
- 'desc' => __( 'A year can be specified in 4 digit format.', 'event-list' ) . '<br />' .
10
- sprintf( __( 'For a start date filter the first day of %1$s is used, in an end date the last day.', 'event-list' ), __( 'the resulting year', 'event-list' ) ),
 
 
 
 
11
  'examp' => '2015',
12
  ),
13
 
14
  'month' => array(
15
  'name' => __( 'Month', 'event-list' ),
16
- 'desc' => __( 'A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-).', 'event-list' ) . '<br />' .
17
- sprintf( __( 'For a start date filter the first day of %1$s is used, in an end date the last day.', 'event-list' ), __( 'the resulting month', 'event-list' ) ),
 
 
 
 
18
  'examp' => '2015-03',
19
  ),
20
 
@@ -26,35 +34,97 @@ $date_formats_helptexts = array(
26
 
27
  'rel_year' => array(
28
  'name' => __( 'Relative Year', 'event-list' ),
29
- 'desc' => sprintf( __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ), __( 'A relative year', 'event-list' ), '<em>[+-]?[0-9]+_year[s]?</em>' ) . '<br />' .
30
- sprintf( __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ), '+/-', __( 'number of years', 'event-list' ), '"_year"', '"_years"' ) . '<br />' .
31
- sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_year</em>, <em>next_year</em>, <em>this_year</em>' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  'examp' => '+1_year',
33
  ),
34
 
35
  'rel_month' => array(
36
  'name' => __( 'Relative Month', 'event-list' ),
37
- 'desc' => sprintf( __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ), __( 'A relative month', 'event-list' ), '<em>[+-]?[0-9]+_month[s]?</em>' ) . '<br />' .
38
- sprintf( __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ), '+/-', __( 'number of months', 'event-list' ), '"_month"', '"_months"' ) . '<br />' .
39
- sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_month</em>, <em>next_month</em>, <em>this_month</em>' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  'examp' => '-6_months',
41
  ),
42
 
43
  'rel_week' => array(
44
  'name' => __( 'Relative Week', 'event-list' ),
45
- 'desc' => sprintf( __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ), __( 'A relative week', 'event-list' ), '<em>[+-]?[0-9]+_week[s]?</em>' ) . '<br />' .
46
- sprintf( __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ), '+/-', __( 'number of weeks', 'event-list' ), '"_week"', '"_weeks"' ) . '<br />' .
47
- sprintf( __( 'For a start date filter the first day of %1$s is used, in an end date the last day.', 'event-list' ), __( 'the resulting week', 'event-list' ) ) . '<br />' .
48
- sprintf( __( 'The first day of the week is depending on the option %1$s which can be found and changed in %2$s.', 'event-list' ), '"' . __( 'Week Starts On' ) . '"', '"' . __( 'Settings' ) . '" &rarr; "' . __( 'General' ) . '"' ) . '<br />' .
49
- sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_week</em>, <em>next_week</em>, <em>this_week</em>' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  'examp' => '+3_weeks',
51
  ),
52
 
53
  'rel_day' => array(
54
  'name' => __( 'Relative Day', 'event-list' ),
55
- 'desc' => sprintf( __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ), __( 'A relative day', 'event-list' ), '<em>[+-]?[0-9]+_day[s]?</em>' ) . '<br />' .
56
- sprintf( __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ), '+/-', __( 'number of days', 'event-list' ), '"_day"', '"_days"' ) . '<br />' .
57
- sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_day</em>, <em>next_day</em>, <em>this_day</em>, <em>yesterday</em>, <em>today</em>, <em>tomorrow</em>' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  'examp' => '-10_days',
59
  ),
60
  );
@@ -64,30 +134,43 @@ $daterange_formats_helptexts = array(
64
  'name' => __( 'Date range', 'event-list' ),
65
  'desc' => __(
66
  'A date rage can be specified via a start date and end date seperated by a tilde (~).<br />
67
- For the start and end date any available date format can be used.',
68
  'event-list'
69
  ),
70
  'examp' => '2015-03-29~2016',
71
  ),
72
 
73
  'all' => array(
 
74
  'name' => __( 'All' ),
75
- 'desc' => __( 'This value defines a range without any limits.', 'event-list' ) . '<br />' .
76
- sprintf( __( 'The corresponding date_range format is: %1$s', 'event-list' ), '<em>1970-01-01~2999-12-31</em>' ),
 
 
 
 
77
  'value' => 'all',
78
  ),
79
 
80
  'upcoming' => array(
81
  'name' => __( 'Upcoming', 'event-list' ),
82
- 'desc' => __( 'This value defines a range from the actual day to the future.', 'event-list' ) . '<br />' .
83
- sprintf( __( 'The corresponding date_range format is: %1$s', 'event-list' ), '<em>today~2999-12-31</em>' ),
 
 
 
 
84
  'value' => 'upcoming',
85
  ),
86
 
87
  'past' => array(
88
  'name' => __( 'Past', 'event-list' ),
89
- 'desc' => __( 'This value defines a range from the past to the previous day.', 'event-list' ) . '<br />' .
90
- sprintf( __( 'The corresponding date_range format is: %1$s', 'event-list' ), '<em>1970-01-01~yesterday</em>' ),
 
 
 
 
91
  'value' => 'past',
92
  ),
93
  );
6
  $date_formats_helptexts = array(
7
  'year' => array(
8
  'name' => __( 'Year', 'event-list' ),
9
+ 'desc' =>
10
+ __( 'A year can be specified in 4 digit format.', 'event-list' ) . '<br />' .
11
+ sprintf(
12
+ __( 'For a start date filter the first day of %1$s is used, in an end date the last day.', 'event-list' ),
13
+ __( 'the resulting year', 'event-list' )
14
+ ),
15
  'examp' => '2015',
16
  ),
17
 
18
  'month' => array(
19
  'name' => __( 'Month', 'event-list' ),
20
+ 'desc' =>
21
+ __( 'A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-).', 'event-list' ) . '<br />' .
22
+ sprintf(
23
+ __( 'For a start date filter the first day of %1$s is used, in an end date the last day.', 'event-list' ),
24
+ __( 'the resulting month', 'event-list' )
25
+ ),
26
  'examp' => '2015-03',
27
  ),
28
 
34
 
35
  'rel_year' => array(
36
  'name' => __( 'Relative Year', 'event-list' ),
37
+ 'desc' =>
38
+ sprintf(
39
+ __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ),
40
+ __( 'A relative year', 'event-list' ),
41
+ '<em>[+-]?[0-9]+_year[s]?</em>'
42
+ ) . '<br />' .
43
+ sprintf(
44
+ __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ),
45
+ '+/-',
46
+ __( 'number of years', 'event-list' ),
47
+ '"_year"',
48
+ '"_years"'
49
+ ) . '<br />' .
50
+ sprintf(
51
+ __( 'Additionally the following values are available: %1$s', 'event-list' ),
52
+ '<em>last_year</em>, <em>next_year</em>, <em>this_year</em>'
53
+ ),
54
  'examp' => '+1_year',
55
  ),
56
 
57
  'rel_month' => array(
58
  'name' => __( 'Relative Month', 'event-list' ),
59
+ 'desc' =>
60
+ sprintf(
61
+ __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ),
62
+ __( 'A relative month', 'event-list' ),
63
+ '<em>[+-]?[0-9]+_month[s]?</em>'
64
+ ) . '<br />' .
65
+ sprintf(
66
+ __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ),
67
+ '+/-',
68
+ __( 'number of months', 'event-list' ),
69
+ '"_month"',
70
+ '"_months"'
71
+ ) . '<br />' .
72
+ sprintf(
73
+ __( 'Additionally the following values are available: %1$s', 'event-list' ),
74
+ '<em>last_month</em>, <em>next_month</em>, <em>this_month</em>'
75
+ ),
76
  'examp' => '-6_months',
77
  ),
78
 
79
  'rel_week' => array(
80
  'name' => __( 'Relative Week', 'event-list' ),
81
+ 'desc' =>
82
+ sprintf(
83
+ __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ),
84
+ __( 'A relative week', 'event-list' ),
85
+ '<em>[+-]?[0-9]+_week[s]?</em>'
86
+ ) . '<br />' .
87
+ sprintf(
88
+ __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ),
89
+ '+/-',
90
+ __( 'number of weeks', 'event-list' ),
91
+ '"_week"',
92
+ '"_weeks"'
93
+ ) . '<br />' .
94
+ sprintf(
95
+ __( 'For a start date filter the first day of %1$s is used, in an end date the last day.', 'event-list' ),
96
+ __( 'the resulting week', 'event-list' )
97
+ ) . '<br />' .
98
+ sprintf(
99
+ __( 'The first day of the week is depending on the option %1$s which can be found and changed in %2$s.', 'event-list' ),
100
+ // phpcs:disable WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
101
+ '"' . __( 'Week Starts On' ) . '"',
102
+ '"' . __( 'Settings' ) . '" &rarr; "' . __( 'General' ) . '"'
103
+ // phpcs:enable
104
+ ) . '<br />' .
105
+ sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_week</em>, <em>next_week</em>, <em>this_week</em>' ),
106
  'examp' => '+3_weeks',
107
  ),
108
 
109
  'rel_day' => array(
110
  'name' => __( 'Relative Day', 'event-list' ),
111
+ 'desc' =>
112
+ sprintf(
113
+ __( '%1$s from now can be specified in the following notation: %2$s', 'event-list' ),
114
+ __( 'A relative day', 'event-list' ),
115
+ '<em>[+-]?[0-9]+_day[s]?</em>'
116
+ ) . '<br />' .
117
+ sprintf(
118
+ __( 'This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).', 'event-list' ),
119
+ '+/-',
120
+ __( 'number of days', 'event-list' ),
121
+ '"_day"',
122
+ '"_days"'
123
+ ) . '<br />' .
124
+ sprintf(
125
+ __( 'Additionally the following values are available: %1$s', 'event-list' ),
126
+ '<em>last_day</em>, <em>next_day</em>, <em>this_day</em>, <em>yesterday</em>, <em>today</em>, <em>tomorrow</em>'
127
+ ),
128
  'examp' => '-10_days',
129
  ),
130
  );
134
  'name' => __( 'Date range', 'event-list' ),
135
  'desc' => __(
136
  'A date rage can be specified via a start date and end date seperated by a tilde (~).<br />
137
+ For the start and end date any available date format can be used.',
138
  'event-list'
139
  ),
140
  'examp' => '2015-03-29~2016',
141
  ),
142
 
143
  'all' => array(
144
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
145
  'name' => __( 'All' ),
146
+ 'desc' =>
147
+ __( 'This value defines a range without any limits.', 'event-list' ) . '<br />' .
148
+ sprintf(
149
+ __( 'The corresponding date_range format is: %1$s', 'event-list' ),
150
+ '<em>1970-01-01~2999-12-31</em>'
151
+ ),
152
  'value' => 'all',
153
  ),
154
 
155
  'upcoming' => array(
156
  'name' => __( 'Upcoming', 'event-list' ),
157
+ 'desc' =>
158
+ __( 'This value defines a range from the actual day to the future.', 'event-list' ) . '<br />' .
159
+ sprintf(
160
+ __( 'The corresponding date_range format is: %1$s', 'event-list' ),
161
+ '<em>today~2999-12-31</em>'
162
+ ),
163
  'value' => 'upcoming',
164
  ),
165
 
166
  'past' => array(
167
  'name' => __( 'Past', 'event-list' ),
168
+ 'desc' =>
169
+ __( 'This value defines a range from the past to the previous day.', 'event-list' ) . '<br />' .
170
+ sprintf(
171
+ __( 'The corresponding date_range format is: %1$s', 'event-list' ),
172
+ '<em>1970-01-01~yesterday</em>'
173
+ ),
174
  'value' => 'past',
175
  ),
176
  );
includes/event.php CHANGED
@@ -1,4 +1,31 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -9,9 +36,16 @@ if ( version_compare( PHP_VERSION, '5.3' ) < 0 ) {
9
  require_once EL_PATH . 'includes/daterange.php';
10
  }
11
 
12
- // Class to manage categories
 
 
13
  class EL_Event {
14
 
 
 
 
 
 
15
  private $events_post_type;
16
 
17
  public $post;
@@ -65,10 +99,12 @@ class EL_Event {
65
 
66
  public static function save( $eventdata ) {
67
  // create new post
68
- $postdata['post_type'] = 'el_events';
69
- $postdata['post_status'] = 'publish';
70
- $postdata['post_title'] = $eventdata['title'];
71
- $postdata['post_content'] = $eventdata['content'];
 
 
72
  if ( isset( $eventdata['excerpt'] ) ) {
73
  $postdata['post_excerpt'] = $eventdata['excerpt'];
74
  }
@@ -97,20 +133,17 @@ class EL_Event {
97
  }
98
 
99
 
100
- /** ************************************************************************************************************
101
  * Create or update the event data (all event data except title and content)
102
  *
103
- * @param int $pid The post id of the event to update.
104
- * @param array $eventdata The event data provided in an array where the key is the event field and the
105
- * value is the corresponding data. The provided data does not have to be
106
- * sanitized from the user imputs because this is done in the function.
107
- * @return int|bool event id ... for a successfully created new event
108
- * true ... for a successfully modified existing event
109
- * false ... if an error occured during the creation or modification an event
110
- **************************************************************************************************************/
111
  public static function save_postmeta( $pid, $eventdata ) {
 
112
  $instance = new self( $pid );
113
- $errors = array();
114
 
115
  // Sanitize event data (event data will be provided without sanitation of user input)
116
  $eventdata['startdate'] = empty( $eventdata['startdate'] ) ? '' : preg_replace( '/[^0-9\-]/', '', $eventdata['startdate'] );
@@ -121,10 +154,11 @@ class EL_Event {
121
  // startdate
122
  $instance->startdate = $instance->validate_date( $eventdata['startdate'] );
123
  if ( empty( $instance->startdate ) ) {
124
- $errors[] = __( 'No valid start date provided', 'event-list' );
125
  }
126
  // enddate
127
  $instance->enddate = $instance->validate_date( $eventdata['enddate'] );
 
128
  if ( empty( $instance->enddate ) || new DateTime( $instance->enddate ) < new DateTime( $instance->startdate ) ) {
129
  $instance->enddate = $instance->startdate;
130
  }
@@ -138,11 +172,11 @@ class EL_Event {
138
  update_post_meta( $pid, $meta, $instance->$meta );
139
  }
140
  // error handling: set event back to pending, and publish error message
141
- if ( ! empty( $errors ) ) {
142
- // if((isset($_POST['publish']) || isset( $_POST['save'] ) ) && $_POST['post_status'] == 'publish' ) {
143
  global $wpdb;
144
  $wpdb->update( $wpdb->posts, array( 'post_status' => 'pending' ), array( 'ID' => $pid ) );
145
- add_filter( 'redirect_post_location', array( &$this, 'save_metadata_redirect_post_location_filter' ) );
146
  unset( $instance );
147
  return false;
148
  }
@@ -151,7 +185,10 @@ class EL_Event {
151
 
152
 
153
  private function save_metadata_redirect_post_location_filter( $location ) {
154
- return add_query_arg( "'.implode('<br />', $errors).'", '4', $location );
 
 
 
155
  }
156
 
157
 
@@ -169,11 +206,20 @@ class EL_Event {
169
  }
170
 
171
 
 
 
 
 
 
 
 
 
172
  private function validate_date( $datestring ) {
 
173
  $d = date_create_from_format( 'Y-m-d', $datestring );
174
- if ( $d && $d->format( 'Y-m-d' ) == $datestring
175
- && 1970 <= $d->format( 'Y' )
176
- && 2999 >= $d->format( 'Y' ) ) {
177
  return $datestring;
178
  }
179
  return false;
@@ -185,7 +231,7 @@ class EL_Event {
185
  $timestamp = strtotime( stripslashes( $timestring ) );
186
  // Return a standard time format if the conversion was successful
187
  if ( $timestamp ) {
188
- return date( 'H:i:s', $timestamp );
189
  }
190
  // Else return the given text
191
  return $timestring;
@@ -216,23 +262,20 @@ class EL_Event {
216
  }
217
 
218
 
219
- /** ************************************************************************************************************
220
  * Truncate HTML, close opened tags
221
  *
222
- * @param string $html The html code which should be shortened.
223
- * @param int $length The length (number of characters) to which the text will be shortened.
224
- * With [0] the full text will be returned. With [auto] also the complete text
225
- * will be used, but a wrapper div will be added which shortens the text to 1 full
226
- * line via css.
227
- * @param bool $skip If this value is true the truncate will be skipped (nothing will be done)
228
- * @param bool $perserve_tags Specifies if html tags should be preserved or if only the text should be
229
- * shortened.
230
- * @param string $link If an url is given a link to the given url will be added for the ellipsis at
231
- * the end of the truncated text.
232
- ***************************************************************************************************************/
233
  public function truncate( $html, $length, $skip = false, $preserve_tags = true, $link = false ) {
234
  mb_internal_encoding( 'UTF-8' );
235
- if ( 'auto' == $length ) {
236
  // add wrapper div with css styles for css truncate and return
237
  return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">' . $html . '</div>';
238
  } elseif ( empty( $length ) || mb_strlen( $html ) <= $length || $skip ) {
@@ -243,37 +286,38 @@ class EL_Event {
243
  return mb_substr( $html, 0, $length );
244
  } else {
245
  // truncate with preserving html tags
246
- $truncated = false;
247
- $printedLength = 0;
248
- $position = 0;
249
- $tags = array();
250
- $out = '';
251
- while ( $printedLength < $length && $this->mb_preg_match( '{</?([a-z]+\d?)[^>]*>|&#?[a-zA-Z0-9]+;}', $html, $match, PREG_OFFSET_CAPTURE, $position ) ) {
252
- list($tag, $tagPosition) = $match[0];
253
  // Print text leading up to the tag
254
- $str = mb_substr( $html, $position, $tagPosition - $position );
255
- if ( $printedLength + mb_strlen( $str ) > $length ) {
256
- $out .= mb_substr( $str, 0, $length - $printedLength );
257
- $printedLength = $length;
258
- $truncated = true;
259
  break;
260
  }
261
- $out .= $str;
262
- $printedLength += mb_strlen( $str );
263
- if ( '&' == $tag[0] ) {
264
  // Handle the entity
265
  $out .= $tag;
266
- $printedLength++;
267
  } else {
268
  // Handle the tag
269
- $tagName = $match[1][0];
270
  if ( $this->mb_preg_match( '{^</}', $tag ) ) {
271
  // This is a closing tag
272
- $openingTag = array_pop( $tags );
273
- if ( $openingTag != $tagName ) {
274
  // Not properly nested tag found: trigger a warning and add the not matching opening tag again
275
- trigger_error( 'Not properly nested tag found (last opening tag: ' . $openingTag . ', closing tag: ' . $tagName . ')', E_USER_NOTICE );
276
- $tags[] = $openingTag;
 
277
  } else {
278
  $out .= $tag;
279
  }
@@ -283,19 +327,19 @@ class EL_Event {
283
  } else {
284
  // Opening tag
285
  $out .= $tag;
286
- $tags[] = $tagName;
287
  }
288
  }
289
  // Continue after the tag
290
- $position = $tagPosition + mb_strlen( $tag );
291
  }
292
  // Print any remaining text
293
- if ( $printedLength < $length && $position < mb_strlen( $html ) ) {
294
- $out .= mb_substr( $html, $position, $length - $printedLength );
295
  }
296
  // Print ellipsis ("...") if the html was truncated.
297
  if ( $truncated ) {
298
- if ( $link ) {
299
  $out .= ' <a href="' . $link . '"> [' . __( 'read more', 'event-list' ) . '&hellip;]</a>';
300
  } else {
301
  $out .= ' [' . __( 'read more', 'event-list' ) . '&hellip;]';
1
  <?php
2
+ /**
3
+ * The Event class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPublicProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgumentInternal
15
+ * @phan-file-suppress PhanTypeMismatchProperty
16
+ * @phan-file-suppress PhanPossiblyUndeclaredProperty
17
+ * @phan-file-suppress PhanPluginDuplicateConditionalNullCoalescing
18
+ * @phan-file-suppress PhanPossiblyFalseTypeArgumentInternal
19
+ * @phan-file-suppress PhanTypeArraySuspiciousNullable
20
+ *
21
+ * @package event-list
22
+ */
23
+
24
+ // TODO: Fix phpcs warnings to remove the disabled checks
25
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery
26
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.NoCaching
27
+ // phpcs:disable PHPCompatibility.ParameterValues.NewIconvMbstringCharsetDefault.NotSet
28
+
29
  if ( ! defined( 'WPINC' ) ) {
30
  exit;
31
  }
36
  require_once EL_PATH . 'includes/daterange.php';
37
  }
38
 
39
+ /**
40
+ * The Event class
41
+ */
42
  class EL_Event {
43
 
44
+ /**
45
+ * The event post type
46
+ *
47
+ * @var EL_Events_Post_Type
48
+ */
49
  private $events_post_type;
50
 
51
  public $post;
99
 
100
  public static function save( $eventdata ) {
101
  // create new post
102
+ $postdata = array(
103
+ 'post_type' => 'el_events',
104
+ 'post_status' => 'publish',
105
+ 'post_title' => $eventdata['title'],
106
+ 'post_content' => $eventdata['content'],
107
+ );
108
  if ( isset( $eventdata['excerpt'] ) ) {
109
  $postdata['post_excerpt'] = $eventdata['excerpt'];
110
  }
133
  }
134
 
135
 
136
+ /**
137
  * Create or update the event data (all event data except title and content)
138
  *
139
+ * @param int $pid The post id of the event to update.
140
+ * @param array<string,string> $eventdata The event data provided in an array where the key is the event field and the value is the corresponding data.
141
+ * The provided data does not have to be sanitized from the user imputs because this is done in the function.
142
+ * @return self|false
143
+ */
 
 
 
144
  public static function save_postmeta( $pid, $eventdata ) {
145
+ global $el_event_errors;
146
  $instance = new self( $pid );
 
147
 
148
  // Sanitize event data (event data will be provided without sanitation of user input)
149
  $eventdata['startdate'] = empty( $eventdata['startdate'] ) ? '' : preg_replace( '/[^0-9\-]/', '', $eventdata['startdate'] );
154
  // startdate
155
  $instance->startdate = $instance->validate_date( $eventdata['startdate'] );
156
  if ( empty( $instance->startdate ) ) {
157
+ $el_event_errors[] = __( 'No valid start date provided', 'event-list' );
158
  }
159
  // enddate
160
  $instance->enddate = $instance->validate_date( $eventdata['enddate'] );
161
+ // @phan-suppress-next-line PhanPluginComparisonObjectOrdering Comparing DateTime instances is allowed
162
  if ( empty( $instance->enddate ) || new DateTime( $instance->enddate ) < new DateTime( $instance->startdate ) ) {
163
  $instance->enddate = $instance->startdate;
164
  }
172
  update_post_meta( $pid, $meta, $instance->$meta );
173
  }
174
  // error handling: set event back to pending, and publish error message
175
+ if ( ! empty( $el_event_errors ) ) {
176
+ // TODO: Check the comment: "if((isset($_POST['publish']) || isset( $_POST['save'] ) ) && $_POST['post_status'] == 'publish' )"
177
  global $wpdb;
178
  $wpdb->update( $wpdb->posts, array( 'post_status' => 'pending' ), array( 'ID' => $pid ) );
179
+ add_filter( 'redirect_post_location', array( &$instance, 'save_metadata_redirect_post_location_filter' ) );
180
  unset( $instance );
181
  return false;
182
  }
185
 
186
 
187
  private function save_metadata_redirect_post_location_filter( $location ) {
188
+ global $el_event_errors;
189
+ $location = add_query_arg( "'.implode('<br />', $el_event_errors).'", '4', $location );
190
+ unset( $el_event_errors );
191
+ return $location;
192
  }
193
 
194
 
206
  }
207
 
208
 
209
+ /**
210
+ * Validate a given date string
211
+ *
212
+ * @param string $datestring The date string to validate
213
+ * @return false|string
214
+ *
215
+ * @suppress PhanDeprecatedFunctionInternal
216
+ */
217
  private function validate_date( $datestring ) {
218
+ // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.date_create_from_formatFound
219
  $d = date_create_from_format( 'Y-m-d', $datestring );
220
+ if ( $d && $d->format( 'Y-m-d' ) === $datestring
221
+ && 1970 <= $d->format( 'Y' )
222
+ && 2999 >= $d->format( 'Y' ) ) {
223
  return $datestring;
224
  }
225
  return false;
231
  $timestamp = strtotime( stripslashes( $timestring ) );
232
  // Return a standard time format if the conversion was successful
233
  if ( $timestamp ) {
234
+ return gmdate( 'H:i:s', $timestamp );
235
  }
236
  // Else return the given text
237
  return $timestring;
262
  }
263
 
264
 
265
+ /**
266
  * Truncate HTML, close opened tags
267
  *
268
+ * @param string $html The html code which should be shortened.
269
+ * @param int $length The length (number of characters) to which the text will be shortened.
270
+ * With [0] the full text will be returned. With [auto] also the complete text will be used,
271
+ * but a wrapper div will be added which shortens the text to 1 full line via css.
272
+ * @param bool $skip If this value is true the truncate will be skipped (nothing will be done).
273
+ * @param bool $preserve_tags Specifies if html tags should be preserved or if only the text should be shortened.
274
+ * @param false|string $link If an url is given a link to the given url will be added for the ellipsis at the end of the truncated text.
275
+ */
 
 
 
276
  public function truncate( $html, $length, $skip = false, $preserve_tags = true, $link = false ) {
277
  mb_internal_encoding( 'UTF-8' );
278
+ if ( 'auto' === $length ) {
279
  // add wrapper div with css styles for css truncate and return
280
  return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">' . $html . '</div>';
281
  } elseif ( empty( $length ) || mb_strlen( $html ) <= $length || $skip ) {
286
  return mb_substr( $html, 0, $length );
287
  } else {
288
  // truncate with preserving html tags
289
+ $truncated = false;
290
+ $printed_length = 0;
291
+ $position = 0;
292
+ $tags = array();
293
+ $out = '';
294
+ while ( $printed_length < $length && $this->mb_preg_match( '{</?([a-z]+\d?)[^>]*>|&#?[a-zA-Z0-9]+;}', $html, $match, PREG_OFFSET_CAPTURE, $position ) ) {
295
+ list($tag, $tag_position) = $match[0];
296
  // Print text leading up to the tag
297
+ $str = mb_substr( $html, $position, $tag_position - $position );
298
+ if ( $printed_length + mb_strlen( $str ) > $length ) {
299
+ $out .= mb_substr( $str, 0, $length - $printed_length );
300
+ $printed_length = $length;
301
+ $truncated = true;
302
  break;
303
  }
304
+ $out .= $str;
305
+ $printed_length += mb_strlen( $str );
306
+ if ( '&' === $tag[0] ) {
307
  // Handle the entity
308
  $out .= $tag;
309
+ $printed_length++;
310
  } else {
311
  // Handle the tag
312
+ $tag_name = $match[1][0];
313
  if ( $this->mb_preg_match( '{^</}', $tag ) ) {
314
  // This is a closing tag
315
+ $opening_tag = array_pop( $tags );
316
+ if ( $opening_tag !== $tag_name ) {
317
  // Not properly nested tag found: trigger a warning and add the not matching opening tag again
318
+ // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error
319
+ trigger_error( 'Not properly nested tag found (last opening tag: ' . $opening_tag . ', closing tag: ' . $tag_name . ')', E_USER_NOTICE );
320
+ $tags[] = $opening_tag;
321
  } else {
322
  $out .= $tag;
323
  }
327
  } else {
328
  // Opening tag
329
  $out .= $tag;
330
+ $tags[] = $tag_name;
331
  }
332
  }
333
  // Continue after the tag
334
+ $position = $tag_position + mb_strlen( $tag );
335
  }
336
  // Print any remaining text
337
+ if ( $printed_length < $length && $position < mb_strlen( $html ) ) {
338
+ $out .= mb_substr( $html, $position, $length - $printed_length );
339
  }
340
  // Print ellipsis ("...") if the html was truncated.
341
  if ( $truncated ) {
342
+ if ( is_string( $link ) ) {
343
  $out .= ' <a href="' . $link . '"> [' . __( 'read more', 'event-list' ) . '&hellip;]</a>';
344
  } else {
345
  $out .= ' [' . __( 'read more', 'event-list' ) . '&hellip;]';
includes/events.php CHANGED
@@ -1,4 +1,25 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -93,8 +114,9 @@ class EL_Events {
93
  }
94
  $event_sql = $this->get_events_sql( $options );
95
  $where = $this->get_sql_filter_string( $options['date_filter'], $options['cat_filter'] );
96
- if ( 'desc' != $options['order'] ) {
97
- $options['order'] = 'asc'; // standard order is ASC
 
98
  }
99
  $sql = 'SELECT DISTINCT ' . $distinct . ' AS listitems FROM (' . $event_sql . ' WHERE ' . $where . ') AS filterlist ORDER BY listitems ' . strtoupper( $options['order'] );
100
  $result = wp_list_pluck( $wpdb->get_results( $sql ), 'listitems' );
@@ -116,7 +138,7 @@ class EL_Events {
116
  foreach ( $result as $cat ) {
117
  $terms[] = $this->get_cat_by_slug( $cat );
118
  }
119
- /*
120
  * Separate elements into two buckets: top level and children elements.
121
  * Children_elements is two dimensional array, eg.
122
  * Children_elements[10][] contains all sub-elements whose parent is 10.
@@ -181,10 +203,10 @@ class EL_Events {
181
  }
182
  if ( $options['incl_categories'] ) {
183
  $sql .= ', (CONCAT("|", (SELECT GROUP_CONCAT(' . $wpdb->terms . '.slug SEPARATOR "|") FROM ' . $wpdb->terms
184
- . ' INNER JOIN ' . $wpdb->term_taxonomy . ' ON ' . $wpdb->terms . '.term_id = ' . $wpdb->term_taxonomy . '.term_id'
185
- . ' INNER JOIN ' . $wpdb->term_relationships . ' wpr ON wpr.term_taxonomy_id = ' . $wpdb->term_taxonomy . '.term_taxonomy_id'
186
- . ' WHERE taxonomy= "' . $this->events_post_type->taxonomy . '" AND ' . $wpdb->posts . '.ID = wpr.object_id'
187
- . '), "|")) AS categories';
188
  }
189
  $status_sql = empty( $options['status'] ) ? '' : ' AND post_status = "' . $options['status'] . '"';
190
  $sql .= ' FROM ' . $wpdb->posts . ' WHERE post_type = "el_events"' . $status_sql . ') AS events';
@@ -194,56 +216,42 @@ class EL_Events {
194
 
195
  public function get_num_events( $status = 'publish' ) {
196
  $count = wp_count_posts( 'el_events' );
197
- // return special case 'all'
198
  if ( 'all' === $status ) {
199
  return $count->publish + $count->future + $count->draft + $count->pending + $count->private;
200
  }
201
- if ( in_array( $status, array( 'publish', 'future', 'draft', 'pending', 'private', 'trash', 'auto-draft', 'inherit' ) ) ) {
202
  return $count->$status;
203
  }
204
  return false;
205
  }
206
 
207
 
208
- public function delete_events( $id_array ) {
209
- global $wpdb;
210
- // sanitize to int values only
211
- $id_array = array_map( 'intval', $id_array );
212
- if ( in_array( 0, $id_array ) ) {
213
- // something is wrong with the event_ids array
214
- return false;
215
- }
216
- // sql query
217
- $num_deleted = intval( $wpdb->query( 'DELETE FROM ' . $this->table . ' WHERE id IN (' . implode( ',', $id_array ) . ')' ) );
218
- return $num_deleted == count( $id_array );
219
- }
220
-
221
-
222
- public function count_events( $slug ) {
223
- global $wpdb;
224
- $sql = 'SELECT COUNT(*) FROM ' . $this->table . ' WHERE categories LIKE "%|' . $slug . '|%"';
225
- return $wpdb->get_var( $sql );
226
- }
227
-
228
-
229
  private function get_sql_filter_string( $date_filter = null, $cat_filter = null ) {
230
  $sql_filter_string = '';
231
  // date filter
232
- $date_filter = str_replace( ' ', '', $date_filter );
233
- if ( null != $date_filter && 'all' != $date_filter && '' != $date_filter ) {
234
- $sql_filter_string .= $this->filter_walker( $date_filter, 'sql_date_filter' );
 
 
 
235
  }
236
  // cat_filter
237
- $cat_filter = str_replace( ' ', '', $cat_filter );
238
- if ( null != $cat_filter && 'all' != $cat_filter && '' != $cat_filter ) {
239
- if ( '' != $sql_filter_string ) {
240
- $sql_filter_string .= ' AND ';
 
 
 
 
241
  }
242
- $sql_filter_string .= $this->filter_walker( $cat_filter, 'sql_cat_filter' );
243
  }
244
  // no filter
245
- if ( '' == $sql_filter_string ) {
246
- $sql_filter_string = '1'; // in SQL "WHERE 1" is used to show all events
 
247
  }
248
  return $sql_filter_string;
249
  }
@@ -262,7 +270,7 @@ class EL_Events {
262
  $filter_length = strlen( $filter_text );
263
  $filter_sql = '(';
264
  for ( $i = 0; $i < $filter_length; $i++ ) {
265
- if ( in_array( $filter_text[ $i ], $delimiter_keys ) ) {
266
  if ( '' !== $element ) {
267
  $filter_sql .= call_user_func( array( $this, $callback ), $element );
268
  $element = '';
@@ -288,7 +296,7 @@ class EL_Events {
288
  // set to standard (upcoming)
289
  $range = $this->daterange->get_date_range( $element, $this->options->daterange_formats['upcoming'] );
290
  }
291
- $date_for_startrange = ( '' == $this->options->get( 'el_multiday_filterrange' ) ) ? 'startdate' : 'enddate';
292
  return '(' . $date_for_startrange . ' >= "' . $range[0] . '" AND startdate <= "' . $range[1] . '")';
293
  }
294
 
1
  <?php
2
+ /**
3
+ * The events class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanImpossibleTypeComparison
14
+ *
15
+ * @package event-list
16
+ */
17
+
18
+ // TODO: Fix phpcs warnings to remove the disabled checks
19
+ // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
20
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery
21
+ // phpcs:disable WordPress.DB.DirectDatabaseQuery.NoCaching
22
+
23
  if ( ! defined( 'WPINC' ) ) {
24
  exit;
25
  }
114
  }
115
  $event_sql = $this->get_events_sql( $options );
116
  $where = $this->get_sql_filter_string( $options['date_filter'], $options['cat_filter'] );
117
+ if ( 'desc' !== $options['order'] ) {
118
+ $options['order'] = 'asc';
119
+ // standard order is ASC
120
  }
121
  $sql = 'SELECT DISTINCT ' . $distinct . ' AS listitems FROM (' . $event_sql . ' WHERE ' . $where . ') AS filterlist ORDER BY listitems ' . strtoupper( $options['order'] );
122
  $result = wp_list_pluck( $wpdb->get_results( $sql ), 'listitems' );
138
  foreach ( $result as $cat ) {
139
  $terms[] = $this->get_cat_by_slug( $cat );
140
  }
141
+ /**
142
  * Separate elements into two buckets: top level and children elements.
143
  * Children_elements is two dimensional array, eg.
144
  * Children_elements[10][] contains all sub-elements whose parent is 10.
203
  }
204
  if ( $options['incl_categories'] ) {
205
  $sql .= ', (CONCAT("|", (SELECT GROUP_CONCAT(' . $wpdb->terms . '.slug SEPARATOR "|") FROM ' . $wpdb->terms
206
+ . ' INNER JOIN ' . $wpdb->term_taxonomy . ' ON ' . $wpdb->terms . '.term_id = ' . $wpdb->term_taxonomy . '.term_id'
207
+ . ' INNER JOIN ' . $wpdb->term_relationships . ' wpr ON wpr.term_taxonomy_id = ' . $wpdb->term_taxonomy . '.term_taxonomy_id'
208
+ . ' WHERE taxonomy= "' . $this->events_post_type->taxonomy . '" AND ' . $wpdb->posts . '.ID = wpr.object_id'
209
+ . '), "|")) AS categories';
210
  }
211
  $status_sql = empty( $options['status'] ) ? '' : ' AND post_status = "' . $options['status'] . '"';
212
  $sql .= ' FROM ' . $wpdb->posts . ' WHERE post_type = "el_events"' . $status_sql . ') AS events';
216
 
217
  public function get_num_events( $status = 'publish' ) {
218
  $count = wp_count_posts( 'el_events' );
219
+ // return the special case 'all'
220
  if ( 'all' === $status ) {
221
  return $count->publish + $count->future + $count->draft + $count->pending + $count->private;
222
  }
223
+ if ( in_array( $status, array( 'publish', 'future', 'draft', 'pending', 'private', 'trash', 'auto-draft', 'inherit' ), true ) ) {
224
  return $count->$status;
225
  }
226
  return false;
227
  }
228
 
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  private function get_sql_filter_string( $date_filter = null, $cat_filter = null ) {
231
  $sql_filter_string = '';
232
  // date filter
233
+ if ( null !== $date_filter ) {
234
+ $date_filter = is_array( $date_filter ) ? implode( '&', $date_filter ) : $date_filter;
235
+ $date_filter = str_replace( ' ', '', $date_filter );
236
+ if ( 'all' !== $date_filter && '' !== $date_filter ) {
237
+ $sql_filter_string .= $this->filter_walker( $date_filter, 'sql_date_filter' );
238
+ }
239
  }
240
  // cat_filter
241
+ if ( null !== $cat_filter ) {
242
+ $cat_filter = is_array( $cat_filter ) ? implode( '&', $cat_filter ) : $cat_filter;
243
+ $cat_filter = str_replace( ' ', '', $cat_filter );
244
+ if ( 'all' !== $cat_filter && '' !== $cat_filter ) {
245
+ if ( '' !== $sql_filter_string ) {
246
+ $sql_filter_string .= ' AND ';
247
+ }
248
+ $sql_filter_string .= $this->filter_walker( $cat_filter, 'sql_cat_filter' );
249
  }
 
250
  }
251
  // no filter
252
+ if ( '' === $sql_filter_string ) {
253
+ // in SQL "WHERE 1" can be used to show all events
254
+ $sql_filter_string = '1';
255
  }
256
  return $sql_filter_string;
257
  }
270
  $filter_length = strlen( $filter_text );
271
  $filter_sql = '(';
272
  for ( $i = 0; $i < $filter_length; $i++ ) {
273
+ if ( in_array( $filter_text[ $i ], $delimiter_keys, true ) ) {
274
  if ( '' !== $element ) {
275
  $filter_sql .= call_user_func( array( $this, $callback ), $element );
276
  $element = '';
296
  // set to standard (upcoming)
297
  $range = $this->daterange->get_date_range( $element, $this->options->daterange_formats['upcoming'] );
298
  }
299
+ $date_for_startrange = ( '' === $this->options->get( 'el_multiday_filterrange' ) ) ? 'startdate' : 'enddate';
300
  return '(' . $date_for_startrange . ' >= "' . $range[0] . '" AND startdate <= "' . $range[1] . '")';
301
  }
302
 
includes/events_post_type.php CHANGED
@@ -1,4 +1,18 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -25,7 +39,7 @@ class EL_Events_Post_Type {
25
  /**
26
  * Get the singleton instance of the class.
27
  *
28
- * @return class instance reference
29
  */
30
  public static function &get_instance() {
31
  // Create class instance if required
@@ -40,7 +54,7 @@ class EL_Events_Post_Type {
40
  /**
41
  * Constructor which handles all required class preparations
42
  *
43
- * @return null
44
  */
45
  private function __construct() {
46
  // Register actions and filters
@@ -62,7 +76,7 @@ class EL_Events_Post_Type {
62
  /**
63
  * Register the events post type to handle the events.
64
  *
65
- * @return null
66
  */
67
  public function register_event_post_type() {
68
  $labels = array(
@@ -119,12 +133,13 @@ class EL_Events_Post_Type {
119
  /**
120
  * Register the event category taxonomy for handling event categories.
121
  *
122
- * @return
123
  */
124
  public function register_event_category_taxonomy() {
 
125
  $labels = array(
126
- 'name' => _x( 'Categories', 'taxonomy general name' ),
127
- 'singular_name' => _x( 'Category', 'taxonomy singular name' ),
128
  'search_items' => __( 'Search Categories' ),
129
  'popular_items' => __( 'Popular Categories' ),
130
  'all_items' => __( 'All Categories' ),
@@ -161,6 +176,7 @@ class EL_Events_Post_Type {
161
  'rewrite' => array( 'slug' => 'event-category' ),
162
  'query_var' => true,
163
  );
 
164
  register_taxonomy( $this->event_cat_taxonomy, 'el_events', $args );
165
  }
166
 
1
  <?php
2
+ /**
3
+ * The events post type class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPublicProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
9
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
12
+ *
13
+ * @package event-list
14
+ */
15
+
16
  if ( ! defined( 'WPINC' ) ) {
17
  exit;
18
  }
39
  /**
40
  * Get the singleton instance of the class.
41
  *
42
+ * @return self
43
  */
44
  public static function &get_instance() {
45
  // Create class instance if required
54
  /**
55
  * Constructor which handles all required class preparations
56
  *
57
+ * @return void
58
  */
59
  private function __construct() {
60
  // Register actions and filters
76
  /**
77
  * Register the events post type to handle the events.
78
  *
79
+ * @return void
80
  */
81
  public function register_event_post_type() {
82
  $labels = array(
133
  /**
134
  * Register the event category taxonomy for handling event categories.
135
  *
136
+ * @return void
137
  */
138
  public function register_event_category_taxonomy() {
139
+ // phpcs:disable WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
140
  $labels = array(
141
+ 'name' => __( 'Categories' ),
142
+ 'singular_name' => __( 'Category' ),
143
  'search_items' => __( 'Search Categories' ),
144
  'popular_items' => __( 'Popular Categories' ),
145
  'all_items' => __( 'All Categories' ),
176
  'rewrite' => array( 'slug' => 'event-category' ),
177
  'query_var' => true,
178
  );
179
+ // phpcs:enable
180
  register_taxonomy( $this->event_cat_taxonomy, 'el_events', $args );
181
  }
182
 
includes/filterbar.php CHANGED
@@ -1,18 +1,37 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
5
 
6
  require_once EL_PATH . 'includes/events.php';
7
- // require_once( EL_PATH.'includes/categories.php' );
8
 
9
- // This class handles the navigation and filter bar
 
 
10
  class EL_Filterbar {
11
 
12
  private static $instance;
13
 
14
  private $events;
15
- // private $categories;
16
 
17
  public static function &get_instance() {
18
  // Create class instance if required
@@ -26,11 +45,16 @@ class EL_Filterbar {
26
 
27
  private function __construct() {
28
  $this->events = &EL_Events::get_instance();
29
- // $this->categories = &EL_Categories::get_instance();
30
  }
31
 
32
 
33
- // main function to show the rendered HTML output
 
 
 
 
 
 
34
  public function show( $url, &$args ) {
35
  $this->parse_args( $args );
36
  $out = '
@@ -46,7 +70,8 @@ class EL_Filterbar {
46
  // split 3 section (left, center, right) seperated by semicolon
47
  $sections = array_slice( explode( ';', html_entity_decode( $args['filterbar_items'] ) ), 0, 3 );
48
  $section_align = array( 'left', 'center', 'right' );
49
- for ( $i = 0; $i < sizeof( $sections ); $i++ ) {
 
50
  if ( ! empty( $sections[ $i ] ) ) {
51
  $out .= '
52
  <div style="text-align:' . $section_align[ $i ] . '">';
@@ -56,7 +81,7 @@ class EL_Filterbar {
56
  // search for item options
57
  $options = array();
58
  $item_array = explode( '(', $item );
59
- if ( sizeof( $item_array ) > 1 ) {
60
  // options available
61
  $option_array = explode( '|', substr( $item_array[1], 0, -1 ) );
62
  foreach ( $option_array as $option_text ) {
@@ -64,19 +89,19 @@ class EL_Filterbar {
64
  $options[ $o[0] ] = $o[1];
65
  }
66
  }
67
- $item_array = explode( '_', $item_array[0] );
68
- switch ( $item_array[0] ) {
69
  case 'years':
70
- $out .= $this->show_years( $url, $args, $item_array[1], $options );
71
  break;
72
  case 'daterange':
73
- $out .= $this->show_daterange( $url, $args, $item_array[1], $options );
74
  break;
75
  case 'cats':
76
- $out .= $this->show_cats( $url, $args, $item_array[1], $options );
77
  break;
78
  case 'months':
79
- $out .= $this->show_months( $url, $args, $item_array[1], $options );
80
  break;
81
  case 'reset':
82
  $out .= $this->show_reset( $url, $args, $options );
@@ -110,13 +135,13 @@ class EL_Filterbar {
110
  $args['order'] = $options['years_order'];
111
  // prepare displayed elements
112
  $elements = array();
113
- if ( 'true' == $options['show_all'] ) {
114
  $elements[] = $this->all_element( 'date', $type );
115
  }
116
- if ( 'true' == $options['show_upcoming'] ) {
117
  $elements[] = $this->upcoming_element();
118
  }
119
- if ( 'true' == $options['show_past'] ) {
120
  $elements[] = $this->past_element();
121
  }
122
  $event_years = $this->events->get_filter_list( 'years', $args );
@@ -148,13 +173,13 @@ class EL_Filterbar {
148
  $args['order'] = $options['months_order'];
149
  // prepare displayed elements
150
  $elements = array();
151
- if ( 'true' == $options['show_all'] ) {
152
  $elements[] = $this->all_element( 'date', $type );
153
  }
154
- if ( 'true' == $options['show_upcoming'] ) {
155
  $elements[] = $this->upcoming_element();
156
  }
157
- if ( 'true' == $options['show_past'] ) {
158
  $elements[] = $this->past_element();
159
  }
160
  $event_months = $this->events->get_filter_list( 'months', $args );
@@ -162,7 +187,7 @@ class EL_Filterbar {
162
  list($year, $month) = explode( '-', $entry );
163
  $elements[] = array(
164
  'slug' => $entry,
165
- 'name' => date( $options['date_format'], mktime( 0, 0, 0, $month, 1, $year ) ),
166
  );
167
  }
168
  // display elements
@@ -186,7 +211,8 @@ class EL_Filterbar {
186
  // show all
187
  switch ( $item ) {
188
  case 'all':
189
- $elements[] = $this->all_element( 'date' ); // Always show short form ... hlist
 
190
  break;
191
  case 'upcoming':
192
  $elements[] = $this->upcoming_element();
@@ -205,6 +231,13 @@ class EL_Filterbar {
205
 
206
 
207
  public function show_cats( $url, &$args, $type = 'dropdown', $options = array() ) {
 
 
 
 
 
 
 
208
  $default_options = array(
209
  'show_all' => 'true',
210
  );
@@ -214,7 +247,7 @@ class EL_Filterbar {
214
  $args['hierarchical'] = true;
215
  // prepare displayed elements
216
  $elements = array();
217
- if ( 'true' == $options['show_all'] ) {
218
  $elements[] = $this->all_element( 'cat', $type );
219
  }
220
  // create elements array
@@ -222,7 +255,7 @@ class EL_Filterbar {
222
  foreach ( $cat_array as $cat ) {
223
  $elements[] = array(
224
  'slug' => $cat->slug,
225
- 'name' => str_pad( '', 12 * $cat->level, '&nbsp;', STR_PAD_LEFT ) . $cat->name,
226
  );
227
  }
228
  // display elements
@@ -251,7 +284,7 @@ class EL_Filterbar {
251
  $out = '<ul class="hlist">';
252
  foreach ( $elements as $element ) {
253
  $out .= '<li>';
254
- if ( $selected == $element['slug'] ) {
255
  $out .= '<strong>' . $element['name'] . '</strong>';
256
  } else {
257
  $out .= $this->show_link( add_query_arg( $name, $element['slug'], $url ), $element['name'] );
@@ -266,7 +299,7 @@ class EL_Filterbar {
266
  private function show_dropdown( $elements, $name, $selected = null, $sc_id = '' ) {
267
  $onchange = '';
268
  if ( ! is_admin() ) {
269
- wp_register_script( 'el_filterbar', EL_URL . 'includes/js/filterbar.js', null, true );
270
  add_action( 'wp_footer', array( &$this, 'footer_script' ) );
271
  $onchange = ' onchange="el_redirect(this.name,this.value,' . $sc_id . ')"';
272
  }
@@ -274,7 +307,7 @@ class EL_Filterbar {
274
  foreach ( $elements as $element ) {
275
  $out .= '
276
  <option';
277
- if ( $element['slug'] == $selected ) {
278
  $out .= ' selected="selected"';
279
  }
280
  $out .= ' value="' . $element['slug'] . '">' . esc_html( $element['name'] ) . '</option>';
@@ -292,10 +325,11 @@ class EL_Filterbar {
292
 
293
 
294
  private function all_element( $list_type = 'date', $display_type = 'hlist' ) {
295
- if ( 'hlist' == $display_type ) {
296
  $name = __( 'All', 'event-list' );
297
  } else {
298
- $name = ( 'date' == $list_type ) ? __( 'All Dates', 'event-list' ) : __( 'All Categories' );
 
299
  }
300
  return array(
301
  'slug' => 'all',
1
  <?php
2
+ /**
3
+ * The filterbar class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPartialTypeMismatchArgumentInternal
14
+ * @phan-file-suppress PhanPossiblyUndeclaredProperty
15
+ * @phan-file-suppress PhanPossiblyFalseTypeArgumentInternal
16
+ *
17
+ * @package event-list
18
+ */
19
+
20
  if ( ! defined( 'WPINC' ) ) {
21
  exit;
22
  }
23
 
24
  require_once EL_PATH . 'includes/events.php';
 
25
 
26
+ /**
27
+ * This class handles the navigation and filter bar
28
+ */
29
  class EL_Filterbar {
30
 
31
  private static $instance;
32
 
33
  private $events;
34
+
35
 
36
  public static function &get_instance() {
37
  // Create class instance if required
45
 
46
  private function __construct() {
47
  $this->events = &EL_Events::get_instance();
 
48
  }
49
 
50
 
51
+ /**
52
+ * Main function to show the rendered HTML output
53
+ *
54
+ * @param string $url The url for links
55
+ * @param array<string,string> $args The filerbar arguments
56
+ * @return string
57
+ */
58
  public function show( $url, &$args ) {
59
  $this->parse_args( $args );
60
  $out = '
70
  // split 3 section (left, center, right) seperated by semicolon
71
  $sections = array_slice( explode( ';', html_entity_decode( $args['filterbar_items'] ) ), 0, 3 );
72
  $section_align = array( 'left', 'center', 'right' );
73
+ $num_sections = count( $sections );
74
+ for ( $i = 0; $i < $num_sections; $i++ ) {
75
  if ( ! empty( $sections[ $i ] ) ) {
76
  $out .= '
77
  <div style="text-align:' . $section_align[ $i ] . '">';
81
  // search for item options
82
  $options = array();
83
  $item_array = explode( '(', $item );
84
+ if ( count( $item_array ) > 1 ) {
85
  // options available
86
  $option_array = explode( '|', substr( $item_array[1], 0, -1 ) );
87
  foreach ( $option_array as $option_text ) {
89
  $options[ $o[0] ] = $o[1];
90
  }
91
  }
92
+ list( $filter_type, $display_type ) = explode( '_', $item_array[0] );
93
+ switch ( $filter_type ) {
94
  case 'years':
95
+ $out .= $this->show_years( $url, $args, $display_type, $options );
96
  break;
97
  case 'daterange':
98
+ $out .= $this->show_daterange( $url, $args, $display_type, $options );
99
  break;
100
  case 'cats':
101
+ $out .= $this->show_cats( $url, $args, $display_type, $options );
102
  break;
103
  case 'months':
104
+ $out .= $this->show_months( $url, $args, $display_type, $options );
105
  break;
106
  case 'reset':
107
  $out .= $this->show_reset( $url, $args, $options );
135
  $args['order'] = $options['years_order'];
136
  // prepare displayed elements
137
  $elements = array();
138
+ if ( 'true' === $options['show_all'] ) {
139
  $elements[] = $this->all_element( 'date', $type );
140
  }
141
+ if ( 'true' === $options['show_upcoming'] ) {
142
  $elements[] = $this->upcoming_element();
143
  }
144
+ if ( 'true' === $options['show_past'] ) {
145
  $elements[] = $this->past_element();
146
  }
147
  $event_years = $this->events->get_filter_list( 'years', $args );
173
  $args['order'] = $options['months_order'];
174
  // prepare displayed elements
175
  $elements = array();
176
+ if ( 'true' === $options['show_all'] ) {
177
  $elements[] = $this->all_element( 'date', $type );
178
  }
179
+ if ( 'true' === $options['show_upcoming'] ) {
180
  $elements[] = $this->upcoming_element();
181
  }
182
+ if ( 'true' === $options['show_past'] ) {
183
  $elements[] = $this->past_element();
184
  }
185
  $event_months = $this->events->get_filter_list( 'months', $args );
187
  list($year, $month) = explode( '-', $entry );
188
  $elements[] = array(
189
  'slug' => $entry,
190
+ 'name' => gmdate( $options['date_format'], mktime( 0, 0, 0, intval( $month ), 1, intval( $year ) ) ),
191
  );
192
  }
193
  // display elements
211
  // show all
212
  switch ( $item ) {
213
  case 'all':
214
+ $elements[] = $this->all_element( 'date' );
215
+ // Always show short form ... hlist
216
  break;
217
  case 'upcoming':
218
  $elements[] = $this->upcoming_element();
231
 
232
 
233
  public function show_cats( $url, &$args, $type = 'dropdown', $options = array() ) {
234
+ $default_args = array(
235
+ 'date_filter' => array(),
236
+ 'cat_filter' => array(),
237
+ 'sc_id_for_url' => false,
238
+ 'selected_cats' => false,
239
+ );
240
+ $args = wp_parse_args( $args, $default_args );
241
  $default_options = array(
242
  'show_all' => 'true',
243
  );
247
  $args['hierarchical'] = true;
248
  // prepare displayed elements
249
  $elements = array();
250
+ if ( 'true' === $options['show_all'] ) {
251
  $elements[] = $this->all_element( 'cat', $type );
252
  }
253
  // create elements array
255
  foreach ( $cat_array as $cat ) {
256
  $elements[] = array(
257
  'slug' => $cat->slug,
258
+ 'name' => str_repeat( '&nbsp;', 3 * $cat->level ) . $cat->name,
259
  );
260
  }
261
  // display elements
284
  $out = '<ul class="hlist">';
285
  foreach ( $elements as $element ) {
286
  $out .= '<li>';
287
+ if ( $selected === $element['slug'] ) {
288
  $out .= '<strong>' . $element['name'] . '</strong>';
289
  } else {
290
  $out .= $this->show_link( add_query_arg( $name, $element['slug'], $url ), $element['name'] );
299
  private function show_dropdown( $elements, $name, $selected = null, $sc_id = '' ) {
300
  $onchange = '';
301
  if ( ! is_admin() ) {
302
+ wp_register_script( 'el_filterbar', EL_URL . 'includes/js/filterbar.js', array(), '1.0', true );
303
  add_action( 'wp_footer', array( &$this, 'footer_script' ) );
304
  $onchange = ' onchange="el_redirect(this.name,this.value,' . $sc_id . ')"';
305
  }
307
  foreach ( $elements as $element ) {
308
  $out .= '
309
  <option';
310
+ if ( $element['slug'] === $selected ) {
311
  $out .= ' selected="selected"';
312
  }
313
  $out .= ' value="' . $element['slug'] . '">' . esc_html( $element['name'] ) . '</option>';
325
 
326
 
327
  private function all_element( $list_type = 'date', $display_type = 'hlist' ) {
328
+ if ( 'hlist' === $display_type ) {
329
  $name = __( 'All', 'event-list' );
330
  } else {
331
+ // phpcs:ignore WordPress.WP.I18n.MissingArgDomainDefault -- Standard WordPress string
332
+ $name = ( 'date' === $list_type ) ? __( 'All Dates', 'event-list' ) : __( 'All Categories' );
333
  }
334
  return array(
335
  'slug' => 'all',
includes/ical.php CHANGED
@@ -1,4 +1,21 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -6,7 +23,9 @@ if ( ! defined( 'WPINC' ) ) {
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
 
12
  private static $instance;
@@ -55,17 +74,17 @@ class EL_ICal {
55
  'VERSION:2.0' . $eol .
56
  'PRODID:-//' . get_bloginfo( 'name' ) . '//NONSGML v1.0//EN' . $eol .
57
  'CALSCALE:GREGORIAN' . $eol .
58
- 'UID:' . md5( uniqid( mt_rand(), true ) ) . '@' . get_bloginfo( 'name' ) . $eol;
59
 
60
  if ( ! empty( $events ) ) {
61
  foreach ( $events as $event ) {
62
  echo 'BEGIN:VEVENT' . $eol .
63
- 'UID:' . md5( uniqid( mt_rand(), true ) ) . '@' . get_bloginfo( 'name' ) . $eol .
64
  'DTSTART:' . mysql2date( 'Ymd', $event->startdate, false ) . get_gmt_from_date( $event->starttime, '\THis\Z' ) . $eol;
65
  if ( $event->enddate !== $event->startdate ) {
66
  echo 'DTEND:' . mysql2date( 'Ymd', $event->enddate, false ) . $eol;
67
  }
68
- echo 'DTSTAMP:' . date( 'Ymd\THis\Z' ) . $eol .
69
  'LOCATION:' . $event->location . $eol .
70
  'SUMMARY:' . $this->sanitize_feed_text( $event->title ) . $eol;
71
  if ( ! empty( $event->content ) ) {
@@ -79,15 +98,14 @@ class EL_ICal {
79
 
80
 
81
  public function update_ical_rewrite_status() {
82
- $feeds = array_keys( (array) get_option( 'rewrite_rules' ), 'index.php?&feed=$matches[1]' );
83
  $feed_rewrite_status = 0 < count( preg_grep( '@[(\|]' . $this->get_feed_name() . '[\|)]@', $feeds ) );
84
- // if iCal is enabled but rewrite rules do not exist already, flush rewrite rules
85
- if ( '1' == $this->options->get( 'el_feed_enable_ical' ) && ! $feed_rewrite_status ) {
86
  // result: add eventlist ical to rewrite rules
87
  flush_rewrite_rules( false );
88
- }
89
- // if iCal is disabled but rewrite rules do exist already, flush rewrite rules also
90
- elseif ( '1' != $this->options->get( 'el_feed_enable_ical' ) && $feed_rewrite_status ) {
91
  // result: remove eventlist ical from rewrite rules
92
  flush_rewrite_rules( false );
93
  }
1
  <?php
2
+ /**
3
+ * The ICAL class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPossiblyFalseTypeArgument
15
+ *
16
+ * @package event-list
17
+ */
18
+
19
  if ( ! defined( 'WPINC' ) ) {
20
  exit;
21
  }
23
  require_once EL_PATH . 'includes/options.php';
24
  require_once EL_PATH . 'includes/events.php';
25
 
26
+ /**
27
+ * This class handles iCal feed
28
+ */
29
  class EL_ICal {
30
 
31
  private static $instance;
74
  'VERSION:2.0' . $eol .
75
  'PRODID:-//' . get_bloginfo( 'name' ) . '//NONSGML v1.0//EN' . $eol .
76
  'CALSCALE:GREGORIAN' . $eol .
77
+ 'UID:' . md5( uniqid( strval( wp_rand() ), true ) ) . '@' . get_bloginfo( 'name' ) . $eol;
78
 
79
  if ( ! empty( $events ) ) {
80
  foreach ( $events as $event ) {
81
  echo 'BEGIN:VEVENT' . $eol .
82
+ 'UID:' . md5( uniqid( strval( wp_rand() ), true ) ) . '@' . get_bloginfo( 'name' ) . $eol .
83
  'DTSTART:' . mysql2date( 'Ymd', $event->startdate, false ) . get_gmt_from_date( $event->starttime, '\THis\Z' ) . $eol;
84
  if ( $event->enddate !== $event->startdate ) {
85
  echo 'DTEND:' . mysql2date( 'Ymd', $event->enddate, false ) . $eol;
86
  }
87
+ echo 'DTSTAMP:' . gmdate( 'Ymd\THis\Z' ) . $eol .
88
  'LOCATION:' . $event->location . $eol .
89
  'SUMMARY:' . $this->sanitize_feed_text( $event->title ) . $eol;
90
  if ( ! empty( $event->content ) ) {
98
 
99
 
100
  public function update_ical_rewrite_status() {
101
+ $feeds = array_keys( (array) get_option( 'rewrite_rules' ), 'index.php?&feed=$matches[1]', true );
102
  $feed_rewrite_status = 0 < count( preg_grep( '@[(\|]' . $this->get_feed_name() . '[\|)]@', $feeds ) );
103
+ if ( '1' === $this->options->get( 'el_feed_enable_ical' ) && ! $feed_rewrite_status ) {
104
+ // if iCal is enabled but rewrite rules do not exist already, flush rewrite rules
105
  // result: add eventlist ical to rewrite rules
106
  flush_rewrite_rules( false );
107
+ } elseif ( '1' !== $this->options->get( 'el_feed_enable_ical' ) && $feed_rewrite_status ) {
108
+ // if iCal is disabled but rewrite rules do exist already, flush rewrite rules also
 
109
  // result: remove eventlist ical from rewrite rules
110
  flush_rewrite_rules( false );
111
  }
includes/options.php CHANGED
@@ -1,9 +1,28 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
5
 
6
- // This class handles all available options
 
 
7
  class EL_Options {
8
 
9
  private static $instance;
@@ -63,11 +82,11 @@ class EL_Options {
63
  'section' => 'general',
64
  'std_val' => '',
65
  ),
 
66
  'el_mo_lang_dir_first' => array(
67
  'section' => 'general',
68
  'std_val' => '',
69
- ), // default value must be set also in load_textdomain function in Event-List class
70
-
71
  'el_permalink_slug' => array(
72
  'section' => 'frontend',
73
  'std_val' => __( 'events', 'event-list' ),
@@ -145,7 +164,8 @@ class EL_Options {
145
 
146
  public function load_options_helptexts() {
147
  require_once EL_PATH . 'includes/options_helptexts.php';
148
- foreach ( $options_helptexts as $name => $values ) {
 
149
  $this->options[ $name ] += $values;
150
  }
151
  unset( $options_helptexts );
@@ -154,7 +174,7 @@ class EL_Options {
154
 
155
  public function register_options() {
156
  foreach ( $this->options as $oname => $o ) {
157
- register_setting( 'el_' . $o['section'], $oname );
158
  }
159
  }
160
 
@@ -176,5 +196,16 @@ class EL_Options {
176
  }
177
  }
178
 
179
- }
180
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
+ /**
3
+ * The options class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPublicProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
9
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
15
+ *
16
+ * @package event-list
17
+ */
18
+
19
  if ( ! defined( 'WPINC' ) ) {
20
  exit;
21
  }
22
 
23
+ /**
24
+ * This class handles all available options
25
+ */
26
  class EL_Options {
27
 
28
  private static $instance;
82
  'section' => 'general',
83
  'std_val' => '',
84
  ),
85
+ // default value must be set also in load_textdomain function in Event-List class
86
  'el_mo_lang_dir_first' => array(
87
  'section' => 'general',
88
  'std_val' => '',
89
+ ),
 
90
  'el_permalink_slug' => array(
91
  'section' => 'frontend',
92
  'std_val' => __( 'events', 'event-list' ),
164
 
165
  public function load_options_helptexts() {
166
  require_once EL_PATH . 'includes/options_helptexts.php';
167
+ // @phan-suppress-next-line PhanUndeclaredVariable
168
+ foreach ( (array) $options_helptexts as $name => $values ) {
169
  $this->options[ $name ] += $values;
170
  }
171
  unset( $options_helptexts );
174
 
175
  public function register_options() {
176
  foreach ( $this->options as $oname => $o ) {
177
+ register_setting( 'el_' . $o['section'], $oname, array( 'sanitize_callback' => array( $this, 'sanitize' ) ) );
178
  }
179
  }
180
 
196
  }
197
  }
198
 
 
199
 
200
+ /**
201
+ * Sanitize an option value before safing the value to the database
202
+ *
203
+ * @param string $value The value to sanitize
204
+ * @return string
205
+ */
206
+ public function sanitize( $value ) {
207
+ $value = esc_textarea( sanitize_text_field( $value ) );
208
+ return $value;
209
+ }
210
+
211
+ }
includes/rss.php CHANGED
@@ -1,4 +1,22 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -6,7 +24,9 @@ if ( ! defined( 'WPINC' ) ) {
6
  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_Rss {
11
 
12
  private static $instance;
@@ -46,7 +66,8 @@ class EL_Rss {
46
 
47
 
48
  public function print_rss() {
49
- header( 'Content-Type: ' . feed_content_type( 'rss-http' ) . '; charset=' . get_option( 'blog_charset' ), true );
 
50
  $options = array(
51
  'date_filter' => $this->options->get( 'el_feed_rss_upcoming_only' ) ? 'upcoming' : null,
52
  'order' => array( 'startdate DESC', 'starttime DESC', 'enddate DESC' ),
@@ -80,7 +101,7 @@ class EL_Rss {
80
  <item>
81
  <title>' . $this->format_date( $event->startdate, $event->enddate ) . ' - ' . $this->sanitize_feed_text( $event->title ) . '</title>
82
  <pubDate>' . mysql2date( 'D, d M Y H:i:s +0000', $event->startdate, false ) . '</pubDate>';
83
- foreach ( $event->categories as $cat ) {
84
  echo '
85
  <category>' . $this->sanitize_feed_text( $cat->name ) . '</category>';
86
  }
@@ -115,12 +136,12 @@ class EL_Rss {
115
 
116
 
117
  public function update_rewrite_status() {
118
- $feeds = array_keys( (array) get_option( 'rewrite_rules' ), 'index.php?&feed=$matches[1]' );
119
- $feed_rewrite_status = ( 0 < count( preg_grep( '@[(\|]' . $this->options->get( 'el_feed_rss_name' ) . '[\|)]@', $feeds ) ) ) ? true : false;
120
- if ( '1' == $this->options->get( 'el_feed_enable_rss' ) && ! $feed_rewrite_status ) {
121
  // add eventlist RSS feed to rewrite rules
122
  flush_rewrite_rules( false );
123
- } elseif ( '1' != $this->options->get( 'el_feed_enable_rss' ) && $feed_rewrite_status ) {
124
  // remove eventlist RSS feed from rewrite rules
125
  flush_rewrite_rules( false );
126
  }
@@ -141,33 +162,33 @@ class EL_Rss {
141
 
142
  private function format_date( $startdate, $enddate ) {
143
  $start_array = explode( '-', $startdate );
144
- $startdate = mktime( 0, 0, 0, $start_array[1], $start_array[2], $start_array[0] );
145
 
146
  $end_array = explode( '-', $enddate );
147
- $enddate = mktime( 0, 0, 0, $end_array[1], $end_array[2], $end_array[0] );
148
 
149
  $eventdate = '';
150
 
151
- if ( $startdate == $enddate ) {
152
- if ( $start_array[2] == '00' ) {
153
- $startdate = mktime( 0, 0, 0, $start_array[1], 15, $start_array[0] );
154
- $eventdate .= date( 'F, Y', $startdate );
155
  return $eventdate;
156
  }
157
- $eventdate .= date( 'M j, Y', $startdate );
158
  return $eventdate;
159
  }
160
 
161
- if ( $start_array[0] == $end_array[0] ) {
162
- if ( $start_array[1] == $end_array[1] ) {
163
- $eventdate .= date( 'M j', $startdate ) . '-' . date( 'j, Y', $enddate );
164
  return $eventdate;
165
  }
166
- $eventdate .= date( 'M j', $startdate ) . '-' . date( 'M j, Y', $enddate );
167
  return $eventdate;
168
  }
169
 
170
- $eventdate .= date( 'M j, Y', $startdate ) . '-' . date( 'M j, Y', $enddate );
171
  return $eventdate;
172
  }
173
 
1
  <?php
2
+ /**
3
+ * The RSS class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPossiblyNullTypeArgument
15
+ * @phan-file-suppress PhanPossiblyFalseTypeArgument
16
+ *
17
+ * @package event-list
18
+ */
19
+
20
  if ( ! defined( 'WPINC' ) ) {
21
  exit;
22
  }
24
  require_once EL_PATH . 'includes/options.php';
25
  require_once EL_PATH . 'includes/events.php';
26
 
27
+ /**
28
+ * This class handles rss feeds
29
+ */
30
  class EL_Rss {
31
 
32
  private static $instance;
66
 
67
 
68
  public function print_rss() {
69
+ // @phan-suppress-next-line PhanTypeVoidArgument Missing @return in WordPress 5.9 source code for feed_content_type function
70
+ header( 'Content-Type: ' . strval( feed_content_type( 'rss-http' ) ) . '; charset=' . get_option( 'blog_charset' ), true );
71
  $options = array(
72
  'date_filter' => $this->options->get( 'el_feed_rss_upcoming_only' ) ? 'upcoming' : null,
73
  'order' => array( 'startdate DESC', 'starttime DESC', 'enddate DESC' ),
101
  <item>
102
  <title>' . $this->format_date( $event->startdate, $event->enddate ) . ' - ' . $this->sanitize_feed_text( $event->title ) . '</title>
103
  <pubDate>' . mysql2date( 'D, d M Y H:i:s +0000', $event->startdate, false ) . '</pubDate>';
104
+ foreach ( (array) $event->categories as $cat ) {
105
  echo '
106
  <category>' . $this->sanitize_feed_text( $cat->name ) . '</category>';
107
  }
136
 
137
 
138
  public function update_rewrite_status() {
139
+ $feeds = array_keys( (array) get_option( 'rewrite_rules' ), 'index.php?&feed=$matches[1]', true );
140
+ $feed_rewrite_status = 0 < count( preg_grep( '@[(\|]' . $this->options->get( 'el_feed_rss_name' ) . '[\|)]@', $feeds ) );
141
+ if ( '1' === $this->options->get( 'el_feed_enable_rss' ) && ! $feed_rewrite_status ) {
142
  // add eventlist RSS feed to rewrite rules
143
  flush_rewrite_rules( false );
144
+ } elseif ( '1' !== $this->options->get( 'el_feed_enable_rss' ) && $feed_rewrite_status ) {
145
  // remove eventlist RSS feed from rewrite rules
146
  flush_rewrite_rules( false );
147
  }
162
 
163
  private function format_date( $startdate, $enddate ) {
164
  $start_array = explode( '-', $startdate );
165
+ $startdate = intval( mktime( 0, 0, 0, intval( $start_array[1] ), intval( $start_array[2] ), intval( $start_array[0] ) ) );
166
 
167
  $end_array = explode( '-', $enddate );
168
+ $enddate = intval( mktime( 0, 0, 0, intval( $end_array[1] ), intval( $end_array[2] ), intval( $end_array[0] ) ) );
169
 
170
  $eventdate = '';
171
 
172
+ if ( $startdate === $enddate ) {
173
+ if ( '00' === $start_array[2] ) {
174
+ $startdate = intval( mktime( 0, 0, 0, intval( $start_array[1] ), 15, intval( $start_array[0] ) ) );
175
+ $eventdate .= gmdate( 'F, Y', $startdate );
176
  return $eventdate;
177
  }
178
+ $eventdate .= gmdate( 'M j, Y', $startdate );
179
  return $eventdate;
180
  }
181
 
182
+ if ( $start_array[0] === $end_array[0] ) {
183
+ if ( $start_array[1] === $end_array[1] ) {
184
+ $eventdate .= gmdate( 'M j', $startdate ) . '-' . gmdate( 'j, Y', $enddate );
185
  return $eventdate;
186
  }
187
+ $eventdate .= gmdate( 'M j', $startdate ) . '-' . gmdate( 'M j, Y', $enddate );
188
  return $eventdate;
189
  }
190
 
191
+ $eventdate .= gmdate( 'M j, Y', $startdate ) . '-' . gmdate( 'M j, Y', $enddate );
192
  return $eventdate;
193
  }
194
 
includes/sc_event-list.php CHANGED
@@ -1,4 +1,22 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -6,9 +24,10 @@ if ( ! defined( 'WPINC' ) ) {
6
  require_once EL_PATH . 'includes/options.php';
7
  require_once EL_PATH . 'includes/events.php';
8
  require_once EL_PATH . 'includes/event.php';
9
- // require_once(EL_PATH.'includes/categories.php');
10
 
11
- // This class handles the shortcode [event-list]
 
 
12
  class SC_Event_List {
13
 
14
  private static $instance;
@@ -17,7 +36,6 @@ class SC_Event_List {
17
 
18
  private $options;
19
 
20
- // private $categories;
21
  private $atts;
22
 
23
  private $num_sc_loaded;
@@ -38,7 +56,6 @@ class SC_Event_List {
38
  private function __construct() {
39
  $this->options = &EL_Options::get_instance();
40
  $this->events = &EL_Events::get_instance();
41
- // $this->categories = &EL_Categories::get_instance();
42
 
43
  // All available attributes
44
  $this->atts = array(
@@ -76,9 +93,16 @@ class SC_Event_List {
76
  }
77
 
78
 
 
 
 
 
 
 
 
79
  public function load_sc_eventlist_helptexts() {
80
  require_once EL_PATH . 'includes/sc_event-list_helptexts.php';
81
- foreach ( $sc_eventlist_helptexts as $name => $values ) {
82
  $this->atts[ $name ] = array_merge( $this->atts[ $name ], $values );
83
  }
84
  unset( $sc_eventlist_helptexts );
@@ -87,7 +111,7 @@ class SC_Event_List {
87
 
88
  public function get_atts( $only_visible = true ) {
89
  if ( $only_visible ) {
90
- $atts = null;
91
  foreach ( $this->atts as $aname => $attr ) {
92
  if ( ! isset( $attr['hidden'] ) || true !== $attr['hidden'] ) {
93
  $atts[ $aname ] = $attr;
@@ -100,13 +124,19 @@ class SC_Event_List {
100
  }
101
 
102
 
103
- // main function to show the rendered HTML output
 
 
 
 
 
104
  public function show_html( $atts ) {
105
  // change number of shortcodes
106
  $this->num_sc_loaded++;
107
  // Fallback for versions < 0.8.5 where the attribute 'add_feed_link' was renamed to 'add_rss_link'
108
  // This can be removed in a later version.
109
  if ( ( ! isset( $atts['add_rss_link'] ) ) && isset( $atts['add_feed_link'] ) ) {
 
110
  error_log( 'The event-list shortcode attribute "add_feed_link" is deprecated, please change your shortcode to use the new name "add_rss_link"!' );
111
  $atts['add_rss_link'] = $atts['add_feed_link'];
112
  }
@@ -172,13 +202,15 @@ class SC_Event_List {
172
 
173
  private function html_event_list( &$a ) {
174
  // specify to show all events if not upcoming is selected
175
- if ( 'upcoming' != $a['selected_date'] ) {
176
  $a['num_events'] = 0;
177
  }
178
- $options['date_filter'] = $this->get_date_filter( $a['date_filter'], $a['selected_date'] );
179
- $options['cat_filter'] = $this->get_cat_filter( $a['cat_filter'], $a['selected_cat'] );
180
- $options['num_events'] = $a['num_events'];
181
- $order = 'date_desc' == $a['initial_order'] ? 'DESC' : 'ASC';
 
 
182
  if ( '1' !== $this->options->get( 'el_date_once_per_day' ) ) {
183
  // normal sort
184
  $options['order'] = array( 'startdate ' . $order, 'starttime ASC', 'enddate ' . $order );
@@ -238,15 +270,15 @@ class SC_Event_List {
238
  }
239
  $out .= '</h3></div>';
240
  // event starttime
241
- if ( '' != $event->starttime && $this->is_visible( $a['show_starttime'] ) ) {
242
- if ( '' == $this->options->get( 'el_html_tags_in_time' ) ) {
243
  $event->starttime = esc_attr( $event->starttime_i18n() );
244
  }
245
  $out .= '<span class="event-time">' . $event->starttime_i18n() . '</span>';
246
  }
247
  // event location
248
- if ( '' != $event->location && $this->is_visible( $a['show_location'] ) ) {
249
- if ( '' == $this->options->get( 'el_html_tags_in_loc' ) ) {
250
  $location = $event->truncate( esc_attr( $event->location ), $a['location_length'], $this->single_event, false );
251
  } else {
252
  $location = $event->truncate( $event->location, $a['location_length'], $this->single_event );
@@ -310,11 +342,11 @@ class SC_Event_List {
310
  $content = $event->truncate( do_shortcode( wpautop( $content ) ), $a['content_length'], $this->single_event, true, $truncate_url );
311
  // preparations for collapsed content
312
  if ( $this->is_visible( $a['collapse_content'] ) ) {
313
- wp_register_script( 'el_event-list', EL_URL . 'includes/js/event-list.js', null, true );
314
  add_action( 'wp_footer', array( &$this, 'print_eventlist_script' ) );
315
  return '<div><div id="event-content-' . $event->post->ID . '" class="el-hidden"><div class="' . $content_class . '">' . $content . '</div></div>' .
316
- '<a class="event-content-link" id="event-content-a' . $event->post->ID . '" onclick="el_toggle_content(' . $event->post->ID . ')" href="javascript:void(0)">' .
317
- $this->options->get( 'el_content_show_text' ) . '</a></div>';
318
  }
319
  // return without collapsing
320
  return '<div class="' . $content_class . '">' . $content . '</div>';
@@ -408,7 +440,8 @@ class SC_Event_List {
408
 
409
  private function html_ical_link( &$a ) {
410
  require_once EL_PATH . 'includes/ical.php';
411
- $feed_url = EL_ICal::get_instance( $a['cat_filter'] )->feed_url();
 
412
  $link_text = $this->options->get( 'el_feed_ical_link_text' );
413
  return '
414
  <a href="' . $feed_url . '" title="' . __( 'Link to iCal feed', 'event-list' ) . '" class="el-ical"><span class="dashicons dashicons-calendar"></span>' . $link_text . '</a>';
@@ -417,11 +450,13 @@ class SC_Event_List {
417
 
418
  private function get_selected_date( &$a ) {
419
  // check used get parameters
420
- $date = isset( $_GET[ 'date' . $a['sc_id'] ] ) ? sanitize_key( $_GET[ 'date' . $a['sc_id'] ] ) : null;
421
- if ( 'all' === $date || 'upcoming' === $date || 'past' === $date ) {
422
- return $date;
423
- } elseif ( preg_match( '/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date ) ) {
424
- return $date;
 
 
425
  }
426
  return $a['initial_date'];
427
  }
@@ -453,8 +488,8 @@ class SC_Event_List {
453
 
454
 
455
  private function get_date_filter( $date_filter, $selected_date ) {
456
- if ( 'all' == $date_filter || '' == $date_filter ) {
457
- if ( 'all' == $selected_date || '' == $selected_date ) {
458
  return null;
459
  } else {
460
  return $selected_date;
@@ -462,7 +497,7 @@ class SC_Event_List {
462
  } else {
463
  // Convert html entities to correct characters, e.g. &amp; to &
464
  $date_filter = html_entity_decode( $date_filter );
465
- if ( 'all' == $selected_date || '' == $selected_date ) {
466
  return $date_filter;
467
  } else {
468
  return '(' . $date_filter . ')&(' . $selected_date . ')';
@@ -472,8 +507,8 @@ class SC_Event_List {
472
 
473
 
474
  private function get_cat_filter( $cat_filter, $selected_cat ) {
475
- if ( 'all' == $cat_filter || '' == $cat_filter ) {
476
- if ( 'all' == $selected_cat || '' == $selected_cat ) {
477
  return null;
478
  } else {
479
  return $selected_cat;
@@ -481,7 +516,7 @@ class SC_Event_List {
481
  } else {
482
  // Convert html entities to correct characters, e.g. &amp; to &
483
  $cat_filter = html_entity_decode( $cat_filter );
484
- if ( 'all' == $selected_cat || '' == $selected_cat ) {
485
  return $cat_filter;
486
  } else {
487
  return '(' . $cat_filter . ')&(' . $selected_cat . ')';
@@ -530,7 +565,8 @@ class SC_Event_List {
530
  private function is_visible( $attribute_value ) {
531
  switch ( $attribute_value ) {
532
  case 'true':
533
- case '1': // = 'true'
 
534
  return true;
535
  case 'event_list_only':
536
  if ( $this->single_event ) {
@@ -544,14 +580,15 @@ class SC_Event_List {
544
  } else {
545
  return false;
546
  }
547
- default: // 'false' or 0 or nothing handled by this function
 
548
  return false;
549
  }
550
  }
551
 
552
 
553
  private function is_link_available( &$a, &$event ) {
554
- return $this->is_visible( $a['link_to_event'] ) || ( 'events_with_content_only' == $a['link_to_event'] && ! $this->single_event && ! empty( $event->content ) );
555
  }
556
 
557
 
1
  <?php
2
+ /**
3
+ * The shortcode [event-list] class
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPublicMethod
9
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
10
+ * @phan-file-suppress PhanPluginUnknownPropertyType
11
+ * @phan-file-suppress PhanPluginUnknownMethodParamType
12
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
13
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
14
+ * @phan-file-suppress PhanPartialTypeMismatchArgument
15
+ * @phan-file-suppress PhanTypeMismatchArgumentProbablyReal
16
+ *
17
+ * @package event-list
18
+ */
19
+
20
  if ( ! defined( 'WPINC' ) ) {
21
  exit;
22
  }
24
  require_once EL_PATH . 'includes/options.php';
25
  require_once EL_PATH . 'includes/events.php';
26
  require_once EL_PATH . 'includes/event.php';
 
27
 
28
+ /**
29
+ * This class handles the shortcode [event-list]
30
+ */
31
  class SC_Event_List {
32
 
33
  private static $instance;
36
 
37
  private $options;
38
 
 
39
  private $atts;
40
 
41
  private $num_sc_loaded;
56
  private function __construct() {
57
  $this->options = &EL_Options::get_instance();
58
  $this->events = &EL_Events::get_instance();
 
59
 
60
  // All available attributes
61
  $this->atts = array(
93
  }
94
 
95
 
96
+ /**
97
+ * Load the shortcode helptexts required for the admin pages
98
+ *
99
+ * @return void
100
+ *
101
+ * @suppress PhanUndeclaredVariable
102
+ */
103
  public function load_sc_eventlist_helptexts() {
104
  require_once EL_PATH . 'includes/sc_event-list_helptexts.php';
105
+ foreach ( (array) $sc_eventlist_helptexts as $name => $values ) {
106
  $this->atts[ $name ] = array_merge( $this->atts[ $name ], $values );
107
  }
108
  unset( $sc_eventlist_helptexts );
111
 
112
  public function get_atts( $only_visible = true ) {
113
  if ( $only_visible ) {
114
+ $atts = array();
115
  foreach ( $this->atts as $aname => $attr ) {
116
  if ( ! isset( $attr['hidden'] ) || true !== $attr['hidden'] ) {
117
  $atts[ $aname ] = $attr;
124
  }
125
 
126
 
127
+ /**
128
+ * Main function to show the rendered HTML output
129
+ *
130
+ * @param array<string,string|string[]> $atts The shortcode attributes.
131
+ * @return string
132
+ */
133
  public function show_html( $atts ) {
134
  // change number of shortcodes
135
  $this->num_sc_loaded++;
136
  // Fallback for versions < 0.8.5 where the attribute 'add_feed_link' was renamed to 'add_rss_link'
137
  // This can be removed in a later version.
138
  if ( ( ! isset( $atts['add_rss_link'] ) ) && isset( $atts['add_feed_link'] ) ) {
139
+ // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
140
  error_log( 'The event-list shortcode attribute "add_feed_link" is deprecated, please change your shortcode to use the new name "add_rss_link"!' );
141
  $atts['add_rss_link'] = $atts['add_feed_link'];
142
  }
202
 
203
  private function html_event_list( &$a ) {
204
  // specify to show all events if not upcoming is selected
205
+ if ( 'upcoming' !== $a['selected_date'] ) {
206
  $a['num_events'] = 0;
207
  }
208
+ $options = array(
209
+ 'date_filter' => $this->get_date_filter( $a['date_filter'], $a['selected_date'] ),
210
+ 'cat_filter' => $this->get_cat_filter( $a['cat_filter'], $a['selected_cat'] ),
211
+ 'num_events' => $a['num_events'],
212
+ );
213
+ $order = 'date_desc' === $a['initial_order'] ? 'DESC' : 'ASC';
214
  if ( '1' !== $this->options->get( 'el_date_once_per_day' ) ) {
215
  // normal sort
216
  $options['order'] = array( 'startdate ' . $order, 'starttime ASC', 'enddate ' . $order );
270
  }
271
  $out .= '</h3></div>';
272
  // event starttime
273
+ if ( '' !== $event->starttime && $this->is_visible( $a['show_starttime'] ) ) {
274
+ if ( '' === $this->options->get( 'el_html_tags_in_time' ) ) {
275
  $event->starttime = esc_attr( $event->starttime_i18n() );
276
  }
277
  $out .= '<span class="event-time">' . $event->starttime_i18n() . '</span>';
278
  }
279
  // event location
280
+ if ( '' !== $event->location && $this->is_visible( $a['show_location'] ) ) {
281
+ if ( '' === $this->options->get( 'el_html_tags_in_loc' ) ) {
282
  $location = $event->truncate( esc_attr( $event->location ), $a['location_length'], $this->single_event, false );
283
  } else {
284
  $location = $event->truncate( $event->location, $a['location_length'], $this->single_event );
342
  $content = $event->truncate( do_shortcode( wpautop( $content ) ), $a['content_length'], $this->single_event, true, $truncate_url );
343
  // preparations for collapsed content
344
  if ( $this->is_visible( $a['collapse_content'] ) ) {
345
+ wp_register_script( 'el_event-list', EL_URL . 'includes/js/event-list.js', null, '1.0', true );
346
  add_action( 'wp_footer', array( &$this, 'print_eventlist_script' ) );
347
  return '<div><div id="event-content-' . $event->post->ID . '" class="el-hidden"><div class="' . $content_class . '">' . $content . '</div></div>' .
348
+ '<a class="event-content-link" id="event-content-a' . $event->post->ID . '" onclick="el_toggle_content(' . $event->post->ID . ')" href="javascript:void(0)">' .
349
+ $this->options->get( 'el_content_show_text' ) . '</a></div>';
350
  }
351
  // return without collapsing
352
  return '<div class="' . $content_class . '">' . $content . '</div>';
440
 
441
  private function html_ical_link( &$a ) {
442
  require_once EL_PATH . 'includes/ical.php';
443
+ // TODO: Respect the catfilter attribute in the ICAL feed
444
+ $feed_url = EL_ICal::get_instance()->feed_url();
445
  $link_text = $this->options->get( 'el_feed_ical_link_text' );
446
  return '
447
  <a href="' . $feed_url . '" title="' . __( 'Link to iCal feed', 'event-list' ) . '" class="el-ical"><span class="dashicons dashicons-calendar"></span>' . $link_text . '</a>';
450
 
451
  private function get_selected_date( &$a ) {
452
  // check used get parameters
453
+ if ( isset( $_GET[ 'date' . $a['sc_id'] ] ) ) {
454
+ $date = sanitize_key( $_GET[ 'date' . $a['sc_id'] ] );
455
+ if ( 'all' === $date || 'upcoming' === $date || 'past' === $date ) {
456
+ return $date;
457
+ } elseif ( preg_match( '/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/D', $date ) ) {
458
+ return $date;
459
+ }
460
  }
461
  return $a['initial_date'];
462
  }
488
 
489
 
490
  private function get_date_filter( $date_filter, $selected_date ) {
491
+ if ( 'all' === $date_filter || '' === $date_filter ) {
492
+ if ( 'all' === $selected_date || '' === $selected_date ) {
493
  return null;
494
  } else {
495
  return $selected_date;
497
  } else {
498
  // Convert html entities to correct characters, e.g. &amp; to &
499
  $date_filter = html_entity_decode( $date_filter );
500
+ if ( 'all' === $selected_date || '' === $selected_date ) {
501
  return $date_filter;
502
  } else {
503
  return '(' . $date_filter . ')&(' . $selected_date . ')';
507
 
508
 
509
  private function get_cat_filter( $cat_filter, $selected_cat ) {
510
+ if ( 'all' === $cat_filter || '' === $cat_filter ) {
511
+ if ( 'all' === $selected_cat || '' === $selected_cat ) {
512
  return null;
513
  } else {
514
  return $selected_cat;
516
  } else {
517
  // Convert html entities to correct characters, e.g. &amp; to &
518
  $cat_filter = html_entity_decode( $cat_filter );
519
+ if ( 'all' === $selected_cat || '' === $selected_cat ) {
520
  return $cat_filter;
521
  } else {
522
  return '(' . $cat_filter . ')&(' . $selected_cat . ')';
565
  private function is_visible( $attribute_value ) {
566
  switch ( $attribute_value ) {
567
  case 'true':
568
+ case '1':
569
+ // = 'true'
570
  return true;
571
  case 'event_list_only':
572
  if ( $this->single_event ) {
580
  } else {
581
  return false;
582
  }
583
+ default:
584
+ // 'false' or 0 or nothing handled by this function
585
  return false;
586
  }
587
  }
588
 
589
 
590
  private function is_link_available( &$a, &$event ) {
591
+ return $this->is_visible( $a['link_to_event'] ) || ( 'events_with_content_only' === $a['link_to_event'] && ! $this->single_event && ! empty( $event->content ) );
592
  }
593
 
594
 
includes/sc_event-list_helptexts.php CHANGED
@@ -1,4 +1,16 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -6,132 +18,258 @@ if ( ! defined( 'WPINC' ) ) {
6
  $sc_eventlist_helptexts = array(
7
  'initial_event_id' => array(
8
  'val' => array( 'all', strtoupper( __( 'event-id', 'event-list' ) ) ),
9
- 'desc' => sprintf( __( 'By default the event-list is displayed initially. But if an event-id (e.g. %1$s) is provided for this attribute, directly the event-content view of this event is shown.', 'event-list' ), '"13"' ),
 
 
 
 
10
  ),
11
 
12
  'initial_date' => array(
13
  'val' => array( 'all', 'upcoming', 'past', strtoupper( __( 'year', 'event-list' ) ) ),
14
- 'desc' => __( 'This attribute defines which events are initially shown. The default is to show the upcoming events only.', 'event-list' ) . '<br />' .
15
- sprintf( __( 'Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters.', 'event-list' ), '"2017"' ),
 
 
 
 
16
  ),
17
 
18
  'initial_cat' => array(
19
  'val' => array( 'all', strtoupper( __( 'category slug', 'event-list' ) ) ),
20
- 'desc' => __( 'This attribute defines the category of which events are initially shown. The default is to show events of all categories.', 'event-list' ) . '<br />' .
21
- __( 'Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.', 'event-list' ),
 
22
  ),
23
 
24
  'initial_order' => array(
25
  'val' => array( 'date_asc', 'date_desc' ),
26
- 'desc' => __( 'This attribute defines the initial order of the events.', 'event-list' ) . '<br />' .
27
- sprintf( __( 'With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old).', 'event-list' ), '"date_asc"', '"date_desc"' ),
 
 
 
 
 
28
  ),
29
 
30
  'date_filter' => array(
31
  'val' => array( 'all', 'upcoming', 'past', strtoupper( __( 'year', 'event-list' ) ) ),
32
- 'desc' => sprintf( __( 'This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events.', 'event-list' ), '"all"' ) . '<br />' .
33
- sprintf( __( 'Filtered events according to %1$s value are not available in the event list.', 'event-list' ), 'date_filter' ) . '<br />' .
34
- sprintf( __( 'You can find all available values with a description and examples in the sections %1$s and %2$s below.', 'event-list' ), '"' . __( 'Available Date Formats', 'event-list' ) . '"', '"' . __( 'Available Date Range Formats', 'event-list' ) . '"' ) . '<br />' .
35
- sprintf( __( 'See %1$s description if you want to define complex filters.', 'event-list' ), '"' . __( 'Filter Syntax', 'event-list' ) . '"' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ),
37
 
38
  'cat_filter' => array(
39
  'val' => array( 'all', strtoupper( __( 'category slugs', 'event-list' ) ) ),
40
- 'desc' => sprintf( __( 'This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events.', 'event-list' ), '"all"' ) . '<br />' .
41
- sprintf( __( 'Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added.', 'event-list' ), 'cat_filter' ) . '<br />' .
42
- sprintf( __( 'The filter is specified via the given category slugs. See %1$s description if you want to define complex filters.', 'event-list' ), '"' . __( 'Filter Syntax', 'event-list' ) . '"' ),
 
 
 
 
 
 
 
 
 
 
43
  ),
44
 
45
  'num_events' => array(
46
  'val' => array( strtoupper( __( 'number', 'event-list' ) ) ),
47
- 'desc' => sprintf( __( 'This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed.', 'event-list' ), '"0"' ) . '<br />' .
48
- __( 'Please not that in the actual version there is no pagination of the events available, so the event list can be very long.', 'event-list' ),
 
 
 
 
49
  ),
50
 
51
  'show_filterbar' => array(
52
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
53
- 'desc' => __( 'This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events.', 'event-list' ) . '<br />' .
54
- sprintf( __( 'Choose %1$s to always hide and %2$s to always show the filterbar.', 'event-list' ), '"false"', '"true"' ) . '<br />' .
55
- sprintf( __( 'With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view.', 'event-list' ), '"event_list_only"', '"single_event_only"' ),
 
 
 
 
 
 
 
 
 
56
  ),
57
 
58
  'filterbar_items' => array(
59
  'val' => array( 'years_hlist', 'years_dropdown', 'months_hlist', 'months_dropdown', 'daterange_hlist', 'daterange_dropdown', 'cats_hlist', 'cats_dropdown', 'reset_link' ),
60
- 'desc' => sprintf( __( 'This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see %1$s attribute).', 'event-list' ), '"show_filterbar"' ) . '<br /><br />' .
61
- __( 'Find below an overview of the available filterbar items and their options:', 'event-list' ) . '<br />' .
62
- sc_eventlist_helptexts_filterbar_table(
63
- array(
64
- array( '<th class="el-filterbar-item">' . __( 'filterbar item', 'event-list' ), '<th class="el-filterbar-desc">' . __( 'description', 'event-list' ), '<th class="el-filterbar-options">' . __( 'item options', 'event-list' ), '<th class="el-filterbar-values">' . __( 'option values', 'event-list' ), '<th class="el-filterbar-default">' . __( 'default value', 'event-list' ), '<th class="el-filterbar-desc2">' . __( 'option description', 'event-list' ) ),
65
- array(
66
- '<td rowspan="4">years',
67
- '<td rowspan="4">' . __( 'Show a list of all available years. Additional there are some special entries available (see item options).', 'event-list' ),
68
- 'show_all',
69
- 'true | false',
70
- 'true',
71
- __( 'Add an entry to show all events.', 'event-list' ),
72
- ),
73
- array( 'show_upcoming', 'true | false', 'true', __( 'Add an entry to show all upcoming events.', 'event-list' ) ),
74
- array( 'show_past', 'true | false', 'false', __( 'Add an entry to show events in the past.', 'event-list' ) ),
75
- array( 'years_order', 'desc | asc', 'desc', __( 'Set descending or ascending order of year entries.', 'event-list' ) ),
76
- array(
77
- '<td rowspan="5">months',
78
- '<td rowspan="5">' . __( 'Show a list of all available months.', 'event-list' ),
79
- 'show_all',
80
- 'true | false',
81
- 'false',
82
- __( 'Add an entry to show all events.', 'event-list' ),
83
- ),
84
- array( 'show_upcoming', 'true | false', 'false', __( 'Add an entry to show all upcoming events.', 'event-list' ) ),
85
- array( 'show_past', 'true | false', 'false', __( 'Add an entry to show events in the past.', 'event-list' ) ),
86
- array( 'months_order', 'desc | asc', 'desc', __( 'Set descending or ascending order of month entries.', 'event-list' ) ),
87
- array( 'date_format', '<a href="http://php.net/manual/en/function.date.php">' . __( 'php date-formats', 'event-list' ) . '</a>', 'Y-m', __( 'Set the displayed date format of the month entries.', 'event-list' ) ),
88
- array( 'daterange', sprintf( __( 'With this item you can display the special entries %1$s, %2$s and %3$s. You can use all or only some of the available values and you can specify their order.', 'event-list' ), '"all"', '"upcoming"', 'past' ), 'item_order', 'all | upcoming | past', 'all&amp;upcoming&amp;past', sprintf( __( 'Specifies the displayed values and their order. The items must be seperated by %1$s.', 'event-list' ), '"&amp;"' ) ),
89
- array( 'cats', __( 'Show a list of all available categories.', 'event-list' ), 'show_all', 'true | false', 'true', __( 'Add an entry to show events from all categories.', 'event-list' ) ),
90
- array( 'reset', __( 'A link to reset the eventlist filter to standard.', 'event-list' ), 'caption', __( 'any text', 'event-list' ), __( 'Reset', 'event-list' ), __( 'Set the caption of the link.', 'event-list' ) ),
91
- )
92
- ) .
93
- __( 'Find below an overview of the available filterbar display options:', 'event-list' ) . '<br />' .
94
- sc_eventlist_helptexts_filterbar_table(
95
- array(
96
- array( '<th class="el-filterbar-doption">' . __( 'display option', 'event-list' ), '<th class="el-filterbar-desc3">' . __( 'description', 'event-list' ), '<th class="el-filterbar-for">' . __( 'available for', 'event-list' ) ),
97
- array( 'hlist', sprintf( __( 'Shows a horizonal list seperated by %1$s with a link to each item.', 'event-list' ), '"|"' ), 'years, months, daterange, cats' ),
98
- array( 'dropdown', __( 'Shows a select box where an item can be choosen. After the selection of an item the page is reloaded via javascript to show the filtered events.', 'event-list' ), 'years, months, daterange, cats' ),
99
- array( 'link', __( 'Shows a simple link which can be clicked.', 'event-list' ), 'reset' ),
100
- )
101
- ) .
102
- '<p>' . __( 'Find below some declaration examples with descriptions:', 'event-list' ) . '</p>
103
- <code>years_hlist,cats_dropdown</code><br />
104
- ' . sprintf( __( 'In this example you can see that the filterbar item and the used display option is joined by an underscore %1$s. You can define several filterbar items seperated by a comma %2$s. These items will be displayed left-aligned.', 'event-list' ), '"_"', '(",")' ) . '
105
- <p><code>years_dropdown(show_all=false|show_past=true),cats_dropdown;;reset_link</code><br />
106
- ' . sprintf( __( 'In this example you can see that filterbar options can be added in brackets in format %1$s. You can also add multiple options seperated by a pipe %2$s.', 'event-list' ), '"' . __( 'option_name', 'event-list' ) . '=' . __( 'value', 'event-list' ) . '"', '("|")' ) . '<br />
107
- ' . sprintf( __( 'The 2 semicolon %1$s devides the bar in 3 section. The first section will be displayed left-justified, the second section will be centered and the third section will be right-aligned. So in this example the 2 dropdown will be left-aligned and the reset link will be on the right side.', 'event-list' ), '(";")' ) . '</p>',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  ),
109
 
110
  'title_length' => array(
111
  'val' => array( __( 'number', 'event-list' ), 'auto' ),
112
- 'desc' => __( 'This attribute specifies if the title should be truncated 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, with %2$s the text is automatically truncated via css.', 'event-list' ), '[0]', '[auto]' ) . '<br />' .
114
- __( 'This attribute has no influence if only a single event is shown.', 'event-list' ),
 
 
 
 
 
115
  ),
116
 
117
  'show_starttime' => array(
118
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
119
- 'desc' => __(
120
- 'This attribute specifies if the starttime is displayed in the event list.<br />
121
- Choose "false" to always hide and "true" to always show the starttime.<br />
122
- With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event',
123
- 'event-list'
124
- ),
 
125
  ),
126
 
127
  'show_location' => array(
128
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
129
- 'desc' => __(
130
- 'This attribute specifies if the location is displayed in the event list.<br />
131
- Choose "false" to always hide and "true" to always show the location.<br />
132
- With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event',
133
- 'event-list'
134
- ),
 
135
  ),
136
 
137
  'location_length' => array(
@@ -143,107 +281,117 @@ $sc_eventlist_helptexts = array(
143
 
144
  'show_cat' => array(
145
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
146
- 'desc' => __(
147
- 'This attribute specifies if the categories are displayed in the event list.<br />
148
- Choose "false" to always hide and "true" to always show the category.<br />
149
- With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event',
150
- 'event-list'
151
- ),
 
152
  ),
153
 
154
  'show_content' => array(
155
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
156
- 'desc' => __(
157
- 'This attribute specifies if the content is displayed in the event list.<br />
158
- Choose "false" to always hide and "true" to always show the content.<br />
159
- With "event_list_only" the content is only visible in the event list and with "single_event_only" only for a single event',
160
- 'event-list'
161
- ),
 
162
  ),
163
 
164
  'show_excerpt' => array(
165
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
166
- 'desc' => __(
167
- 'This attribute specifies if the excerpt is displayed in the event list.<br />
168
- Choose "false" to always hide and "true" to always show the excerpt.<br />
169
- With "event_list_only" the excerpt is only visible in the event list and with "single_event_only" only for a single event.<br />
170
- If no excerpt is set, the event content will be displayed instead.<br />
171
- This attribute will be ignored when the attribute "show_content" is enabled for the same display type (single event or event list).',
172
- 'event-list'
173
- ),
 
174
  ),
175
 
176
  'content_length' => array(
177
  'val' => array( __( 'number', 'event-list' ) ),
178
- 'desc' => __( 'This attribute specifies if the content should be truncate to the given number of characters in the event list.', 'event-list' ) . '<br />' .
179
- sprintf( __( 'With the standard value %1$s the full text is displayed.', 'event-list' ), '[0]' ) . '<br />' .
180
- __( 'This attribute has no influence if only a single event is shown.', 'event-list' ),
 
181
  ),
182
 
183
  'collapse_content' => array(
184
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
185
- 'desc' => __(
186
- 'This attribute specifies if the content or excerpt should be collapsed initially.<br />
187
- Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />
188
- Available option are "false" to always disable collapsing and "true" to always enable collapsing of the content.<br />
189
- With "event_list_only" the content is only collapsed in the event list view and with "single_event_only" only in single event view.',
190
- 'event-list'
191
- ),
 
192
  ),
193
 
194
  'link_to_event' => array(
195
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only', 'events_with_content_only' ),
196
- 'desc' => __(
197
- 'This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />
198
- Choose "false" to never add and "true" to always add the link.<br />
199
- With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br />
200
- With "events_with_content_only" the link is only added in the event list for events with event content.',
201
- 'event-list'
202
- ),
 
203
  ),
204
 
205
  'add_rss_link' => array(
206
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
207
- 'desc' => __(
208
- 'This attribute specifies if a rss feed link should be added.<br />
209
- You have to enable the feed in the eventlist settings to make this attribute workable.<br />
210
- On that page you can also find some settings to modify the output.<br />
211
- Choose "false" to never add and "true" to always add the link.<br />
212
- With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event',
213
- 'event-list'
214
- ),
 
215
  ),
216
 
217
  'add_ical_link' => array(
218
  'val' => array( 'false', 'true' ),
219
- 'desc' => __(
220
- 'This attribute specifies if a ical feed link should be added.<br />
221
- You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />
222
- On that page you can also find some settings to modify the output.<br />
223
- Choose "false" to never add and "true" to always add the link.<br />',
224
- 'event-list'
225
- ),
 
226
  ),
227
 
228
  'url_to_page' => array(
229
  'val' => array( 'url' ),
230
- 'desc' => __(
231
- 'This attribute specifies the page or post url for event links.<br />
232
- The standard is an empty string. Then the url will be calculated automatically.<br />
233
- An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.',
234
- 'event-list'
235
- ),
 
236
  ),
237
 
238
  // Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
239
  'sc_id_for_url' => array(
240
  'val' => array( 'number' ),
241
  'hidden' => true,
242
- 'desc' => __(
243
- 'This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
244
- The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.',
245
- 'event-list'
246
- ),
 
247
  ),
248
  );
249
 
@@ -251,7 +399,7 @@ $sc_eventlist_helptexts = array(
251
  function sc_eventlist_helptexts_filterbar_table( $tabledata_array ) {
252
  // table opening tag
253
  $out = '
254
- <small><table class="el-filterbar-table">';
255
  // Start with th items (table head for first row)
256
  $tableitem_tag = 'th';
257
  foreach ( $tabledata_array as $row ) {
@@ -260,7 +408,7 @@ function sc_eventlist_helptexts_filterbar_table( $tabledata_array ) {
260
  <tr>';
261
  foreach ( $row as $column_val ) {
262
  // opening tag (if required)
263
- $out .= ( '<' . $tableitem_tag === substr( $column_val, 0, 3 ) ) ? '' : '<' . $tableitem_tag . '>';
264
  // column value and closing tag
265
  $out .= $column_val . '</' . $tableitem_tag . '>';
266
  }
@@ -271,7 +419,7 @@ function sc_eventlist_helptexts_filterbar_table( $tabledata_array ) {
271
  }
272
  // table closing tag
273
  $out .= '
274
- </table></small>
275
  ';
276
  return $out;
277
  }
1
  <?php
2
+ /**
3
+ * This file includes the helptexts for the eventlist shortcode (required in the admin page)
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnFunction
8
+ * @phan-file-suppress PhanPluginUnknownFunctionParamType
9
+ * @phan-file-suppress PhanPluginUnknownFunctionReturnType
10
+ *
11
+ * @package event-list
12
+ */
13
+
14
  if ( ! defined( 'WPINC' ) ) {
15
  exit;
16
  }
18
  $sc_eventlist_helptexts = array(
19
  'initial_event_id' => array(
20
  'val' => array( 'all', strtoupper( __( 'event-id', 'event-list' ) ) ),
21
+ 'desc' =>
22
+ sprintf(
23
+ __( 'By default the event-list is displayed initially. But if an event-id (e.g. %1$s) is provided for this attribute, directly the event-content view of this event is shown.', 'event-list' ),
24
+ '"13"'
25
+ ),
26
  ),
27
 
28
  'initial_date' => array(
29
  'val' => array( 'all', 'upcoming', 'past', strtoupper( __( 'year', 'event-list' ) ) ),
30
+ 'desc' =>
31
+ __( 'This attribute defines which events are initially shown. The default is to show the upcoming events only.', 'event-list' ) . '<br />' .
32
+ sprintf(
33
+ __( 'Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters.', 'event-list' ),
34
+ '"2017"'
35
+ ),
36
  ),
37
 
38
  'initial_cat' => array(
39
  'val' => array( 'all', strtoupper( __( 'category slug', 'event-list' ) ) ),
40
+ 'desc' =>
41
+ __( 'This attribute defines the category of which events are initially shown. The default is to show events of all categories.', 'event-list' ) . '<br />' .
42
+ __( 'Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.', 'event-list' ),
43
  ),
44
 
45
  'initial_order' => array(
46
  'val' => array( 'date_asc', 'date_desc' ),
47
+ 'desc' =>
48
+ __( 'This attribute defines the initial order of the events.', 'event-list' ) . '<br />' .
49
+ sprintf(
50
+ __( 'With %1$s (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old).', 'event-list' ),
51
+ '"date_asc"',
52
+ '"date_desc"'
53
+ ),
54
  ),
55
 
56
  'date_filter' => array(
57
  'val' => array( 'all', 'upcoming', 'past', strtoupper( __( 'year', 'event-list' ) ) ),
58
+ 'desc' =>
59
+ sprintf(
60
+ __( 'This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events.', 'event-list' ),
61
+ '"all"'
62
+ ) . '<br />' .
63
+ sprintf(
64
+ __( 'Filtered events according to %1$s value are not available in the event list.', 'event-list' ),
65
+ 'date_filter'
66
+ ) . '<br />' .
67
+ sprintf(
68
+ __( 'You can find all available values with a description and examples in the sections %1$s and %2$s below.', 'event-list' ),
69
+ '"' . __( 'Available Date Formats', 'event-list' ) . '"',
70
+ '"' . __( 'Available Date Range Formats', 'event-list' ) . '"'
71
+ ) . '<br />' .
72
+ sprintf(
73
+ __( 'See %1$s description if you want to define complex filters.', 'event-list' ),
74
+ '"' . __( 'Filter Syntax', 'event-list' ) . '"'
75
+ ),
76
  ),
77
 
78
  'cat_filter' => array(
79
  'val' => array( 'all', strtoupper( __( 'category slugs', 'event-list' ) ) ),
80
+ 'desc' =>
81
+ sprintf(
82
+ __( 'This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events.', 'event-list' ),
83
+ '"all"'
84
+ ) . '<br />' .
85
+ sprintf(
86
+ __( 'Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added.', 'event-list' ),
87
+ 'cat_filter'
88
+ ) . '<br />' .
89
+ sprintf(
90
+ __( 'The filter is specified via the given category slugs. See %1$s description if you want to define complex filters.', 'event-list' ),
91
+ '"' . __( 'Filter Syntax', 'event-list' ) . '"'
92
+ ),
93
  ),
94
 
95
  'num_events' => array(
96
  'val' => array( strtoupper( __( 'number', 'event-list' ) ) ),
97
+ 'desc' =>
98
+ sprintf(
99
+ __( 'This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed.', 'event-list' ),
100
+ '"0"'
101
+ ) . '<br />' .
102
+ __( 'Please not that in the actual version there is no pagination of the events available, so the event list can be very long.', 'event-list' ),
103
  ),
104
 
105
  'show_filterbar' => array(
106
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
107
+ 'desc' =>
108
+ __( 'This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events.', 'event-list' ) . '<br />' .
109
+ sprintf(
110
+ __( 'Choose %1$s to always hide and %2$s to always show the filterbar.', 'event-list' ),
111
+ '"false"',
112
+ '"true"'
113
+ ) . '<br />' .
114
+ sprintf(
115
+ __( 'With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view.', 'event-list' ),
116
+ '"event_list_only"',
117
+ '"single_event_only"'
118
+ ),
119
  ),
120
 
121
  'filterbar_items' => array(
122
  'val' => array( 'years_hlist', 'years_dropdown', 'months_hlist', 'months_dropdown', 'daterange_hlist', 'daterange_dropdown', 'cats_hlist', 'cats_dropdown', 'reset_link' ),
123
+ 'desc' =>
124
+ sprintf(
125
+ __( 'This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see %1$s attribute).', 'event-list' ),
126
+ '"show_filterbar"'
127
+ ) . '<br /><br />' .
128
+ __( 'Find below an overview of the available filterbar items and their options:', 'event-list' ) . '<br />' .
129
+ sc_eventlist_helptexts_filterbar_table(
130
+ array(
131
+ array(
132
+ '<th class="el-filterbar-item">' . __( 'filterbar item', 'event-list' ),
133
+ '<th class="el-filterbar-desc">' . __( 'description', 'event-list' ),
134
+ '<th class="el-filterbar-options">' . __( 'item options', 'event-list' ),
135
+ '<th class="el-filterbar-values">' . __( 'option values', 'event-list' ),
136
+ '<th class="el-filterbar-default">' . __( 'default value', 'event-list' ),
137
+ '<th class="el-filterbar-desc2">' . __( 'option description', 'event-list' ),
138
+ ),
139
+ array(
140
+ '<td rowspan="4">years',
141
+ '<td rowspan="4">' . __( 'Show a list of all available years. Additional there are some special entries available (see item options).', 'event-list' ),
142
+ 'show_all',
143
+ 'true | false',
144
+ 'true',
145
+ __( 'Add an entry to show all events.', 'event-list' ),
146
+ ),
147
+ array( 'show_upcoming', 'true | false', 'true', __( 'Add an entry to show all upcoming events.', 'event-list' ) ),
148
+ array( 'show_past', 'true | false', 'false', __( 'Add an entry to show events in the past.', 'event-list' ) ),
149
+ array( 'years_order', 'desc | asc', 'desc', __( 'Set descending or ascending order of year entries.', 'event-list' ) ),
150
+ array(
151
+ '<td rowspan="5">months',
152
+ '<td rowspan="5">' . __( 'Show a list of all available months.', 'event-list' ),
153
+ 'show_all',
154
+ 'true | false',
155
+ 'false',
156
+ __( 'Add an entry to show all events.', 'event-list' ),
157
+ ),
158
+ array( 'show_upcoming', 'true | false', 'false', __( 'Add an entry to show all upcoming events.', 'event-list' ) ),
159
+ array( 'show_past', 'true | false', 'false', __( 'Add an entry to show events in the past.', 'event-list' ) ),
160
+ array( 'months_order', 'desc | asc', 'desc', __( 'Set descending or ascending order of month entries.', 'event-list' ) ),
161
+ array(
162
+ 'date_format',
163
+ '<a href="http://php.net/manual/en/function.date.php">' . __( 'php date-formats', 'event-list' ) . '</a>',
164
+ 'Y-m',
165
+ __( 'Set the displayed date format of the month entries.', 'event-list' ),
166
+ ),
167
+ array(
168
+ 'daterange',
169
+ sprintf(
170
+ __( 'With this item you can display the special entries %1$s, %2$s and %3$s. You can use all or only some of the available values and you can specify their order.', 'event-list' ),
171
+ '"all"',
172
+ '"upcoming"',
173
+ 'past'
174
+ ),
175
+ 'item_order',
176
+ 'all | upcoming | past',
177
+ 'all&amp;upcoming&amp;past',
178
+ sprintf(
179
+ __( 'Specifies the displayed values and their order. The items must be seperated by %1$s.', 'event-list' ),
180
+ '"&amp;"'
181
+ ),
182
+ ),
183
+ array(
184
+ 'cats',
185
+ __( 'Show a list of all available categories.', 'event-list' ),
186
+ 'show_all',
187
+ 'true | false',
188
+ 'true',
189
+ __( 'Add an entry to show events from all categories.', 'event-list' ),
190
+ ),
191
+ array(
192
+ 'reset',
193
+ __( 'A link to reset the eventlist filter to standard.', 'event-list' ),
194
+ 'caption',
195
+ __( 'any text', 'event-list' ),
196
+ __( 'Reset', 'event-list' ),
197
+ __( 'Set the caption of the link.', 'event-list' ),
198
+ ),
199
+ )
200
+ ) .
201
+ __( 'Find below an overview of the available filterbar display options:', 'event-list' ) . '<br />' .
202
+ sc_eventlist_helptexts_filterbar_table(
203
+ array(
204
+ array(
205
+ '<th class="el-filterbar-doption">' . __( 'display option', 'event-list' ),
206
+ '<th class="el-filterbar-desc3">' . __( 'description', 'event-list' ),
207
+ '<th class="el-filterbar-for">' . __( 'available for', 'event-list' ),
208
+ ),
209
+ array(
210
+ 'hlist',
211
+ sprintf( __( 'Shows a horizonal list seperated by %1$s with a link to each item.', 'event-list' ), '"|"' ),
212
+ 'years, months, daterange, cats',
213
+ ),
214
+ array(
215
+ 'dropdown',
216
+ __( 'Shows a select box where an item can be choosen. After the selection of an item the page is reloaded via javascript to show the filtered events.', 'event-list' ),
217
+ 'years, months, daterange, cats',
218
+ ),
219
+ array( 'link', __( 'Shows a simple link which can be clicked.', 'event-list' ), 'reset' ),
220
+ )
221
+ ) .
222
+ '<p>' . __( 'Find below some declaration examples with descriptions:', 'event-list' ) . '</p>
223
+ <code>years_hlist,cats_dropdown</code><br />
224
+ ' . sprintf(
225
+ __( 'In this example you can see that the filterbar item and the used display option is joined by an underscore %1$s. You can define several filterbar items seperated by a comma %2$s. These items will be displayed left-aligned.', 'event-list' ),
226
+ '"_"',
227
+ '(",")'
228
+ ) . '
229
+ <p><code>years_dropdown(show_all=false|show_past=true),cats_dropdown;;reset_link</code><br />
230
+ ' . sprintf(
231
+ __( 'In this example you can see that filterbar options can be added in brackets in format %1$s. You can also add multiple options seperated by a pipe %2$s.', 'event-list' ),
232
+ '"' . __( 'option_name', 'event-list' ) . '=' . __( 'value', 'event-list' ) . '"',
233
+ '("|")'
234
+ ) . '<br />
235
+ ' . sprintf(
236
+ __( 'The 2 semicolon %1$s devides the bar in 3 section. The first section will be displayed left-justified, the second section will be centered and the third section will be right-aligned. So in this example the 2 dropdown will be left-aligned and the reset link will be on the right side.', 'event-list' ),
237
+ '(";")'
238
+ ) . '</p>',
239
  ),
240
 
241
  'title_length' => array(
242
  'val' => array( __( 'number', 'event-list' ), 'auto' ),
243
+ 'desc' =>
244
+ __( 'This attribute specifies if the title should be truncated to the given number of characters in the event list.', 'event-list' ) . '<br />' .
245
+ sprintf(
246
+ __( 'With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.', 'event-list' ),
247
+ '[0]',
248
+ '[auto]'
249
+ ) . '<br />' .
250
+ __( 'This attribute has no influence if only a single event is shown.', 'event-list' ),
251
  ),
252
 
253
  'show_starttime' => array(
254
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
255
+ 'desc' =>
256
+ __(
257
+ 'This attribute specifies if the starttime is displayed in the event list.<br />
258
+ Choose "false" to always hide and "true" to always show the starttime.<br />
259
+ With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event',
260
+ 'event-list'
261
+ ),
262
  ),
263
 
264
  'show_location' => array(
265
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
266
+ 'desc' =>
267
+ __(
268
+ 'This attribute specifies if the location is displayed in the event list.<br />
269
+ Choose "false" to always hide and "true" to always show the location.<br />
270
+ With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event',
271
+ 'event-list'
272
+ ),
273
  ),
274
 
275
  'location_length' => array(
281
 
282
  'show_cat' => array(
283
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
284
+ 'desc' =>
285
+ __(
286
+ 'This attribute specifies if the categories are displayed in the event list.<br />
287
+ Choose "false" to always hide and "true" to always show the category.<br />
288
+ With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event',
289
+ 'event-list'
290
+ ),
291
  ),
292
 
293
  'show_content' => array(
294
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
295
+ 'desc' =>
296
+ __(
297
+ 'This attribute specifies if the content is displayed in the event list.<br />
298
+ Choose "false" to always hide and "true" to always show the content.<br />
299
+ With "event_list_only" the content is only visible in the event list and with "single_event_only" only for a single event',
300
+ 'event-list'
301
+ ),
302
  ),
303
 
304
  'show_excerpt' => array(
305
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
306
+ 'desc' =>
307
+ __(
308
+ 'This attribute specifies if the excerpt is displayed in the event list.<br />
309
+ Choose "false" to always hide and "true" to always show the excerpt.<br />
310
+ With "event_list_only" the excerpt is only visible in the event list and with "single_event_only" only for a single event.<br />
311
+ If no excerpt is set, the event content will be displayed instead.<br />
312
+ This attribute will be ignored when the attribute "show_content" is enabled for the same display type (single event or event list).',
313
+ 'event-list'
314
+ ),
315
  ),
316
 
317
  'content_length' => array(
318
  'val' => array( __( 'number', 'event-list' ) ),
319
+ 'desc' =>
320
+ __( 'This attribute specifies if the content should be truncate to the given number of characters in the event list.', 'event-list' ) . '<br />' .
321
+ sprintf( __( 'With the standard value %1$s the full text is displayed.', 'event-list' ), '[0]' ) . '<br />' .
322
+ __( 'This attribute has no influence if only a single event is shown.', 'event-list' ),
323
  ),
324
 
325
  'collapse_content' => array(
326
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
327
+ 'desc' =>
328
+ __(
329
+ 'This attribute specifies if the content or excerpt should be collapsed initially.<br />
330
+ Then a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />
331
+ Available option are "false" to always disable collapsing and "true" to always enable collapsing of the content.<br />
332
+ With "event_list_only" the content is only collapsed in the event list view and with "single_event_only" only in single event view.',
333
+ 'event-list'
334
+ ),
335
  ),
336
 
337
  'link_to_event' => array(
338
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only', 'events_with_content_only' ),
339
+ 'desc' =>
340
+ __(
341
+ 'This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />
342
+ Choose "false" to never add and "true" to always add the link.<br />
343
+ With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br />
344
+ With "events_with_content_only" the link is only added in the event list for events with event content.',
345
+ 'event-list'
346
+ ),
347
  ),
348
 
349
  'add_rss_link' => array(
350
  'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ),
351
+ 'desc' =>
352
+ __(
353
+ 'This attribute specifies if a rss feed link should be added.<br />
354
+ You have to enable the feed in the eventlist settings to make this attribute workable.<br />
355
+ On that page you can also find some settings to modify the output.<br />
356
+ Choose "false" to never add and "true" to always add the link.<br />
357
+ With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event',
358
+ 'event-list'
359
+ ),
360
  ),
361
 
362
  'add_ical_link' => array(
363
  'val' => array( 'false', 'true' ),
364
+ 'desc' =>
365
+ __(
366
+ 'This attribute specifies if a ical feed link should be added.<br />
367
+ You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />
368
+ On that page you can also find some settings to modify the output.<br />
369
+ Choose "false" to never add and "true" to always add the link.<br />',
370
+ 'event-list'
371
+ ),
372
  ),
373
 
374
  'url_to_page' => array(
375
  'val' => array( 'url' ),
376
+ 'desc' =>
377
+ __(
378
+ 'This attribute specifies the page or post url for event links.<br />
379
+ The standard is an empty string. Then the url will be calculated automatically.<br />
380
+ An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.',
381
+ 'event-list'
382
+ ),
383
  ),
384
 
385
  // Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
386
  'sc_id_for_url' => array(
387
  'val' => array( 'number' ),
388
  'hidden' => true,
389
+ 'desc' =>
390
+ __(
391
+ 'This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
392
+ The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.',
393
+ 'event-list'
394
+ ),
395
  ),
396
  );
397
 
399
  function sc_eventlist_helptexts_filterbar_table( $tabledata_array ) {
400
  // table opening tag
401
  $out = '
402
+ <table class="el-filterbar-table">';
403
  // Start with th items (table head for first row)
404
  $tableitem_tag = 'th';
405
  foreach ( $tabledata_array as $row ) {
408
  <tr>';
409
  foreach ( $row as $column_val ) {
410
  // opening tag (if required)
411
+ $out .= ( substr( $column_val, 0, 3 ) === '<' . $tableitem_tag ) ? '' : '<' . $tableitem_tag . '>';
412
  // column value and closing tag
413
  $out .= $column_val . '</' . $tableitem_tag . '>';
414
  }
419
  }
420
  // table closing tag
421
  $out .= '
422
+ </table>
423
  ';
424
  return $out;
425
  }
includes/widget.php CHANGED
@@ -1,4 +1,18 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) {
3
  exit;
4
  }
@@ -16,9 +30,12 @@ class EL_Widget extends WP_Widget {
16
  */
17
  public function __construct() {
18
  parent::__construct(
19
- 'event_list_widget', // Base ID
20
- 'Event List', // Name
21
- array( 'description' => __( 'With this widget a list of upcoming events can be displayed.', 'event-list' ) ) // Args
 
 
 
22
  );
23
 
24
  // define all available items
@@ -39,17 +56,6 @@ class EL_Widget extends WP_Widget {
39
  'link_to_page' => array( 'std_value' => 'false' ),
40
  'link_to_page_caption' => array( 'std_value' => __( 'show events page', 'event-list' ) ),
41
  );
42
-
43
- add_action( 'admin_init', array( &$this, 'load_widget_items_helptexts' ), 2 );
44
- }
45
-
46
-
47
- public function load_widget_items_helptexts() {
48
- require_once EL_PATH . 'includes/widget_helptexts.php';
49
- foreach ( $widget_items_helptexts as $name => $values ) {
50
- $this->items[ $name ] += $values;
51
- }
52
- unset( $widget_items_helptexts );
53
  }
54
 
55
 
@@ -58,8 +64,8 @@ class EL_Widget extends WP_Widget {
58
  *
59
  * @see WP_Widget::widget()
60
  *
61
- * @param array $args Widget arguments.
62
- * @param array $instance Saved values from database.
63
  */
64
  public function widget( $args, $instance ) {
65
  $this->prepare_instance( $instance );
@@ -103,18 +109,19 @@ class EL_Widget extends WP_Widget {
103
  *
104
  * @see WP_Widget::update()
105
  *
106
- * @param array $new_instance Values just sent to be saved.
107
- * @param array $old_instance Previously saved values from database.
108
  *
109
- * @return array Updated values to be saved.
110
  */
111
  public function update( $new_instance, $old_instance ) {
112
  $instance = array();
113
  foreach ( $this->items as $itemname => $item ) {
114
  if ( 'checkbox' === $item['type'] ) {
115
- $instance[ $itemname ] = ( isset( $new_instance[ $itemname ] ) && 1 == $new_instance[ $itemname ] ) ? 'true' : 'false';
116
- } else { // 'text'
117
- $instance[ $itemname ] = strip_tags( $new_instance[ $itemname ] );
 
118
  }
119
  }
120
  return $instance;
@@ -126,23 +133,27 @@ class EL_Widget extends WP_Widget {
126
  *
127
  * @see WP_Widget::form()
128
  *
129
- * @param array $instance Previously saved values from database.
 
130
  */
131
  public function form( $instance ) {
132
  $this->upgrade_widget( $instance );
 
133
  $out = '';
134
  foreach ( $this->items as $itemname => $item ) {
 
135
  if ( ! isset( $instance[ $itemname ] ) ) {
136
  $instance[ $itemname ] = $item['std_value'];
137
  }
138
  $style_text = ( null === $item['form_style'] ) ? '' : ' style="' . $item['form_style'] . '"';
139
  if ( 'checkbox' === $item['type'] ) {
140
- $checked_text = ( 'true' === $instance[ $itemname ] || 1 == $instance[ $itemname ] ) ? 'checked = "checked" ' : '';
141
  $out .= '
142
  <p' . $style_text . ' title="' . $item['tooltip'] . '">
143
  <label><input class="widefat" id="' . $this->get_field_id( $itemname ) . '" name="' . $this->get_field_name( $itemname ) . '" type="checkbox" ' . $checked_text . 'value="1" /> ' . $item['caption'] . '</label>
144
  </p>';
145
- } else { // 'text'
 
146
  $width_text = ( null === $item['form_width'] ) ? '' : 'style="width:' . $item['form_width'] . 'px" ';
147
  $caption_after_text = ( null === $item['caption_after'] ) ? '' : '<label>' . $item['caption_after'] . '</label>';
148
  $out .= '
@@ -153,6 +164,7 @@ class EL_Widget extends WP_Widget {
153
  }
154
  }
155
  echo $out;
 
156
  }
157
 
158
 
@@ -161,7 +173,7 @@ class EL_Widget extends WP_Widget {
161
  *
162
  * This is required for a plugin upgrades: In existing widgets laster added widget options are not available.
163
  *
164
- * @param array &$instance Previously saved values from database.
165
  */
166
  private function prepare_instance( &$instance ) {
167
  foreach ( $this->items as $itemname => $item ) {
@@ -175,8 +187,8 @@ class EL_Widget extends WP_Widget {
175
  /**
176
  * Upgrades which are required due to modifications in the widget args
177
  *
178
- * @param array $instance Values from the database
179
- * @param bool $on_frontpage true if the frontpage is displayed, false if the admin page is displayed
180
  */
181
  private function upgrade_widget( &$instance, $on_frontpage = false ) {
182
  $upgrade_required = false;
@@ -201,5 +213,15 @@ class EL_Widget extends WP_Widget {
201
  }
202
  }
203
 
 
 
 
 
 
 
 
 
 
 
204
  }
205
 
1
  <?php
2
+ /**
3
+ * This file includes the EL_Widget class which handles the event-list widget
4
+ *
5
+ * TODO: Fix phan warnings to remove the suppressed checks
6
+ *
7
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateProperty
8
+ * @phan-file-suppress PhanPluginNoCommentOnPrivateMethod
9
+ * @phan-file-suppress PhanPluginUnknownPropertyType
10
+ * @phan-file-suppress PhanPluginUnknownMethodReturnType
11
+ * @phan-file-suppress PhanPluginRemoveDebugEcho
12
+ *
13
+ * @package event-list
14
+ */
15
+
16
  if ( ! defined( 'WPINC' ) ) {
17
  exit;
18
  }
30
  */
31
  public function __construct() {
32
  parent::__construct(
33
+ // Base ID
34
+ 'event_list_widget',
35
+ // Name
36
+ 'Event List',
37
+ // Args
38
+ array( 'description' => __( 'With this widget a list of upcoming events can be displayed.', 'event-list' ) )
39
  );
40
 
41
  // define all available items
56
  'link_to_page' => array( 'std_value' => 'false' ),
57
  'link_to_page_caption' => array( 'std_value' => __( 'show events page', 'event-list' ) ),
58
  );
 
 
 
 
 
 
 
 
 
 
 
59
  }
60
 
61
 
64
  *
65
  * @see WP_Widget::widget()
66
  *
67
+ * @param array<string,string> $args Widget arguments.
68
+ * @param array<string,string> $instance Saved values from database.
69
  */
70
  public function widget( $args, $instance ) {
71
  $this->prepare_instance( $instance );
109
  *
110
  * @see WP_Widget::update()
111
  *
112
+ * @param array<string,string> $new_instance Values just sent to be saved.
113
+ * @param array<string,string> $old_instance Previously saved values from database.
114
  *
115
+ * @return array<string,string> Updated values to be saved.
116
  */
117
  public function update( $new_instance, $old_instance ) {
118
  $instance = array();
119
  foreach ( $this->items as $itemname => $item ) {
120
  if ( 'checkbox' === $item['type'] ) {
121
+ $instance[ $itemname ] = ( isset( $new_instance[ $itemname ] ) && 1 === intval( $new_instance[ $itemname ] ) ) ? 'true' : 'false';
122
+ } else {
123
+ // 'text'
124
+ $instance[ $itemname ] = wp_strip_all_tags( $new_instance[ $itemname ] );
125
  }
126
  }
127
  return $instance;
133
  *
134
  * @see WP_Widget::form()
135
  *
136
+ * @param array<string,string> $instance Previously saved values from database.
137
+ * @return string
138
  */
139
  public function form( $instance ) {
140
  $this->upgrade_widget( $instance );
141
+ $this->load_widget_items_helptexts();
142
  $out = '';
143
  foreach ( $this->items as $itemname => $item ) {
144
+ $itemname = strval( $itemname );
145
  if ( ! isset( $instance[ $itemname ] ) ) {
146
  $instance[ $itemname ] = $item['std_value'];
147
  }
148
  $style_text = ( null === $item['form_style'] ) ? '' : ' style="' . $item['form_style'] . '"';
149
  if ( 'checkbox' === $item['type'] ) {
150
+ $checked_text = ( 'true' === $instance[ $itemname ] || 1 === intval( $instance[ $itemname ] ) ) ? 'checked = "checked" ' : '';
151
  $out .= '
152
  <p' . $style_text . ' title="' . $item['tooltip'] . '">
153
  <label><input class="widefat" id="' . $this->get_field_id( $itemname ) . '" name="' . $this->get_field_name( $itemname ) . '" type="checkbox" ' . $checked_text . 'value="1" /> ' . $item['caption'] . '</label>
154
  </p>';
155
+ } else {
156
+ // 'text'
157
  $width_text = ( null === $item['form_width'] ) ? '' : 'style="width:' . $item['form_width'] . 'px" ';
158
  $caption_after_text = ( null === $item['caption_after'] ) ? '' : '<label>' . $item['caption_after'] . '</label>';
159
  $out .= '
164
  }
165
  }
166
  echo $out;
167
+ return 'form';
168
  }
169
 
170
 
173
  *
174
  * This is required for a plugin upgrades: In existing widgets laster added widget options are not available.
175
  *
176
+ * @param array<string,string> $instance Previously saved values from database.
177
  */
178
  private function prepare_instance( &$instance ) {
179
  foreach ( $this->items as $itemname => $item ) {
187
  /**
188
  * Upgrades which are required due to modifications in the widget args
189
  *
190
+ * @param array<string,string> $instance Values from the database
191
+ * @param bool $on_frontpage true if the frontpage is displayed, false if the admin page is displayed
192
  */
193
  private function upgrade_widget( &$instance, $on_frontpage = false ) {
194
  $upgrade_required = false;
213
  }
214
  }
215
 
216
+
217
+ private function load_widget_items_helptexts() {
218
+ require_once EL_PATH . 'includes/widget_helptexts.php';
219
+ // @phan-suppress-next-line PhanUndeclaredVariable
220
+ foreach ( (array) $widget_items_helptexts as $name => $values ) {
221
+ $this->items[ $name ] += $values;
222
+ }
223
+ unset( $widget_items_helptexts );
224
+ }
225
+
226
  }
227
 
includes/widget_helptexts.php CHANGED
@@ -35,8 +35,13 @@ $widget_items_helptexts = array(
35
  'type' => 'text',
36
  'caption' => __( 'Truncate event title to', 'event-list' ),
37
  'caption_after' => __( 'characters', 'event-list' ),
38
- 'tooltip' => __( 'This option defines the number of displayed characters for the event title.', 'event-list' ) . ' ' .
39
- sprintf( __( 'Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.', 'event-list' ), '[0]', '[auto]' ),
 
 
 
 
 
40
  'form_style' => null,
41
  'form_width' => 40,
42
  ),
@@ -63,8 +68,13 @@ $widget_items_helptexts = array(
63
  'type' => 'text',
64
  'caption' => __( 'Truncate location to', 'event-list' ),
65
  'caption_after' => __( 'characters', 'event-list' ),
66
- 'tooltip' => __( 'If the event location is diplayed this option defines the number of displayed characters.', 'event-list' ) . ' ' .
67
- sprintf( __( 'Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.', 'event-list' ), '[0]', '[auto]' ),
 
 
 
 
 
68
  'form_style' => 'margin:0 0 0.6em 0.9em',
69
  'form_width' => 40,
70
  ),
@@ -91,8 +101,12 @@ $widget_items_helptexts = array(
91
  'type' => 'text',
92
  'caption' => __( 'Truncate content to', 'event-list' ),
93
  'caption_after' => __( 'characters', 'event-list' ),
94
- 'tooltip' => __( 'If the event content are diplayed this option defines the number of diplayed characters.', 'event-list' ) . ' ' .
95
- sprintf( __( 'Set this value to %1$s to view the full text.', 'event-list' ), '[0]' ),
 
 
 
 
96
  'form_style' => 'margin:0 0 0.6em 0.9em',
97
  'form_width' => 40,
98
  ),
35
  'type' => 'text',
36
  'caption' => __( 'Truncate event title to', 'event-list' ),
37
  'caption_after' => __( 'characters', 'event-list' ),
38
+ 'tooltip' =>
39
+ __( 'This option defines the number of displayed characters for the event title.', 'event-list' ) . ' ' .
40
+ sprintf(
41
+ __( 'Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.', 'event-list' ),
42
+ '[0]',
43
+ '[auto]'
44
+ ),
45
  'form_style' => null,
46
  'form_width' => 40,
47
  ),
68
  'type' => 'text',
69
  'caption' => __( 'Truncate location to', 'event-list' ),
70
  'caption_after' => __( 'characters', 'event-list' ),
71
+ 'tooltip' =>
72
+ __( 'If the event location is diplayed this option defines the number of displayed characters.', 'event-list' ) . ' ' .
73
+ sprintf(
74
+ __( 'Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.', 'event-list' ),
75
+ '[0]',
76
+ '[auto]'
77
+ ),
78
  'form_style' => 'margin:0 0 0.6em 0.9em',
79
  'form_width' => 40,
80
  ),
101
  'type' => 'text',
102
  'caption' => __( 'Truncate content to', 'event-list' ),
103
  'caption_after' => __( 'characters', 'event-list' ),
104
+ 'tooltip' =>
105
+ __( 'If the event content are diplayed this option defines the number of diplayed characters.', 'event-list' ) . ' ' .
106
+ sprintf(
107
+ __( 'Set this value to %1$s to view the full text.', 'event-list' ),
108
+ '[0]'
109
+ ),
110
  'form_style' => 'margin:0 0 0.6em 0.9em',
111
  'form_width' => 40,
112
  ),
languages/event-list-da_DK.mo CHANGED
Binary file
languages/event-list-da_DK.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
12
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,117 +18,117 @@ msgstr ""
18
  "Language: da_DK\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:64
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
32
  msgid "Event List Settings"
33
  msgstr "Event List indstillinger"
34
 
35
- #: admin/admin.php:116
36
  msgid "Settings"
37
  msgstr "Indstillinger"
38
 
39
- #: admin/admin.php:120 admin/includes/admin-about.php:43
40
  msgid "About Event List"
41
  msgstr "Om Event List"
42
 
43
- #: admin/admin.php:120
44
  msgid "About"
45
  msgstr "Om"
46
 
47
- #: admin/admin.php:144
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
55
  msgid "General"
56
  msgstr "Generelt"
57
 
58
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
59
- #: admin/includes/admin-about.php:117
60
  msgid "Shortcode Attributes"
61
  msgstr "Shortcode attributter"
62
 
63
- #: admin/includes/admin-about.php:82
64
  msgid "Help and Instructions"
65
  msgstr "Hjælp og instruktioner"
66
 
67
- #: admin/includes/admin-about.php:83
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
- #: admin/includes/admin-about.php:84
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Du har 2 muligheder for at vise begivenheder på på dit site"
75
 
76
- #: admin/includes/admin-about.php:85
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "du kan placere <strong>shortcode</strong> %1$s på en hvilkensomhelst side eller post"
80
 
81
- #: admin/includes/admin-about.php:86
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "du kan tilføje <strong>widget</strong> %1$s i dine sidebars"
85
 
86
- #: admin/includes/admin-about.php:87
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr "De viste events og deres style kan modificeres med de tilgængelige widget-indstillinger og de tilgængelige attributter for shortcode."
91
 
92
- #: admin/includes/admin-about.php:88
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
- #: admin/includes/admin-about.php:89
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr "De tilgængelige widget-muligheder er beskrevet i deres tooltip-tekst."
102
 
103
- #: admin/includes/admin-about.php:90
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
111
  msgid "Add links to the single events"
112
  msgstr "Tilføj links til enkeltbegivenhederne"
113
 
114
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
115
  msgid "Add a link to the Event List page"
116
  msgstr "Tilføj links til Event List-siden"
117
 
118
- #: admin/includes/admin-about.php:91
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
- #: admin/includes/admin-about.php:92
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
- #: admin/includes/admin-about.php:93
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -136,592 +136,596 @@ msgid ""
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
- #: admin/includes/admin-about.php:94
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
- #: admin/includes/admin-about.php:96
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
- #: admin/includes/admin-about.php:96
152
  msgid "Settings page"
153
  msgstr ""
154
 
155
- #: admin/includes/admin-about.php:103
156
  msgid "About the plugin author"
157
  msgstr ""
158
 
159
- #: admin/includes/admin-about.php:105
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
- #: admin/includes/admin-about.php:105
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
- #: admin/includes/admin-about.php:106
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
- #: admin/includes/admin-about.php:106
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
- #: admin/includes/admin-about.php:107
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
185
- #: admin/includes/admin-about.php:110
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
- #: admin/includes/admin-about.php:119
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr "Du har mulighed for at modificere den færdige liste, hvis du tilføjer nogle af de følgende attributter til din shortcode."
195
 
196
- #: admin/includes/admin-about.php:120
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr "Du kan kombinere og tilføje lige så mange attributter, som du vil. Fx vil en shortcode med attributterne %1$s og %2$s se sådan ud:"
202
 
203
- #: admin/includes/admin-about.php:122
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr "Nedenfor ser du en liste over alle attributter med deres beskrivelse og valgmuligheder:"
208
 
209
- #: admin/includes/admin-about.php:137
210
  msgid "Attribute name"
211
  msgstr "Attribut navn"
212
 
213
- #: admin/includes/admin-about.php:138
214
  msgid "Value options"
215
  msgstr "Værdi-muligheder"
216
 
217
- #: admin/includes/admin-about.php:139
218
  msgid "Default value"
219
  msgstr "Default værdi"
220
 
221
- #: admin/includes/admin-about.php:140
222
  msgid "Description"
223
  msgstr "Beskrivelse"
224
 
225
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
226
- #: includes/sc_event-list_helptexts.php:42
227
  msgid "Filter Syntax"
228
  msgstr "Filter syntax"
229
 
230
- #: admin/includes/admin-about.php:160
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr "For dato og kategori-filtre kan du lave komplekse filtre med den følgende syntax:"
235
 
236
- #: admin/includes/admin-about.php:161
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr "Du kan benytte %1$s og %2$s forbindelser til at lave komplekse filtre. Desuden kan du tilføje brackets %3$s for nested queries."
242
 
243
- #: admin/includes/admin-about.php:161
244
  msgid "AND"
245
  msgstr "AND"
246
 
247
- #: admin/includes/admin-about.php:161
248
  msgid "OR"
249
  msgstr "OR"
250
 
251
- #: admin/includes/admin-about.php:161
252
  msgid "or"
253
  msgstr "eller"
254
 
255
- #: admin/includes/admin-about.php:161
256
  msgid "and"
257
  msgstr "og"
258
 
259
- #: admin/includes/admin-about.php:162
260
  msgid "Examples for cat filters:"
261
  msgstr "Eksempler for kategori-filtre:"
262
 
263
- #: admin/includes/admin-about.php:163
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr "Vis alle begivenheder i kategorien %1$s."
267
 
268
- #: admin/includes/admin-about.php:164
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr "Vis alle begivenheder i kategorien %1$s eller %2$s."
272
 
273
- #: admin/includes/admin-about.php:165
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr "Vis alle begivenheder i kategorien %1$s og alle begivenheder, hvor kategorien %2$s og %3$s er valgt."
279
 
280
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
281
  msgid "Available Date Formats"
282
  msgstr "Mulige dato-formater"
283
 
284
- #: admin/includes/admin-about.php:172
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr "Til dato-filtre kan du bruge følgende dato-formater:"
287
 
288
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
289
  msgid "Available Date Range Formats"
290
  msgstr "Tilgængelige dato-formater"
291
 
292
- #: admin/includes/admin-about.php:182
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr ""
295
 
296
- #: admin/includes/admin-about.php:195
297
  msgid "Value"
298
  msgstr "Værdi"
299
 
300
- #: admin/includes/admin-about.php:199
301
  msgid "Example"
302
  msgstr "Eksempel"
303
 
304
- #: admin/includes/admin-categories.php:54
305
  msgid "Synchronize with post categories"
306
  msgstr ""
307
 
308
- #: admin/includes/admin-categories.php:63
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
- #: admin/includes/admin-categories.php:64
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
- #: admin/includes/admin-categories.php:65
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
- #: admin/includes/admin-categories.php:67
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
- #: admin/includes/admin-categories.php:68
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
- #: admin/includes/admin-categories.php:69
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
- #: admin/includes/admin-categories.php:72
339
  msgid "An Error occured during the category sync"
340
  msgstr ""
341
 
342
- #: admin/includes/admin-categories.php:75
343
  msgid "Category sync finished"
344
  msgstr ""
345
 
346
- #: admin/includes/admin-category-sync.php:54
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr ""
349
 
350
- #: admin/includes/admin-category-sync.php:70
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
- #: admin/includes/admin-category-sync.php:71
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
- #: admin/includes/admin-category-sync.php:72
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
- #: admin/includes/admin-category-sync.php:73
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
- #: admin/includes/admin-category-sync.php:75
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
- #: admin/includes/admin-category-sync.php:76
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
- #: admin/includes/admin-category-sync.php:77
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
- #: admin/includes/admin-category-sync.php:79
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr ""
386
 
387
- #: admin/includes/admin-category-sync.php:80
388
  msgid "Start synchronisation"
389
  msgstr ""
390
 
391
- #: admin/includes/admin-category-sync.php:81
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
- #: admin/includes/admin-category-sync.php:96
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
- #: admin/includes/admin-category-sync.php:97
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
- #: admin/includes/admin-category-sync.php:98
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
- #: admin/includes/admin-category-sync.php:99
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
- #: admin/includes/admin-category-sync.php:102
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
- #: admin/includes/admin-category-sync.php:103
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
- #: admin/includes/admin-category-sync.php:104
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
- #: admin/includes/admin-category-sync.php:123
426
  msgid "none"
427
  msgstr ""
428
 
429
- #: admin/includes/admin-import.php:58
430
  msgid "Import Events"
431
  msgstr "Importér begivenheder"
432
 
433
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
434
- #: admin/includes/admin-import.php:220
435
  msgid "Step"
436
  msgstr "Trin"
437
 
438
- #: admin/includes/admin-import.php:79
439
  msgid "Set import file and options"
440
  msgstr ""
441
 
442
- #: admin/includes/admin-import.php:82
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
- #: admin/includes/admin-import.php:85
448
  msgid "Example file"
449
  msgstr "Eksempelfil"
450
 
451
- #: admin/includes/admin-import.php:86
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr ""
456
 
457
- #: admin/includes/admin-import.php:87
458
  msgid "Note"
459
  msgstr "Note"
460
 
461
- #: admin/includes/admin-import.php:87
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr ""
466
 
467
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
468
  msgid "Sorry, there has been an error."
469
  msgstr "Beklager, der er sket en fejl."
470
 
471
- #: admin/includes/admin-import.php:96
472
  msgid "The file does not exist, please try again."
473
  msgstr "Filen eksisterer ikke. Prøv venligst igen."
474
 
475
- #: admin/includes/admin-import.php:104
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
- #: admin/includes/admin-import.php:116
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
484
  msgid "Error"
485
  msgstr ""
486
 
487
- #: admin/includes/admin-import.php:122
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
- #: admin/includes/admin-import.php:133
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
496
  msgid "Warning"
497
  msgstr ""
498
 
499
- #: admin/includes/admin-import.php:138
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
- #: admin/includes/admin-import.php:150
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
- #: admin/includes/admin-import.php:160
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
- #: admin/includes/admin-import.php:179
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
- #: admin/includes/admin-import.php:185
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
- #: admin/includes/admin-import.php:220
528
  msgid "Import result"
529
  msgstr ""
530
 
531
- #: admin/includes/admin-import.php:223
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
- #: admin/includes/admin-import.php:224
537
  msgid "Go back to All Events"
538
  msgstr ""
539
 
540
- #: admin/includes/admin-import.php:227
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
- #: admin/includes/admin-import.php:235
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Titel"
552
 
553
- #: admin/includes/admin-import.php:248
554
  msgid "Start Date"
555
  msgstr "Starter"
556
 
557
- #: admin/includes/admin-import.php:249
558
  msgid "End Date"
559
  msgstr "Slutter"
560
 
561
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr "Tidspunkt"
565
 
566
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
567
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr "Lokalitet"
571
 
572
- #: admin/includes/admin-import.php:252
573
  msgid "Content"
574
  msgstr ""
575
 
576
- #: admin/includes/admin-import.php:253
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
- #: admin/includes/admin-import.php:297
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
- #: admin/includes/admin-import.php:298
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
- #: admin/includes/admin-import.php:305
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
- #: admin/includes/admin-import.php:334
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
- #: admin/includes/admin-import.php:340
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
- #: admin/includes/admin-import.php:348
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
- #: admin/includes/admin-import.php:401
609
  msgid "Import events"
610
  msgstr ""
611
 
612
- #: admin/includes/admin-import.php:402
613
  msgid "Add additional categories"
614
  msgstr ""
615
 
616
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
617
- msgid "Import"
618
- msgstr "Importér"
619
-
620
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
621
  msgid "No events found"
622
  msgstr ""
623
 
624
- #: admin/includes/admin-import.php:473
625
  msgid "Saving of event failed!"
626
  msgstr ""
627
 
628
- #: admin/includes/admin-main.php:76
629
  msgid "Event Date"
630
  msgstr ""
631
 
632
- #: admin/includes/admin-main.php:80
633
  msgid "Author"
634
  msgstr "Forfatter"
635
 
636
- #: admin/includes/admin-main.php:148
637
  #, php-format
638
  msgid "Add a copy of %1$s"
639
  msgstr ""
640
 
641
- #: admin/includes/admin-main.php:148
642
  msgid "Copy"
643
  msgstr ""
644
 
645
- #: admin/includes/admin-new.php:58
 
 
 
 
646
  msgid "Event data"
647
  msgstr ""
648
 
649
- #: admin/includes/admin-new.php:90
650
  msgid "Add Copy"
651
  msgstr ""
652
 
653
- #: admin/includes/admin-new.php:98
654
  msgid "Date"
655
  msgstr "Dato"
656
 
657
- #: admin/includes/admin-new.php:98
658
  msgid "required"
659
  msgstr ""
660
 
661
- #: admin/includes/admin-new.php:101
662
  msgid "Multi-Day Event"
663
  msgstr ""
664
 
665
- #: admin/includes/admin-new.php:121
666
  msgid "Event Title"
667
  msgstr ""
668
 
669
- #: admin/includes/admin-new.php:137
670
  msgid "Event Content"
671
  msgstr ""
672
 
673
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
674
  msgid "Event updated."
675
  msgstr ""
676
 
677
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
678
  msgid "View event"
679
  msgstr ""
680
 
681
- #: admin/includes/admin-new.php:204
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
- #: admin/includes/admin-new.php:205
687
  msgid "Event published."
688
  msgstr ""
689
 
690
- #: admin/includes/admin-new.php:207
 
 
 
 
691
  msgid "Event submitted."
692
  msgstr ""
693
 
694
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
695
- #: admin/includes/admin-new.php:210
696
  msgid "Preview event"
697
  msgstr ""
698
 
699
- #: admin/includes/admin-new.php:208
700
  #, php-format
701
  msgid "Event scheduled for: %1$s>"
702
  msgstr ""
703
 
704
- #: admin/includes/admin-new.php:210
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
- #: admin/includes/admin-settings.php:79
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:93
713
  msgid "Frontend Settings"
714
  msgstr "Frontend-indstillinger"
715
 
716
- #: admin/includes/admin-settings.php:94
717
  msgid "Admin Page Settings"
718
  msgstr "Admin Page-indstillinger"
719
 
720
- #: admin/includes/admin-settings.php:95
721
  msgid "Feed Settings"
722
  msgstr "Feed-indstillinger"
723
 
724
- #: admin/includes/admin-settings.php:96
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -729,255 +733,255 @@ msgstr ""
729
  msgid "Year"
730
  msgstr "År"
731
 
732
- #: includes/daterange_helptexts.php:9
733
  msgid "A year can be specified in 4 digit format."
734
  msgstr ""
735
 
736
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
737
- #: includes/daterange_helptexts.php:47
738
  #, php-format
739
  msgid ""
740
  "For a start date filter the first day of %1$s is used, in an end date the "
741
  "last day."
742
  msgstr ""
743
 
744
- #: includes/daterange_helptexts.php:10
745
  msgid "the resulting year"
746
  msgstr ""
747
 
748
- #: includes/daterange_helptexts.php:15
749
  msgid "Month"
750
  msgstr "Måned"
751
 
752
- #: includes/daterange_helptexts.php:16
753
  msgid ""
754
  "A month can be specified with 4 digits for the year and 2 digits for the "
755
  "month, seperated by a hyphen (-)."
756
  msgstr ""
757
 
758
- #: includes/daterange_helptexts.php:17
759
  msgid "the resulting month"
760
  msgstr ""
761
 
762
- #: includes/daterange_helptexts.php:22
763
  msgid "Day"
764
  msgstr "Dag"
765
 
766
- #: includes/daterange_helptexts.php:23
767
  msgid ""
768
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
769
  " month and 2 digets for the day, seperated by hyphens (-)."
770
  msgstr ""
771
 
772
- #: includes/daterange_helptexts.php:28
773
  msgid "Relative Year"
774
  msgstr ""
775
 
776
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
777
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
778
  #, php-format
779
  msgid "%1$s from now can be specified in the following notation: %2$s"
780
  msgstr ""
781
 
782
- #: includes/daterange_helptexts.php:29
783
  msgid "A relative year"
784
  msgstr ""
785
 
786
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
787
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
788
  #, php-format
789
  msgid ""
790
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
791
  "%3$s or %4$s attached (see also the example below)."
792
  msgstr ""
793
 
794
- #: includes/daterange_helptexts.php:30
795
  msgid "number of years"
796
  msgstr "antal år"
797
 
798
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
799
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
800
  #, php-format
801
  msgid "Additionally the following values are available: %1$s"
802
  msgstr ""
803
 
804
- #: includes/daterange_helptexts.php:36
805
  msgid "Relative Month"
806
  msgstr ""
807
 
808
- #: includes/daterange_helptexts.php:37
809
  msgid "A relative month"
810
  msgstr ""
811
 
812
- #: includes/daterange_helptexts.php:38
813
  msgid "number of months"
814
  msgstr "Antal måneder"
815
 
816
- #: includes/daterange_helptexts.php:44
817
  msgid "Relative Week"
818
  msgstr ""
819
 
820
- #: includes/daterange_helptexts.php:45
821
  msgid "A relative week"
822
  msgstr ""
823
 
824
- #: includes/daterange_helptexts.php:46
825
  msgid "number of weeks"
826
  msgstr "Antal uger"
827
 
828
- #: includes/daterange_helptexts.php:47
829
  msgid "the resulting week"
830
  msgstr ""
831
 
832
- #: includes/daterange_helptexts.php:48
833
  #, php-format
834
  msgid ""
835
  "The first day of the week is depending on the option %1$s which can be found"
836
  " and changed in %2$s."
837
  msgstr ""
838
 
839
- #: includes/daterange_helptexts.php:54
840
  msgid "Relative Day"
841
  msgstr ""
842
 
843
- #: includes/daterange_helptexts.php:55
844
  msgid "A relative day"
845
  msgstr ""
846
 
847
- #: includes/daterange_helptexts.php:56
848
  msgid "number of days"
849
  msgstr ""
850
 
851
- #: includes/daterange_helptexts.php:64
852
  msgid "Date range"
853
  msgstr ""
854
 
855
- #: includes/daterange_helptexts.php:66
856
  msgid ""
857
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
858
- "\t For the start and end date any available date format can be used."
859
  msgstr ""
860
 
861
- #: includes/daterange_helptexts.php:75
862
  msgid "This value defines a range without any limits."
863
  msgstr ""
864
 
865
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
866
- #: includes/daterange_helptexts.php:90
867
  #, php-format
868
  msgid "The corresponding date_range format is: %1$s"
869
  msgstr ""
870
 
871
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
872
  msgid "Upcoming"
873
  msgstr "Kommende"
874
 
875
- #: includes/daterange_helptexts.php:82
876
  msgid "This value defines a range from the actual day to the future."
877
  msgstr ""
878
 
879
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
880
  msgid "Past"
881
  msgstr "Tidligere"
882
 
883
- #: includes/daterange_helptexts.php:89
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:124
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
891
- #: includes/event.php:299 includes/event.php:301
892
- #: includes/sc_event-list.php:298
893
  msgid "read more"
894
  msgstr ""
895
 
896
- #: includes/events_post_type.php:69
897
  msgid "Events"
898
  msgstr "Begivenheder"
899
 
900
- #: includes/events_post_type.php:70
901
  msgid "Event"
902
  msgstr ""
903
 
904
- #: includes/events_post_type.php:71
905
  msgid "Add New"
906
  msgstr "Tilføj ny"
907
 
908
- #: includes/events_post_type.php:72
909
  msgid "Add New Event"
910
  msgstr "Tilføj ny begivenhed"
911
 
912
- #: includes/events_post_type.php:73
913
  msgid "Edit Event"
914
  msgstr "Redigér begivenhed"
915
 
916
- #: includes/events_post_type.php:74
917
  msgid "New Event"
918
  msgstr ""
919
 
920
- #: includes/events_post_type.php:75
921
  msgid "View Event"
922
  msgstr ""
923
 
924
- #: includes/events_post_type.php:76
925
  msgid "View Events"
926
  msgstr ""
927
 
928
- #: includes/events_post_type.php:77
929
  msgid "Search Events"
930
  msgstr ""
931
 
932
- #: includes/events_post_type.php:79
933
  msgid "No events found in Trash"
934
  msgstr ""
935
 
936
- #: includes/events_post_type.php:81
937
  msgid "All Events"
938
  msgstr "Alle begivenheder"
939
 
940
- #: includes/events_post_type.php:82
941
  msgid "Event Archives"
942
  msgstr ""
943
 
944
- #: includes/events_post_type.php:83
945
  msgid "Event Attributes"
946
  msgstr ""
947
 
948
- #: includes/events_post_type.php:84
949
  msgid "Insert into event"
950
  msgstr ""
951
 
952
- #: includes/events_post_type.php:85
953
  msgid "Uploaded to this event"
954
  msgstr ""
955
 
956
- #: includes/events_post_type.php:86
957
  msgid "Event List"
958
  msgstr "Event List"
959
 
960
- #: includes/events_post_type.php:87
961
  msgid "Filter events list"
962
  msgstr ""
963
 
964
- #: includes/events_post_type.php:88
965
  msgid "Events list navigation"
966
  msgstr ""
967
 
968
- #: includes/events_post_type.php:89
969
  msgid "Events list"
970
  msgstr ""
971
 
972
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
973
  msgid "Reset"
974
  msgstr ""
975
 
976
- #: includes/filterbar.php:296
977
  msgid "All"
978
  msgstr "Alle"
979
 
980
- #: includes/filterbar.php:298
981
  msgid "All Dates"
982
  msgstr ""
983
 
@@ -1417,23 +1421,23 @@ msgid ""
1417
  " switching page from here."
1418
  msgstr ""
1419
 
1420
- #: includes/options.php:73
1421
  msgid "events"
1422
  msgstr ""
1423
 
1424
- #: includes/options.php:77
1425
  msgid "Show content"
1426
  msgstr ""
1427
 
1428
- #: includes/options.php:81
1429
  msgid "Hide content"
1430
  msgstr ""
1431
 
1432
- #: includes/sc_event-list_helptexts.php:8
1433
  msgid "event-id"
1434
  msgstr ""
1435
 
1436
- #: includes/sc_event-list_helptexts.php:9
1437
  #, php-format
1438
  msgid ""
1439
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1441,107 +1445,108 @@ msgid ""
1441
  "this event is shown."
1442
  msgstr ""
1443
 
1444
- #: includes/sc_event-list_helptexts.php:13
1445
- #: includes/sc_event-list_helptexts.php:31
1446
  msgid "year"
1447
  msgstr ""
1448
 
1449
- #: includes/sc_event-list_helptexts.php:14
1450
  msgid ""
1451
  "This attribute defines which events are initially shown. The default is to "
1452
  "show the upcoming events only."
1453
  msgstr ""
1454
 
1455
- #: includes/sc_event-list_helptexts.php:15
1456
  #, php-format
1457
  msgid ""
1458
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1459
  "change the displayed event date range via the filterbar or url parameters."
1460
  msgstr ""
1461
 
1462
- #: includes/sc_event-list_helptexts.php:19
1463
  msgid "category slug"
1464
  msgstr ""
1465
 
1466
- #: includes/sc_event-list_helptexts.php:20
1467
  msgid ""
1468
  "This attribute defines the category of which events are initially shown. The"
1469
  " default is to show events of all categories."
1470
  msgstr ""
1471
 
1472
- #: includes/sc_event-list_helptexts.php:21
1473
  msgid ""
1474
  "Provide a category slug to change this behavior. It is still possible to "
1475
  "change the displayed categories via the filterbar or url parameters."
1476
  msgstr ""
1477
 
1478
- #: includes/sc_event-list_helptexts.php:26
1479
  msgid "This attribute defines the initial order of the events."
1480
  msgstr ""
1481
 
1482
- #: includes/sc_event-list_helptexts.php:27
 
1483
  msgid ""
1484
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1485
  "in the opposite direction (from new to old)."
1486
  msgstr ""
1487
 
1488
- #: includes/sc_event-list_helptexts.php:32
1489
  #, php-format
1490
  msgid ""
1491
  "This attribute defines the dates and date ranges of which events are "
1492
  "displayed. The default is %1$s to show all events."
1493
  msgstr ""
1494
 
1495
- #: includes/sc_event-list_helptexts.php:33
1496
  #, php-format
1497
  msgid ""
1498
  "Filtered events according to %1$s value are not available in the event list."
1499
  msgstr ""
1500
 
1501
- #: includes/sc_event-list_helptexts.php:34
1502
  #, php-format
1503
  msgid ""
1504
  "You can find all available values with a description and examples in the "
1505
  "sections %1$s and %2$s below."
1506
  msgstr ""
1507
 
1508
- #: includes/sc_event-list_helptexts.php:35
1509
  #, php-format
1510
  msgid "See %1$s description if you want to define complex filters."
1511
  msgstr ""
1512
 
1513
- #: includes/sc_event-list_helptexts.php:39
1514
  msgid "category slugs"
1515
  msgstr ""
1516
 
1517
- #: includes/sc_event-list_helptexts.php:40
1518
  msgid ""
1519
  "This attribute defines the category filter which filters the events to show."
1520
  " The default is $1$s or an empty string to show all events."
1521
  msgstr ""
1522
 
1523
- #: includes/sc_event-list_helptexts.php:41
1524
  #, php-format
1525
  msgid ""
1526
  "Events with categories that doesn´t match %1$s are not shown in the event "
1527
  "list. They are also not available if a manual url parameter is added."
1528
  msgstr ""
1529
 
1530
- #: includes/sc_event-list_helptexts.php:42
1531
  #, php-format
1532
  msgid ""
1533
  "The filter is specified via the given category slugs. See %1$s description "
1534
  "if you want to define complex filters."
1535
  msgstr ""
1536
 
1537
- #: includes/sc_event-list_helptexts.php:46
1538
- #: includes/sc_event-list_helptexts.php:111
1539
- #: includes/sc_event-list_helptexts.php:138
1540
- #: includes/sc_event-list_helptexts.php:177
1541
  msgid "number"
1542
  msgstr ""
1543
 
1544
- #: includes/sc_event-list_helptexts.php:47
1545
  #, php-format
1546
  msgid ""
1547
  "This attribute defines how many events should be displayed if upcoming "
@@ -1549,109 +1554,109 @@ msgid ""
1549
  "displayed."
1550
  msgstr ""
1551
 
1552
- #: includes/sc_event-list_helptexts.php:48
1553
  msgid ""
1554
  "Please not that in the actual version there is no pagination of the events "
1555
  "available, so the event list can be very long."
1556
  msgstr ""
1557
 
1558
- #: includes/sc_event-list_helptexts.php:53
1559
  msgid ""
1560
  "This attribute defines if the filterbar should be displayed. The filterbar "
1561
  "allows the users to specify filters for the listed events."
1562
  msgstr ""
1563
 
1564
- #: includes/sc_event-list_helptexts.php:54
1565
  #, php-format
1566
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1567
  msgstr ""
1568
 
1569
- #: includes/sc_event-list_helptexts.php:55
1570
  #, php-format
1571
  msgid ""
1572
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1573
  " in the single event view."
1574
  msgstr ""
1575
 
1576
- #: includes/sc_event-list_helptexts.php:60
1577
  #, php-format
1578
  msgid ""
1579
  "This attribute specifies the available items in the filterbar. This options "
1580
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1581
  msgstr ""
1582
 
1583
- #: includes/sc_event-list_helptexts.php:61
1584
  msgid ""
1585
  "Find below an overview of the available filterbar items and their options:"
1586
  msgstr ""
1587
 
1588
- #: includes/sc_event-list_helptexts.php:64
1589
  msgid "filterbar item"
1590
  msgstr ""
1591
 
1592
- #: includes/sc_event-list_helptexts.php:64
1593
- #: includes/sc_event-list_helptexts.php:96
1594
  msgid "description"
1595
  msgstr ""
1596
 
1597
- #: includes/sc_event-list_helptexts.php:64
1598
  msgid "item options"
1599
  msgstr ""
1600
 
1601
- #: includes/sc_event-list_helptexts.php:64
1602
  msgid "option values"
1603
  msgstr ""
1604
 
1605
- #: includes/sc_event-list_helptexts.php:64
1606
  msgid "default value"
1607
  msgstr ""
1608
 
1609
- #: includes/sc_event-list_helptexts.php:64
1610
  msgid "option description"
1611
  msgstr ""
1612
 
1613
- #: includes/sc_event-list_helptexts.php:67
1614
  msgid ""
1615
  "Show a list of all available years. Additional there are some special "
1616
  "entries available (see item options)."
1617
  msgstr ""
1618
 
1619
- #: includes/sc_event-list_helptexts.php:71
1620
- #: includes/sc_event-list_helptexts.php:82
1621
  msgid "Add an entry to show all events."
1622
  msgstr ""
1623
 
1624
- #: includes/sc_event-list_helptexts.php:73
1625
- #: includes/sc_event-list_helptexts.php:84
1626
  msgid "Add an entry to show all upcoming events."
1627
  msgstr ""
1628
 
1629
- #: includes/sc_event-list_helptexts.php:74
1630
- #: includes/sc_event-list_helptexts.php:85
1631
  msgid "Add an entry to show events in the past."
1632
  msgstr ""
1633
 
1634
- #: includes/sc_event-list_helptexts.php:75
1635
  msgid "Set descending or ascending order of year entries."
1636
  msgstr ""
1637
 
1638
- #: includes/sc_event-list_helptexts.php:78
1639
  msgid "Show a list of all available months."
1640
  msgstr ""
1641
 
1642
- #: includes/sc_event-list_helptexts.php:86
1643
  msgid "Set descending or ascending order of month entries."
1644
  msgstr ""
1645
 
1646
- #: includes/sc_event-list_helptexts.php:87
1647
  msgid "php date-formats"
1648
  msgstr ""
1649
 
1650
- #: includes/sc_event-list_helptexts.php:87
1651
  msgid "Set the displayed date format of the month entries."
1652
  msgstr ""
1653
 
1654
- #: includes/sc_event-list_helptexts.php:88
1655
  #, php-format
1656
  msgid ""
1657
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1659,65 +1664,65 @@ msgid ""
1659
  "order."
1660
  msgstr ""
1661
 
1662
- #: includes/sc_event-list_helptexts.php:88
1663
  #, php-format
1664
  msgid ""
1665
  "Specifies the displayed values and their order. The items must be seperated "
1666
  "by %1$s."
1667
  msgstr ""
1668
 
1669
- #: includes/sc_event-list_helptexts.php:89
1670
  msgid "Show a list of all available categories."
1671
  msgstr ""
1672
 
1673
- #: includes/sc_event-list_helptexts.php:89
1674
  msgid "Add an entry to show events from all categories."
1675
  msgstr ""
1676
 
1677
- #: includes/sc_event-list_helptexts.php:90
1678
  msgid "A link to reset the eventlist filter to standard."
1679
  msgstr ""
1680
 
1681
- #: includes/sc_event-list_helptexts.php:90
1682
  msgid "any text"
1683
  msgstr ""
1684
 
1685
- #: includes/sc_event-list_helptexts.php:90
1686
  msgid "Set the caption of the link."
1687
  msgstr ""
1688
 
1689
- #: includes/sc_event-list_helptexts.php:93
1690
  msgid "Find below an overview of the available filterbar display options:"
1691
  msgstr ""
1692
 
1693
- #: includes/sc_event-list_helptexts.php:96
1694
  msgid "display option"
1695
  msgstr ""
1696
 
1697
- #: includes/sc_event-list_helptexts.php:96
1698
  msgid "available for"
1699
  msgstr ""
1700
 
1701
- #: includes/sc_event-list_helptexts.php:97
1702
  #, php-format
1703
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1704
  msgstr ""
1705
 
1706
- #: includes/sc_event-list_helptexts.php:98
1707
  msgid ""
1708
  "Shows a select box where an item can be choosen. After the selection of an "
1709
  "item the page is reloaded via javascript to show the filtered events."
1710
  msgstr ""
1711
 
1712
- #: includes/sc_event-list_helptexts.php:99
1713
  msgid "Shows a simple link which can be clicked."
1714
  msgstr ""
1715
 
1716
- #: includes/sc_event-list_helptexts.php:102
1717
  msgid "Find below some declaration examples with descriptions:"
1718
  msgstr ""
1719
 
1720
- #: includes/sc_event-list_helptexts.php:104
1721
  #, php-format
1722
  msgid ""
1723
  "In this example you can see that the filterbar item and the used display "
@@ -1725,22 +1730,22 @@ msgid ""
1725
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1726
  msgstr ""
1727
 
1728
- #: includes/sc_event-list_helptexts.php:106
1729
  #, php-format
1730
  msgid ""
1731
  "In this example you can see that filterbar options can be added in brackets "
1732
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1733
  msgstr ""
1734
 
1735
- #: includes/sc_event-list_helptexts.php:106
1736
  msgid "option_name"
1737
  msgstr ""
1738
 
1739
- #: includes/sc_event-list_helptexts.php:106
1740
  msgid "value"
1741
  msgstr ""
1742
 
1743
- #: includes/sc_event-list_helptexts.php:107
1744
  #, php-format
1745
  msgid ""
1746
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1749,134 +1754,134 @@ msgid ""
1749
  "left-aligned and the reset link will be on the right side."
1750
  msgstr ""
1751
 
1752
- #: includes/sc_event-list_helptexts.php:112
1753
- #: includes/sc_event-list_helptexts.php:139
1754
  msgid ""
1755
  "This attribute specifies if the title should be truncated to the given "
1756
  "number of characters in the event list."
1757
  msgstr ""
1758
 
1759
- #: includes/sc_event-list_helptexts.php:113
1760
- #: includes/sc_event-list_helptexts.php:140
1761
  #, php-format
1762
  msgid ""
1763
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1764
  "is automatically truncated via css."
1765
  msgstr ""
1766
 
1767
- #: includes/sc_event-list_helptexts.php:114
1768
- #: includes/sc_event-list_helptexts.php:141
1769
- #: includes/sc_event-list_helptexts.php:180
1770
  msgid "This attribute has no influence if only a single event is shown."
1771
  msgstr ""
1772
 
1773
- #: includes/sc_event-list_helptexts.php:120
1774
  msgid ""
1775
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1776
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1777
- "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1778
  msgstr ""
1779
 
1780
- #: includes/sc_event-list_helptexts.php:130
1781
  msgid ""
1782
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1783
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1784
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:147
1788
  msgid ""
1789
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1790
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1791
- "\t With \"event_list_only\" the categories are 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:157
1795
  msgid ""
1796
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1797
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1798
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1799
  msgstr ""
1800
 
1801
- #: includes/sc_event-list_helptexts.php:167
1802
  msgid ""
1803
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1804
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1805
- "\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"
1806
- "\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"
1807
- "\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)."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:178
1811
  msgid ""
1812
  "This attribute specifies if the content should be truncate to the given "
1813
  "number of characters in the event list."
1814
  msgstr ""
1815
 
1816
- #: includes/sc_event-list_helptexts.php:179
1817
  #, php-format
1818
  msgid "With the standard value %1$s the full text is displayed."
1819
  msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:186
1822
  msgid ""
1823
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1824
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1825
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1826
- "\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."
1827
  msgstr ""
1828
 
1829
- #: includes/sc_event-list_helptexts.php:197
1830
  msgid ""
1831
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1832
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1834
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1835
  msgstr ""
1836
 
1837
- #: includes/sc_event-list_helptexts.php:208
1838
  msgid ""
1839
  "This attribute specifies if a rss feed link should be added.<br />\n"
1840
- "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1841
- "\t On that page you can also find some settings to modify the output.<br />\n"
1842
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1843
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1844
  msgstr ""
1845
 
1846
- #: includes/sc_event-list_helptexts.php:220
1847
  msgid ""
1848
  "This attribute specifies if a ical feed link should be added.<br />\n"
1849
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1850
- "\t On that page you can also find some settings to modify the output.<br />\n"
1851
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1852
  msgstr ""
1853
 
1854
- #: includes/sc_event-list_helptexts.php:231
1855
  msgid ""
1856
  "This attribute specifies the page or post url for event links.<br />\n"
1857
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1858
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1859
  msgstr ""
1860
 
1861
- #: includes/sc_event-list_helptexts.php:243
1862
  msgid ""
1863
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1864
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1865
  msgstr ""
1866
 
1867
- #: includes/sc_event-list.php:154
1868
  msgid "Sorry, the requested event is not available!"
1869
  msgstr ""
1870
 
1871
- #: includes/sc_event-list.php:163
1872
  msgid "Event Information:"
1873
  msgstr ""
1874
 
1875
- #: includes/sc_event-list.php:405
1876
  msgid "Link to RSS feed"
1877
  msgstr ""
1878
 
1879
- #: includes/sc_event-list.php:414
1880
  msgid "Link to iCal feed"
1881
  msgstr ""
1882
 
@@ -1909,133 +1914,133 @@ msgstr ""
1909
  msgid "Truncate event title to"
1910
  msgstr ""
1911
 
1912
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1913
- #: includes/widget_helptexts.php:93
1914
  msgid "characters"
1915
  msgstr ""
1916
 
1917
- #: includes/widget_helptexts.php:38
1918
  msgid ""
1919
  "This option defines the number of displayed characters for the event title."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1923
  #, php-format
1924
  msgid ""
1925
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1926
  "automatically truncate the text via css."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:46
1930
  msgid "Show event starttime"
1931
  msgstr ""
1932
 
1933
- #: includes/widget_helptexts.php:48
1934
  msgid "This option defines if the event start time will be displayed."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:55
1938
  msgid "Show event location"
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:57
1942
  msgid "This option defines if the event location will be displayed."
1943
  msgstr ""
1944
 
1945
- #: includes/widget_helptexts.php:64
1946
  msgid "Truncate location to"
1947
  msgstr ""
1948
 
1949
- #: includes/widget_helptexts.php:66
1950
  msgid ""
1951
  "If the event location is diplayed this option defines the number of "
1952
  "displayed characters."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:74
1956
  msgid "Show event excerpt"
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:76
1960
  msgid "This option defines if the event excerpt will be displayed."
1961
  msgstr ""
1962
 
1963
- #: includes/widget_helptexts.php:83
1964
  msgid "Show event content"
1965
  msgstr ""
1966
 
1967
- #: includes/widget_helptexts.php:85
1968
  msgid "This option defines if the event content will be displayed."
1969
  msgstr ""
1970
 
1971
- #: includes/widget_helptexts.php:92
1972
  msgid "Truncate content to"
1973
  msgstr ""
1974
 
1975
- #: includes/widget_helptexts.php:94
1976
  msgid ""
1977
  "If the event content are diplayed this option defines the number of diplayed"
1978
  " characters."
1979
  msgstr ""
1980
 
1981
- #: includes/widget_helptexts.php:95
1982
  #, php-format
1983
  msgid "Set this value to %1$s to view the full text."
1984
  msgstr ""
1985
 
1986
- #: includes/widget_helptexts.php:102
1987
  msgid "URL to the linked Event List page"
1988
  msgstr ""
1989
 
1990
- #: includes/widget_helptexts.php:104
1991
  msgid ""
1992
  "This option defines the url to the linked Event List page. This option is "
1993
  "required if you want to use one of the options below."
1994
  msgstr ""
1995
 
1996
- #: includes/widget_helptexts.php:111
1997
  msgid "Shortcode ID on linked page"
1998
  msgstr ""
1999
 
2000
- #: includes/widget_helptexts.php:113
2001
  msgid ""
2002
  "This option defines the shortcode-id for the Event List on the linked page. "
2003
  "Normally the standard value 1 is correct, you only have to change it if you "
2004
  "use multiple event-list shortcodes on the linked page."
2005
  msgstr ""
2006
 
2007
- #: includes/widget_helptexts.php:122
2008
  msgid ""
2009
  "With this option you can add a link to the single event page for every "
2010
  "displayed event. You have to specify the url to the page and the shortcode "
2011
  "id option if you want to use it."
2012
  msgstr ""
2013
 
2014
- #: includes/widget_helptexts.php:131
2015
  msgid ""
2016
  "With this option you can add a link to the event-list page below the "
2017
  "diplayed events. You have to specify the url to page option if you want to "
2018
  "use it."
2019
  msgstr ""
2020
 
2021
- #: includes/widget_helptexts.php:138
2022
  msgid "Caption for the link"
2023
  msgstr ""
2024
 
2025
- #: includes/widget_helptexts.php:140
2026
  msgid ""
2027
  "This option defines the text for the link to the Event List page if the "
2028
  "approriate option is selected."
2029
  msgstr ""
2030
 
2031
- #: includes/widget.php:21
2032
  msgid "With this widget a list of upcoming events can be displayed."
2033
  msgstr "Med denne widget kan en liste over alle kommende begivenheder vises."
2034
 
2035
- #: includes/widget.php:26
2036
  msgid "Upcoming events"
2037
  msgstr "Kommende begivenheder"
2038
 
2039
- #: includes/widget.php:40
2040
  msgid "show events page"
2041
  msgstr "Vis begivenheds-side"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
12
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: da_DK\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:90
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:90
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
32
  msgid "Event List Settings"
33
  msgstr "Event List indstillinger"
34
 
35
+ #: admin/admin.php:142
36
  msgid "Settings"
37
  msgstr "Indstillinger"
38
 
39
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
40
  msgid "About Event List"
41
  msgstr "Om Event List"
42
 
43
+ #: admin/admin.php:146
44
  msgid "About"
45
  msgstr "Om"
46
 
47
+ #: admin/admin.php:170
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
55
  msgid "General"
56
  msgstr "Generelt"
57
 
58
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
59
+ #: admin/includes/admin-about.php:137
60
  msgid "Shortcode Attributes"
61
  msgstr "Shortcode attributter"
62
 
63
+ #: admin/includes/admin-about.php:102
64
  msgid "Help and Instructions"
65
  msgstr "Hjælp og instruktioner"
66
 
67
+ #: admin/includes/admin-about.php:103
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
+ #: admin/includes/admin-about.php:104
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Du har 2 muligheder for at vise begivenheder på på dit site"
75
 
76
+ #: admin/includes/admin-about.php:105
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "du kan placere <strong>shortcode</strong> %1$s på en hvilkensomhelst side eller post"
80
 
81
+ #: admin/includes/admin-about.php:106
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "du kan tilføje <strong>widget</strong> %1$s i dine sidebars"
85
 
86
+ #: admin/includes/admin-about.php:107
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr "De viste events og deres style kan modificeres med de tilgængelige widget-indstillinger og de tilgængelige attributter for shortcode."
91
 
92
+ #: admin/includes/admin-about.php:108
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
+ #: admin/includes/admin-about.php:109
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr "De tilgængelige widget-muligheder er beskrevet i deres tooltip-tekst."
102
 
103
+ #: admin/includes/admin-about.php:110
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
111
  msgid "Add links to the single events"
112
  msgstr "Tilføj links til enkeltbegivenhederne"
113
 
114
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
115
  msgid "Add a link to the Event List page"
116
  msgstr "Tilføj links til Event List-siden"
117
 
118
+ #: admin/includes/admin-about.php:111
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
+ #: admin/includes/admin-about.php:112
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
+ #: admin/includes/admin-about.php:113
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
+ #: admin/includes/admin-about.php:114
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
+ #: admin/includes/admin-about.php:116
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
+ #: admin/includes/admin-about.php:116
152
  msgid "Settings page"
153
  msgstr ""
154
 
155
+ #: admin/includes/admin-about.php:123
156
  msgid "About the plugin author"
157
  msgstr ""
158
 
159
+ #: admin/includes/admin-about.php:125
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
+ #: admin/includes/admin-about.php:125
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
+ #: admin/includes/admin-about.php:126
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
+ #: admin/includes/admin-about.php:126
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
+ #: admin/includes/admin-about.php:127
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
185
+ #: admin/includes/admin-about.php:130
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
+ #: admin/includes/admin-about.php:139
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr "Du har mulighed for at modificere den færdige liste, hvis du tilføjer nogle af de følgende attributter til din shortcode."
195
 
196
+ #: admin/includes/admin-about.php:140
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr "Du kan kombinere og tilføje lige så mange attributter, som du vil. Fx vil en shortcode med attributterne %1$s og %2$s se sådan ud:"
202
 
203
+ #: admin/includes/admin-about.php:142
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr "Nedenfor ser du en liste over alle attributter med deres beskrivelse og valgmuligheder:"
208
 
209
+ #: admin/includes/admin-about.php:157
210
  msgid "Attribute name"
211
  msgstr "Attribut navn"
212
 
213
+ #: admin/includes/admin-about.php:158
214
  msgid "Value options"
215
  msgstr "Værdi-muligheder"
216
 
217
+ #: admin/includes/admin-about.php:159
218
  msgid "Default value"
219
  msgstr "Default værdi"
220
 
221
+ #: admin/includes/admin-about.php:160
222
  msgid "Description"
223
  msgstr "Beskrivelse"
224
 
225
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
226
+ #: includes/sc_event-list_helptexts.php:91
227
  msgid "Filter Syntax"
228
  msgstr "Filter syntax"
229
 
230
+ #: admin/includes/admin-about.php:180
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr "For dato og kategori-filtre kan du lave komplekse filtre med den følgende syntax:"
235
 
236
+ #: admin/includes/admin-about.php:181
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr "Du kan benytte %1$s og %2$s forbindelser til at lave komplekse filtre. Desuden kan du tilføje brackets %3$s for nested queries."
242
 
243
+ #: admin/includes/admin-about.php:181
244
  msgid "AND"
245
  msgstr "AND"
246
 
247
+ #: admin/includes/admin-about.php:181
248
  msgid "OR"
249
  msgstr "OR"
250
 
251
+ #: admin/includes/admin-about.php:181
252
  msgid "or"
253
  msgstr "eller"
254
 
255
+ #: admin/includes/admin-about.php:181
256
  msgid "and"
257
  msgstr "og"
258
 
259
+ #: admin/includes/admin-about.php:182
260
  msgid "Examples for cat filters:"
261
  msgstr "Eksempler for kategori-filtre:"
262
 
263
+ #: admin/includes/admin-about.php:183
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr "Vis alle begivenheder i kategorien %1$s."
267
 
268
+ #: admin/includes/admin-about.php:184
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr "Vis alle begivenheder i kategorien %1$s eller %2$s."
272
 
273
+ #: admin/includes/admin-about.php:185
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr "Vis alle begivenheder i kategorien %1$s og alle begivenheder, hvor kategorien %2$s og %3$s er valgt."
279
 
280
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
281
  msgid "Available Date Formats"
282
  msgstr "Mulige dato-formater"
283
 
284
+ #: admin/includes/admin-about.php:192
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr "Til dato-filtre kan du bruge følgende dato-formater:"
287
 
288
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
289
  msgid "Available Date Range Formats"
290
  msgstr "Tilgængelige dato-formater"
291
 
292
+ #: admin/includes/admin-about.php:202
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr ""
295
 
296
+ #: admin/includes/admin-about.php:215
297
  msgid "Value"
298
  msgstr "Værdi"
299
 
300
+ #: admin/includes/admin-about.php:219
301
  msgid "Example"
302
  msgstr "Eksempel"
303
 
304
+ #: admin/includes/admin-categories.php:79
305
  msgid "Synchronize with post categories"
306
  msgstr ""
307
 
308
+ #: admin/includes/admin-categories.php:90
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
+ #: admin/includes/admin-categories.php:91
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
+ #: admin/includes/admin-categories.php:92
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
+ #: admin/includes/admin-categories.php:95
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
+ #: admin/includes/admin-categories.php:96
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
+ #: admin/includes/admin-categories.php:97
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
+ #: admin/includes/admin-categories.php:100
339
  msgid "An Error occured during the category sync"
340
  msgstr ""
341
 
342
+ #: admin/includes/admin-categories.php:103
343
  msgid "Category sync finished"
344
  msgstr ""
345
 
346
+ #: admin/includes/admin-category-sync.php:77
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr ""
349
 
350
+ #: admin/includes/admin-category-sync.php:93
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
+ #: admin/includes/admin-category-sync.php:94
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
+ #: admin/includes/admin-category-sync.php:95
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
+ #: admin/includes/admin-category-sync.php:96
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
+ #: admin/includes/admin-category-sync.php:98
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
+ #: admin/includes/admin-category-sync.php:99
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
+ #: admin/includes/admin-category-sync.php:100
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
+ #: admin/includes/admin-category-sync.php:103
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr ""
386
 
387
+ #: admin/includes/admin-category-sync.php:104
388
  msgid "Start synchronisation"
389
  msgstr ""
390
 
391
+ #: admin/includes/admin-category-sync.php:105
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
+ #: admin/includes/admin-category-sync.php:120
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
+ #: admin/includes/admin-category-sync.php:121
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
+ #: admin/includes/admin-category-sync.php:122
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
+ #: admin/includes/admin-category-sync.php:123
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
+ #: admin/includes/admin-category-sync.php:126
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
+ #: admin/includes/admin-category-sync.php:127
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
+ #: admin/includes/admin-category-sync.php:128
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
+ #: admin/includes/admin-category-sync.php:147
426
  msgid "none"
427
  msgstr ""
428
 
429
+ #: admin/includes/admin-import.php:91
430
  msgid "Import Events"
431
  msgstr "Importér begivenheder"
432
 
433
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
434
+ #: admin/includes/admin-import.php:254
435
  msgid "Step"
436
  msgstr "Trin"
437
 
438
+ #: admin/includes/admin-import.php:110
439
  msgid "Set import file and options"
440
  msgstr ""
441
 
442
+ #: admin/includes/admin-import.php:113
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
+ #: admin/includes/admin-import.php:116
448
  msgid "Example file"
449
  msgstr "Eksempelfil"
450
 
451
+ #: admin/includes/admin-import.php:117
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr ""
456
 
457
+ #: admin/includes/admin-import.php:118
458
  msgid "Note"
459
  msgstr "Note"
460
 
461
+ #: admin/includes/admin-import.php:118
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr ""
466
 
467
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
468
  msgid "Sorry, there has been an error."
469
  msgstr "Beklager, der er sket en fejl."
470
 
471
+ #: admin/includes/admin-import.php:129
472
  msgid "The file does not exist, please try again."
473
  msgstr "Filen eksisterer ikke. Prøv venligst igen."
474
 
475
+ #: admin/includes/admin-import.php:138
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
+ #: admin/includes/admin-import.php:150
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
484
  msgid "Error"
485
  msgstr ""
486
 
487
+ #: admin/includes/admin-import.php:156
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
+ #: admin/includes/admin-import.php:167
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
496
  msgid "Warning"
497
  msgstr ""
498
 
499
+ #: admin/includes/admin-import.php:172
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
+ #: admin/includes/admin-import.php:184
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
+ #: admin/includes/admin-import.php:194
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
+ #: admin/includes/admin-import.php:213
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
+ #: admin/includes/admin-import.php:219
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
+ #: admin/includes/admin-import.php:254
528
  msgid "Import result"
529
  msgstr ""
530
 
531
+ #: admin/includes/admin-import.php:257
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
+ #: admin/includes/admin-import.php:258
537
  msgid "Go back to All Events"
538
  msgstr ""
539
 
540
+ #: admin/includes/admin-import.php:261
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
+ #: admin/includes/admin-import.php:269
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Titel"
552
 
553
+ #: admin/includes/admin-import.php:282
554
  msgid "Start Date"
555
  msgstr "Starter"
556
 
557
+ #: admin/includes/admin-import.php:283
558
  msgid "End Date"
559
  msgstr "Slutter"
560
 
561
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr "Tidspunkt"
565
 
566
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
567
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr "Lokalitet"
571
 
572
+ #: admin/includes/admin-import.php:286
573
  msgid "Content"
574
  msgstr ""
575
 
576
+ #: admin/includes/admin-import.php:287
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
+ #: admin/includes/admin-import.php:333
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
+ #: admin/includes/admin-import.php:334
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
+ #: admin/includes/admin-import.php:341
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
+ #: admin/includes/admin-import.php:371
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
+ #: admin/includes/admin-import.php:377
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
+ #: admin/includes/admin-import.php:385
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
+ #: admin/includes/admin-import.php:439
609
  msgid "Import events"
610
  msgstr ""
611
 
612
+ #: admin/includes/admin-import.php:440
613
  msgid "Add additional categories"
614
  msgstr ""
615
 
616
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
617
  msgid "No events found"
618
  msgstr ""
619
 
620
+ #: admin/includes/admin-import.php:518
621
  msgid "Saving of event failed!"
622
  msgstr ""
623
 
624
+ #: admin/includes/admin-main.php:108
625
  msgid "Event Date"
626
  msgstr ""
627
 
628
+ #: admin/includes/admin-main.php:113
629
  msgid "Author"
630
  msgstr "Forfatter"
631
 
632
+ #: admin/includes/admin-main.php:182
633
  #, php-format
634
  msgid "Add a copy of %1$s"
635
  msgstr ""
636
 
637
+ #: admin/includes/admin-main.php:182
638
  msgid "Copy"
639
  msgstr ""
640
 
641
+ #: admin/includes/admin-main.php:268
642
+ msgid "Import"
643
+ msgstr "Importér"
644
+
645
+ #: admin/includes/admin-new.php:83
646
  msgid "Event data"
647
  msgstr ""
648
 
649
+ #: admin/includes/admin-new.php:116
650
  msgid "Add Copy"
651
  msgstr ""
652
 
653
+ #: admin/includes/admin-new.php:124
654
  msgid "Date"
655
  msgstr "Dato"
656
 
657
+ #: admin/includes/admin-new.php:124
658
  msgid "required"
659
  msgstr ""
660
 
661
+ #: admin/includes/admin-new.php:127
662
  msgid "Multi-Day Event"
663
  msgstr ""
664
 
665
+ #: admin/includes/admin-new.php:147
666
  msgid "Event Title"
667
  msgstr ""
668
 
669
+ #: admin/includes/admin-new.php:164
670
  msgid "Event Content"
671
  msgstr ""
672
 
673
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
674
  msgid "Event updated."
675
  msgstr ""
676
 
677
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
678
  msgid "View event"
679
  msgstr ""
680
 
681
+ #: admin/includes/admin-new.php:246
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
+ #: admin/includes/admin-new.php:247
687
  msgid "Event published."
688
  msgstr ""
689
 
690
+ #: admin/includes/admin-new.php:248
691
+ msgid "Event saved."
692
+ msgstr ""
693
+
694
+ #: admin/includes/admin-new.php:249
695
  msgid "Event submitted."
696
  msgstr ""
697
 
698
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
699
+ #: admin/includes/admin-new.php:253
700
  msgid "Preview event"
701
  msgstr ""
702
 
703
+ #: admin/includes/admin-new.php:251
704
  #, php-format
705
  msgid "Event scheduled for: %1$s>"
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-new.php:253
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:97
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:111
717
  msgid "Frontend Settings"
718
  msgstr "Frontend-indstillinger"
719
 
720
+ #: admin/includes/admin-settings.php:112
721
  msgid "Admin Page Settings"
722
  msgstr "Admin Page-indstillinger"
723
 
724
+ #: admin/includes/admin-settings.php:113
725
  msgid "Feed Settings"
726
  msgstr "Feed-indstillinger"
727
 
728
+ #: admin/includes/admin-settings.php:114
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
733
  msgid "Year"
734
  msgstr "År"
735
 
736
+ #: includes/daterange_helptexts.php:10
737
  msgid "A year can be specified in 4 digit format."
738
  msgstr ""
739
 
740
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
741
+ #: includes/daterange_helptexts.php:95
742
  #, php-format
743
  msgid ""
744
  "For a start date filter the first day of %1$s is used, in an end date the "
745
  "last day."
746
  msgstr ""
747
 
748
+ #: includes/daterange_helptexts.php:13
749
  msgid "the resulting year"
750
  msgstr ""
751
 
752
+ #: includes/daterange_helptexts.php:19
753
  msgid "Month"
754
  msgstr "Måned"
755
 
756
+ #: includes/daterange_helptexts.php:21
757
  msgid ""
758
  "A month can be specified with 4 digits for the year and 2 digits for the "
759
  "month, seperated by a hyphen (-)."
760
  msgstr ""
761
 
762
+ #: includes/daterange_helptexts.php:24
763
  msgid "the resulting month"
764
  msgstr ""
765
 
766
+ #: includes/daterange_helptexts.php:30
767
  msgid "Day"
768
  msgstr "Dag"
769
 
770
+ #: includes/daterange_helptexts.php:31
771
  msgid ""
772
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
773
  " month and 2 digets for the day, seperated by hyphens (-)."
774
  msgstr ""
775
 
776
+ #: includes/daterange_helptexts.php:36
777
  msgid "Relative Year"
778
  msgstr ""
779
 
780
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
781
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
782
  #, php-format
783
  msgid "%1$s from now can be specified in the following notation: %2$s"
784
  msgstr ""
785
 
786
+ #: includes/daterange_helptexts.php:40
787
  msgid "A relative year"
788
  msgstr ""
789
 
790
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
791
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
792
  #, php-format
793
  msgid ""
794
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
795
  "%3$s or %4$s attached (see also the example below)."
796
  msgstr ""
797
 
798
+ #: includes/daterange_helptexts.php:46
799
  msgid "number of years"
800
  msgstr "antal år"
801
 
802
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
803
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
804
  #, php-format
805
  msgid "Additionally the following values are available: %1$s"
806
  msgstr ""
807
 
808
+ #: includes/daterange_helptexts.php:58
809
  msgid "Relative Month"
810
  msgstr ""
811
 
812
+ #: includes/daterange_helptexts.php:62
813
  msgid "A relative month"
814
  msgstr ""
815
 
816
+ #: includes/daterange_helptexts.php:68
817
  msgid "number of months"
818
  msgstr "Antal måneder"
819
 
820
+ #: includes/daterange_helptexts.php:80
821
  msgid "Relative Week"
822
  msgstr ""
823
 
824
+ #: includes/daterange_helptexts.php:84
825
  msgid "A relative week"
826
  msgstr ""
827
 
828
+ #: includes/daterange_helptexts.php:90
829
  msgid "number of weeks"
830
  msgstr "Antal uger"
831
 
832
+ #: includes/daterange_helptexts.php:96
833
  msgid "the resulting week"
834
  msgstr ""
835
 
836
+ #: includes/daterange_helptexts.php:99
837
  #, php-format
838
  msgid ""
839
  "The first day of the week is depending on the option %1$s which can be found"
840
  " and changed in %2$s."
841
  msgstr ""
842
 
843
+ #: includes/daterange_helptexts.php:110
844
  msgid "Relative Day"
845
  msgstr ""
846
 
847
+ #: includes/daterange_helptexts.php:114
848
  msgid "A relative day"
849
  msgstr ""
850
 
851
+ #: includes/daterange_helptexts.php:120
852
  msgid "number of days"
853
  msgstr ""
854
 
855
+ #: includes/daterange_helptexts.php:134
856
  msgid "Date range"
857
  msgstr ""
858
 
859
+ #: includes/daterange_helptexts.php:136
860
  msgid ""
861
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
862
+ "\t\t\tFor the start and end date any available date format can be used."
863
  msgstr ""
864
 
865
+ #: includes/daterange_helptexts.php:147
866
  msgid "This value defines a range without any limits."
867
  msgstr ""
868
 
869
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
870
+ #: includes/daterange_helptexts.php:171
871
  #, php-format
872
  msgid "The corresponding date_range format is: %1$s"
873
  msgstr ""
874
 
875
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
876
  msgid "Upcoming"
877
  msgstr "Kommende"
878
 
879
+ #: includes/daterange_helptexts.php:158
880
  msgid "This value defines a range from the actual day to the future."
881
  msgstr ""
882
 
883
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
884
  msgid "Past"
885
  msgstr "Tidligere"
886
 
887
+ #: includes/daterange_helptexts.php:169
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
+ #: includes/event.php:157
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
895
+ #: includes/event.php:343 includes/event.php:345
896
+ #: includes/sc_event-list.php:330
897
  msgid "read more"
898
  msgstr ""
899
 
900
+ #: includes/events_post_type.php:83
901
  msgid "Events"
902
  msgstr "Begivenheder"
903
 
904
+ #: includes/events_post_type.php:84
905
  msgid "Event"
906
  msgstr ""
907
 
908
+ #: includes/events_post_type.php:85
909
  msgid "Add New"
910
  msgstr "Tilføj ny"
911
 
912
+ #: includes/events_post_type.php:86
913
  msgid "Add New Event"
914
  msgstr "Tilføj ny begivenhed"
915
 
916
+ #: includes/events_post_type.php:87
917
  msgid "Edit Event"
918
  msgstr "Redigér begivenhed"
919
 
920
+ #: includes/events_post_type.php:88
921
  msgid "New Event"
922
  msgstr ""
923
 
924
+ #: includes/events_post_type.php:89
925
  msgid "View Event"
926
  msgstr ""
927
 
928
+ #: includes/events_post_type.php:90
929
  msgid "View Events"
930
  msgstr ""
931
 
932
+ #: includes/events_post_type.php:91
933
  msgid "Search Events"
934
  msgstr ""
935
 
936
+ #: includes/events_post_type.php:93
937
  msgid "No events found in Trash"
938
  msgstr ""
939
 
940
+ #: includes/events_post_type.php:95
941
  msgid "All Events"
942
  msgstr "Alle begivenheder"
943
 
944
+ #: includes/events_post_type.php:96
945
  msgid "Event Archives"
946
  msgstr ""
947
 
948
+ #: includes/events_post_type.php:97
949
  msgid "Event Attributes"
950
  msgstr ""
951
 
952
+ #: includes/events_post_type.php:98
953
  msgid "Insert into event"
954
  msgstr ""
955
 
956
+ #: includes/events_post_type.php:99
957
  msgid "Uploaded to this event"
958
  msgstr ""
959
 
960
+ #: includes/events_post_type.php:100
961
  msgid "Event List"
962
  msgstr "Event List"
963
 
964
+ #: includes/events_post_type.php:101
965
  msgid "Filter events list"
966
  msgstr ""
967
 
968
+ #: includes/events_post_type.php:102
969
  msgid "Events list navigation"
970
  msgstr ""
971
 
972
+ #: includes/events_post_type.php:103
973
  msgid "Events list"
974
  msgstr ""
975
 
976
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
977
  msgid "Reset"
978
  msgstr ""
979
 
980
+ #: includes/filterbar.php:329
981
  msgid "All"
982
  msgstr "Alle"
983
 
984
+ #: includes/filterbar.php:332
985
  msgid "All Dates"
986
  msgstr ""
987
 
1421
  " switching page from here."
1422
  msgstr ""
1423
 
1424
+ #: includes/options.php:92
1425
  msgid "events"
1426
  msgstr ""
1427
 
1428
+ #: includes/options.php:96
1429
  msgid "Show content"
1430
  msgstr ""
1431
 
1432
+ #: includes/options.php:100
1433
  msgid "Hide content"
1434
  msgstr ""
1435
 
1436
+ #: includes/sc_event-list_helptexts.php:20
1437
  msgid "event-id"
1438
  msgstr ""
1439
 
1440
+ #: includes/sc_event-list_helptexts.php:23
1441
  #, php-format
1442
  msgid ""
1443
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1445
  "this event is shown."
1446
  msgstr ""
1447
 
1448
+ #: includes/sc_event-list_helptexts.php:29
1449
+ #: includes/sc_event-list_helptexts.php:57
1450
  msgid "year"
1451
  msgstr ""
1452
 
1453
+ #: includes/sc_event-list_helptexts.php:31
1454
  msgid ""
1455
  "This attribute defines which events are initially shown. The default is to "
1456
  "show the upcoming events only."
1457
  msgstr ""
1458
 
1459
+ #: includes/sc_event-list_helptexts.php:33
1460
  #, php-format
1461
  msgid ""
1462
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1463
  "change the displayed event date range via the filterbar or url parameters."
1464
  msgstr ""
1465
 
1466
+ #: includes/sc_event-list_helptexts.php:39
1467
  msgid "category slug"
1468
  msgstr ""
1469
 
1470
+ #: includes/sc_event-list_helptexts.php:41
1471
  msgid ""
1472
  "This attribute defines the category of which events are initially shown. The"
1473
  " default is to show events of all categories."
1474
  msgstr ""
1475
 
1476
+ #: includes/sc_event-list_helptexts.php:42
1477
  msgid ""
1478
  "Provide a category slug to change this behavior. It is still possible to "
1479
  "change the displayed categories via the filterbar or url parameters."
1480
  msgstr ""
1481
 
1482
+ #: includes/sc_event-list_helptexts.php:48
1483
  msgid "This attribute defines the initial order of the events."
1484
  msgstr ""
1485
 
1486
+ #: includes/sc_event-list_helptexts.php:50
1487
+ #, php-format
1488
  msgid ""
1489
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1490
  "in the opposite direction (from new to old)."
1491
  msgstr ""
1492
 
1493
+ #: includes/sc_event-list_helptexts.php:60
1494
  #, php-format
1495
  msgid ""
1496
  "This attribute defines the dates and date ranges of which events are "
1497
  "displayed. The default is %1$s to show all events."
1498
  msgstr ""
1499
 
1500
+ #: includes/sc_event-list_helptexts.php:64
1501
  #, php-format
1502
  msgid ""
1503
  "Filtered events according to %1$s value are not available in the event list."
1504
  msgstr ""
1505
 
1506
+ #: includes/sc_event-list_helptexts.php:68
1507
  #, php-format
1508
  msgid ""
1509
  "You can find all available values with a description and examples in the "
1510
  "sections %1$s and %2$s below."
1511
  msgstr ""
1512
 
1513
+ #: includes/sc_event-list_helptexts.php:73
1514
  #, php-format
1515
  msgid "See %1$s description if you want to define complex filters."
1516
  msgstr ""
1517
 
1518
+ #: includes/sc_event-list_helptexts.php:79
1519
  msgid "category slugs"
1520
  msgstr ""
1521
 
1522
+ #: includes/sc_event-list_helptexts.php:82
1523
  msgid ""
1524
  "This attribute defines the category filter which filters the events to show."
1525
  " The default is $1$s or an empty string to show all events."
1526
  msgstr ""
1527
 
1528
+ #: includes/sc_event-list_helptexts.php:86
1529
  #, php-format
1530
  msgid ""
1531
  "Events with categories that doesn´t match %1$s are not shown in the event "
1532
  "list. They are also not available if a manual url parameter is added."
1533
  msgstr ""
1534
 
1535
+ #: includes/sc_event-list_helptexts.php:90
1536
  #, php-format
1537
  msgid ""
1538
  "The filter is specified via the given category slugs. See %1$s description "
1539
  "if you want to define complex filters."
1540
  msgstr ""
1541
 
1542
+ #: includes/sc_event-list_helptexts.php:96
1543
+ #: includes/sc_event-list_helptexts.php:242
1544
+ #: includes/sc_event-list_helptexts.php:276
1545
+ #: includes/sc_event-list_helptexts.php:318
1546
  msgid "number"
1547
  msgstr ""
1548
 
1549
+ #: includes/sc_event-list_helptexts.php:99
1550
  #, php-format
1551
  msgid ""
1552
  "This attribute defines how many events should be displayed if upcoming "
1554
  "displayed."
1555
  msgstr ""
1556
 
1557
+ #: includes/sc_event-list_helptexts.php:102
1558
  msgid ""
1559
  "Please not that in the actual version there is no pagination of the events "
1560
  "available, so the event list can be very long."
1561
  msgstr ""
1562
 
1563
+ #: includes/sc_event-list_helptexts.php:108
1564
  msgid ""
1565
  "This attribute defines if the filterbar should be displayed. The filterbar "
1566
  "allows the users to specify filters for the listed events."
1567
  msgstr ""
1568
 
1569
+ #: includes/sc_event-list_helptexts.php:110
1570
  #, php-format
1571
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1572
  msgstr ""
1573
 
1574
+ #: includes/sc_event-list_helptexts.php:115
1575
  #, php-format
1576
  msgid ""
1577
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1578
  " in the single event view."
1579
  msgstr ""
1580
 
1581
+ #: includes/sc_event-list_helptexts.php:125
1582
  #, php-format
1583
  msgid ""
1584
  "This attribute specifies the available items in the filterbar. This options "
1585
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1586
  msgstr ""
1587
 
1588
+ #: includes/sc_event-list_helptexts.php:128
1589
  msgid ""
1590
  "Find below an overview of the available filterbar items and their options:"
1591
  msgstr ""
1592
 
1593
+ #: includes/sc_event-list_helptexts.php:132
1594
  msgid "filterbar item"
1595
  msgstr ""
1596
 
1597
+ #: includes/sc_event-list_helptexts.php:133
1598
+ #: includes/sc_event-list_helptexts.php:206
1599
  msgid "description"
1600
  msgstr ""
1601
 
1602
+ #: includes/sc_event-list_helptexts.php:134
1603
  msgid "item options"
1604
  msgstr ""
1605
 
1606
+ #: includes/sc_event-list_helptexts.php:135
1607
  msgid "option values"
1608
  msgstr ""
1609
 
1610
+ #: includes/sc_event-list_helptexts.php:136
1611
  msgid "default value"
1612
  msgstr ""
1613
 
1614
+ #: includes/sc_event-list_helptexts.php:137
1615
  msgid "option description"
1616
  msgstr ""
1617
 
1618
+ #: includes/sc_event-list_helptexts.php:141
1619
  msgid ""
1620
  "Show a list of all available years. Additional there are some special "
1621
  "entries available (see item options)."
1622
  msgstr ""
1623
 
1624
+ #: includes/sc_event-list_helptexts.php:145
1625
+ #: includes/sc_event-list_helptexts.php:156
1626
  msgid "Add an entry to show all events."
1627
  msgstr ""
1628
 
1629
+ #: includes/sc_event-list_helptexts.php:147
1630
+ #: includes/sc_event-list_helptexts.php:158
1631
  msgid "Add an entry to show all upcoming events."
1632
  msgstr ""
1633
 
1634
+ #: includes/sc_event-list_helptexts.php:148
1635
+ #: includes/sc_event-list_helptexts.php:159
1636
  msgid "Add an entry to show events in the past."
1637
  msgstr ""
1638
 
1639
+ #: includes/sc_event-list_helptexts.php:149
1640
  msgid "Set descending or ascending order of year entries."
1641
  msgstr ""
1642
 
1643
+ #: includes/sc_event-list_helptexts.php:152
1644
  msgid "Show a list of all available months."
1645
  msgstr ""
1646
 
1647
+ #: includes/sc_event-list_helptexts.php:160
1648
  msgid "Set descending or ascending order of month entries."
1649
  msgstr ""
1650
 
1651
+ #: includes/sc_event-list_helptexts.php:163
1652
  msgid "php date-formats"
1653
  msgstr ""
1654
 
1655
+ #: includes/sc_event-list_helptexts.php:165
1656
  msgid "Set the displayed date format of the month entries."
1657
  msgstr ""
1658
 
1659
+ #: includes/sc_event-list_helptexts.php:170
1660
  #, php-format
1661
  msgid ""
1662
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1664
  "order."
1665
  msgstr ""
1666
 
1667
+ #: includes/sc_event-list_helptexts.php:179
1668
  #, php-format
1669
  msgid ""
1670
  "Specifies the displayed values and their order. The items must be seperated "
1671
  "by %1$s."
1672
  msgstr ""
1673
 
1674
+ #: includes/sc_event-list_helptexts.php:185
1675
  msgid "Show a list of all available categories."
1676
  msgstr ""
1677
 
1678
+ #: includes/sc_event-list_helptexts.php:189
1679
  msgid "Add an entry to show events from all categories."
1680
  msgstr ""
1681
 
1682
+ #: includes/sc_event-list_helptexts.php:193
1683
  msgid "A link to reset the eventlist filter to standard."
1684
  msgstr ""
1685
 
1686
+ #: includes/sc_event-list_helptexts.php:195
1687
  msgid "any text"
1688
  msgstr ""
1689
 
1690
+ #: includes/sc_event-list_helptexts.php:197
1691
  msgid "Set the caption of the link."
1692
  msgstr ""
1693
 
1694
+ #: includes/sc_event-list_helptexts.php:201
1695
  msgid "Find below an overview of the available filterbar display options:"
1696
  msgstr ""
1697
 
1698
+ #: includes/sc_event-list_helptexts.php:205
1699
  msgid "display option"
1700
  msgstr ""
1701
 
1702
+ #: includes/sc_event-list_helptexts.php:207
1703
  msgid "available for"
1704
  msgstr ""
1705
 
1706
+ #: includes/sc_event-list_helptexts.php:211
1707
  #, php-format
1708
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1709
  msgstr ""
1710
 
1711
+ #: includes/sc_event-list_helptexts.php:216
1712
  msgid ""
1713
  "Shows a select box where an item can be choosen. After the selection of an "
1714
  "item the page is reloaded via javascript to show the filtered events."
1715
  msgstr ""
1716
 
1717
+ #: includes/sc_event-list_helptexts.php:219
1718
  msgid "Shows a simple link which can be clicked."
1719
  msgstr ""
1720
 
1721
+ #: includes/sc_event-list_helptexts.php:222
1722
  msgid "Find below some declaration examples with descriptions:"
1723
  msgstr ""
1724
 
1725
+ #: includes/sc_event-list_helptexts.php:225
1726
  #, php-format
1727
  msgid ""
1728
  "In this example you can see that the filterbar item and the used display "
1730
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1731
  msgstr ""
1732
 
1733
+ #: includes/sc_event-list_helptexts.php:231
1734
  #, php-format
1735
  msgid ""
1736
  "In this example you can see that filterbar options can be added in brackets "
1737
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1738
  msgstr ""
1739
 
1740
+ #: includes/sc_event-list_helptexts.php:232
1741
  msgid "option_name"
1742
  msgstr ""
1743
 
1744
+ #: includes/sc_event-list_helptexts.php:232
1745
  msgid "value"
1746
  msgstr ""
1747
 
1748
+ #: includes/sc_event-list_helptexts.php:236
1749
  #, php-format
1750
  msgid ""
1751
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1754
  "left-aligned and the reset link will be on the right side."
1755
  msgstr ""
1756
 
1757
+ #: includes/sc_event-list_helptexts.php:244
1758
+ #: includes/sc_event-list_helptexts.php:277
1759
  msgid ""
1760
  "This attribute specifies if the title should be truncated to the given "
1761
  "number of characters in the event list."
1762
  msgstr ""
1763
 
1764
+ #: includes/sc_event-list_helptexts.php:246
1765
+ #: includes/sc_event-list_helptexts.php:278
1766
  #, php-format
1767
  msgid ""
1768
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1769
  "is automatically truncated via css."
1770
  msgstr ""
1771
 
1772
+ #: includes/sc_event-list_helptexts.php:250
1773
+ #: includes/sc_event-list_helptexts.php:279
1774
+ #: includes/sc_event-list_helptexts.php:322
1775
  msgid "This attribute has no influence if only a single event is shown."
1776
  msgstr ""
1777
 
1778
+ #: includes/sc_event-list_helptexts.php:257
1779
  msgid ""
1780
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1781
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1782
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1786
  msgid ""
1787
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1788
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1789
+ "\t\t\t\t\tWith \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:286
1793
  msgid ""
1794
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1795
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1796
+ "\t\t\t\t\tWith \"event_list_only\" the categories are 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:297
1800
  msgid ""
1801
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1802
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1803
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1804
  msgstr ""
1805
 
1806
+ #: includes/sc_event-list_helptexts.php:308
1807
  msgid ""
1808
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1809
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1810
+ "\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"
1811
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1812
+ "\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)."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:320
1816
  msgid ""
1817
  "This attribute specifies if the content should be truncate to the given "
1818
  "number of characters in the event list."
1819
  msgstr ""
1820
 
1821
+ #: includes/sc_event-list_helptexts.php:321
1822
  #, php-format
1823
  msgid "With the standard value %1$s the full text is displayed."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:329
1827
  msgid ""
1828
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1829
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1830
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1831
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:341
1835
  msgid ""
1836
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1837
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1838
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1839
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1840
  msgstr ""
1841
 
1842
+ #: includes/sc_event-list_helptexts.php:353
1843
  msgid ""
1844
  "This attribute specifies if a rss feed link should be added.<br />\n"
1845
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1846
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1847
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1848
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1849
  msgstr ""
1850
 
1851
+ #: includes/sc_event-list_helptexts.php:366
1852
  msgid ""
1853
  "This attribute specifies if a ical feed link should be added.<br />\n"
1854
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1855
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1856
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1857
  msgstr ""
1858
 
1859
+ #: includes/sc_event-list_helptexts.php:378
1860
  msgid ""
1861
  "This attribute specifies the page or post url for event links.<br />\n"
1862
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1863
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list_helptexts.php:391
1867
  msgid ""
1868
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1869
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1870
  msgstr ""
1871
 
1872
+ #: includes/sc_event-list.php:184
1873
  msgid "Sorry, the requested event is not available!"
1874
  msgstr ""
1875
 
1876
+ #: includes/sc_event-list.php:193
1877
  msgid "Event Information:"
1878
  msgstr ""
1879
 
1880
+ #: includes/sc_event-list.php:437
1881
  msgid "Link to RSS feed"
1882
  msgstr ""
1883
 
1884
+ #: includes/sc_event-list.php:447
1885
  msgid "Link to iCal feed"
1886
  msgstr ""
1887
 
1914
  msgid "Truncate event title to"
1915
  msgstr ""
1916
 
1917
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1918
+ #: includes/widget_helptexts.php:103
1919
  msgid "characters"
1920
  msgstr ""
1921
 
1922
+ #: includes/widget_helptexts.php:39
1923
  msgid ""
1924
  "This option defines the number of displayed characters for the event title."
1925
  msgstr ""
1926
 
1927
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1928
  #, php-format
1929
  msgid ""
1930
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1931
  "automatically truncate the text via css."
1932
  msgstr ""
1933
 
1934
+ #: includes/widget_helptexts.php:51
1935
  msgid "Show event starttime"
1936
  msgstr ""
1937
 
1938
+ #: includes/widget_helptexts.php:53
1939
  msgid "This option defines if the event start time will be displayed."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:60
1943
  msgid "Show event location"
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:62
1947
  msgid "This option defines if the event location will be displayed."
1948
  msgstr ""
1949
 
1950
+ #: includes/widget_helptexts.php:69
1951
  msgid "Truncate location to"
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:72
1955
  msgid ""
1956
  "If the event location is diplayed this option defines the number of "
1957
  "displayed characters."
1958
  msgstr ""
1959
 
1960
+ #: includes/widget_helptexts.php:84
1961
  msgid "Show event excerpt"
1962
  msgstr ""
1963
 
1964
+ #: includes/widget_helptexts.php:86
1965
  msgid "This option defines if the event excerpt will be displayed."
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:93
1969
  msgid "Show event content"
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:95
1973
  msgid "This option defines if the event content will be displayed."
1974
  msgstr ""
1975
 
1976
+ #: includes/widget_helptexts.php:102
1977
  msgid "Truncate content to"
1978
  msgstr ""
1979
 
1980
+ #: includes/widget_helptexts.php:105
1981
  msgid ""
1982
  "If the event content are diplayed this option defines the number of diplayed"
1983
  " characters."
1984
  msgstr ""
1985
 
1986
+ #: includes/widget_helptexts.php:107
1987
  #, php-format
1988
  msgid "Set this value to %1$s to view the full text."
1989
  msgstr ""
1990
 
1991
+ #: includes/widget_helptexts.php:116
1992
  msgid "URL to the linked Event List page"
1993
  msgstr ""
1994
 
1995
+ #: includes/widget_helptexts.php:118
1996
  msgid ""
1997
  "This option defines the url to the linked Event List page. This option is "
1998
  "required if you want to use one of the options below."
1999
  msgstr ""
2000
 
2001
+ #: includes/widget_helptexts.php:125
2002
  msgid "Shortcode ID on linked page"
2003
  msgstr ""
2004
 
2005
+ #: includes/widget_helptexts.php:127
2006
  msgid ""
2007
  "This option defines the shortcode-id for the Event List on the linked page. "
2008
  "Normally the standard value 1 is correct, you only have to change it if you "
2009
  "use multiple event-list shortcodes on the linked page."
2010
  msgstr ""
2011
 
2012
+ #: includes/widget_helptexts.php:136
2013
  msgid ""
2014
  "With this option you can add a link to the single event page for every "
2015
  "displayed event. You have to specify the url to the page and the shortcode "
2016
  "id option if you want to use it."
2017
  msgstr ""
2018
 
2019
+ #: includes/widget_helptexts.php:145
2020
  msgid ""
2021
  "With this option you can add a link to the event-list page below the "
2022
  "diplayed events. You have to specify the url to page option if you want to "
2023
  "use it."
2024
  msgstr ""
2025
 
2026
+ #: includes/widget_helptexts.php:152
2027
  msgid "Caption for the link"
2028
  msgstr ""
2029
 
2030
+ #: includes/widget_helptexts.php:154
2031
  msgid ""
2032
  "This option defines the text for the link to the Event List page if the "
2033
  "approriate option is selected."
2034
  msgstr ""
2035
 
2036
+ #: includes/widget.php:38
2037
  msgid "With this widget a list of upcoming events can be displayed."
2038
  msgstr "Med denne widget kan en liste over alle kommende begivenheder vises."
2039
 
2040
+ #: includes/widget.php:43
2041
  msgid "Upcoming events"
2042
  msgstr "Kommende begivenheder"
2043
 
2044
+ #: includes/widget.php:57
2045
  msgid "show events page"
2046
  msgstr "Vis begivenheds-side"
languages/event-list-de_DE.mo CHANGED
Binary file
languages/event-list-de_DE.po CHANGED
@@ -1,20 +1,21 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
  # K W, 2017
7
  # Lasse Schulz <lasse.schulz@netthelp.de>, 2016
 
8
  # li rak <romankost@gmx.ch>, 2017
9
  # Marco Schwarzenbach <sp1n@gmx.ch>, 2016
10
- # mibuthu, 2021
11
  # mibuthu, 2015,2017-2018
12
  msgid ""
13
  msgstr ""
14
  "Project-Id-Version: wp-event-list\n"
15
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
16
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
17
- "PO-Revision-Date: 2021-04-24 09:30+0000\n"
18
  "Last-Translator: mibuthu\n"
19
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
20
  "MIME-Version: 1.0\n"
@@ -23,117 +24,117 @@ msgstr ""
23
  "Language: de_DE\n"
24
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Errors during upgrade of plugin %1$s"
29
  msgstr "Fehler während des %1$s Plugin Upgrades"
30
 
31
- #: admin/admin.php:64
32
  #, php-format
33
  msgid "Upgrade of plugin %1$s successful"
34
  msgstr "Upgrade des Plugins %1$s erfolgreich"
35
 
36
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
37
  msgid "Event List Settings"
38
  msgstr "Event List Einstellungen"
39
 
40
- #: admin/admin.php:116
41
  msgid "Settings"
42
  msgstr "Einstellungen"
43
 
44
- #: admin/admin.php:120 admin/includes/admin-about.php:43
45
  msgid "About Event List"
46
  msgstr "Informationen zu Event List"
47
 
48
- #: admin/admin.php:120
49
  msgid "About"
50
  msgstr "Informationen"
51
 
52
- #: admin/admin.php:144
53
  #, php-format
54
  msgid "%s Event"
55
  msgid_plural "%s Events"
56
  msgstr[0] "%s Termin"
57
  msgstr[1] "%s Termine"
58
 
59
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
60
  msgid "General"
61
  msgstr "Allgemein"
62
 
63
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
64
- #: admin/includes/admin-about.php:117
65
  msgid "Shortcode Attributes"
66
  msgstr "Shortcode Attribute"
67
 
68
- #: admin/includes/admin-about.php:82
69
  msgid "Help and Instructions"
70
  msgstr "Hilfe und Anleitungen"
71
 
72
- #: admin/includes/admin-about.php:83
73
  #, php-format
74
  msgid "You can manage the events %1$shere%2$s"
75
  msgstr "Die Termine können %1$shier%2$s verwaltet werden"
76
 
77
- #: admin/includes/admin-about.php:84
78
  msgid "To show the events on your site you have 2 possibilities"
79
  msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
80
 
81
- #: admin/includes/admin-about.php:85
82
  #, php-format
83
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
84
  msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
85
 
86
- #: admin/includes/admin-about.php:86
87
  #, php-format
88
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
89
  msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
90
 
91
- #: admin/includes/admin-about.php:87
92
  msgid ""
93
  "The displayed events and their style can be modified with the available "
94
  "widget settings and the available attributes for the shortcode."
95
  msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
96
 
97
- #: admin/includes/admin-about.php:88
98
  #, php-format
99
  msgid ""
100
  "A list of all available shortcode attributes with their descriptions is "
101
  "available in the %1$s tab."
102
  msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist im Reiter %1$s verfügbar."
103
 
104
- #: admin/includes/admin-about.php:89
105
  msgid "The available widget options are described in their tooltip text."
106
  msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
107
 
108
- #: admin/includes/admin-about.php:90
109
  #, php-format
110
  msgid ""
111
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
112
  " to insert an URL to the linked event-list page."
113
  msgstr "Wenn eine der Link Optionen (%1$s oder %2$s) im Widget verwendet werden, dann muss die URL zur verlinkten Event-List Seite angegeben werden."
114
 
115
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
116
  msgid "Add links to the single events"
117
  msgstr "Füge Links zu den einzelnen Terminen ein"
118
 
119
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
120
  msgid "Add a link to the Event List page"
121
  msgstr "Füge einen Link zur Event List Seite hinzu"
122
 
123
- #: admin/includes/admin-about.php:91
124
  msgid ""
125
  "This is required because the widget does not know in which page or post the "
126
  "shortcode was included."
127
  msgstr "Dies ist erforderlich, weil das Widget nicht weiß, in welcher Seite oder welchem Beitrag der Shortcode eingefügt worden ist."
128
 
129
- #: admin/includes/admin-about.php:92
130
  msgid ""
131
  "Additionally you have to insert the correct Shortcode id on the linked page."
132
  " This id describes which shortcode should be used on the given page or post "
133
  "if you have more than one."
134
  msgstr "Zusätzlich muss die korrekte Shortcode-ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt welcher Shortcode auf der angegebenen Seite oder Artikel verwendet werden soll, wenn mehrere vorhanden sind."
135
 
136
- #: admin/includes/admin-about.php:93
137
  #, php-format
138
  msgid ""
139
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -141,592 +142,596 @@ msgid ""
141
  "link on your linked page or post."
142
  msgstr "Der Standardwert %1$s ist normalerweise o.k. (für Seiten mit nur einem Shortcode), aber falls erforderlich kann die ID über die URL eines Termin-Links auf der verlinkten Seite ermittelt werden."
143
 
144
- #: admin/includes/admin-about.php:94
145
  #, php-format
146
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
147
  msgstr "Die ID befindet sich am Ende der URL Parameter (z.B. %1$s)."
148
 
149
- #: admin/includes/admin-about.php:96
150
  #, php-format
151
  msgid ""
152
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
153
  "want."
154
  msgstr "Bitte werfe auch einen Blick auf die %1$s in der das Plugin nach deinen Vorstellungen angepasst werden kann."
155
 
156
- #: admin/includes/admin-about.php:96
157
  msgid "Settings page"
158
  msgstr "Einstellungs-Seite"
159
 
160
- #: admin/includes/admin-about.php:103
161
  msgid "About the plugin author"
162
  msgstr "Über den Autor des Plugins"
163
 
164
- #: admin/includes/admin-about.php:105
165
  #, php-format
166
  msgid ""
167
  "This plugin is developed by %1$s, you can find more information about the "
168
  "plugin on the %2$s."
169
  msgstr "Dieses Plugin wird von %1$s entwickelt, zusätzliche Informationen über das Plugin stehen auf der %2$s zur Verfügung."
170
 
171
- #: admin/includes/admin-about.php:105
172
  msgid "WordPress plugin site"
173
- msgstr ""
174
 
175
- #: admin/includes/admin-about.php:106
176
  #, php-format
177
  msgid "If you like the plugin please rate it on the %1$s."
178
  msgstr "Wenn dir das Plugin gefällt bewerte es bitte unter der %1$s."
179
 
180
- #: admin/includes/admin-about.php:106
181
  msgid "WordPress plugin review site"
182
- msgstr ""
183
 
184
- #: admin/includes/admin-about.php:107
185
  msgid ""
186
  "If you want to support the plugin I would be happy to get a small donation"
187
  msgstr "Um das Plugin zu unterstützen würde ich mich auch über eine kleine Spende freuen"
188
 
189
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
190
- #: admin/includes/admin-about.php:110
191
  #, php-format
192
  msgid "Donate with %1$s"
193
  msgstr "Spende über %1$s"
194
 
195
- #: admin/includes/admin-about.php:119
196
  msgid ""
197
  "You have the possibility to modify the output if you add some of the "
198
  "following attributes to the shortcode."
199
  msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
200
 
201
- #: admin/includes/admin-about.php:120
202
  #, php-format
203
  msgid ""
204
  "You can combine and add as much attributes as you want. E.g. the shortcode "
205
  "including the attributes %1$s and %2$s would looks like this:"
206
  msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
207
 
208
- #: admin/includes/admin-about.php:122
209
  msgid ""
210
  "Below you can find a list of all supported attributes with their "
211
  "descriptions and available options:"
212
  msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
213
 
214
- #: admin/includes/admin-about.php:137
215
  msgid "Attribute name"
216
  msgstr "Name"
217
 
218
- #: admin/includes/admin-about.php:138
219
  msgid "Value options"
220
  msgstr "zulässige Werte"
221
 
222
- #: admin/includes/admin-about.php:139
223
  msgid "Default value"
224
  msgstr "Standard-Wert"
225
 
226
- #: admin/includes/admin-about.php:140
227
  msgid "Description"
228
  msgstr "Beschreibung"
229
 
230
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
231
- #: includes/sc_event-list_helptexts.php:42
232
  msgid "Filter Syntax"
233
  msgstr "Filter Syntax"
234
 
235
- #: admin/includes/admin-about.php:160
236
  msgid ""
237
  "For date and cat filters you can specify complex filters with the following "
238
  "syntax:"
239
  msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
240
 
241
- #: admin/includes/admin-about.php:161
242
  #, php-format
243
  msgid ""
244
  "You can use %1$s and %2$s connections to define complex filters. "
245
  "Additionally you can set brackets %3$s for nested queries."
246
  msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
247
 
248
- #: admin/includes/admin-about.php:161
249
  msgid "AND"
250
  msgstr "UND"
251
 
252
- #: admin/includes/admin-about.php:161
253
  msgid "OR"
254
  msgstr "ODER"
255
 
256
- #: admin/includes/admin-about.php:161
257
  msgid "or"
258
  msgstr "oder"
259
 
260
- #: admin/includes/admin-about.php:161
261
  msgid "and"
262
  msgstr "und"
263
 
264
- #: admin/includes/admin-about.php:162
265
  msgid "Examples for cat filters:"
266
  msgstr "Beispiele für Kategorie-Filter:"
267
 
268
- #: admin/includes/admin-about.php:163
269
  #, php-format
270
  msgid "Show all events with category %1$s."
271
  msgstr "Zeige alle Termine mit der Kategorie %1$s."
272
 
273
- #: admin/includes/admin-about.php:164
274
  #, php-format
275
  msgid "Show all events with category %1$s or %2$s."
276
  msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
277
 
278
- #: admin/includes/admin-about.php:165
279
  #, php-format
280
  msgid ""
281
  "Show all events with category %1$s and all events where category %2$s as "
282
  "well as %3$s is selected."
283
  msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
284
 
285
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
286
  msgid "Available Date Formats"
287
  msgstr "Verfügbare Datumsformate"
288
 
289
- #: admin/includes/admin-about.php:172
290
  msgid "For date filters you can use the following date formats:"
291
  msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
292
 
293
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
294
  msgid "Available Date Range Formats"
295
  msgstr "Verfügbare Datumsbereichs-Formate"
296
 
297
- #: admin/includes/admin-about.php:182
298
  msgid "For date filters you can use the following daterange formats:"
299
  msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
300
 
301
- #: admin/includes/admin-about.php:195
302
  msgid "Value"
303
  msgstr "Wert"
304
 
305
- #: admin/includes/admin-about.php:199
306
  msgid "Example"
307
  msgstr "Beispiel"
308
 
309
- #: admin/includes/admin-categories.php:54
310
  msgid "Synchronize with post categories"
311
  msgstr "Synchronisation mit den Beitrags-Kategorien"
312
 
313
- #: admin/includes/admin-categories.php:63
314
  #, php-format
315
  msgid "%1$s categories modified (%2$s)"
316
  msgstr "%1$s Kategorien geändert (%2$s)"
317
 
318
- #: admin/includes/admin-categories.php:64
319
  #, php-format
320
  msgid "%1$s categories added (%2$s)"
321
  msgstr "%1$s Kategorien erstellt (%2$s)"
322
 
323
- #: admin/includes/admin-categories.php:65
324
  #, php-format
325
  msgid "%1$s categories deleted (%2$s)"
326
  msgstr "%1$s Kategorien gelöscht (%2$s)"
327
 
328
- #: admin/includes/admin-categories.php:67
329
  #, php-format
330
  msgid "%1$s categories not modified (%2$s)"
331
  msgstr "%1$s Kategorien nicht geändert (%2$s)"
332
 
333
- #: admin/includes/admin-categories.php:68
334
  #, php-format
335
  msgid "%1$s categories not added (%2$s)"
336
  msgstr "%1$s Kategorien nicht erstellt (%2$s)"
337
 
338
- #: admin/includes/admin-categories.php:69
339
  #, php-format
340
  msgid "%1$s categories not deleted (%2$s)"
341
  msgstr "%1$s Kategorien nicht gelöscht (%2$s)"
342
 
343
- #: admin/includes/admin-categories.php:72
344
  msgid "An Error occured during the category sync"
345
  msgstr "Während der Kategorie-Synchronisation ist ein Fehler aufgetreten"
346
 
347
- #: admin/includes/admin-categories.php:75
348
  msgid "Category sync finished"
349
  msgstr "Kategorie-Synchronisation abgeschlossen"
350
 
351
- #: admin/includes/admin-category-sync.php:54
352
  msgid "Error: You are not allowed to view this page!"
353
  msgstr "Fehler: Sie sind nicht befugt dieser Seite aufzurufen!"
354
 
355
- #: admin/includes/admin-category-sync.php:70
356
  msgid "Affected Categories when switching to seperate Event Categories"
357
  msgstr "Betroffene Kategorien beim Wechseln zu separaten Termin-Kategorien"
358
 
359
- #: admin/includes/admin-category-sync.php:71
360
  msgid "Switch option to seperate Event Categories"
361
  msgstr "Ändere Einstellung zur Verwendung separater Termin-Kategorien"
362
 
363
- #: admin/includes/admin-category-sync.php:72
364
  msgid ""
365
  "If you proceed, all post categories will be copied and all events will be "
366
  "re-assigned to this new categories."
367
  msgstr "Beim Fortsetzen werden alle Beitrags-Kategorien kopiert und alle Termine den neuen Kategorien zugeordnet."
368
 
369
- #: admin/includes/admin-category-sync.php:73
370
  msgid ""
371
  "Afterwards the event categories are independent of the post categories."
372
  msgstr "Anschließend sind die Termin-Kategorien unabhängig von den Beitrags-Kategorien."
373
 
374
- #: admin/includes/admin-category-sync.php:75
375
  msgid "Affected Categories when switching to use Post Categories for events"
376
  msgstr "Betroffene Kategorien beim Wechseln zur Verwendung von Beitrags-Kategorien für Termine"
377
 
378
- #: admin/includes/admin-category-sync.php:76
379
  msgid "Switch option to use Post Categories for events"
380
  msgstr "Ändere Einstellung zur Verwendung der Beitrags-Kategorien für Termine"
381
 
382
- #: admin/includes/admin-category-sync.php:77
383
  msgid ""
384
  "Take a detailed look at the affected categories above before you proceed! "
385
  "All seperate event categories will be deleted, this cannot be undone!"
386
  msgstr "Bitte vor dem Fortsetzen die oben angezeigten betroffenen Kategorien prüfen! Alle eigenständigen Termin-Kategorien werden gelöscht, dies kann nicht mehr rückgängig gemacht werden!"
387
 
388
- #: admin/includes/admin-category-sync.php:79
389
  msgid "Event Categories: Synchronise with Post Categories"
390
  msgstr "Termin-Kategorien: Synchronisiere mit Beitrags-Kategorien"
391
 
392
- #: admin/includes/admin-category-sync.php:80
393
  msgid "Start synchronisation"
394
  msgstr "Starte Synchronisation"
395
 
396
- #: admin/includes/admin-category-sync.php:81
397
  msgid ""
398
  "If this option is enabled the above listed categories will be deleted and "
399
  "removed from the existing events!"
400
  msgstr "Wenn diese Einstellung aktiviert ist, werden alle oben angezeigten Kategorien gelöscht und aus den vorhandenen Terminen entfernt!"
401
 
402
- #: admin/includes/admin-category-sync.php:96
403
  msgid "Categories to modify"
404
  msgstr "Kategorien, die geändert werden"
405
 
406
- #: admin/includes/admin-category-sync.php:97
407
  msgid "Categories to add"
408
  msgstr "Kategorien, die hinzugefügt werden"
409
 
410
- #: admin/includes/admin-category-sync.php:98
411
  msgid "Categories to delete (optional)"
412
  msgstr "Kategorien, die gelöscht werden (optional)"
413
 
414
- #: admin/includes/admin-category-sync.php:99
415
  msgid "Delete not available post categories"
416
  msgstr "Lösche nicht verfügbare Beitrags-Kategorien"
417
 
418
- #: admin/includes/admin-category-sync.php:102
419
  msgid "Categories with differences"
420
  msgstr "Kategorien, die unterschiedlich sind"
421
 
422
- #: admin/includes/admin-category-sync.php:103
423
  msgid "Categories to add (optional)"
424
  msgstr "Kategorien, die hinzugefügt werden (optional)"
425
 
426
- #: admin/includes/admin-category-sync.php:104
427
  msgid "Add not available post categories"
428
  msgstr "Ergänze nicht verfügbare Beitrags-Kategorien"
429
 
430
- #: admin/includes/admin-category-sync.php:123
431
  msgid "none"
432
  msgstr "keine"
433
 
434
- #: admin/includes/admin-import.php:58
435
  msgid "Import Events"
436
  msgstr "Importiere Termine"
437
 
438
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
439
- #: admin/includes/admin-import.php:220
440
  msgid "Step"
441
  msgstr "Schritt"
442
 
443
- #: admin/includes/admin-import.php:79
444
  msgid "Set import file and options"
445
  msgstr "Datei und Optionen zum Importieren wählen"
446
 
447
- #: admin/includes/admin-import.php:82
448
  #, php-format
449
  msgid "Proceed with Step %1$s"
450
  msgstr "Weiter zu Schritt %1$s"
451
 
452
- #: admin/includes/admin-import.php:85
453
  msgid "Example file"
454
  msgstr "Beispieldatei"
455
 
456
- #: admin/includes/admin-import.php:86
457
  #, php-format
458
  msgid ""
459
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
460
  msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
461
 
462
- #: admin/includes/admin-import.php:87
463
  msgid "Note"
464
  msgstr "Achtung"
465
 
466
- #: admin/includes/admin-import.php:87
467
  msgid ""
468
  "Do not change the column header and separator line (first two lines), "
469
  "otherwise the import will fail!"
470
  msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
471
 
472
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
473
  msgid "Sorry, there has been an error."
474
  msgstr "Entschuldigung, ein Fehler ist aufgetreten."
475
 
476
- #: admin/includes/admin-import.php:96
477
  msgid "The file does not exist, please try again."
478
  msgstr "Die Datei existiert nicht, bitte erneut versuchen."
479
 
480
- #: admin/includes/admin-import.php:104
481
  msgid "The uploaded file does not have the required csv extension."
482
- msgstr ""
483
 
484
- #: admin/includes/admin-import.php:116
485
  msgid "Events review and additonal category selection"
486
  msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
487
 
488
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
489
  msgid "Error"
490
- msgstr ""
491
 
492
- #: admin/includes/admin-import.php:122
493
  msgid "This CSV file cannot be imported"
494
- msgstr ""
495
 
496
- #: admin/includes/admin-import.php:133
497
  msgid "None of the events in this CSV file can be imported"
498
- msgstr ""
499
 
500
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
501
  msgid "Warning"
502
- msgstr ""
503
 
504
- #: admin/includes/admin-import.php:138
505
  #, php-format
506
  msgid "There is %1$s event which cannot be imported"
507
  msgid_plural "There are %1$s events which cannot be imported"
508
- msgstr[0] ""
509
- msgstr[1] ""
510
 
511
- #: admin/includes/admin-import.php:150
512
  #, php-format
513
  msgid "CSV line %1$s"
514
- msgstr ""
515
 
516
- #: admin/includes/admin-import.php:160
517
  msgid "You can still import all other events listed below."
518
- msgstr ""
519
 
520
- #: admin/includes/admin-import.php:179
521
  msgid ""
522
  "The following category slugs are not available and will be removed from the "
523
  "imported events"
524
- msgstr ""
525
 
526
- #: admin/includes/admin-import.php:185
527
  msgid ""
528
  "If you want to keep these categories, please create these Categories first "
529
  "and do the import afterwards."
530
  msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
531
 
532
- #: admin/includes/admin-import.php:220
533
  msgid "Import result"
534
- msgstr ""
535
 
536
- #: admin/includes/admin-import.php:223
537
  #, php-format
538
  msgid "Import of %1$s events successful!"
539
- msgstr ""
540
 
541
- #: admin/includes/admin-import.php:224
542
  msgid "Go back to All Events"
543
  msgstr "Gehe zurück zu Alle Termine"
544
 
545
- #: admin/includes/admin-import.php:227
546
  msgid "Errors during Import"
547
- msgstr ""
548
 
549
- #: admin/includes/admin-import.php:235
550
  msgid "Event from CSV-line"
551
- msgstr ""
552
 
553
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
554
  #: includes/widget_helptexts.php:9
555
  msgid "Title"
556
  msgstr "Titel"
557
 
558
- #: admin/includes/admin-import.php:248
559
  msgid "Start Date"
560
  msgstr "Start-Datum"
561
 
562
- #: admin/includes/admin-import.php:249
563
  msgid "End Date"
564
  msgstr "End-Datum"
565
 
566
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
567
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
568
  msgid "Time"
569
  msgstr "Uhrzeit"
570
 
571
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
572
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
573
  #: includes/options_helptexts.php:76
574
  msgid "Location"
575
  msgstr "Ort"
576
 
577
- #: admin/includes/admin-import.php:252
578
  msgid "Content"
579
  msgstr "Inhalt"
580
 
581
- #: admin/includes/admin-import.php:253
582
  msgid "Category slugs"
583
  msgstr "Kategorie-Slugs"
584
 
585
- #: admin/includes/admin-import.php:297
586
  msgid "Header line is missing or not correct!"
587
- msgstr ""
588
 
589
- #: admin/includes/admin-import.php:298
590
  #, php-format
591
  msgid ""
592
  "Have a look at the %1$sexample file%2$s to see the correct header line "
593
  "format."
594
- msgstr ""
595
 
596
- #: admin/includes/admin-import.php:305
597
  #, php-format
598
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
599
- msgstr ""
600
 
601
- #: admin/includes/admin-import.php:334
602
  msgid "Empty event title found"
603
- msgstr ""
604
 
605
- #: admin/includes/admin-import.php:340
606
  msgid "Wrong date format for startdate"
607
- msgstr ""
608
 
609
- #: admin/includes/admin-import.php:348
610
  msgid "Wrong date format for enddate"
611
- msgstr ""
612
 
613
- #: admin/includes/admin-import.php:401
614
  msgid "Import events"
615
  msgstr "Importiere die Termine"
616
 
617
- #: admin/includes/admin-import.php:402
618
  msgid "Add additional categories"
619
  msgstr "Kategorien ergänzen"
620
 
621
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
622
- msgid "Import"
623
- msgstr "Importieren"
624
-
625
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
626
  msgid "No events found"
627
  msgstr "Keine Termine gefunden"
628
 
629
- #: admin/includes/admin-import.php:473
630
  msgid "Saving of event failed!"
631
- msgstr ""
632
 
633
- #: admin/includes/admin-main.php:76
634
  msgid "Event Date"
635
  msgstr "Termin-Datum"
636
 
637
- #: admin/includes/admin-main.php:80
638
  msgid "Author"
639
  msgstr "Autor"
640
 
641
- #: admin/includes/admin-main.php:148
642
  #, php-format
643
  msgid "Add a copy of %1$s"
644
  msgstr "Erstelle eine Kopie von %1$s"
645
 
646
- #: admin/includes/admin-main.php:148
647
  msgid "Copy"
648
  msgstr "Kopieren"
649
 
650
- #: admin/includes/admin-new.php:58
 
 
 
 
651
  msgid "Event data"
652
  msgstr "Termin-Daten"
653
 
654
- #: admin/includes/admin-new.php:90
655
  msgid "Add Copy"
656
  msgstr "Kopie erstellen"
657
 
658
- #: admin/includes/admin-new.php:98
659
  msgid "Date"
660
  msgstr "Datum"
661
 
662
- #: admin/includes/admin-new.php:98
663
  msgid "required"
664
  msgstr "erforderlich"
665
 
666
- #: admin/includes/admin-new.php:101
667
  msgid "Multi-Day Event"
668
  msgstr "Mehrtägiger Termin"
669
 
670
- #: admin/includes/admin-new.php:121
671
  msgid "Event Title"
672
  msgstr "Termin-Titel"
673
 
674
- #: admin/includes/admin-new.php:137
675
  msgid "Event Content"
676
  msgstr "Termin-Inhalt"
677
 
678
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
679
  msgid "Event updated."
680
  msgstr "Termin aktualisiert."
681
 
682
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
683
  msgid "View event"
684
  msgstr "Termin anzeigen"
685
 
686
- #: admin/includes/admin-new.php:204
687
  #, php-format
688
  msgid "Event restored to revision from %1$s"
689
  msgstr "Termin wiederhergestellt mit Revision von %1$s"
690
 
691
- #: admin/includes/admin-new.php:205
692
  msgid "Event published."
693
  msgstr "Termin veröffentlicht."
694
 
695
- #: admin/includes/admin-new.php:207
 
 
 
 
696
  msgid "Event submitted."
697
  msgstr "Termin eingereicht."
698
 
699
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
700
- #: admin/includes/admin-new.php:210
701
  msgid "Preview event"
702
  msgstr "Termin-Vorschau anzeigen"
703
 
704
- #: admin/includes/admin-new.php:208
705
  #, php-format
706
  msgid "Event scheduled for: %1$s>"
707
  msgstr "Termin eingeplant für: %1$s"
708
 
709
- #: admin/includes/admin-new.php:210
710
  msgid "Event draft updated."
711
  msgstr "Termin-Entwurf aktualisiert."
712
 
713
- #: admin/includes/admin-settings.php:79
714
  msgid "Go to Event Category switching page"
715
  msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien"
716
 
717
- #: admin/includes/admin-settings.php:93
718
  msgid "Frontend Settings"
719
  msgstr "Frontend Einstellungen"
720
 
721
- #: admin/includes/admin-settings.php:94
722
  msgid "Admin Page Settings"
723
  msgstr "Admin-Seiten Einstellungen"
724
 
725
- #: admin/includes/admin-settings.php:95
726
  msgid "Feed Settings"
727
  msgstr "Feed Einstellungen"
728
 
729
- #: admin/includes/admin-settings.php:96
730
  msgid "Category Taxonomy"
731
  msgstr "Kategorie-Taxonomie"
732
 
@@ -734,255 +739,255 @@ msgstr "Kategorie-Taxonomie"
734
  msgid "Year"
735
  msgstr "Jahr"
736
 
737
- #: includes/daterange_helptexts.php:9
738
  msgid "A year can be specified in 4 digit format."
739
  msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
740
 
741
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
742
- #: includes/daterange_helptexts.php:47
743
  #, php-format
744
  msgid ""
745
  "For a start date filter the first day of %1$s is used, in an end date the "
746
  "last day."
747
  msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
748
 
749
- #: includes/daterange_helptexts.php:10
750
  msgid "the resulting year"
751
  msgstr "des entsprechenden Jahres"
752
 
753
- #: includes/daterange_helptexts.php:15
754
  msgid "Month"
755
  msgstr "Monat"
756
 
757
- #: includes/daterange_helptexts.php:16
758
  msgid ""
759
  "A month can be specified with 4 digits for the year and 2 digits for the "
760
  "month, seperated by a hyphen (-)."
761
  msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
762
 
763
- #: includes/daterange_helptexts.php:17
764
  msgid "the resulting month"
765
  msgstr "des entsprechenden Monats"
766
 
767
- #: includes/daterange_helptexts.php:22
768
  msgid "Day"
769
  msgstr "Tag"
770
 
771
- #: includes/daterange_helptexts.php:23
772
  msgid ""
773
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
774
  " month and 2 digets for the day, seperated by hyphens (-)."
775
  msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
776
 
777
- #: includes/daterange_helptexts.php:28
778
  msgid "Relative Year"
779
  msgstr "Relatives Jahr"
780
 
781
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
782
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
783
  #, php-format
784
  msgid "%1$s from now can be specified in the following notation: %2$s"
785
  msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
786
 
787
- #: includes/daterange_helptexts.php:29
788
  msgid "A relative year"
789
  msgstr "Ein relatives Jahr"
790
 
791
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
792
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
793
  #, php-format
794
  msgid ""
795
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
796
  "%3$s or %4$s attached (see also the example below)."
797
  msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
798
 
799
- #: includes/daterange_helptexts.php:30
800
  msgid "number of years"
801
  msgstr "Jahresanzahl"
802
 
803
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
804
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
805
  #, php-format
806
  msgid "Additionally the following values are available: %1$s"
807
  msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
808
 
809
- #: includes/daterange_helptexts.php:36
810
  msgid "Relative Month"
811
  msgstr "Relativer Monat"
812
 
813
- #: includes/daterange_helptexts.php:37
814
  msgid "A relative month"
815
  msgstr "Ein relativer Monat"
816
 
817
- #: includes/daterange_helptexts.php:38
818
  msgid "number of months"
819
  msgstr "Monatsanzahl"
820
 
821
- #: includes/daterange_helptexts.php:44
822
  msgid "Relative Week"
823
  msgstr "Relative Woche"
824
 
825
- #: includes/daterange_helptexts.php:45
826
  msgid "A relative week"
827
  msgstr "Eine relative Woche"
828
 
829
- #: includes/daterange_helptexts.php:46
830
  msgid "number of weeks"
831
  msgstr "Wochenanzahl"
832
 
833
- #: includes/daterange_helptexts.php:47
834
  msgid "the resulting week"
835
  msgstr "der entsprechende Woche"
836
 
837
- #: includes/daterange_helptexts.php:48
838
  #, php-format
839
  msgid ""
840
  "The first day of the week is depending on the option %1$s which can be found"
841
  " and changed in %2$s."
842
  msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
843
 
844
- #: includes/daterange_helptexts.php:54
845
  msgid "Relative Day"
846
  msgstr "Relativer Tag"
847
 
848
- #: includes/daterange_helptexts.php:55
849
  msgid "A relative day"
850
  msgstr "Ein relativer Tag"
851
 
852
- #: includes/daterange_helptexts.php:56
853
  msgid "number of days"
854
  msgstr "Tagesanzahl"
855
 
856
- #: includes/daterange_helptexts.php:64
857
  msgid "Date range"
858
  msgstr "Datumsbereich"
859
 
860
- #: includes/daterange_helptexts.php:66
861
  msgid ""
862
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
863
- "\t For the start and end date any available date format can be used."
864
- msgstr "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
865
 
866
- #: includes/daterange_helptexts.php:75
867
  msgid "This value defines a range without any limits."
868
  msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
869
 
870
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
871
- #: includes/daterange_helptexts.php:90
872
  #, php-format
873
  msgid "The corresponding date_range format is: %1$s"
874
  msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
875
 
876
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
877
  msgid "Upcoming"
878
  msgstr "Anstehend"
879
 
880
- #: includes/daterange_helptexts.php:82
881
  msgid "This value defines a range from the actual day to the future."
882
  msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
883
 
884
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
885
  msgid "Past"
886
  msgstr "Beendet"
887
 
888
- #: includes/daterange_helptexts.php:89
889
  msgid "This value defines a range from the past to the previous day."
890
  msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
891
 
892
- #: includes/event.php:124
893
  msgid "No valid start date provided"
894
  msgstr "Kein gültiges Start-Datum angegeben"
895
 
896
- #: includes/event.php:299 includes/event.php:301
897
- #: includes/sc_event-list.php:298
898
  msgid "read more"
899
- msgstr ""
900
 
901
- #: includes/events_post_type.php:69
902
  msgid "Events"
903
  msgstr "Termine"
904
 
905
- #: includes/events_post_type.php:70
906
  msgid "Event"
907
  msgstr "Termin"
908
 
909
- #: includes/events_post_type.php:71
910
  msgid "Add New"
911
  msgstr "Erstellen"
912
 
913
- #: includes/events_post_type.php:72
914
  msgid "Add New Event"
915
  msgstr "Neuen Termin erstellen"
916
 
917
- #: includes/events_post_type.php:73
918
  msgid "Edit Event"
919
  msgstr "Termin bearbeiten"
920
 
921
- #: includes/events_post_type.php:74
922
  msgid "New Event"
923
  msgstr "Neuer Termin"
924
 
925
- #: includes/events_post_type.php:75
926
  msgid "View Event"
927
  msgstr "Termin anzeigen"
928
 
929
- #: includes/events_post_type.php:76
930
  msgid "View Events"
931
  msgstr "Termine anzeigen"
932
 
933
- #: includes/events_post_type.php:77
934
  msgid "Search Events"
935
  msgstr "Termine durchsuchen"
936
 
937
- #: includes/events_post_type.php:79
938
  msgid "No events found in Trash"
939
  msgstr "Keine Termine im Papierkorb gefunden"
940
 
941
- #: includes/events_post_type.php:81
942
  msgid "All Events"
943
  msgstr "Alle Termine"
944
 
945
- #: includes/events_post_type.php:82
946
  msgid "Event Archives"
947
  msgstr "Termin-Archiv"
948
 
949
- #: includes/events_post_type.php:83
950
  msgid "Event Attributes"
951
  msgstr "Termin Attribute"
952
 
953
- #: includes/events_post_type.php:84
954
  msgid "Insert into event"
955
  msgstr "Im Termin einfügen"
956
 
957
- #: includes/events_post_type.php:85
958
  msgid "Uploaded to this event"
959
  msgstr "Zu diesem Termin hochgeladen"
960
 
961
- #: includes/events_post_type.php:86
962
  msgid "Event List"
963
  msgstr "Event List"
964
 
965
- #: includes/events_post_type.php:87
966
  msgid "Filter events list"
967
  msgstr "Termin-Liste filtern"
968
 
969
- #: includes/events_post_type.php:88
970
  msgid "Events list navigation"
971
  msgstr "Termin-Listen-Navigation"
972
 
973
- #: includes/events_post_type.php:89
974
  msgid "Events list"
975
  msgstr "Termin-Liste"
976
 
977
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
978
  msgid "Reset"
979
  msgstr "Zurücksetzen"
980
 
981
- #: includes/filterbar.php:296
982
  msgid "All"
983
  msgstr "Alle"
984
 
985
- #: includes/filterbar.php:298
986
  msgid "All Dates"
987
  msgstr "Alle Datumsbereiche"
988
 
@@ -1002,42 +1007,42 @@ msgstr "Verwendetes Datumsformat"
1002
  msgid ""
1003
  "With this option the given date format for event start and end date in the "
1004
  "CSV file can be specified."
1005
- msgstr ""
1006
 
1007
  #: includes/options_helptexts.php:23
1008
  #, php-format
1009
  msgid ""
1010
  "You can use the php date format options given in %1$s, the most important "
1011
  "ones are:"
1012
- msgstr ""
1013
 
1014
  #: includes/options_helptexts.php:26
1015
  msgid "full year representation, with 4 digits"
1016
- msgstr ""
1017
 
1018
  #: includes/options_helptexts.php:27
1019
  msgid "numeric representation of a month, with leading zeros"
1020
- msgstr ""
1021
 
1022
  #: includes/options_helptexts.php:28
1023
  msgid "day of the month, 2 digits with leading zeros"
1024
- msgstr ""
1025
 
1026
  #: includes/options_helptexts.php:30
1027
  msgid ""
1028
  "If the date format in the CSV file does not correspond to the given format, "
1029
  "the import script tries to recognize the date format by itself."
1030
- msgstr ""
1031
 
1032
  #: includes/options_helptexts.php:31
1033
  msgid ""
1034
  "But this can cause problems or result in wrong dates, so it is recommended "
1035
  "to specify the correct date format here."
1036
- msgstr ""
1037
 
1038
  #: includes/options_helptexts.php:32
1039
  msgid "Examples"
1040
- msgstr ""
1041
 
1042
  #: includes/options_helptexts.php:41
1043
  msgid "Text for no events"
@@ -1135,32 +1140,32 @@ msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverz
1135
 
1136
  #: includes/options_helptexts.php:91
1137
  msgid "Events permalink slug"
1138
- msgstr ""
1139
 
1140
  #: includes/options_helptexts.php:92
1141
  msgid ""
1142
  "With this option the slug for the events permalink URLs can be defined."
1143
- msgstr ""
1144
 
1145
  #: includes/options_helptexts.php:97
1146
  msgid "Text for \"Show content\""
1147
- msgstr ""
1148
 
1149
  #: includes/options_helptexts.php:98
1150
  msgid ""
1151
  "With this option the displayed text for the link to show the event content "
1152
  "can be changed, when collapsing is enabled."
1153
- msgstr ""
1154
 
1155
  #: includes/options_helptexts.php:103
1156
  msgid "Text for \"Hide content\""
1157
- msgstr ""
1158
 
1159
  #: includes/options_helptexts.php:104
1160
  msgid ""
1161
  "With this option the displayed text for the link to hide the event content "
1162
  "can be changed, when collapsing is enabled."
1163
- msgstr ""
1164
 
1165
  #: includes/options_helptexts.php:109
1166
  msgid "Disable CSS file"
@@ -1208,13 +1213,13 @@ msgstr "RSS feed aktivieren"
1208
 
1209
  #: includes/options_helptexts.php:130
1210
  msgid "Enable support for the event RSS feed"
1211
- msgstr ""
1212
 
1213
  #: includes/options_helptexts.php:132
1214
  msgid ""
1215
  "This option activates the RSS feed for the events and adds a feed link in "
1216
  "the html head."
1217
- msgstr ""
1218
 
1219
  #: includes/options_helptexts.php:133
1220
  msgid ""
@@ -1224,20 +1229,20 @@ msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutz
1224
 
1225
  #: includes/options_helptexts.php:138
1226
  msgid "Enable iCal feed"
1227
- msgstr ""
1228
 
1229
  #: includes/options_helptexts.php:139
1230
  msgid "Enable support for the event iCal feed"
1231
- msgstr ""
1232
 
1233
  #: includes/options_helptexts.php:141
1234
  msgid "This option activates the iCal feed for events."
1235
- msgstr ""
1236
 
1237
  #: includes/options_helptexts.php:142
1238
  msgid ""
1239
  "You have to enable this option if you want to use one of the iCal features."
1240
- msgstr ""
1241
 
1242
  #: includes/options_helptexts.php:147
1243
  msgid "Position of the RSS feed link"
@@ -1283,12 +1288,12 @@ msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Te
1283
 
1284
  #: includes/options_helptexts.php:169
1285
  msgid "RSS feed name"
1286
- msgstr ""
1287
 
1288
  #: includes/options_helptexts.php:171
1289
  #, php-format
1290
  msgid "This option sets the RSS feed name. The default value is %1$s."
1291
- msgstr ""
1292
 
1293
  #: includes/options_helptexts.php:172
1294
  #, php-format
@@ -1299,12 +1304,12 @@ msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Ver
1299
 
1300
  #: includes/options_helptexts.php:177
1301
  msgid "RSS feed Description"
1302
- msgstr ""
1303
 
1304
  #: includes/options_helptexts.php:179
1305
  #, php-format
1306
  msgid "This options set the RSS feed description. The default value is %1$s."
1307
- msgstr ""
1308
 
1309
  #: includes/options_helptexts.php:180
1310
  msgid ""
@@ -1314,103 +1319,103 @@ msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwe
1314
 
1315
  #: includes/options_helptexts.php:185
1316
  msgid "RSS feed events"
1317
- msgstr ""
1318
 
1319
  #: includes/options_helptexts.php:186
1320
  msgid "Only show upcoming events in the RSS feed"
1321
- msgstr ""
1322
 
1323
  #: includes/options_helptexts.php:188
1324
  msgid ""
1325
  "If this option is enabled only the upcoming events are listed in the RSS "
1326
  "feed."
1327
- msgstr ""
1328
 
1329
  #: includes/options_helptexts.php:189 includes/options_helptexts.php:215
1330
  msgid "If disabled, all events (upcoming and past) will be listed."
1331
- msgstr ""
1332
 
1333
  #: includes/options_helptexts.php:194
1334
  msgid "RSS link text"
1335
- msgstr ""
1336
 
1337
  #: includes/options_helptexts.php:196
1338
  msgid "This option sets the caption of the RSS feed link in the event list."
1339
- msgstr ""
1340
 
1341
  #: includes/options_helptexts.php:197
1342
  msgid "Use an empty text to only show the rss image."
1343
- msgstr ""
1344
 
1345
  #: includes/options_helptexts.php:198
1346
  #, php-format
1347
  msgid ""
1348
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1349
  " RSS feed link."
1350
- msgstr ""
1351
 
1352
  #: includes/options_helptexts.php:203
1353
  msgid "iCal feed name"
1354
- msgstr ""
1355
 
1356
  #: includes/options_helptexts.php:205
1357
  #, php-format
1358
  msgid "This option sets the iCal feed name. The default value is %1$s."
1359
- msgstr ""
1360
 
1361
  #: includes/options_helptexts.php:206
1362
  #, php-format
1363
  msgid ""
1364
  "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1365
  "permalinks enabled)."
1366
- msgstr ""
1367
 
1368
  #: includes/options_helptexts.php:211
1369
  msgid "iCal feed events"
1370
- msgstr ""
1371
 
1372
  #: includes/options_helptexts.php:212
1373
  msgid "Only show upcoming events in the iCal feed"
1374
- msgstr ""
1375
 
1376
  #: includes/options_helptexts.php:214
1377
  msgid ""
1378
  "If this option is enabled only the upcoming events are listed in the iCal "
1379
  "file."
1380
- msgstr ""
1381
 
1382
  #: includes/options_helptexts.php:220
1383
  msgid "iCal link text"
1384
- msgstr ""
1385
 
1386
  #: includes/options_helptexts.php:222
1387
  msgid "This option sets the iCal link text in the event list."
1388
- msgstr ""
1389
 
1390
  #: includes/options_helptexts.php:223
1391
  msgid "Use an empty text to only show the iCal image."
1392
- msgstr ""
1393
 
1394
  #: includes/options_helptexts.php:224
1395
  #, php-format
1396
  msgid ""
1397
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1398
  " iCal feed link."
1399
- msgstr ""
1400
 
1401
  #: includes/options_helptexts.php:231
1402
  msgid "Event Category handling"
1403
- msgstr ""
1404
 
1405
  #: includes/options_helptexts.php:232
1406
  msgid "Use Post Categories"
1407
- msgstr ""
1408
 
1409
  #: includes/options_helptexts.php:234
1410
  msgid ""
1411
  "Do not maintain seperate categories for the events, and use the existing "
1412
  "post categories instead."
1413
- msgstr ""
1414
 
1415
  #: includes/options_helptexts.php:235
1416
  msgid "Attention"
@@ -1420,133 +1425,134 @@ msgstr "Achtung"
1420
  msgid ""
1421
  "This option cannot be changed directly, but you can go to the Event Category"
1422
  " switching page from here."
1423
- msgstr ""
1424
 
1425
- #: includes/options.php:73
1426
  msgid "events"
1427
- msgstr ""
1428
 
1429
- #: includes/options.php:77
1430
  msgid "Show content"
1431
- msgstr ""
1432
 
1433
- #: includes/options.php:81
1434
  msgid "Hide content"
1435
- msgstr ""
1436
 
1437
- #: includes/sc_event-list_helptexts.php:8
1438
  msgid "event-id"
1439
  msgstr "Termin-ID"
1440
 
1441
- #: includes/sc_event-list_helptexts.php:9
1442
  #, php-format
1443
  msgid ""
1444
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1445
  "%1$s) is provided for this attribute, directly the event-content view of "
1446
  "this event is shown."
1447
- msgstr ""
1448
 
1449
- #: includes/sc_event-list_helptexts.php:13
1450
- #: includes/sc_event-list_helptexts.php:31
1451
  msgid "year"
1452
  msgstr "Jahr"
1453
 
1454
- #: includes/sc_event-list_helptexts.php:14
1455
  msgid ""
1456
  "This attribute defines which events are initially shown. The default is to "
1457
  "show the upcoming events only."
1458
  msgstr "Dieses Attribut bestimmt die Termine, die anfänglich angezeigt werden. Der Standard ist nur die Anzeige der anstehenden Termine."
1459
 
1460
- #: includes/sc_event-list_helptexts.php:15
1461
  #, php-format
1462
  msgid ""
1463
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1464
  "change the displayed event date range via the filterbar or url parameters."
1465
  msgstr "Durch die Angabe eines Jahres (z.B. %1$s) kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich den angezeigten Datumsbereich über die Filter-Leiste zu ändern."
1466
 
1467
- #: includes/sc_event-list_helptexts.php:19
1468
  msgid "category slug"
1469
  msgstr "Kategorie-Slug"
1470
 
1471
- #: includes/sc_event-list_helptexts.php:20
1472
  msgid ""
1473
  "This attribute defines the category of which events are initially shown. The"
1474
  " default is to show events of all categories."
1475
  msgstr "Dieses Attribut definiert die Kategorien, aus denen die Termine anfänglich angezeigt werden. Standardmäßig werden die Termine aus allen Kategorien angezeigt."
1476
 
1477
- #: includes/sc_event-list_helptexts.php:21
1478
  msgid ""
1479
  "Provide a category slug to change this behavior. It is still possible to "
1480
  "change the displayed categories via the filterbar or url parameters."
1481
  msgstr "Durch die Angabe eine Kategorie-Slugs kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich die angezeigten Kategorien über die Filter-Leiste zu ändern."
1482
 
1483
- #: includes/sc_event-list_helptexts.php:26
1484
  msgid "This attribute defines the initial order of the events."
1485
  msgstr "Dieses Attribut definiert die anfängliche Sortierung der Termine."
1486
 
1487
- #: includes/sc_event-list_helptexts.php:27
 
1488
  msgid ""
1489
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1490
  "in the opposite direction (from new to old)."
1491
- msgstr "Mit %1$s (Standardwert) werden die Termine von alt nach neu sortiert, durch die Angabe von %2$s in der umgekehrten Reihenfolge (von neu nach alt)."
1492
 
1493
- #: includes/sc_event-list_helptexts.php:32
1494
  #, php-format
1495
  msgid ""
1496
  "This attribute defines the dates and date ranges of which events are "
1497
  "displayed. The default is %1$s to show all events."
1498
  msgstr "Dieses Attribut definiert die Datumsbereiche, aus denen die Termine angezeigt werden. Standardmäßig wird %1$s verwendet um alle Termine anzuzeigen."
1499
 
1500
- #: includes/sc_event-list_helptexts.php:33
1501
  #, php-format
1502
  msgid ""
1503
  "Filtered events according to %1$s value are not available in the event list."
1504
  msgstr "Gefilterte Termine aufgrund des Wertes von %1$s sind in der Termin-Liste nicht verfügbar."
1505
 
1506
- #: includes/sc_event-list_helptexts.php:34
1507
  #, php-format
1508
  msgid ""
1509
  "You can find all available values with a description and examples in the "
1510
  "sections %1$s and %2$s below."
1511
  msgstr "Alle möglichen Angaben mit Beschreibungen und Beispielen sind unten stehend in den Abschnitten %1$s und %2$s zu finden."
1512
 
1513
- #: includes/sc_event-list_helptexts.php:35
1514
  #, php-format
1515
  msgid "See %1$s description if you want to define complex filters."
1516
  msgstr "Siehe die Beschreibung zu %1$s um komplexe Filter zu definieren."
1517
 
1518
- #: includes/sc_event-list_helptexts.php:39
1519
  msgid "category slugs"
1520
  msgstr "Kategorie-Slugs"
1521
 
1522
- #: includes/sc_event-list_helptexts.php:40
1523
  msgid ""
1524
  "This attribute defines the category filter which filters the events to show."
1525
  " The default is $1$s or an empty string to show all events."
1526
  msgstr "Dieses Attribute definiert den Kategorien-Filter für die angezeigten Termine. Der Standard-Wert ist %1$s oder ein leerer String, mit dem alle Termine angezeigt werden."
1527
 
1528
- #: includes/sc_event-list_helptexts.php:41
1529
  #, php-format
1530
  msgid ""
1531
  "Events with categories that doesn´t match %1$s are not shown in the event "
1532
  "list. They are also not available if a manual url parameter is added."
1533
  msgstr "Termine mit Kategorien, die nicht auf den Filter von %1$s passen, werden in der Termin-Liste nicht angezeigt. Diese sind auch nicht über die Angabe eines manuellen URL-Parameter verfügbar."
1534
 
1535
- #: includes/sc_event-list_helptexts.php:42
1536
  #, php-format
1537
  msgid ""
1538
  "The filter is specified via the given category slugs. See %1$s description "
1539
  "if you want to define complex filters."
1540
  msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. "
1541
 
1542
- #: includes/sc_event-list_helptexts.php:46
1543
- #: includes/sc_event-list_helptexts.php:111
1544
- #: includes/sc_event-list_helptexts.php:138
1545
- #: includes/sc_event-list_helptexts.php:177
1546
  msgid "number"
1547
  msgstr "Nummer"
1548
 
1549
- #: includes/sc_event-list_helptexts.php:47
1550
  #, php-format
1551
  msgid ""
1552
  "This attribute defines how many events should be displayed if upcoming "
@@ -1554,109 +1560,109 @@ msgid ""
1554
  "displayed."
1555
  msgstr "Dieses Attribut definiert wie viele Termine angezeigt werden sollen, wenn nur anstehende Termine angezeigt werden. Mit dem Standardwert %1$s werden alle Termine angezeigt."
1556
 
1557
- #: includes/sc_event-list_helptexts.php:48
1558
  msgid ""
1559
  "Please not that in the actual version there is no pagination of the events "
1560
  "available, so the event list can be very long."
1561
  msgstr "Bitte beachte, dass in der aktuellen Version keine Pagination der Termine verfügbar ist, die Termin-Liste kann dadurch ziemlich lange sein."
1562
 
1563
- #: includes/sc_event-list_helptexts.php:53
1564
  msgid ""
1565
  "This attribute defines if the filterbar should be displayed. The filterbar "
1566
  "allows the users to specify filters for the listed events."
1567
  msgstr "Dieses Attribut definiert, ob die Filter-Leiste angezeigt wird. Die Filter-Liste erlaubt es dem Anwender die Termin-Liste zu filtern."
1568
 
1569
- #: includes/sc_event-list_helptexts.php:54
1570
  #, php-format
1571
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1572
  msgstr "Wähle %1$s um die Filter-Leiste immer zu verstecken und %2$s um sie immer anzuzeigen."
1573
 
1574
- #: includes/sc_event-list_helptexts.php:55
1575
  #, php-format
1576
  msgid ""
1577
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1578
  " in the single event view."
1579
  msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht."
1580
 
1581
- #: includes/sc_event-list_helptexts.php:60
1582
  #, php-format
1583
  msgid ""
1584
  "This attribute specifies the available items in the filterbar. This options "
1585
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1586
  msgstr "Dieses Attribut definiert die verfügbaren Elemente in der Filterleiste. Diese Option ist nur zutreffend, wenn die Filterbar angezeigt wird (siehe %1$s Attribut)."
1587
 
1588
- #: includes/sc_event-list_helptexts.php:61
1589
  msgid ""
1590
  "Find below an overview of the available filterbar items and their options:"
1591
  msgstr "Anbei die Übersicht der verfügbaren Filterleisten-Elemente und deren Optionen:"
1592
 
1593
- #: includes/sc_event-list_helptexts.php:64
1594
  msgid "filterbar item"
1595
  msgstr "Element"
1596
 
1597
- #: includes/sc_event-list_helptexts.php:64
1598
- #: includes/sc_event-list_helptexts.php:96
1599
  msgid "description"
1600
  msgstr "Beschreibung"
1601
 
1602
- #: includes/sc_event-list_helptexts.php:64
1603
  msgid "item options"
1604
  msgstr "Element Optionen"
1605
 
1606
- #: includes/sc_event-list_helptexts.php:64
1607
  msgid "option values"
1608
  msgstr "Options-Werte"
1609
 
1610
- #: includes/sc_event-list_helptexts.php:64
1611
  msgid "default value"
1612
  msgstr "Standard-Wert"
1613
 
1614
- #: includes/sc_event-list_helptexts.php:64
1615
  msgid "option description"
1616
  msgstr "Options-Beschreibung"
1617
 
1618
- #: includes/sc_event-list_helptexts.php:67
1619
  msgid ""
1620
  "Show a list of all available years. Additional there are some special "
1621
  "entries available (see item options)."
1622
  msgstr "Zeigt eine Liste mit allen verfügbaren Jahren. Zusätzlich sind einige Spezial-Einträge verfügbar (siehe Element-Optionen)."
1623
 
1624
- #: includes/sc_event-list_helptexts.php:71
1625
- #: includes/sc_event-list_helptexts.php:82
1626
  msgid "Add an entry to show all events."
1627
  msgstr "Ergänzt einen Eintrag zur Anzeige aller Termine."
1628
 
1629
- #: includes/sc_event-list_helptexts.php:73
1630
- #: includes/sc_event-list_helptexts.php:84
1631
  msgid "Add an entry to show all upcoming events."
1632
  msgstr "Ergänzt einen Eintrag zum Anzeigen aller anstehenden Termine."
1633
 
1634
- #: includes/sc_event-list_helptexts.php:74
1635
- #: includes/sc_event-list_helptexts.php:85
1636
  msgid "Add an entry to show events in the past."
1637
  msgstr "Ergänzt einen Eintrag zum Anzeigen aller beendeter Termine."
1638
 
1639
- #: includes/sc_event-list_helptexts.php:75
1640
  msgid "Set descending or ascending order of year entries."
1641
  msgstr "Setzt die Sortierreihenfolge der Jahres-Einträge."
1642
 
1643
- #: includes/sc_event-list_helptexts.php:78
1644
  msgid "Show a list of all available months."
1645
  msgstr "Zeigt eine Liste mit allen verfügbaren Monaten."
1646
 
1647
- #: includes/sc_event-list_helptexts.php:86
1648
  msgid "Set descending or ascending order of month entries."
1649
  msgstr "Setzt die Sortierungreihenfolge der Monats-Einträge."
1650
 
1651
- #: includes/sc_event-list_helptexts.php:87
1652
  msgid "php date-formats"
1653
  msgstr "PHP Datumsformate"
1654
 
1655
- #: includes/sc_event-list_helptexts.php:87
1656
  msgid "Set the displayed date format of the month entries."
1657
  msgstr "Setzt das angezeigte Datumsformat für die Monatseinträge."
1658
 
1659
- #: includes/sc_event-list_helptexts.php:88
1660
  #, php-format
1661
  msgid ""
1662
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1664,65 +1670,65 @@ msgid ""
1664
  "order."
1665
  msgstr "Mit diesem Element können die Spezial-Einträge %1$s, %2$s und %3$s angezeigt werden. Es können alle oder nur einige der verfügbaren Werte verwendet werden, zudem kann die Sortierung beeinflusst werden."
1666
 
1667
- #: includes/sc_event-list_helptexts.php:88
1668
  #, php-format
1669
  msgid ""
1670
  "Specifies the displayed values and their order. The items must be seperated "
1671
  "by %1$s."
1672
  msgstr "Definiert die angezeigten Werte und deren Reihenfolge. Die Einträge müssen durch ein %1$s getrennt werden."
1673
 
1674
- #: includes/sc_event-list_helptexts.php:89
1675
  msgid "Show a list of all available categories."
1676
  msgstr "Zeigt eine Liste aller verfügbaren Kategorien."
1677
 
1678
- #: includes/sc_event-list_helptexts.php:89
1679
  msgid "Add an entry to show events from all categories."
1680
  msgstr "Fügt zusätzlich einen Eintrag zum anzeigen aller Kategorien ein."
1681
 
1682
- #: includes/sc_event-list_helptexts.php:90
1683
  msgid "A link to reset the eventlist filter to standard."
1684
  msgstr "Ein Link, um den Termin-Filter wieder auf den Standard zurückzusetzen."
1685
 
1686
- #: includes/sc_event-list_helptexts.php:90
1687
  msgid "any text"
1688
  msgstr "beliebiger Text"
1689
 
1690
- #: includes/sc_event-list_helptexts.php:90
1691
  msgid "Set the caption of the link."
1692
  msgstr "Setzt die Beschriftung des Links."
1693
 
1694
- #: includes/sc_event-list_helptexts.php:93
1695
  msgid "Find below an overview of the available filterbar display options:"
1696
  msgstr "Anbei eine Übersicht über die verfügbaren Filterleisten-Ansichtsoptionen:"
1697
 
1698
- #: includes/sc_event-list_helptexts.php:96
1699
  msgid "display option"
1700
  msgstr "Anzeige-Option"
1701
 
1702
- #: includes/sc_event-list_helptexts.php:96
1703
  msgid "available for"
1704
  msgstr "verfügbar für"
1705
 
1706
- #: includes/sc_event-list_helptexts.php:97
1707
  #, php-format
1708
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1709
  msgstr "Zeigt eine horizontale Liste mit einem Link zu jedem Element getrennt durch ein %1$s."
1710
 
1711
- #: includes/sc_event-list_helptexts.php:98
1712
  msgid ""
1713
  "Shows a select box where an item can be choosen. After the selection of an "
1714
  "item the page is reloaded via javascript to show the filtered events."
1715
  msgstr "Zeigt eine Auswahlbox, aus der die Einträge gewählt werden können. Nach der Auswahl eines Eintrags wird die Seite über Javascript neu geladen, um die gefilterten Termin anzuzeigen."
1716
 
1717
- #: includes/sc_event-list_helptexts.php:99
1718
  msgid "Shows a simple link which can be clicked."
1719
  msgstr "Zeigt einen einfachen Link, auf den geklickt werden kann."
1720
 
1721
- #: includes/sc_event-list_helptexts.php:102
1722
  msgid "Find below some declaration examples with descriptions:"
1723
  msgstr "Nachfolgend werden einige Beispiele gezeigt und beschrieben:"
1724
 
1725
- #: includes/sc_event-list_helptexts.php:104
1726
  #, php-format
1727
  msgid ""
1728
  "In this example you can see that the filterbar item and the used display "
@@ -1730,22 +1736,22 @@ msgid ""
1730
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1731
  msgstr "In diesem Beispiel ist ersichtlich, dass ein Filterleisten-Eintrag und die verwendete Ansichtsoption durch einen Unterstrich %1$s verbunden wird. Mehrere Filterleisten-Einträge können getrennt durch ein Komma %2$s definiert werden. Die Einträge werden linksseitig ausgerichtet."
1732
 
1733
- #: includes/sc_event-list_helptexts.php:106
1734
  #, php-format
1735
  msgid ""
1736
  "In this example you can see that filterbar options can be added in brackets "
1737
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1738
  msgstr "In diesem Beispiel ist ersichtlich, dass Filterleisten-Optionen in Klammern im Format %1$s ergänzt werden können. Es können auch mehrere Optionen getrennt durch eine Pipe %2$s angegeben werden."
1739
 
1740
- #: includes/sc_event-list_helptexts.php:106
1741
  msgid "option_name"
1742
  msgstr "options_name"
1743
 
1744
- #: includes/sc_event-list_helptexts.php:106
1745
  msgid "value"
1746
  msgstr "wert"
1747
 
1748
- #: includes/sc_event-list_helptexts.php:107
1749
  #, php-format
1750
  msgid ""
1751
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1754,136 +1760,136 @@ msgid ""
1754
  "left-aligned and the reset link will be on the right side."
1755
  msgstr "Die 2 Semikolons %1$s teilen die Filterleiste in 3 Bereiche. Der erste Bereich wird links ausgerichtet, der 2. mittig ausgerichtet und der 3. rechtsseitig ausgerichtet dargestellt. So werden in diesem Beispiel die 2 Auswahllisten linksseitig und der Zurücksetzen-Link rechtsseitig ausgerichtet."
1756
 
1757
- #: includes/sc_event-list_helptexts.php:112
1758
- #: includes/sc_event-list_helptexts.php:139
1759
  msgid ""
1760
  "This attribute specifies if the title should be truncated to the given "
1761
  "number of characters in the event list."
1762
  msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll."
1763
 
1764
- #: includes/sc_event-list_helptexts.php:113
1765
- #: includes/sc_event-list_helptexts.php:140
1766
  #, php-format
1767
  msgid ""
1768
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1769
  "is automatically truncated via css."
1770
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt."
1771
 
1772
- #: includes/sc_event-list_helptexts.php:114
1773
- #: includes/sc_event-list_helptexts.php:141
1774
- #: includes/sc_event-list_helptexts.php:180
1775
  msgid "This attribute has no influence if only a single event is shown."
1776
  msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
1777
 
1778
- #: includes/sc_event-list_helptexts.php:120
1779
  msgid ""
1780
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1781
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1782
- "\t With \"event_list_only\" the starttime 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:130
1786
  msgid ""
1787
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1788
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1789
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1790
  msgstr ""
1791
 
1792
- #: includes/sc_event-list_helptexts.php:147
1793
  msgid ""
1794
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1795
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1796
- "\t With \"event_list_only\" the categories are 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:157
1800
  msgid ""
1801
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1802
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1803
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1804
  msgstr ""
1805
 
1806
- #: includes/sc_event-list_helptexts.php:167
1807
  msgid ""
1808
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1809
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1810
- "\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"
1811
- "\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"
1812
- "\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)."
1813
  msgstr ""
1814
 
1815
- #: includes/sc_event-list_helptexts.php:178
1816
  msgid ""
1817
  "This attribute specifies if the content should be truncate to the given "
1818
  "number of characters in the event list."
1819
- msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:179
1822
  #, php-format
1823
  msgid "With the standard value %1$s the full text is displayed."
1824
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
1825
 
1826
- #: includes/sc_event-list_helptexts.php:186
1827
  msgid ""
1828
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1829
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1830
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1831
- "\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."
1832
  msgstr ""
1833
 
1834
- #: includes/sc_event-list_helptexts.php:197
1835
  msgid ""
1836
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1837
- "\t Choose \"false\" to never add and \"true\" to always add the link.<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.<br />\n"
1839
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1840
  msgstr ""
1841
 
1842
- #: includes/sc_event-list_helptexts.php:208
1843
  msgid ""
1844
  "This attribute specifies if a rss feed link should be added.<br />\n"
1845
- "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1846
- "\t On that page you can also find some settings to modify the output.<br />\n"
1847
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1848
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1849
  msgstr ""
1850
 
1851
- #: includes/sc_event-list_helptexts.php:220
1852
  msgid ""
1853
  "This attribute specifies if a ical feed link should be added.<br />\n"
1854
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1855
- "\t On that page you can also find some settings to modify the output.<br />\n"
1856
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1857
  msgstr ""
1858
 
1859
- #: includes/sc_event-list_helptexts.php:231
1860
  msgid ""
1861
  "This attribute specifies the page or post url for event links.<br />\n"
1862
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1863
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1864
  msgstr ""
1865
 
1866
- #: includes/sc_event-list_helptexts.php:243
1867
  msgid ""
1868
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1869
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1870
  msgstr ""
1871
 
1872
- #: includes/sc_event-list.php:154
1873
  msgid "Sorry, the requested event is not available!"
1874
  msgstr "Entschuldigung, die der angeforderte Termin ist nicht verfügbar!"
1875
 
1876
- #: includes/sc_event-list.php:163
1877
  msgid "Event Information:"
1878
  msgstr "Termin Informationen:"
1879
 
1880
- #: includes/sc_event-list.php:405
1881
  msgid "Link to RSS feed"
1882
- msgstr ""
1883
 
1884
- #: includes/sc_event-list.php:414
1885
  msgid "Link to iCal feed"
1886
- msgstr ""
1887
 
1888
  #: includes/widget_helptexts.php:11
1889
  msgid "This option defines the displayed title for the widget."
@@ -1914,133 +1920,133 @@ msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
1914
  msgid "Truncate event title to"
1915
  msgstr "Kürze den Termin-Titel auf"
1916
 
1917
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1918
- #: includes/widget_helptexts.php:93
1919
  msgid "characters"
1920
  msgstr "Buchstaben"
1921
 
1922
- #: includes/widget_helptexts.php:38
1923
  msgid ""
1924
  "This option defines the number of displayed characters for the event title."
1925
  msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest."
1926
 
1927
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1928
  #, php-format
1929
  msgid ""
1930
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1931
  "automatically truncate the text via css."
1932
  msgstr "Setze den Wert auf %1$s, um den gesamten Text anzuzeigen, oder auf %2$s um den Text automatisch via CSS zu kürzen."
1933
 
1934
- #: includes/widget_helptexts.php:46
1935
  msgid "Show event starttime"
1936
  msgstr "Zeige die Termin-Uhrzeit"
1937
 
1938
- #: includes/widget_helptexts.php:48
1939
  msgid "This option defines if the event start time will be displayed."
1940
  msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
1941
 
1942
- #: includes/widget_helptexts.php:55
1943
  msgid "Show event location"
1944
  msgstr "Zeige den Termin-Ort"
1945
 
1946
- #: includes/widget_helptexts.php:57
1947
  msgid "This option defines if the event location will be displayed."
1948
  msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
1949
 
1950
- #: includes/widget_helptexts.php:64
1951
  msgid "Truncate location to"
1952
  msgstr "Kürze den Ort auf"
1953
 
1954
- #: includes/widget_helptexts.php:66
1955
  msgid ""
1956
  "If the event location is diplayed this option defines the number of "
1957
  "displayed characters."
1958
  msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
1959
 
1960
- #: includes/widget_helptexts.php:74
1961
  msgid "Show event excerpt"
1962
- msgstr ""
1963
 
1964
- #: includes/widget_helptexts.php:76
1965
  msgid "This option defines if the event excerpt will be displayed."
1966
- msgstr ""
1967
 
1968
- #: includes/widget_helptexts.php:83
1969
  msgid "Show event content"
1970
- msgstr ""
1971
 
1972
- #: includes/widget_helptexts.php:85
1973
  msgid "This option defines if the event content will be displayed."
1974
- msgstr ""
1975
 
1976
- #: includes/widget_helptexts.php:92
1977
  msgid "Truncate content to"
1978
- msgstr ""
1979
 
1980
- #: includes/widget_helptexts.php:94
1981
  msgid ""
1982
  "If the event content are diplayed this option defines the number of diplayed"
1983
  " characters."
1984
- msgstr ""
1985
 
1986
- #: includes/widget_helptexts.php:95
1987
  #, php-format
1988
  msgid "Set this value to %1$s to view the full text."
1989
  msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt."
1990
 
1991
- #: includes/widget_helptexts.php:102
1992
  msgid "URL to the linked Event List page"
1993
  msgstr "URL zur verlinkten Event List Seite"
1994
 
1995
- #: includes/widget_helptexts.php:104
1996
  msgid ""
1997
  "This option defines the url to the linked Event List page. This option is "
1998
  "required if you want to use one of the options below."
1999
  msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
2000
 
2001
- #: includes/widget_helptexts.php:111
2002
  msgid "Shortcode ID on linked page"
2003
  msgstr "Shortcode ID auf der verlinkten Seite"
2004
 
2005
- #: includes/widget_helptexts.php:113
2006
  msgid ""
2007
  "This option defines the shortcode-id for the Event List on the linked page. "
2008
  "Normally the standard value 1 is correct, you only have to change it if you "
2009
  "use multiple event-list shortcodes on the linked page."
2010
  msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
2011
 
2012
- #: includes/widget_helptexts.php:122
2013
  msgid ""
2014
  "With this option you can add a link to the single event page for every "
2015
  "displayed event. You have to specify the url to the page and the shortcode "
2016
  "id option if you want to use it."
2017
  msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
2018
 
2019
- #: includes/widget_helptexts.php:131
2020
  msgid ""
2021
  "With this option you can add a link to the event-list page below the "
2022
  "diplayed events. You have to specify the url to page option if you want to "
2023
  "use it."
2024
  msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
2025
 
2026
- #: includes/widget_helptexts.php:138
2027
  msgid "Caption for the link"
2028
  msgstr "Anzuzeigender Text für den Link"
2029
 
2030
- #: includes/widget_helptexts.php:140
2031
  msgid ""
2032
  "This option defines the text for the link to the Event List page if the "
2033
  "approriate option is selected."
2034
  msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
2035
 
2036
- #: includes/widget.php:21
2037
  msgid "With this widget a list of upcoming events can be displayed."
2038
  msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
2039
 
2040
- #: includes/widget.php:26
2041
  msgid "Upcoming events"
2042
  msgstr "Anstehende Termine"
2043
 
2044
- #: includes/widget.php:40
2045
  msgid "show events page"
2046
  msgstr "öffne den Kalender"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
  # K W, 2017
7
  # Lasse Schulz <lasse.schulz@netthelp.de>, 2016
8
+ # Lennart Waltereit <lennart.waltereit@gmail.com>, 2021
9
  # li rak <romankost@gmx.ch>, 2017
10
  # Marco Schwarzenbach <sp1n@gmx.ch>, 2016
11
+ # mibuthu, 2021-2022
12
  # mibuthu, 2015,2017-2018
13
  msgid ""
14
  msgstr ""
15
  "Project-Id-Version: wp-event-list\n"
16
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
17
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
18
+ "PO-Revision-Date: 2022-02-19 17:24+0000\n"
19
  "Last-Translator: mibuthu\n"
20
  "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
21
  "MIME-Version: 1.0\n"
24
  "Language: de_DE\n"
25
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
26
 
27
+ #: admin/admin.php:90
28
  #, php-format
29
  msgid "Errors during upgrade of plugin %1$s"
30
  msgstr "Fehler während des %1$s Plugin Upgrades"
31
 
32
+ #: admin/admin.php:90
33
  #, php-format
34
  msgid "Upgrade of plugin %1$s successful"
35
  msgstr "Upgrade des Plugins %1$s erfolgreich"
36
 
37
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
38
  msgid "Event List Settings"
39
  msgstr "Event List Einstellungen"
40
 
41
+ #: admin/admin.php:142
42
  msgid "Settings"
43
  msgstr "Einstellungen"
44
 
45
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
46
  msgid "About Event List"
47
  msgstr "Informationen zu Event List"
48
 
49
+ #: admin/admin.php:146
50
  msgid "About"
51
  msgstr "Informationen"
52
 
53
+ #: admin/admin.php:170
54
  #, php-format
55
  msgid "%s Event"
56
  msgid_plural "%s Events"
57
  msgstr[0] "%s Termin"
58
  msgstr[1] "%s Termine"
59
 
60
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
61
  msgid "General"
62
  msgstr "Allgemein"
63
 
64
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
65
+ #: admin/includes/admin-about.php:137
66
  msgid "Shortcode Attributes"
67
  msgstr "Shortcode Attribute"
68
 
69
+ #: admin/includes/admin-about.php:102
70
  msgid "Help and Instructions"
71
  msgstr "Hilfe und Anleitungen"
72
 
73
+ #: admin/includes/admin-about.php:103
74
  #, php-format
75
  msgid "You can manage the events %1$shere%2$s"
76
  msgstr "Die Termine können %1$shier%2$s verwaltet werden"
77
 
78
+ #: admin/includes/admin-about.php:104
79
  msgid "To show the events on your site you have 2 possibilities"
80
  msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
81
 
82
+ #: admin/includes/admin-about.php:105
83
  #, php-format
84
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
85
  msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
86
 
87
+ #: admin/includes/admin-about.php:106
88
  #, php-format
89
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
90
  msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
91
 
92
+ #: admin/includes/admin-about.php:107
93
  msgid ""
94
  "The displayed events and their style can be modified with the available "
95
  "widget settings and the available attributes for the shortcode."
96
  msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
97
 
98
+ #: admin/includes/admin-about.php:108
99
  #, php-format
100
  msgid ""
101
  "A list of all available shortcode attributes with their descriptions is "
102
  "available in the %1$s tab."
103
  msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist im Reiter %1$s verfügbar."
104
 
105
+ #: admin/includes/admin-about.php:109
106
  msgid "The available widget options are described in their tooltip text."
107
  msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
108
 
109
+ #: admin/includes/admin-about.php:110
110
  #, php-format
111
  msgid ""
112
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
113
  " to insert an URL to the linked event-list page."
114
  msgstr "Wenn eine der Link Optionen (%1$s oder %2$s) im Widget verwendet werden, dann muss die URL zur verlinkten Event-List Seite angegeben werden."
115
 
116
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
117
  msgid "Add links to the single events"
118
  msgstr "Füge Links zu den einzelnen Terminen ein"
119
 
120
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
121
  msgid "Add a link to the Event List page"
122
  msgstr "Füge einen Link zur Event List Seite hinzu"
123
 
124
+ #: admin/includes/admin-about.php:111
125
  msgid ""
126
  "This is required because the widget does not know in which page or post the "
127
  "shortcode was included."
128
  msgstr "Dies ist erforderlich, weil das Widget nicht weiß, in welcher Seite oder welchem Beitrag der Shortcode eingefügt worden ist."
129
 
130
+ #: admin/includes/admin-about.php:112
131
  msgid ""
132
  "Additionally you have to insert the correct Shortcode id on the linked page."
133
  " This id describes which shortcode should be used on the given page or post "
134
  "if you have more than one."
135
  msgstr "Zusätzlich muss die korrekte Shortcode-ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt welcher Shortcode auf der angegebenen Seite oder Artikel verwendet werden soll, wenn mehrere vorhanden sind."
136
 
137
+ #: admin/includes/admin-about.php:113
138
  #, php-format
139
  msgid ""
140
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
142
  "link on your linked page or post."
143
  msgstr "Der Standardwert %1$s ist normalerweise o.k. (für Seiten mit nur einem Shortcode), aber falls erforderlich kann die ID über die URL eines Termin-Links auf der verlinkten Seite ermittelt werden."
144
 
145
+ #: admin/includes/admin-about.php:114
146
  #, php-format
147
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
148
  msgstr "Die ID befindet sich am Ende der URL Parameter (z.B. %1$s)."
149
 
150
+ #: admin/includes/admin-about.php:116
151
  #, php-format
152
  msgid ""
153
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
154
  "want."
155
  msgstr "Bitte werfe auch einen Blick auf die %1$s in der das Plugin nach deinen Vorstellungen angepasst werden kann."
156
 
157
+ #: admin/includes/admin-about.php:116
158
  msgid "Settings page"
159
  msgstr "Einstellungs-Seite"
160
 
161
+ #: admin/includes/admin-about.php:123
162
  msgid "About the plugin author"
163
  msgstr "Über den Autor des Plugins"
164
 
165
+ #: admin/includes/admin-about.php:125
166
  #, php-format
167
  msgid ""
168
  "This plugin is developed by %1$s, you can find more information about the "
169
  "plugin on the %2$s."
170
  msgstr "Dieses Plugin wird von %1$s entwickelt, zusätzliche Informationen über das Plugin stehen auf der %2$s zur Verfügung."
171
 
172
+ #: admin/includes/admin-about.php:125
173
  msgid "WordPress plugin site"
174
+ msgstr "Wordpress Plugin Seite"
175
 
176
+ #: admin/includes/admin-about.php:126
177
  #, php-format
178
  msgid "If you like the plugin please rate it on the %1$s."
179
  msgstr "Wenn dir das Plugin gefällt bewerte es bitte unter der %1$s."
180
 
181
+ #: admin/includes/admin-about.php:126
182
  msgid "WordPress plugin review site"
183
+ msgstr "WordPress-Plugin-Bewertungsseite"
184
 
185
+ #: admin/includes/admin-about.php:127
186
  msgid ""
187
  "If you want to support the plugin I would be happy to get a small donation"
188
  msgstr "Um das Plugin zu unterstützen würde ich mich auch über eine kleine Spende freuen"
189
 
190
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
191
+ #: admin/includes/admin-about.php:130
192
  #, php-format
193
  msgid "Donate with %1$s"
194
  msgstr "Spende über %1$s"
195
 
196
+ #: admin/includes/admin-about.php:139
197
  msgid ""
198
  "You have the possibility to modify the output if you add some of the "
199
  "following attributes to the shortcode."
200
  msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
201
 
202
+ #: admin/includes/admin-about.php:140
203
  #, php-format
204
  msgid ""
205
  "You can combine and add as much attributes as you want. E.g. the shortcode "
206
  "including the attributes %1$s and %2$s would looks like this:"
207
  msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
208
 
209
+ #: admin/includes/admin-about.php:142
210
  msgid ""
211
  "Below you can find a list of all supported attributes with their "
212
  "descriptions and available options:"
213
  msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
214
 
215
+ #: admin/includes/admin-about.php:157
216
  msgid "Attribute name"
217
  msgstr "Name"
218
 
219
+ #: admin/includes/admin-about.php:158
220
  msgid "Value options"
221
  msgstr "zulässige Werte"
222
 
223
+ #: admin/includes/admin-about.php:159
224
  msgid "Default value"
225
  msgstr "Standard-Wert"
226
 
227
+ #: admin/includes/admin-about.php:160
228
  msgid "Description"
229
  msgstr "Beschreibung"
230
 
231
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
232
+ #: includes/sc_event-list_helptexts.php:91
233
  msgid "Filter Syntax"
234
  msgstr "Filter Syntax"
235
 
236
+ #: admin/includes/admin-about.php:180
237
  msgid ""
238
  "For date and cat filters you can specify complex filters with the following "
239
  "syntax:"
240
  msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
241
 
242
+ #: admin/includes/admin-about.php:181
243
  #, php-format
244
  msgid ""
245
  "You can use %1$s and %2$s connections to define complex filters. "
246
  "Additionally you can set brackets %3$s for nested queries."
247
  msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
248
 
249
+ #: admin/includes/admin-about.php:181
250
  msgid "AND"
251
  msgstr "UND"
252
 
253
+ #: admin/includes/admin-about.php:181
254
  msgid "OR"
255
  msgstr "ODER"
256
 
257
+ #: admin/includes/admin-about.php:181
258
  msgid "or"
259
  msgstr "oder"
260
 
261
+ #: admin/includes/admin-about.php:181
262
  msgid "and"
263
  msgstr "und"
264
 
265
+ #: admin/includes/admin-about.php:182
266
  msgid "Examples for cat filters:"
267
  msgstr "Beispiele für Kategorie-Filter:"
268
 
269
+ #: admin/includes/admin-about.php:183
270
  #, php-format
271
  msgid "Show all events with category %1$s."
272
  msgstr "Zeige alle Termine mit der Kategorie %1$s."
273
 
274
+ #: admin/includes/admin-about.php:184
275
  #, php-format
276
  msgid "Show all events with category %1$s or %2$s."
277
  msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
278
 
279
+ #: admin/includes/admin-about.php:185
280
  #, php-format
281
  msgid ""
282
  "Show all events with category %1$s and all events where category %2$s as "
283
  "well as %3$s is selected."
284
  msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
285
 
286
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
287
  msgid "Available Date Formats"
288
  msgstr "Verfügbare Datumsformate"
289
 
290
+ #: admin/includes/admin-about.php:192
291
  msgid "For date filters you can use the following date formats:"
292
  msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
293
 
294
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
295
  msgid "Available Date Range Formats"
296
  msgstr "Verfügbare Datumsbereichs-Formate"
297
 
298
+ #: admin/includes/admin-about.php:202
299
  msgid "For date filters you can use the following daterange formats:"
300
  msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
301
 
302
+ #: admin/includes/admin-about.php:215
303
  msgid "Value"
304
  msgstr "Wert"
305
 
306
+ #: admin/includes/admin-about.php:219
307
  msgid "Example"
308
  msgstr "Beispiel"
309
 
310
+ #: admin/includes/admin-categories.php:79
311
  msgid "Synchronize with post categories"
312
  msgstr "Synchronisation mit den Beitrags-Kategorien"
313
 
314
+ #: admin/includes/admin-categories.php:90
315
  #, php-format
316
  msgid "%1$s categories modified (%2$s)"
317
  msgstr "%1$s Kategorien geändert (%2$s)"
318
 
319
+ #: admin/includes/admin-categories.php:91
320
  #, php-format
321
  msgid "%1$s categories added (%2$s)"
322
  msgstr "%1$s Kategorien erstellt (%2$s)"
323
 
324
+ #: admin/includes/admin-categories.php:92
325
  #, php-format
326
  msgid "%1$s categories deleted (%2$s)"
327
  msgstr "%1$s Kategorien gelöscht (%2$s)"
328
 
329
+ #: admin/includes/admin-categories.php:95
330
  #, php-format
331
  msgid "%1$s categories not modified (%2$s)"
332
  msgstr "%1$s Kategorien nicht geändert (%2$s)"
333
 
334
+ #: admin/includes/admin-categories.php:96
335
  #, php-format
336
  msgid "%1$s categories not added (%2$s)"
337
  msgstr "%1$s Kategorien nicht erstellt (%2$s)"
338
 
339
+ #: admin/includes/admin-categories.php:97
340
  #, php-format
341
  msgid "%1$s categories not deleted (%2$s)"
342
  msgstr "%1$s Kategorien nicht gelöscht (%2$s)"
343
 
344
+ #: admin/includes/admin-categories.php:100
345
  msgid "An Error occured during the category sync"
346
  msgstr "Während der Kategorie-Synchronisation ist ein Fehler aufgetreten"
347
 
348
+ #: admin/includes/admin-categories.php:103
349
  msgid "Category sync finished"
350
  msgstr "Kategorie-Synchronisation abgeschlossen"
351
 
352
+ #: admin/includes/admin-category-sync.php:77
353
  msgid "Error: You are not allowed to view this page!"
354
  msgstr "Fehler: Sie sind nicht befugt dieser Seite aufzurufen!"
355
 
356
+ #: admin/includes/admin-category-sync.php:93
357
  msgid "Affected Categories when switching to seperate Event Categories"
358
  msgstr "Betroffene Kategorien beim Wechseln zu separaten Termin-Kategorien"
359
 
360
+ #: admin/includes/admin-category-sync.php:94
361
  msgid "Switch option to seperate Event Categories"
362
  msgstr "Ändere Einstellung zur Verwendung separater Termin-Kategorien"
363
 
364
+ #: admin/includes/admin-category-sync.php:95
365
  msgid ""
366
  "If you proceed, all post categories will be copied and all events will be "
367
  "re-assigned to this new categories."
368
  msgstr "Beim Fortsetzen werden alle Beitrags-Kategorien kopiert und alle Termine den neuen Kategorien zugeordnet."
369
 
370
+ #: admin/includes/admin-category-sync.php:96
371
  msgid ""
372
  "Afterwards the event categories are independent of the post categories."
373
  msgstr "Anschließend sind die Termin-Kategorien unabhängig von den Beitrags-Kategorien."
374
 
375
+ #: admin/includes/admin-category-sync.php:98
376
  msgid "Affected Categories when switching to use Post Categories for events"
377
  msgstr "Betroffene Kategorien beim Wechseln zur Verwendung von Beitrags-Kategorien für Termine"
378
 
379
+ #: admin/includes/admin-category-sync.php:99
380
  msgid "Switch option to use Post Categories for events"
381
  msgstr "Ändere Einstellung zur Verwendung der Beitrags-Kategorien für Termine"
382
 
383
+ #: admin/includes/admin-category-sync.php:100
384
  msgid ""
385
  "Take a detailed look at the affected categories above before you proceed! "
386
  "All seperate event categories will be deleted, this cannot be undone!"
387
  msgstr "Bitte vor dem Fortsetzen die oben angezeigten betroffenen Kategorien prüfen! Alle eigenständigen Termin-Kategorien werden gelöscht, dies kann nicht mehr rückgängig gemacht werden!"
388
 
389
+ #: admin/includes/admin-category-sync.php:103
390
  msgid "Event Categories: Synchronise with Post Categories"
391
  msgstr "Termin-Kategorien: Synchronisiere mit Beitrags-Kategorien"
392
 
393
+ #: admin/includes/admin-category-sync.php:104
394
  msgid "Start synchronisation"
395
  msgstr "Starte Synchronisation"
396
 
397
+ #: admin/includes/admin-category-sync.php:105
398
  msgid ""
399
  "If this option is enabled the above listed categories will be deleted and "
400
  "removed from the existing events!"
401
  msgstr "Wenn diese Einstellung aktiviert ist, werden alle oben angezeigten Kategorien gelöscht und aus den vorhandenen Terminen entfernt!"
402
 
403
+ #: admin/includes/admin-category-sync.php:120
404
  msgid "Categories to modify"
405
  msgstr "Kategorien, die geändert werden"
406
 
407
+ #: admin/includes/admin-category-sync.php:121
408
  msgid "Categories to add"
409
  msgstr "Kategorien, die hinzugefügt werden"
410
 
411
+ #: admin/includes/admin-category-sync.php:122
412
  msgid "Categories to delete (optional)"
413
  msgstr "Kategorien, die gelöscht werden (optional)"
414
 
415
+ #: admin/includes/admin-category-sync.php:123
416
  msgid "Delete not available post categories"
417
  msgstr "Lösche nicht verfügbare Beitrags-Kategorien"
418
 
419
+ #: admin/includes/admin-category-sync.php:126
420
  msgid "Categories with differences"
421
  msgstr "Kategorien, die unterschiedlich sind"
422
 
423
+ #: admin/includes/admin-category-sync.php:127
424
  msgid "Categories to add (optional)"
425
  msgstr "Kategorien, die hinzugefügt werden (optional)"
426
 
427
+ #: admin/includes/admin-category-sync.php:128
428
  msgid "Add not available post categories"
429
  msgstr "Ergänze nicht verfügbare Beitrags-Kategorien"
430
 
431
+ #: admin/includes/admin-category-sync.php:147
432
  msgid "none"
433
  msgstr "keine"
434
 
435
+ #: admin/includes/admin-import.php:91
436
  msgid "Import Events"
437
  msgstr "Importiere Termine"
438
 
439
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
440
+ #: admin/includes/admin-import.php:254
441
  msgid "Step"
442
  msgstr "Schritt"
443
 
444
+ #: admin/includes/admin-import.php:110
445
  msgid "Set import file and options"
446
  msgstr "Datei und Optionen zum Importieren wählen"
447
 
448
+ #: admin/includes/admin-import.php:113
449
  #, php-format
450
  msgid "Proceed with Step %1$s"
451
  msgstr "Weiter zu Schritt %1$s"
452
 
453
+ #: admin/includes/admin-import.php:116
454
  msgid "Example file"
455
  msgstr "Beispieldatei"
456
 
457
+ #: admin/includes/admin-import.php:117
458
  #, php-format
459
  msgid ""
460
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
461
  msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
462
 
463
+ #: admin/includes/admin-import.php:118
464
  msgid "Note"
465
  msgstr "Achtung"
466
 
467
+ #: admin/includes/admin-import.php:118
468
  msgid ""
469
  "Do not change the column header and separator line (first two lines), "
470
  "otherwise the import will fail!"
471
  msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
472
 
473
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
474
  msgid "Sorry, there has been an error."
475
  msgstr "Entschuldigung, ein Fehler ist aufgetreten."
476
 
477
+ #: admin/includes/admin-import.php:129
478
  msgid "The file does not exist, please try again."
479
  msgstr "Die Datei existiert nicht, bitte erneut versuchen."
480
 
481
+ #: admin/includes/admin-import.php:138
482
  msgid "The uploaded file does not have the required csv extension."
483
+ msgstr "Die hochgeladene Datei hat nicht das benötigte CSV-Dateiformat."
484
 
485
+ #: admin/includes/admin-import.php:150
486
  msgid "Events review and additonal category selection"
487
  msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
488
 
489
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
490
  msgid "Error"
491
+ msgstr "Fehler"
492
 
493
+ #: admin/includes/admin-import.php:156
494
  msgid "This CSV file cannot be imported"
495
+ msgstr "Die CSV Datei kann nicht importiert werden"
496
 
497
+ #: admin/includes/admin-import.php:167
498
  msgid "None of the events in this CSV file can be imported"
499
+ msgstr "Keiner der Termine in der CSV-Datei kann importiert werden"
500
 
501
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
502
  msgid "Warning"
503
+ msgstr "Warnung"
504
 
505
+ #: admin/includes/admin-import.php:172
506
  #, php-format
507
  msgid "There is %1$s event which cannot be imported"
508
  msgid_plural "There are %1$s events which cannot be imported"
509
+ msgstr[0] "%1$s Termin kann nicht importiert werden"
510
+ msgstr[1] "%1$s Termine können nicht importiert werden"
511
 
512
+ #: admin/includes/admin-import.php:184
513
  #, php-format
514
  msgid "CSV line %1$s"
515
+ msgstr "CSV Zeile %1$s"
516
 
517
+ #: admin/includes/admin-import.php:194
518
  msgid "You can still import all other events listed below."
519
+ msgstr "Alle anderen unten aufgeführte Termine können weiterhin importiert werden."
520
 
521
+ #: admin/includes/admin-import.php:213
522
  msgid ""
523
  "The following category slugs are not available and will be removed from the "
524
  "imported events"
525
+ msgstr "Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Ereignissen entfernt"
526
 
527
+ #: admin/includes/admin-import.php:219
528
  msgid ""
529
  "If you want to keep these categories, please create these Categories first "
530
  "and do the import afterwards."
531
  msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
532
 
533
+ #: admin/includes/admin-import.php:254
534
  msgid "Import result"
535
+ msgstr "Importerhebnis"
536
 
537
+ #: admin/includes/admin-import.php:257
538
  #, php-format
539
  msgid "Import of %1$s events successful!"
540
+ msgstr "Import von %1$s Terminen erfolgreich"
541
 
542
+ #: admin/includes/admin-import.php:258
543
  msgid "Go back to All Events"
544
  msgstr "Gehe zurück zu Alle Termine"
545
 
546
+ #: admin/includes/admin-import.php:261
547
  msgid "Errors during Import"
548
+ msgstr "Fehler während des Imports"
549
 
550
+ #: admin/includes/admin-import.php:269
551
  msgid "Event from CSV-line"
552
+ msgstr "Termin aus CSV-Zeile"
553
 
554
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
555
  #: includes/widget_helptexts.php:9
556
  msgid "Title"
557
  msgstr "Titel"
558
 
559
+ #: admin/includes/admin-import.php:282
560
  msgid "Start Date"
561
  msgstr "Start-Datum"
562
 
563
+ #: admin/includes/admin-import.php:283
564
  msgid "End Date"
565
  msgstr "End-Datum"
566
 
567
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
568
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
569
  msgid "Time"
570
  msgstr "Uhrzeit"
571
 
572
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
573
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
574
  #: includes/options_helptexts.php:76
575
  msgid "Location"
576
  msgstr "Ort"
577
 
578
+ #: admin/includes/admin-import.php:286
579
  msgid "Content"
580
  msgstr "Inhalt"
581
 
582
+ #: admin/includes/admin-import.php:287
583
  msgid "Category slugs"
584
  msgstr "Kategorie-Slugs"
585
 
586
+ #: admin/includes/admin-import.php:333
587
  msgid "Header line is missing or not correct!"
588
+ msgstr "Die Kopfzeile fehlt oder ist nicht richtig!"
589
 
590
+ #: admin/includes/admin-import.php:334
591
  #, php-format
592
  msgid ""
593
  "Have a look at the %1$sexample file%2$s to see the correct header line "
594
  "format."
595
+ msgstr "Das korrekte Format der Kopfzeile ist in der %1$sBeispieldatei%2$s ersichtlich."
596
 
597
+ #: admin/includes/admin-import.php:341
598
  #, php-format
599
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
600
+ msgstr "Falsche Anzahl von Einträgen in der Zeile (%1$s Einträge gefunden, 6-7 werden benötigt)"
601
 
602
+ #: admin/includes/admin-import.php:371
603
  msgid "Empty event title found"
604
+ msgstr "Leerer Termintitel gefunden"
605
 
606
+ #: admin/includes/admin-import.php:377
607
  msgid "Wrong date format for startdate"
608
+ msgstr "Falsches Datumsformat für das Start-Datum"
609
 
610
+ #: admin/includes/admin-import.php:385
611
  msgid "Wrong date format for enddate"
612
+ msgstr "Falsches Datumsformat für das Enddatum"
613
 
614
+ #: admin/includes/admin-import.php:439
615
  msgid "Import events"
616
  msgstr "Importiere die Termine"
617
 
618
+ #: admin/includes/admin-import.php:440
619
  msgid "Add additional categories"
620
  msgstr "Kategorien ergänzen"
621
 
622
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
623
  msgid "No events found"
624
  msgstr "Keine Termine gefunden"
625
 
626
+ #: admin/includes/admin-import.php:518
627
  msgid "Saving of event failed!"
628
+ msgstr "Speichern des Termins fehlgeschlagen!"
629
 
630
+ #: admin/includes/admin-main.php:108
631
  msgid "Event Date"
632
  msgstr "Termin-Datum"
633
 
634
+ #: admin/includes/admin-main.php:113
635
  msgid "Author"
636
  msgstr "Autor"
637
 
638
+ #: admin/includes/admin-main.php:182
639
  #, php-format
640
  msgid "Add a copy of %1$s"
641
  msgstr "Erstelle eine Kopie von %1$s"
642
 
643
+ #: admin/includes/admin-main.php:182
644
  msgid "Copy"
645
  msgstr "Kopieren"
646
 
647
+ #: admin/includes/admin-main.php:268
648
+ msgid "Import"
649
+ msgstr "Importieren"
650
+
651
+ #: admin/includes/admin-new.php:83
652
  msgid "Event data"
653
  msgstr "Termin-Daten"
654
 
655
+ #: admin/includes/admin-new.php:116
656
  msgid "Add Copy"
657
  msgstr "Kopie erstellen"
658
 
659
+ #: admin/includes/admin-new.php:124
660
  msgid "Date"
661
  msgstr "Datum"
662
 
663
+ #: admin/includes/admin-new.php:124
664
  msgid "required"
665
  msgstr "erforderlich"
666
 
667
+ #: admin/includes/admin-new.php:127
668
  msgid "Multi-Day Event"
669
  msgstr "Mehrtägiger Termin"
670
 
671
+ #: admin/includes/admin-new.php:147
672
  msgid "Event Title"
673
  msgstr "Termin-Titel"
674
 
675
+ #: admin/includes/admin-new.php:164
676
  msgid "Event Content"
677
  msgstr "Termin-Inhalt"
678
 
679
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
680
  msgid "Event updated."
681
  msgstr "Termin aktualisiert."
682
 
683
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
684
  msgid "View event"
685
  msgstr "Termin anzeigen"
686
 
687
+ #: admin/includes/admin-new.php:246
688
  #, php-format
689
  msgid "Event restored to revision from %1$s"
690
  msgstr "Termin wiederhergestellt mit Revision von %1$s"
691
 
692
+ #: admin/includes/admin-new.php:247
693
  msgid "Event published."
694
  msgstr "Termin veröffentlicht."
695
 
696
+ #: admin/includes/admin-new.php:248
697
+ msgid "Event saved."
698
+ msgstr "Termin gespeichert."
699
+
700
+ #: admin/includes/admin-new.php:249
701
  msgid "Event submitted."
702
  msgstr "Termin eingereicht."
703
 
704
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
705
+ #: admin/includes/admin-new.php:253
706
  msgid "Preview event"
707
  msgstr "Termin-Vorschau anzeigen"
708
 
709
+ #: admin/includes/admin-new.php:251
710
  #, php-format
711
  msgid "Event scheduled for: %1$s>"
712
  msgstr "Termin eingeplant für: %1$s"
713
 
714
+ #: admin/includes/admin-new.php:253
715
  msgid "Event draft updated."
716
  msgstr "Termin-Entwurf aktualisiert."
717
 
718
+ #: admin/includes/admin-settings.php:97
719
  msgid "Go to Event Category switching page"
720
  msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien"
721
 
722
+ #: admin/includes/admin-settings.php:111
723
  msgid "Frontend Settings"
724
  msgstr "Frontend Einstellungen"
725
 
726
+ #: admin/includes/admin-settings.php:112
727
  msgid "Admin Page Settings"
728
  msgstr "Admin-Seiten Einstellungen"
729
 
730
+ #: admin/includes/admin-settings.php:113
731
  msgid "Feed Settings"
732
  msgstr "Feed Einstellungen"
733
 
734
+ #: admin/includes/admin-settings.php:114
735
  msgid "Category Taxonomy"
736
  msgstr "Kategorie-Taxonomie"
737
 
739
  msgid "Year"
740
  msgstr "Jahr"
741
 
742
+ #: includes/daterange_helptexts.php:10
743
  msgid "A year can be specified in 4 digit format."
744
  msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
745
 
746
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
747
+ #: includes/daterange_helptexts.php:95
748
  #, php-format
749
  msgid ""
750
  "For a start date filter the first day of %1$s is used, in an end date the "
751
  "last day."
752
  msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
753
 
754
+ #: includes/daterange_helptexts.php:13
755
  msgid "the resulting year"
756
  msgstr "des entsprechenden Jahres"
757
 
758
+ #: includes/daterange_helptexts.php:19
759
  msgid "Month"
760
  msgstr "Monat"
761
 
762
+ #: includes/daterange_helptexts.php:21
763
  msgid ""
764
  "A month can be specified with 4 digits for the year and 2 digits for the "
765
  "month, seperated by a hyphen (-)."
766
  msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
767
 
768
+ #: includes/daterange_helptexts.php:24
769
  msgid "the resulting month"
770
  msgstr "des entsprechenden Monats"
771
 
772
+ #: includes/daterange_helptexts.php:30
773
  msgid "Day"
774
  msgstr "Tag"
775
 
776
+ #: includes/daterange_helptexts.php:31
777
  msgid ""
778
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
779
  " month and 2 digets for the day, seperated by hyphens (-)."
780
  msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
781
 
782
+ #: includes/daterange_helptexts.php:36
783
  msgid "Relative Year"
784
  msgstr "Relatives Jahr"
785
 
786
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
787
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
788
  #, php-format
789
  msgid "%1$s from now can be specified in the following notation: %2$s"
790
  msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
791
 
792
+ #: includes/daterange_helptexts.php:40
793
  msgid "A relative year"
794
  msgstr "Ein relatives Jahr"
795
 
796
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
797
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
798
  #, php-format
799
  msgid ""
800
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
801
  "%3$s or %4$s attached (see also the example below)."
802
  msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
803
 
804
+ #: includes/daterange_helptexts.php:46
805
  msgid "number of years"
806
  msgstr "Jahresanzahl"
807
 
808
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
809
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
810
  #, php-format
811
  msgid "Additionally the following values are available: %1$s"
812
  msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
813
 
814
+ #: includes/daterange_helptexts.php:58
815
  msgid "Relative Month"
816
  msgstr "Relativer Monat"
817
 
818
+ #: includes/daterange_helptexts.php:62
819
  msgid "A relative month"
820
  msgstr "Ein relativer Monat"
821
 
822
+ #: includes/daterange_helptexts.php:68
823
  msgid "number of months"
824
  msgstr "Monatsanzahl"
825
 
826
+ #: includes/daterange_helptexts.php:80
827
  msgid "Relative Week"
828
  msgstr "Relative Woche"
829
 
830
+ #: includes/daterange_helptexts.php:84
831
  msgid "A relative week"
832
  msgstr "Eine relative Woche"
833
 
834
+ #: includes/daterange_helptexts.php:90
835
  msgid "number of weeks"
836
  msgstr "Wochenanzahl"
837
 
838
+ #: includes/daterange_helptexts.php:96
839
  msgid "the resulting week"
840
  msgstr "der entsprechende Woche"
841
 
842
+ #: includes/daterange_helptexts.php:99
843
  #, php-format
844
  msgid ""
845
  "The first day of the week is depending on the option %1$s which can be found"
846
  " and changed in %2$s."
847
  msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
848
 
849
+ #: includes/daterange_helptexts.php:110
850
  msgid "Relative Day"
851
  msgstr "Relativer Tag"
852
 
853
+ #: includes/daterange_helptexts.php:114
854
  msgid "A relative day"
855
  msgstr "Ein relativer Tag"
856
 
857
+ #: includes/daterange_helptexts.php:120
858
  msgid "number of days"
859
  msgstr "Tagesanzahl"
860
 
861
+ #: includes/daterange_helptexts.php:134
862
  msgid "Date range"
863
  msgstr "Datumsbereich"
864
 
865
+ #: includes/daterange_helptexts.php:136
866
  msgid ""
867
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
868
+ "\t\t\tFor the start and end date any available date format can be used."
869
+ msgstr ""
870
 
871
+ #: includes/daterange_helptexts.php:147
872
  msgid "This value defines a range without any limits."
873
  msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
874
 
875
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
876
+ #: includes/daterange_helptexts.php:171
877
  #, php-format
878
  msgid "The corresponding date_range format is: %1$s"
879
  msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
880
 
881
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
882
  msgid "Upcoming"
883
  msgstr "Anstehend"
884
 
885
+ #: includes/daterange_helptexts.php:158
886
  msgid "This value defines a range from the actual day to the future."
887
  msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
888
 
889
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
890
  msgid "Past"
891
  msgstr "Beendet"
892
 
893
+ #: includes/daterange_helptexts.php:169
894
  msgid "This value defines a range from the past to the previous day."
895
  msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
896
 
897
+ #: includes/event.php:157
898
  msgid "No valid start date provided"
899
  msgstr "Kein gültiges Start-Datum angegeben"
900
 
901
+ #: includes/event.php:343 includes/event.php:345
902
+ #: includes/sc_event-list.php:330
903
  msgid "read more"
904
+ msgstr "Weiterlesen"
905
 
906
+ #: includes/events_post_type.php:83
907
  msgid "Events"
908
  msgstr "Termine"
909
 
910
+ #: includes/events_post_type.php:84
911
  msgid "Event"
912
  msgstr "Termin"
913
 
914
+ #: includes/events_post_type.php:85
915
  msgid "Add New"
916
  msgstr "Erstellen"
917
 
918
+ #: includes/events_post_type.php:86
919
  msgid "Add New Event"
920
  msgstr "Neuen Termin erstellen"
921
 
922
+ #: includes/events_post_type.php:87
923
  msgid "Edit Event"
924
  msgstr "Termin bearbeiten"
925
 
926
+ #: includes/events_post_type.php:88
927
  msgid "New Event"
928
  msgstr "Neuer Termin"
929
 
930
+ #: includes/events_post_type.php:89
931
  msgid "View Event"
932
  msgstr "Termin anzeigen"
933
 
934
+ #: includes/events_post_type.php:90
935
  msgid "View Events"
936
  msgstr "Termine anzeigen"
937
 
938
+ #: includes/events_post_type.php:91
939
  msgid "Search Events"
940
  msgstr "Termine durchsuchen"
941
 
942
+ #: includes/events_post_type.php:93
943
  msgid "No events found in Trash"
944
  msgstr "Keine Termine im Papierkorb gefunden"
945
 
946
+ #: includes/events_post_type.php:95
947
  msgid "All Events"
948
  msgstr "Alle Termine"
949
 
950
+ #: includes/events_post_type.php:96
951
  msgid "Event Archives"
952
  msgstr "Termin-Archiv"
953
 
954
+ #: includes/events_post_type.php:97
955
  msgid "Event Attributes"
956
  msgstr "Termin Attribute"
957
 
958
+ #: includes/events_post_type.php:98
959
  msgid "Insert into event"
960
  msgstr "Im Termin einfügen"
961
 
962
+ #: includes/events_post_type.php:99
963
  msgid "Uploaded to this event"
964
  msgstr "Zu diesem Termin hochgeladen"
965
 
966
+ #: includes/events_post_type.php:100
967
  msgid "Event List"
968
  msgstr "Event List"
969
 
970
+ #: includes/events_post_type.php:101
971
  msgid "Filter events list"
972
  msgstr "Termin-Liste filtern"
973
 
974
+ #: includes/events_post_type.php:102
975
  msgid "Events list navigation"
976
  msgstr "Termin-Listen-Navigation"
977
 
978
+ #: includes/events_post_type.php:103
979
  msgid "Events list"
980
  msgstr "Termin-Liste"
981
 
982
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
983
  msgid "Reset"
984
  msgstr "Zurücksetzen"
985
 
986
+ #: includes/filterbar.php:329
987
  msgid "All"
988
  msgstr "Alle"
989
 
990
+ #: includes/filterbar.php:332
991
  msgid "All Dates"
992
  msgstr "Alle Datumsbereiche"
993
 
1007
  msgid ""
1008
  "With this option the given date format for event start and end date in the "
1009
  "CSV file can be specified."
1010
+ msgstr "Mit dieser Option kann das vorgegebene Datumsformat für das Start- und Enddatum des Termins in der CSV-Datei festgelegt werden."
1011
 
1012
  #: includes/options_helptexts.php:23
1013
  #, php-format
1014
  msgid ""
1015
  "You can use the php date format options given in %1$s, the most important "
1016
  "ones are:"
1017
+ msgstr "Sie können die in %1$s angegebenen Optionen für das PHP-Datumsformat verwenden, die wichtigsten davon sind:"
1018
 
1019
  #: includes/options_helptexts.php:26
1020
  msgid "full year representation, with 4 digits"
1021
+ msgstr "vollständige Jahreszahl mit 4 Ziffern"
1022
 
1023
  #: includes/options_helptexts.php:27
1024
  msgid "numeric representation of a month, with leading zeros"
1025
+ msgstr "numerische Darstellung eines Monats aus 2 Ziffern mit führenden Nullen"
1026
 
1027
  #: includes/options_helptexts.php:28
1028
  msgid "day of the month, 2 digits with leading zeros"
1029
+ msgstr "Tag des Monats aus 2 Ziffern mit führenden Nullen"
1030
 
1031
  #: includes/options_helptexts.php:30
1032
  msgid ""
1033
  "If the date format in the CSV file does not correspond to the given format, "
1034
  "the import script tries to recognize the date format by itself."
1035
+ msgstr "Wenn das Datumsformat in der CSV-Datei nicht dem angegebenen Format entspricht, versucht das Import-Skript, das Datumsformat selbst zu erkennen."
1036
 
1037
  #: includes/options_helptexts.php:31
1038
  msgid ""
1039
  "But this can cause problems or result in wrong dates, so it is recommended "
1040
  "to specify the correct date format here."
1041
+ msgstr "Dies kann jedoch Probleme verursachen oder zu falschen Daten führen, weshalb empfohlen wird, hier das richtige Datumsformat anzugeben."
1042
 
1043
  #: includes/options_helptexts.php:32
1044
  msgid "Examples"
1045
+ msgstr "Beispiele"
1046
 
1047
  #: includes/options_helptexts.php:41
1048
  msgid "Text for no events"
1140
 
1141
  #: includes/options_helptexts.php:91
1142
  msgid "Events permalink slug"
1143
+ msgstr "Termin-Permalink-Slug"
1144
 
1145
  #: includes/options_helptexts.php:92
1146
  msgid ""
1147
  "With this option the slug for the events permalink URLs can be defined."
1148
+ msgstr "Mit dieser Option kann der Slug für die Permalink-URLs der Termine definiert werden."
1149
 
1150
  #: includes/options_helptexts.php:97
1151
  msgid "Text for \"Show content\""
1152
+ msgstr "Text für \"Inhalt anzeigen\""
1153
 
1154
  #: includes/options_helptexts.php:98
1155
  msgid ""
1156
  "With this option the displayed text for the link to show the event content "
1157
  "can be changed, when collapsing is enabled."
1158
+ msgstr "Mit dieser Option kann der angezeigte Text für den Link zur Anzeige des Termininhalts geändert werden, wenn das Ausklappen aktiviert ist."
1159
 
1160
  #: includes/options_helptexts.php:103
1161
  msgid "Text for \"Hide content\""
1162
+ msgstr "Text für \"Inhalt verbergen\""
1163
 
1164
  #: includes/options_helptexts.php:104
1165
  msgid ""
1166
  "With this option the displayed text for the link to hide the event content "
1167
  "can be changed, when collapsing is enabled."
1168
+ msgstr "Mit dieser Option kann der angezeigte Text für den Link zum Ausblenden des Termininhalts geändert werden, wenn das Ausklappen aktiviert ist."
1169
 
1170
  #: includes/options_helptexts.php:109
1171
  msgid "Disable CSS file"
1213
 
1214
  #: includes/options_helptexts.php:130
1215
  msgid "Enable support for the event RSS feed"
1216
+ msgstr "Aktiviere die Unterstützung des RSS-Termin-Feed"
1217
 
1218
  #: includes/options_helptexts.php:132
1219
  msgid ""
1220
  "This option activates the RSS feed for the events and adds a feed link in "
1221
  "the html head."
1222
+ msgstr "Diese Option aktiviert den RSS-Feed für die Termine und fügt einen Link zum Feed in den HTML-Kopf ein."
1223
 
1224
  #: includes/options_helptexts.php:133
1225
  msgid ""
1229
 
1230
  #: includes/options_helptexts.php:138
1231
  msgid "Enable iCal feed"
1232
+ msgstr "iCal-Feed aktivieren"
1233
 
1234
  #: includes/options_helptexts.php:139
1235
  msgid "Enable support for the event iCal feed"
1236
+ msgstr "Unterstützung für den iCal-Feed des Termins aktivieren"
1237
 
1238
  #: includes/options_helptexts.php:141
1239
  msgid "This option activates the iCal feed for events."
1240
+ msgstr "Diese Option aktiviert den iCal-Feed für Termine"
1241
 
1242
  #: includes/options_helptexts.php:142
1243
  msgid ""
1244
  "You have to enable this option if you want to use one of the iCal features."
1245
+ msgstr "Diese Option muss aktiviert werden, um die iCal-Funktionen nutzen zu können."
1246
 
1247
  #: includes/options_helptexts.php:147
1248
  msgid "Position of the RSS feed link"
1288
 
1289
  #: includes/options_helptexts.php:169
1290
  msgid "RSS feed name"
1291
+ msgstr "Name des RSS-Feed"
1292
 
1293
  #: includes/options_helptexts.php:171
1294
  #, php-format
1295
  msgid "This option sets the RSS feed name. The default value is %1$s."
1296
+ msgstr "Mit dieser Option wird der Name des RSS-Feeds festgelegt. Der Standardwert ist %1$s."
1297
 
1298
  #: includes/options_helptexts.php:172
1299
  #, php-format
1304
 
1305
  #: includes/options_helptexts.php:177
1306
  msgid "RSS feed Description"
1307
+ msgstr "RSS-Feed-Beschreibung"
1308
 
1309
  #: includes/options_helptexts.php:179
1310
  #, php-format
1311
  msgid "This options set the RSS feed description. The default value is %1$s."
1312
+ msgstr "Mit dieser Option wird die Beschreibung des RSS-Feeds festgelegt. Der Standardwert ist %1$s."
1313
 
1314
  #: includes/options_helptexts.php:180
1315
  msgid ""
1319
 
1320
  #: includes/options_helptexts.php:185
1321
  msgid "RSS feed events"
1322
+ msgstr "RSS-Feed Termine"
1323
 
1324
  #: includes/options_helptexts.php:186
1325
  msgid "Only show upcoming events in the RSS feed"
1326
+ msgstr "Nur anstehende Termine im RSS-Feed anzeigen"
1327
 
1328
  #: includes/options_helptexts.php:188
1329
  msgid ""
1330
  "If this option is enabled only the upcoming events are listed in the RSS "
1331
  "feed."
1332
+ msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im RSS-Feed aufgeführt."
1333
 
1334
  #: includes/options_helptexts.php:189 includes/options_helptexts.php:215
1335
  msgid "If disabled, all events (upcoming and past) will be listed."
1336
+ msgstr "Wenn diese Option deaktiviert ist, werden alle (anstehende und vergangene) Termine aufgelistet."
1337
 
1338
  #: includes/options_helptexts.php:194
1339
  msgid "RSS link text"
1340
+ msgstr "RSS-Linktext"
1341
 
1342
  #: includes/options_helptexts.php:196
1343
  msgid "This option sets the caption of the RSS feed link in the event list."
1344
+ msgstr "Mit dieser Option wird die Beschriftung des RSS-Feed-Links in der Terminliste festgelegt."
1345
 
1346
  #: includes/options_helptexts.php:197
1347
  msgid "Use an empty text to only show the rss image."
1348
+ msgstr "Einen leeren Text verwenden, um nur das RSS-Bild anzuzeigen."
1349
 
1350
  #: includes/options_helptexts.php:198
1351
  #, php-format
1352
  msgid ""
1353
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1354
  " RSS feed link."
1355
+ msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, wenn der RSS-Feed Link angezeigt werden soll."
1356
 
1357
  #: includes/options_helptexts.php:203
1358
  msgid "iCal feed name"
1359
+ msgstr "iCal-Feed Name"
1360
 
1361
  #: includes/options_helptexts.php:205
1362
  #, php-format
1363
  msgid "This option sets the iCal feed name. The default value is %1$s."
1364
+ msgstr "Diese Option legt den iCal-Feed Namen fest. Der Standardwert ist %1$s."
1365
 
1366
  #: includes/options_helptexts.php:206
1367
  #, php-format
1368
  msgid ""
1369
  "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with "
1370
  "permalinks enabled)."
1371
+ msgstr "Dieser Name wird in der iCal-Feed-URL verwendet (z. B. %1$s oder %2$s bei aktivierten Permalinks)."
1372
 
1373
  #: includes/options_helptexts.php:211
1374
  msgid "iCal feed events"
1375
+ msgstr "iCal-Feed Termine"
1376
 
1377
  #: includes/options_helptexts.php:212
1378
  msgid "Only show upcoming events in the iCal feed"
1379
+ msgstr "Nur anstehende Termine im iCal-Feed anzeigen"
1380
 
1381
  #: includes/options_helptexts.php:214
1382
  msgid ""
1383
  "If this option is enabled only the upcoming events are listed in the iCal "
1384
  "file."
1385
+ msgstr "Wenn diese Option aktiviert ist, werden nur die bevorstehenden Termine in der iCal-Datei aufgeführt."
1386
 
1387
  #: includes/options_helptexts.php:220
1388
  msgid "iCal link text"
1389
+ msgstr "iCal-Link Text"
1390
 
1391
  #: includes/options_helptexts.php:222
1392
  msgid "This option sets the iCal link text in the event list."
1393
+ msgstr "Mit dieser Option wird der iCal-Link-Text in der Terminliste festgelegt."
1394
 
1395
  #: includes/options_helptexts.php:223
1396
  msgid "Use an empty text to only show the iCal image."
1397
+ msgstr "Einen leeren Text verwenden, um nur das iCal-Bild anzuzeigen"
1398
 
1399
  #: includes/options_helptexts.php:224
1400
  #, php-format
1401
  msgid ""
1402
  "You have to set the shortcode attribute %1$s to %2$s if you want to show the"
1403
  " iCal feed link."
1404
+ msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, wenn der iCal-Feed-Link angezeigt werden soll."
1405
 
1406
  #: includes/options_helptexts.php:231
1407
  msgid "Event Category handling"
1408
+ msgstr "Umgang mit Terminkategorien"
1409
 
1410
  #: includes/options_helptexts.php:232
1411
  msgid "Use Post Categories"
1412
+ msgstr "Beitragskategorien verwenden"
1413
 
1414
  #: includes/options_helptexts.php:234
1415
  msgid ""
1416
  "Do not maintain seperate categories for the events, and use the existing "
1417
  "post categories instead."
1418
+ msgstr "Führe keine separaten Kategorien für die Termine ein, sondern verwende stattdessen die bestehenden Beitragskategorien."
1419
 
1420
  #: includes/options_helptexts.php:235
1421
  msgid "Attention"
1425
  msgid ""
1426
  "This option cannot be changed directly, but you can go to the Event Category"
1427
  " switching page from here."
1428
+ msgstr "Diese Option kann nicht direkt geändert werden, aber es ist möglich, von hier aus zur Seite für den Wechsel der Ereigniskategorie gehen."
1429
 
1430
+ #: includes/options.php:92
1431
  msgid "events"
1432
+ msgstr "Termine"
1433
 
1434
+ #: includes/options.php:96
1435
  msgid "Show content"
1436
+ msgstr "Inhalt anzeigen"
1437
 
1438
+ #: includes/options.php:100
1439
  msgid "Hide content"
1440
+ msgstr "Inhalt verbergen"
1441
 
1442
+ #: includes/sc_event-list_helptexts.php:20
1443
  msgid "event-id"
1444
  msgstr "Termin-ID"
1445
 
1446
+ #: includes/sc_event-list_helptexts.php:23
1447
  #, php-format
1448
  msgid ""
1449
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1450
  "%1$s) is provided for this attribute, directly the event-content view of "
1451
  "this event is shown."
1452
+ msgstr "Standardmäßig wird zunächst die Terminliste angezeigt. Wenn jedoch eine Termin-ID (z. B. %1$s) für dieses Attribut angegeben wird, wird direkt die Termin-Inhaltsansicht dieses Termins angezeigt."
1453
 
1454
+ #: includes/sc_event-list_helptexts.php:29
1455
+ #: includes/sc_event-list_helptexts.php:57
1456
  msgid "year"
1457
  msgstr "Jahr"
1458
 
1459
+ #: includes/sc_event-list_helptexts.php:31
1460
  msgid ""
1461
  "This attribute defines which events are initially shown. The default is to "
1462
  "show the upcoming events only."
1463
  msgstr "Dieses Attribut bestimmt die Termine, die anfänglich angezeigt werden. Der Standard ist nur die Anzeige der anstehenden Termine."
1464
 
1465
+ #: includes/sc_event-list_helptexts.php:33
1466
  #, php-format
1467
  msgid ""
1468
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1469
  "change the displayed event date range via the filterbar or url parameters."
1470
  msgstr "Durch die Angabe eines Jahres (z.B. %1$s) kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich den angezeigten Datumsbereich über die Filter-Leiste zu ändern."
1471
 
1472
+ #: includes/sc_event-list_helptexts.php:39
1473
  msgid "category slug"
1474
  msgstr "Kategorie-Slug"
1475
 
1476
+ #: includes/sc_event-list_helptexts.php:41
1477
  msgid ""
1478
  "This attribute defines the category of which events are initially shown. The"
1479
  " default is to show events of all categories."
1480
  msgstr "Dieses Attribut definiert die Kategorien, aus denen die Termine anfänglich angezeigt werden. Standardmäßig werden die Termine aus allen Kategorien angezeigt."
1481
 
1482
+ #: includes/sc_event-list_helptexts.php:42
1483
  msgid ""
1484
  "Provide a category slug to change this behavior. It is still possible to "
1485
  "change the displayed categories via the filterbar or url parameters."
1486
  msgstr "Durch die Angabe eine Kategorie-Slugs kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich die angezeigten Kategorien über die Filter-Leiste zu ändern."
1487
 
1488
+ #: includes/sc_event-list_helptexts.php:48
1489
  msgid "This attribute defines the initial order of the events."
1490
  msgstr "Dieses Attribut definiert die anfängliche Sortierung der Termine."
1491
 
1492
+ #: includes/sc_event-list_helptexts.php:50
1493
+ #, php-format
1494
  msgid ""
1495
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1496
  "in the opposite direction (from new to old)."
1497
+ msgstr ""
1498
 
1499
+ #: includes/sc_event-list_helptexts.php:60
1500
  #, php-format
1501
  msgid ""
1502
  "This attribute defines the dates and date ranges of which events are "
1503
  "displayed. The default is %1$s to show all events."
1504
  msgstr "Dieses Attribut definiert die Datumsbereiche, aus denen die Termine angezeigt werden. Standardmäßig wird %1$s verwendet um alle Termine anzuzeigen."
1505
 
1506
+ #: includes/sc_event-list_helptexts.php:64
1507
  #, php-format
1508
  msgid ""
1509
  "Filtered events according to %1$s value are not available in the event list."
1510
  msgstr "Gefilterte Termine aufgrund des Wertes von %1$s sind in der Termin-Liste nicht verfügbar."
1511
 
1512
+ #: includes/sc_event-list_helptexts.php:68
1513
  #, php-format
1514
  msgid ""
1515
  "You can find all available values with a description and examples in the "
1516
  "sections %1$s and %2$s below."
1517
  msgstr "Alle möglichen Angaben mit Beschreibungen und Beispielen sind unten stehend in den Abschnitten %1$s und %2$s zu finden."
1518
 
1519
+ #: includes/sc_event-list_helptexts.php:73
1520
  #, php-format
1521
  msgid "See %1$s description if you want to define complex filters."
1522
  msgstr "Siehe die Beschreibung zu %1$s um komplexe Filter zu definieren."
1523
 
1524
+ #: includes/sc_event-list_helptexts.php:79
1525
  msgid "category slugs"
1526
  msgstr "Kategorie-Slugs"
1527
 
1528
+ #: includes/sc_event-list_helptexts.php:82
1529
  msgid ""
1530
  "This attribute defines the category filter which filters the events to show."
1531
  " The default is $1$s or an empty string to show all events."
1532
  msgstr "Dieses Attribute definiert den Kategorien-Filter für die angezeigten Termine. Der Standard-Wert ist %1$s oder ein leerer String, mit dem alle Termine angezeigt werden."
1533
 
1534
+ #: includes/sc_event-list_helptexts.php:86
1535
  #, php-format
1536
  msgid ""
1537
  "Events with categories that doesn´t match %1$s are not shown in the event "
1538
  "list. They are also not available if a manual url parameter is added."
1539
  msgstr "Termine mit Kategorien, die nicht auf den Filter von %1$s passen, werden in der Termin-Liste nicht angezeigt. Diese sind auch nicht über die Angabe eines manuellen URL-Parameter verfügbar."
1540
 
1541
+ #: includes/sc_event-list_helptexts.php:90
1542
  #, php-format
1543
  msgid ""
1544
  "The filter is specified via the given category slugs. See %1$s description "
1545
  "if you want to define complex filters."
1546
  msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. "
1547
 
1548
+ #: includes/sc_event-list_helptexts.php:96
1549
+ #: includes/sc_event-list_helptexts.php:242
1550
+ #: includes/sc_event-list_helptexts.php:276
1551
+ #: includes/sc_event-list_helptexts.php:318
1552
  msgid "number"
1553
  msgstr "Nummer"
1554
 
1555
+ #: includes/sc_event-list_helptexts.php:99
1556
  #, php-format
1557
  msgid ""
1558
  "This attribute defines how many events should be displayed if upcoming "
1560
  "displayed."
1561
  msgstr "Dieses Attribut definiert wie viele Termine angezeigt werden sollen, wenn nur anstehende Termine angezeigt werden. Mit dem Standardwert %1$s werden alle Termine angezeigt."
1562
 
1563
+ #: includes/sc_event-list_helptexts.php:102
1564
  msgid ""
1565
  "Please not that in the actual version there is no pagination of the events "
1566
  "available, so the event list can be very long."
1567
  msgstr "Bitte beachte, dass in der aktuellen Version keine Pagination der Termine verfügbar ist, die Termin-Liste kann dadurch ziemlich lange sein."
1568
 
1569
+ #: includes/sc_event-list_helptexts.php:108
1570
  msgid ""
1571
  "This attribute defines if the filterbar should be displayed. The filterbar "
1572
  "allows the users to specify filters for the listed events."
1573
  msgstr "Dieses Attribut definiert, ob die Filter-Leiste angezeigt wird. Die Filter-Liste erlaubt es dem Anwender die Termin-Liste zu filtern."
1574
 
1575
+ #: includes/sc_event-list_helptexts.php:110
1576
  #, php-format
1577
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1578
  msgstr "Wähle %1$s um die Filter-Leiste immer zu verstecken und %2$s um sie immer anzuzeigen."
1579
 
1580
+ #: includes/sc_event-list_helptexts.php:115
1581
  #, php-format
1582
  msgid ""
1583
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1584
  " in the single event view."
1585
  msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht."
1586
 
1587
+ #: includes/sc_event-list_helptexts.php:125
1588
  #, php-format
1589
  msgid ""
1590
  "This attribute specifies the available items in the filterbar. This options "
1591
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1592
  msgstr "Dieses Attribut definiert die verfügbaren Elemente in der Filterleiste. Diese Option ist nur zutreffend, wenn die Filterbar angezeigt wird (siehe %1$s Attribut)."
1593
 
1594
+ #: includes/sc_event-list_helptexts.php:128
1595
  msgid ""
1596
  "Find below an overview of the available filterbar items and their options:"
1597
  msgstr "Anbei die Übersicht der verfügbaren Filterleisten-Elemente und deren Optionen:"
1598
 
1599
+ #: includes/sc_event-list_helptexts.php:132
1600
  msgid "filterbar item"
1601
  msgstr "Element"
1602
 
1603
+ #: includes/sc_event-list_helptexts.php:133
1604
+ #: includes/sc_event-list_helptexts.php:206
1605
  msgid "description"
1606
  msgstr "Beschreibung"
1607
 
1608
+ #: includes/sc_event-list_helptexts.php:134
1609
  msgid "item options"
1610
  msgstr "Element Optionen"
1611
 
1612
+ #: includes/sc_event-list_helptexts.php:135
1613
  msgid "option values"
1614
  msgstr "Options-Werte"
1615
 
1616
+ #: includes/sc_event-list_helptexts.php:136
1617
  msgid "default value"
1618
  msgstr "Standard-Wert"
1619
 
1620
+ #: includes/sc_event-list_helptexts.php:137
1621
  msgid "option description"
1622
  msgstr "Options-Beschreibung"
1623
 
1624
+ #: includes/sc_event-list_helptexts.php:141
1625
  msgid ""
1626
  "Show a list of all available years. Additional there are some special "
1627
  "entries available (see item options)."
1628
  msgstr "Zeigt eine Liste mit allen verfügbaren Jahren. Zusätzlich sind einige Spezial-Einträge verfügbar (siehe Element-Optionen)."
1629
 
1630
+ #: includes/sc_event-list_helptexts.php:145
1631
+ #: includes/sc_event-list_helptexts.php:156
1632
  msgid "Add an entry to show all events."
1633
  msgstr "Ergänzt einen Eintrag zur Anzeige aller Termine."
1634
 
1635
+ #: includes/sc_event-list_helptexts.php:147
1636
+ #: includes/sc_event-list_helptexts.php:158
1637
  msgid "Add an entry to show all upcoming events."
1638
  msgstr "Ergänzt einen Eintrag zum Anzeigen aller anstehenden Termine."
1639
 
1640
+ #: includes/sc_event-list_helptexts.php:148
1641
+ #: includes/sc_event-list_helptexts.php:159
1642
  msgid "Add an entry to show events in the past."
1643
  msgstr "Ergänzt einen Eintrag zum Anzeigen aller beendeter Termine."
1644
 
1645
+ #: includes/sc_event-list_helptexts.php:149
1646
  msgid "Set descending or ascending order of year entries."
1647
  msgstr "Setzt die Sortierreihenfolge der Jahres-Einträge."
1648
 
1649
+ #: includes/sc_event-list_helptexts.php:152
1650
  msgid "Show a list of all available months."
1651
  msgstr "Zeigt eine Liste mit allen verfügbaren Monaten."
1652
 
1653
+ #: includes/sc_event-list_helptexts.php:160
1654
  msgid "Set descending or ascending order of month entries."
1655
  msgstr "Setzt die Sortierungreihenfolge der Monats-Einträge."
1656
 
1657
+ #: includes/sc_event-list_helptexts.php:163
1658
  msgid "php date-formats"
1659
  msgstr "PHP Datumsformate"
1660
 
1661
+ #: includes/sc_event-list_helptexts.php:165
1662
  msgid "Set the displayed date format of the month entries."
1663
  msgstr "Setzt das angezeigte Datumsformat für die Monatseinträge."
1664
 
1665
+ #: includes/sc_event-list_helptexts.php:170
1666
  #, php-format
1667
  msgid ""
1668
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1670
  "order."
1671
  msgstr "Mit diesem Element können die Spezial-Einträge %1$s, %2$s und %3$s angezeigt werden. Es können alle oder nur einige der verfügbaren Werte verwendet werden, zudem kann die Sortierung beeinflusst werden."
1672
 
1673
+ #: includes/sc_event-list_helptexts.php:179
1674
  #, php-format
1675
  msgid ""
1676
  "Specifies the displayed values and their order. The items must be seperated "
1677
  "by %1$s."
1678
  msgstr "Definiert die angezeigten Werte und deren Reihenfolge. Die Einträge müssen durch ein %1$s getrennt werden."
1679
 
1680
+ #: includes/sc_event-list_helptexts.php:185
1681
  msgid "Show a list of all available categories."
1682
  msgstr "Zeigt eine Liste aller verfügbaren Kategorien."
1683
 
1684
+ #: includes/sc_event-list_helptexts.php:189
1685
  msgid "Add an entry to show events from all categories."
1686
  msgstr "Fügt zusätzlich einen Eintrag zum anzeigen aller Kategorien ein."
1687
 
1688
+ #: includes/sc_event-list_helptexts.php:193
1689
  msgid "A link to reset the eventlist filter to standard."
1690
  msgstr "Ein Link, um den Termin-Filter wieder auf den Standard zurückzusetzen."
1691
 
1692
+ #: includes/sc_event-list_helptexts.php:195
1693
  msgid "any text"
1694
  msgstr "beliebiger Text"
1695
 
1696
+ #: includes/sc_event-list_helptexts.php:197
1697
  msgid "Set the caption of the link."
1698
  msgstr "Setzt die Beschriftung des Links."
1699
 
1700
+ #: includes/sc_event-list_helptexts.php:201
1701
  msgid "Find below an overview of the available filterbar display options:"
1702
  msgstr "Anbei eine Übersicht über die verfügbaren Filterleisten-Ansichtsoptionen:"
1703
 
1704
+ #: includes/sc_event-list_helptexts.php:205
1705
  msgid "display option"
1706
  msgstr "Anzeige-Option"
1707
 
1708
+ #: includes/sc_event-list_helptexts.php:207
1709
  msgid "available for"
1710
  msgstr "verfügbar für"
1711
 
1712
+ #: includes/sc_event-list_helptexts.php:211
1713
  #, php-format
1714
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1715
  msgstr "Zeigt eine horizontale Liste mit einem Link zu jedem Element getrennt durch ein %1$s."
1716
 
1717
+ #: includes/sc_event-list_helptexts.php:216
1718
  msgid ""
1719
  "Shows a select box where an item can be choosen. After the selection of an "
1720
  "item the page is reloaded via javascript to show the filtered events."
1721
  msgstr "Zeigt eine Auswahlbox, aus der die Einträge gewählt werden können. Nach der Auswahl eines Eintrags wird die Seite über Javascript neu geladen, um die gefilterten Termin anzuzeigen."
1722
 
1723
+ #: includes/sc_event-list_helptexts.php:219
1724
  msgid "Shows a simple link which can be clicked."
1725
  msgstr "Zeigt einen einfachen Link, auf den geklickt werden kann."
1726
 
1727
+ #: includes/sc_event-list_helptexts.php:222
1728
  msgid "Find below some declaration examples with descriptions:"
1729
  msgstr "Nachfolgend werden einige Beispiele gezeigt und beschrieben:"
1730
 
1731
+ #: includes/sc_event-list_helptexts.php:225
1732
  #, php-format
1733
  msgid ""
1734
  "In this example you can see that the filterbar item and the used display "
1736
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1737
  msgstr "In diesem Beispiel ist ersichtlich, dass ein Filterleisten-Eintrag und die verwendete Ansichtsoption durch einen Unterstrich %1$s verbunden wird. Mehrere Filterleisten-Einträge können getrennt durch ein Komma %2$s definiert werden. Die Einträge werden linksseitig ausgerichtet."
1738
 
1739
+ #: includes/sc_event-list_helptexts.php:231
1740
  #, php-format
1741
  msgid ""
1742
  "In this example you can see that filterbar options can be added in brackets "
1743
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1744
  msgstr "In diesem Beispiel ist ersichtlich, dass Filterleisten-Optionen in Klammern im Format %1$s ergänzt werden können. Es können auch mehrere Optionen getrennt durch eine Pipe %2$s angegeben werden."
1745
 
1746
+ #: includes/sc_event-list_helptexts.php:232
1747
  msgid "option_name"
1748
  msgstr "options_name"
1749
 
1750
+ #: includes/sc_event-list_helptexts.php:232
1751
  msgid "value"
1752
  msgstr "wert"
1753
 
1754
+ #: includes/sc_event-list_helptexts.php:236
1755
  #, php-format
1756
  msgid ""
1757
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1760
  "left-aligned and the reset link will be on the right side."
1761
  msgstr "Die 2 Semikolons %1$s teilen die Filterleiste in 3 Bereiche. Der erste Bereich wird links ausgerichtet, der 2. mittig ausgerichtet und der 3. rechtsseitig ausgerichtet dargestellt. So werden in diesem Beispiel die 2 Auswahllisten linksseitig und der Zurücksetzen-Link rechtsseitig ausgerichtet."
1762
 
1763
+ #: includes/sc_event-list_helptexts.php:244
1764
+ #: includes/sc_event-list_helptexts.php:277
1765
  msgid ""
1766
  "This attribute specifies if the title should be truncated to the given "
1767
  "number of characters in the event list."
1768
  msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll."
1769
 
1770
+ #: includes/sc_event-list_helptexts.php:246
1771
+ #: includes/sc_event-list_helptexts.php:278
1772
  #, php-format
1773
  msgid ""
1774
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1775
  "is automatically truncated via css."
1776
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt."
1777
 
1778
+ #: includes/sc_event-list_helptexts.php:250
1779
+ #: includes/sc_event-list_helptexts.php:279
1780
+ #: includes/sc_event-list_helptexts.php:322
1781
  msgid "This attribute has no influence if only a single event is shown."
1782
  msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
1783
 
1784
+ #: includes/sc_event-list_helptexts.php:257
1785
  msgid ""
1786
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1787
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1788
+ "\t\t\t\t\tWith \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1789
  msgstr ""
1790
 
1791
+ #: includes/sc_event-list_helptexts.php:268
1792
  msgid ""
1793
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1794
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1795
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1799
  msgid ""
1800
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1801
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1802
+ "\t\t\t\t\tWith \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:297
1806
  msgid ""
1807
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1808
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1809
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1810
  msgstr ""
1811
 
1812
+ #: includes/sc_event-list_helptexts.php:308
1813
  msgid ""
1814
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1815
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1816
+ "\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"
1817
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1818
+ "\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)."
1819
  msgstr ""
1820
 
1821
+ #: includes/sc_event-list_helptexts.php:320
1822
  msgid ""
1823
  "This attribute specifies if the content should be truncate to the given "
1824
  "number of characters in the event list."
1825
+ msgstr "Dieses Attribut gibt an, ob der Inhalt in der Terminliste auf die angegebene Anzahl von Zeichen gekürzt werden soll."
1826
 
1827
+ #: includes/sc_event-list_helptexts.php:321
1828
  #, php-format
1829
  msgid "With the standard value %1$s the full text is displayed."
1830
  msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:329
1833
  msgid ""
1834
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1835
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1836
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1837
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1838
  msgstr ""
1839
 
1840
+ #: includes/sc_event-list_helptexts.php:341
1841
  msgid ""
1842
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1843
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1844
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1845
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1846
  msgstr ""
1847
 
1848
+ #: includes/sc_event-list_helptexts.php:353
1849
  msgid ""
1850
  "This attribute specifies if a rss feed link should be added.<br />\n"
1851
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1852
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1853
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1854
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1855
  msgstr ""
1856
 
1857
+ #: includes/sc_event-list_helptexts.php:366
1858
  msgid ""
1859
  "This attribute specifies if a ical feed link should be added.<br />\n"
1860
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1861
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1862
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1863
  msgstr ""
1864
 
1865
+ #: includes/sc_event-list_helptexts.php:378
1866
  msgid ""
1867
  "This attribute specifies the page or post url for event links.<br />\n"
1868
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1869
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1870
  msgstr ""
1871
 
1872
+ #: includes/sc_event-list_helptexts.php:391
1873
  msgid ""
1874
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1875
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1876
  msgstr ""
1877
 
1878
+ #: includes/sc_event-list.php:184
1879
  msgid "Sorry, the requested event is not available!"
1880
  msgstr "Entschuldigung, die der angeforderte Termin ist nicht verfügbar!"
1881
 
1882
+ #: includes/sc_event-list.php:193
1883
  msgid "Event Information:"
1884
  msgstr "Termin Informationen:"
1885
 
1886
+ #: includes/sc_event-list.php:437
1887
  msgid "Link to RSS feed"
1888
+ msgstr "Link zum RSS-Feed"
1889
 
1890
+ #: includes/sc_event-list.php:447
1891
  msgid "Link to iCal feed"
1892
+ msgstr "Link zum iCal-Feed"
1893
 
1894
  #: includes/widget_helptexts.php:11
1895
  msgid "This option defines the displayed title for the widget."
1920
  msgid "Truncate event title to"
1921
  msgstr "Kürze den Termin-Titel auf"
1922
 
1923
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1924
+ #: includes/widget_helptexts.php:103
1925
  msgid "characters"
1926
  msgstr "Buchstaben"
1927
 
1928
+ #: includes/widget_helptexts.php:39
1929
  msgid ""
1930
  "This option defines the number of displayed characters for the event title."
1931
  msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest."
1932
 
1933
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1934
  #, php-format
1935
  msgid ""
1936
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1937
  "automatically truncate the text via css."
1938
  msgstr "Setze den Wert auf %1$s, um den gesamten Text anzuzeigen, oder auf %2$s um den Text automatisch via CSS zu kürzen."
1939
 
1940
+ #: includes/widget_helptexts.php:51
1941
  msgid "Show event starttime"
1942
  msgstr "Zeige die Termin-Uhrzeit"
1943
 
1944
+ #: includes/widget_helptexts.php:53
1945
  msgid "This option defines if the event start time will be displayed."
1946
  msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
1947
 
1948
+ #: includes/widget_helptexts.php:60
1949
  msgid "Show event location"
1950
  msgstr "Zeige den Termin-Ort"
1951
 
1952
+ #: includes/widget_helptexts.php:62
1953
  msgid "This option defines if the event location will be displayed."
1954
  msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
1955
 
1956
+ #: includes/widget_helptexts.php:69
1957
  msgid "Truncate location to"
1958
  msgstr "Kürze den Ort auf"
1959
 
1960
+ #: includes/widget_helptexts.php:72
1961
  msgid ""
1962
  "If the event location is diplayed this option defines the number of "
1963
  "displayed characters."
1964
  msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
1965
 
1966
+ #: includes/widget_helptexts.php:84
1967
  msgid "Show event excerpt"
1968
+ msgstr "Terminauszug anzeigen"
1969
 
1970
+ #: includes/widget_helptexts.php:86
1971
  msgid "This option defines if the event excerpt will be displayed."
1972
+ msgstr "Diese Option legt fest, ob der Terminauszug angezeigt werden soll."
1973
 
1974
+ #: includes/widget_helptexts.php:93
1975
  msgid "Show event content"
1976
+ msgstr "Termin-Inhalt anzeigen"
1977
 
1978
+ #: includes/widget_helptexts.php:95
1979
  msgid "This option defines if the event content will be displayed."
1980
+ msgstr "Diese Option legt fest, ob der Inhalt des Termins angezeigt werden soll."
1981
 
1982
+ #: includes/widget_helptexts.php:102
1983
  msgid "Truncate content to"
1984
+ msgstr "Inhalt verkürzen auf"
1985
 
1986
+ #: includes/widget_helptexts.php:105
1987
  msgid ""
1988
  "If the event content are diplayed this option defines the number of diplayed"
1989
  " characters."
1990
+ msgstr "Wenn der Inhalt des Termins angezeigt wird, definiert diese Option die Anzahl der angezeigten Zeichen."
1991
 
1992
+ #: includes/widget_helptexts.php:107
1993
  #, php-format
1994
  msgid "Set this value to %1$s to view the full text."
1995
  msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt."
1996
 
1997
+ #: includes/widget_helptexts.php:116
1998
  msgid "URL to the linked Event List page"
1999
  msgstr "URL zur verlinkten Event List Seite"
2000
 
2001
+ #: includes/widget_helptexts.php:118
2002
  msgid ""
2003
  "This option defines the url to the linked Event List page. This option is "
2004
  "required if you want to use one of the options below."
2005
  msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
2006
 
2007
+ #: includes/widget_helptexts.php:125
2008
  msgid "Shortcode ID on linked page"
2009
  msgstr "Shortcode ID auf der verlinkten Seite"
2010
 
2011
+ #: includes/widget_helptexts.php:127
2012
  msgid ""
2013
  "This option defines the shortcode-id for the Event List on the linked page. "
2014
  "Normally the standard value 1 is correct, you only have to change it if you "
2015
  "use multiple event-list shortcodes on the linked page."
2016
  msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
2017
 
2018
+ #: includes/widget_helptexts.php:136
2019
  msgid ""
2020
  "With this option you can add a link to the single event page for every "
2021
  "displayed event. You have to specify the url to the page and the shortcode "
2022
  "id option if you want to use it."
2023
  msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
2024
 
2025
+ #: includes/widget_helptexts.php:145
2026
  msgid ""
2027
  "With this option you can add a link to the event-list page below the "
2028
  "diplayed events. You have to specify the url to page option if you want to "
2029
  "use it."
2030
  msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
2031
 
2032
+ #: includes/widget_helptexts.php:152
2033
  msgid "Caption for the link"
2034
  msgstr "Anzuzeigender Text für den Link"
2035
 
2036
+ #: includes/widget_helptexts.php:154
2037
  msgid ""
2038
  "This option defines the text for the link to the Event List page if the "
2039
  "approriate option is selected."
2040
  msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
2041
 
2042
+ #: includes/widget.php:38
2043
  msgid "With this widget a list of upcoming events can be displayed."
2044
  msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
2045
 
2046
+ #: includes/widget.php:43
2047
  msgid "Upcoming events"
2048
  msgstr "Anstehende Termine"
2049
 
2050
+ #: includes/widget.php:57
2051
  msgid "show events page"
2052
  msgstr "öffne den Kalender"
languages/event-list-es_AR.mo CHANGED
Binary file
languages/event-list-es_AR.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
12
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,117 +18,117 @@ msgstr ""
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:64
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
32
  msgid "Event List Settings"
33
  msgstr "Configuraciones del Listado de Eventos"
34
 
35
- #: admin/admin.php:116
36
  msgid "Settings"
37
  msgstr "Configuraciones"
38
 
39
- #: admin/admin.php:120 admin/includes/admin-about.php:43
40
  msgid "About Event List"
41
  msgstr "Sobre Listado de Eventos"
42
 
43
- #: admin/admin.php:120
44
  msgid "About"
45
  msgstr "Sobre"
46
 
47
- #: admin/admin.php:144
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
55
  msgid "General"
56
  msgstr ""
57
 
58
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
59
- #: admin/includes/admin-about.php:117
60
  msgid "Shortcode Attributes"
61
  msgstr ""
62
 
63
- #: admin/includes/admin-about.php:82
64
  msgid "Help and Instructions"
65
  msgstr "Ayuda e Instrucciones"
66
 
67
- #: admin/includes/admin-about.php:83
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
- #: admin/includes/admin-about.php:84
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades"
75
 
76
- #: admin/includes/admin-about.php:85
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio"
80
 
81
- #: admin/includes/admin-about.php:86
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral"
85
 
86
- #: admin/includes/admin-about.php:87
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr "El evento listado, y su estilo, pueden ser modificados mediante las configuraciones disponibles del widget, como así tambien los atributos disponibles para su atajo."
91
 
92
- #: admin/includes/admin-about.php:88
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
- #: admin/includes/admin-about.php:89
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información."
102
 
103
- #: admin/includes/admin-about.php:90
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
111
  msgid "Add links to the single events"
112
  msgstr ""
113
 
114
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
115
  msgid "Add a link to the Event List page"
116
  msgstr ""
117
 
118
- #: admin/includes/admin-about.php:91
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
- #: admin/includes/admin-about.php:92
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
- #: admin/includes/admin-about.php:93
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -136,592 +136,596 @@ msgid ""
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
- #: admin/includes/admin-about.php:94
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
- #: admin/includes/admin-about.php:96
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
- #: admin/includes/admin-about.php:96
152
  msgid "Settings page"
153
  msgstr ""
154
 
155
- #: admin/includes/admin-about.php:103
156
  msgid "About the plugin author"
157
  msgstr ""
158
 
159
- #: admin/includes/admin-about.php:105
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
- #: admin/includes/admin-about.php:105
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
- #: admin/includes/admin-about.php:106
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
- #: admin/includes/admin-about.php:106
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
- #: admin/includes/admin-about.php:107
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
185
- #: admin/includes/admin-about.php:110
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
- #: admin/includes/admin-about.php:119
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr ""
195
 
196
- #: admin/includes/admin-about.php:120
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr ""
202
 
203
- #: admin/includes/admin-about.php:122
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr ""
208
 
209
- #: admin/includes/admin-about.php:137
210
  msgid "Attribute name"
211
  msgstr ""
212
 
213
- #: admin/includes/admin-about.php:138
214
  msgid "Value options"
215
  msgstr ""
216
 
217
- #: admin/includes/admin-about.php:139
218
  msgid "Default value"
219
  msgstr ""
220
 
221
- #: admin/includes/admin-about.php:140
222
  msgid "Description"
223
  msgstr "Descripción"
224
 
225
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
226
- #: includes/sc_event-list_helptexts.php:42
227
  msgid "Filter Syntax"
228
  msgstr ""
229
 
230
- #: admin/includes/admin-about.php:160
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr ""
235
 
236
- #: admin/includes/admin-about.php:161
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr ""
242
 
243
- #: admin/includes/admin-about.php:161
244
  msgid "AND"
245
  msgstr ""
246
 
247
- #: admin/includes/admin-about.php:161
248
  msgid "OR"
249
  msgstr ""
250
 
251
- #: admin/includes/admin-about.php:161
252
  msgid "or"
253
  msgstr ""
254
 
255
- #: admin/includes/admin-about.php:161
256
  msgid "and"
257
  msgstr ""
258
 
259
- #: admin/includes/admin-about.php:162
260
  msgid "Examples for cat filters:"
261
  msgstr ""
262
 
263
- #: admin/includes/admin-about.php:163
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr ""
267
 
268
- #: admin/includes/admin-about.php:164
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr ""
272
 
273
- #: admin/includes/admin-about.php:165
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr ""
279
 
280
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
281
  msgid "Available Date Formats"
282
  msgstr ""
283
 
284
- #: admin/includes/admin-about.php:172
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr ""
287
 
288
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
289
  msgid "Available Date Range Formats"
290
  msgstr ""
291
 
292
- #: admin/includes/admin-about.php:182
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr ""
295
 
296
- #: admin/includes/admin-about.php:195
297
  msgid "Value"
298
  msgstr ""
299
 
300
- #: admin/includes/admin-about.php:199
301
  msgid "Example"
302
  msgstr ""
303
 
304
- #: admin/includes/admin-categories.php:54
305
  msgid "Synchronize with post categories"
306
  msgstr ""
307
 
308
- #: admin/includes/admin-categories.php:63
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
- #: admin/includes/admin-categories.php:64
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
- #: admin/includes/admin-categories.php:65
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
- #: admin/includes/admin-categories.php:67
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
- #: admin/includes/admin-categories.php:68
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
- #: admin/includes/admin-categories.php:69
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
- #: admin/includes/admin-categories.php:72
339
  msgid "An Error occured during the category sync"
340
  msgstr ""
341
 
342
- #: admin/includes/admin-categories.php:75
343
  msgid "Category sync finished"
344
  msgstr ""
345
 
346
- #: admin/includes/admin-category-sync.php:54
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr ""
349
 
350
- #: admin/includes/admin-category-sync.php:70
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
- #: admin/includes/admin-category-sync.php:71
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
- #: admin/includes/admin-category-sync.php:72
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
- #: admin/includes/admin-category-sync.php:73
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
- #: admin/includes/admin-category-sync.php:75
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
- #: admin/includes/admin-category-sync.php:76
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
- #: admin/includes/admin-category-sync.php:77
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
- #: admin/includes/admin-category-sync.php:79
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr ""
386
 
387
- #: admin/includes/admin-category-sync.php:80
388
  msgid "Start synchronisation"
389
  msgstr ""
390
 
391
- #: admin/includes/admin-category-sync.php:81
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
- #: admin/includes/admin-category-sync.php:96
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
- #: admin/includes/admin-category-sync.php:97
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
- #: admin/includes/admin-category-sync.php:98
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
- #: admin/includes/admin-category-sync.php:99
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
- #: admin/includes/admin-category-sync.php:102
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
- #: admin/includes/admin-category-sync.php:103
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
- #: admin/includes/admin-category-sync.php:104
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
- #: admin/includes/admin-category-sync.php:123
426
  msgid "none"
427
  msgstr ""
428
 
429
- #: admin/includes/admin-import.php:58
430
  msgid "Import Events"
431
  msgstr "Importar Eventos"
432
 
433
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
434
- #: admin/includes/admin-import.php:220
435
  msgid "Step"
436
  msgstr ""
437
 
438
- #: admin/includes/admin-import.php:79
439
  msgid "Set import file and options"
440
  msgstr ""
441
 
442
- #: admin/includes/admin-import.php:82
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
- #: admin/includes/admin-import.php:85
448
  msgid "Example file"
449
  msgstr ""
450
 
451
- #: admin/includes/admin-import.php:86
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr ""
456
 
457
- #: admin/includes/admin-import.php:87
458
  msgid "Note"
459
  msgstr ""
460
 
461
- #: admin/includes/admin-import.php:87
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr ""
466
 
467
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
468
  msgid "Sorry, there has been an error."
469
  msgstr ""
470
 
471
- #: admin/includes/admin-import.php:96
472
  msgid "The file does not exist, please try again."
473
  msgstr ""
474
 
475
- #: admin/includes/admin-import.php:104
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
- #: admin/includes/admin-import.php:116
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
484
  msgid "Error"
485
  msgstr ""
486
 
487
- #: admin/includes/admin-import.php:122
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
- #: admin/includes/admin-import.php:133
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
496
  msgid "Warning"
497
  msgstr ""
498
 
499
- #: admin/includes/admin-import.php:138
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
- #: admin/includes/admin-import.php:150
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
- #: admin/includes/admin-import.php:160
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
- #: admin/includes/admin-import.php:179
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
- #: admin/includes/admin-import.php:185
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
- #: admin/includes/admin-import.php:220
528
  msgid "Import result"
529
  msgstr ""
530
 
531
- #: admin/includes/admin-import.php:223
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
- #: admin/includes/admin-import.php:224
537
  msgid "Go back to All Events"
538
  msgstr ""
539
 
540
- #: admin/includes/admin-import.php:227
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
- #: admin/includes/admin-import.php:235
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Título"
552
 
553
- #: admin/includes/admin-import.php:248
554
  msgid "Start Date"
555
  msgstr ""
556
 
557
- #: admin/includes/admin-import.php:249
558
  msgid "End Date"
559
  msgstr ""
560
 
561
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr ""
565
 
566
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
567
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr ""
571
 
572
- #: admin/includes/admin-import.php:252
573
  msgid "Content"
574
  msgstr ""
575
 
576
- #: admin/includes/admin-import.php:253
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
- #: admin/includes/admin-import.php:297
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
- #: admin/includes/admin-import.php:298
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
- #: admin/includes/admin-import.php:305
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
- #: admin/includes/admin-import.php:334
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
- #: admin/includes/admin-import.php:340
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
- #: admin/includes/admin-import.php:348
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
- #: admin/includes/admin-import.php:401
609
  msgid "Import events"
610
  msgstr ""
611
 
612
- #: admin/includes/admin-import.php:402
613
  msgid "Add additional categories"
614
  msgstr ""
615
 
616
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
617
- msgid "Import"
618
- msgstr "Importar"
619
-
620
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
621
  msgid "No events found"
622
  msgstr ""
623
 
624
- #: admin/includes/admin-import.php:473
625
  msgid "Saving of event failed!"
626
  msgstr ""
627
 
628
- #: admin/includes/admin-main.php:76
629
  msgid "Event Date"
630
  msgstr ""
631
 
632
- #: admin/includes/admin-main.php:80
633
  msgid "Author"
634
  msgstr ""
635
 
636
- #: admin/includes/admin-main.php:148
637
  #, php-format
638
  msgid "Add a copy of %1$s"
639
  msgstr ""
640
 
641
- #: admin/includes/admin-main.php:148
642
  msgid "Copy"
643
  msgstr ""
644
 
645
- #: admin/includes/admin-new.php:58
 
 
 
 
646
  msgid "Event data"
647
  msgstr ""
648
 
649
- #: admin/includes/admin-new.php:90
650
  msgid "Add Copy"
651
  msgstr ""
652
 
653
- #: admin/includes/admin-new.php:98
654
  msgid "Date"
655
  msgstr ""
656
 
657
- #: admin/includes/admin-new.php:98
658
  msgid "required"
659
  msgstr ""
660
 
661
- #: admin/includes/admin-new.php:101
662
  msgid "Multi-Day Event"
663
  msgstr ""
664
 
665
- #: admin/includes/admin-new.php:121
666
  msgid "Event Title"
667
  msgstr ""
668
 
669
- #: admin/includes/admin-new.php:137
670
  msgid "Event Content"
671
  msgstr ""
672
 
673
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
674
  msgid "Event updated."
675
  msgstr ""
676
 
677
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
678
  msgid "View event"
679
  msgstr ""
680
 
681
- #: admin/includes/admin-new.php:204
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
- #: admin/includes/admin-new.php:205
687
  msgid "Event published."
688
  msgstr ""
689
 
690
- #: admin/includes/admin-new.php:207
 
 
 
 
691
  msgid "Event submitted."
692
  msgstr ""
693
 
694
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
695
- #: admin/includes/admin-new.php:210
696
  msgid "Preview event"
697
  msgstr ""
698
 
699
- #: admin/includes/admin-new.php:208
700
  #, php-format
701
  msgid "Event scheduled for: %1$s>"
702
  msgstr ""
703
 
704
- #: admin/includes/admin-new.php:210
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
- #: admin/includes/admin-settings.php:79
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:93
713
  msgid "Frontend Settings"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:94
717
  msgid "Admin Page Settings"
718
  msgstr ""
719
 
720
- #: admin/includes/admin-settings.php:95
721
  msgid "Feed Settings"
722
  msgstr ""
723
 
724
- #: admin/includes/admin-settings.php:96
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -729,255 +733,255 @@ msgstr ""
729
  msgid "Year"
730
  msgstr ""
731
 
732
- #: includes/daterange_helptexts.php:9
733
  msgid "A year can be specified in 4 digit format."
734
  msgstr ""
735
 
736
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
737
- #: includes/daterange_helptexts.php:47
738
  #, php-format
739
  msgid ""
740
  "For a start date filter the first day of %1$s is used, in an end date the "
741
  "last day."
742
  msgstr ""
743
 
744
- #: includes/daterange_helptexts.php:10
745
  msgid "the resulting year"
746
  msgstr ""
747
 
748
- #: includes/daterange_helptexts.php:15
749
  msgid "Month"
750
  msgstr ""
751
 
752
- #: includes/daterange_helptexts.php:16
753
  msgid ""
754
  "A month can be specified with 4 digits for the year and 2 digits for the "
755
  "month, seperated by a hyphen (-)."
756
  msgstr ""
757
 
758
- #: includes/daterange_helptexts.php:17
759
  msgid "the resulting month"
760
  msgstr ""
761
 
762
- #: includes/daterange_helptexts.php:22
763
  msgid "Day"
764
  msgstr ""
765
 
766
- #: includes/daterange_helptexts.php:23
767
  msgid ""
768
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
769
  " month and 2 digets for the day, seperated by hyphens (-)."
770
  msgstr ""
771
 
772
- #: includes/daterange_helptexts.php:28
773
  msgid "Relative Year"
774
  msgstr ""
775
 
776
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
777
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
778
  #, php-format
779
  msgid "%1$s from now can be specified in the following notation: %2$s"
780
  msgstr ""
781
 
782
- #: includes/daterange_helptexts.php:29
783
  msgid "A relative year"
784
  msgstr ""
785
 
786
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
787
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
788
  #, php-format
789
  msgid ""
790
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
791
  "%3$s or %4$s attached (see also the example below)."
792
  msgstr ""
793
 
794
- #: includes/daterange_helptexts.php:30
795
  msgid "number of years"
796
  msgstr ""
797
 
798
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
799
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
800
  #, php-format
801
  msgid "Additionally the following values are available: %1$s"
802
  msgstr ""
803
 
804
- #: includes/daterange_helptexts.php:36
805
  msgid "Relative Month"
806
  msgstr ""
807
 
808
- #: includes/daterange_helptexts.php:37
809
  msgid "A relative month"
810
  msgstr ""
811
 
812
- #: includes/daterange_helptexts.php:38
813
  msgid "number of months"
814
  msgstr ""
815
 
816
- #: includes/daterange_helptexts.php:44
817
  msgid "Relative Week"
818
  msgstr ""
819
 
820
- #: includes/daterange_helptexts.php:45
821
  msgid "A relative week"
822
  msgstr ""
823
 
824
- #: includes/daterange_helptexts.php:46
825
  msgid "number of weeks"
826
  msgstr ""
827
 
828
- #: includes/daterange_helptexts.php:47
829
  msgid "the resulting week"
830
  msgstr ""
831
 
832
- #: includes/daterange_helptexts.php:48
833
  #, php-format
834
  msgid ""
835
  "The first day of the week is depending on the option %1$s which can be found"
836
  " and changed in %2$s."
837
  msgstr ""
838
 
839
- #: includes/daterange_helptexts.php:54
840
  msgid "Relative Day"
841
  msgstr ""
842
 
843
- #: includes/daterange_helptexts.php:55
844
  msgid "A relative day"
845
  msgstr ""
846
 
847
- #: includes/daterange_helptexts.php:56
848
  msgid "number of days"
849
  msgstr ""
850
 
851
- #: includes/daterange_helptexts.php:64
852
  msgid "Date range"
853
  msgstr ""
854
 
855
- #: includes/daterange_helptexts.php:66
856
  msgid ""
857
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
858
- "\t For the start and end date any available date format can be used."
859
  msgstr ""
860
 
861
- #: includes/daterange_helptexts.php:75
862
  msgid "This value defines a range without any limits."
863
  msgstr ""
864
 
865
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
866
- #: includes/daterange_helptexts.php:90
867
  #, php-format
868
  msgid "The corresponding date_range format is: %1$s"
869
  msgstr ""
870
 
871
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
872
  msgid "Upcoming"
873
  msgstr "Próximos"
874
 
875
- #: includes/daterange_helptexts.php:82
876
  msgid "This value defines a range from the actual day to the future."
877
  msgstr ""
878
 
879
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
880
  msgid "Past"
881
  msgstr "Pasado"
882
 
883
- #: includes/daterange_helptexts.php:89
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:124
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
891
- #: includes/event.php:299 includes/event.php:301
892
- #: includes/sc_event-list.php:298
893
  msgid "read more"
894
  msgstr ""
895
 
896
- #: includes/events_post_type.php:69
897
  msgid "Events"
898
  msgstr "Eventos"
899
 
900
- #: includes/events_post_type.php:70
901
  msgid "Event"
902
  msgstr ""
903
 
904
- #: includes/events_post_type.php:71
905
  msgid "Add New"
906
  msgstr "Agregar Nuevo"
907
 
908
- #: includes/events_post_type.php:72
909
  msgid "Add New Event"
910
  msgstr "Agregar un Nuevo Evento"
911
 
912
- #: includes/events_post_type.php:73
913
  msgid "Edit Event"
914
  msgstr "Editar Evento"
915
 
916
- #: includes/events_post_type.php:74
917
  msgid "New Event"
918
  msgstr ""
919
 
920
- #: includes/events_post_type.php:75
921
  msgid "View Event"
922
  msgstr ""
923
 
924
- #: includes/events_post_type.php:76
925
  msgid "View Events"
926
  msgstr ""
927
 
928
- #: includes/events_post_type.php:77
929
  msgid "Search Events"
930
  msgstr ""
931
 
932
- #: includes/events_post_type.php:79
933
  msgid "No events found in Trash"
934
  msgstr ""
935
 
936
- #: includes/events_post_type.php:81
937
  msgid "All Events"
938
  msgstr "Todos los Eventos"
939
 
940
- #: includes/events_post_type.php:82
941
  msgid "Event Archives"
942
  msgstr ""
943
 
944
- #: includes/events_post_type.php:83
945
  msgid "Event Attributes"
946
  msgstr ""
947
 
948
- #: includes/events_post_type.php:84
949
  msgid "Insert into event"
950
  msgstr ""
951
 
952
- #: includes/events_post_type.php:85
953
  msgid "Uploaded to this event"
954
  msgstr ""
955
 
956
- #: includes/events_post_type.php:86
957
  msgid "Event List"
958
  msgstr "Listado de Eventos"
959
 
960
- #: includes/events_post_type.php:87
961
  msgid "Filter events list"
962
  msgstr ""
963
 
964
- #: includes/events_post_type.php:88
965
  msgid "Events list navigation"
966
  msgstr ""
967
 
968
- #: includes/events_post_type.php:89
969
  msgid "Events list"
970
  msgstr ""
971
 
972
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
973
  msgid "Reset"
974
  msgstr ""
975
 
976
- #: includes/filterbar.php:296
977
  msgid "All"
978
  msgstr "Todos"
979
 
980
- #: includes/filterbar.php:298
981
  msgid "All Dates"
982
  msgstr ""
983
 
@@ -1417,23 +1421,23 @@ msgid ""
1417
  " switching page from here."
1418
  msgstr ""
1419
 
1420
- #: includes/options.php:73
1421
  msgid "events"
1422
  msgstr ""
1423
 
1424
- #: includes/options.php:77
1425
  msgid "Show content"
1426
  msgstr ""
1427
 
1428
- #: includes/options.php:81
1429
  msgid "Hide content"
1430
  msgstr ""
1431
 
1432
- #: includes/sc_event-list_helptexts.php:8
1433
  msgid "event-id"
1434
  msgstr ""
1435
 
1436
- #: includes/sc_event-list_helptexts.php:9
1437
  #, php-format
1438
  msgid ""
1439
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1441,107 +1445,108 @@ msgid ""
1441
  "this event is shown."
1442
  msgstr ""
1443
 
1444
- #: includes/sc_event-list_helptexts.php:13
1445
- #: includes/sc_event-list_helptexts.php:31
1446
  msgid "year"
1447
  msgstr ""
1448
 
1449
- #: includes/sc_event-list_helptexts.php:14
1450
  msgid ""
1451
  "This attribute defines which events are initially shown. The default is to "
1452
  "show the upcoming events only."
1453
  msgstr ""
1454
 
1455
- #: includes/sc_event-list_helptexts.php:15
1456
  #, php-format
1457
  msgid ""
1458
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1459
  "change the displayed event date range via the filterbar or url parameters."
1460
  msgstr ""
1461
 
1462
- #: includes/sc_event-list_helptexts.php:19
1463
  msgid "category slug"
1464
  msgstr ""
1465
 
1466
- #: includes/sc_event-list_helptexts.php:20
1467
  msgid ""
1468
  "This attribute defines the category of which events are initially shown. The"
1469
  " default is to show events of all categories."
1470
  msgstr ""
1471
 
1472
- #: includes/sc_event-list_helptexts.php:21
1473
  msgid ""
1474
  "Provide a category slug to change this behavior. It is still possible to "
1475
  "change the displayed categories via the filterbar or url parameters."
1476
  msgstr ""
1477
 
1478
- #: includes/sc_event-list_helptexts.php:26
1479
  msgid "This attribute defines the initial order of the events."
1480
  msgstr ""
1481
 
1482
- #: includes/sc_event-list_helptexts.php:27
 
1483
  msgid ""
1484
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1485
  "in the opposite direction (from new to old)."
1486
  msgstr ""
1487
 
1488
- #: includes/sc_event-list_helptexts.php:32
1489
  #, php-format
1490
  msgid ""
1491
  "This attribute defines the dates and date ranges of which events are "
1492
  "displayed. The default is %1$s to show all events."
1493
  msgstr ""
1494
 
1495
- #: includes/sc_event-list_helptexts.php:33
1496
  #, php-format
1497
  msgid ""
1498
  "Filtered events according to %1$s value are not available in the event list."
1499
  msgstr ""
1500
 
1501
- #: includes/sc_event-list_helptexts.php:34
1502
  #, php-format
1503
  msgid ""
1504
  "You can find all available values with a description and examples in the "
1505
  "sections %1$s and %2$s below."
1506
  msgstr ""
1507
 
1508
- #: includes/sc_event-list_helptexts.php:35
1509
  #, php-format
1510
  msgid "See %1$s description if you want to define complex filters."
1511
  msgstr ""
1512
 
1513
- #: includes/sc_event-list_helptexts.php:39
1514
  msgid "category slugs"
1515
  msgstr ""
1516
 
1517
- #: includes/sc_event-list_helptexts.php:40
1518
  msgid ""
1519
  "This attribute defines the category filter which filters the events to show."
1520
  " The default is $1$s or an empty string to show all events."
1521
  msgstr ""
1522
 
1523
- #: includes/sc_event-list_helptexts.php:41
1524
  #, php-format
1525
  msgid ""
1526
  "Events with categories that doesn´t match %1$s are not shown in the event "
1527
  "list. They are also not available if a manual url parameter is added."
1528
  msgstr ""
1529
 
1530
- #: includes/sc_event-list_helptexts.php:42
1531
  #, php-format
1532
  msgid ""
1533
  "The filter is specified via the given category slugs. See %1$s description "
1534
  "if you want to define complex filters."
1535
  msgstr ""
1536
 
1537
- #: includes/sc_event-list_helptexts.php:46
1538
- #: includes/sc_event-list_helptexts.php:111
1539
- #: includes/sc_event-list_helptexts.php:138
1540
- #: includes/sc_event-list_helptexts.php:177
1541
  msgid "number"
1542
  msgstr ""
1543
 
1544
- #: includes/sc_event-list_helptexts.php:47
1545
  #, php-format
1546
  msgid ""
1547
  "This attribute defines how many events should be displayed if upcoming "
@@ -1549,109 +1554,109 @@ msgid ""
1549
  "displayed."
1550
  msgstr ""
1551
 
1552
- #: includes/sc_event-list_helptexts.php:48
1553
  msgid ""
1554
  "Please not that in the actual version there is no pagination of the events "
1555
  "available, so the event list can be very long."
1556
  msgstr ""
1557
 
1558
- #: includes/sc_event-list_helptexts.php:53
1559
  msgid ""
1560
  "This attribute defines if the filterbar should be displayed. The filterbar "
1561
  "allows the users to specify filters for the listed events."
1562
  msgstr ""
1563
 
1564
- #: includes/sc_event-list_helptexts.php:54
1565
  #, php-format
1566
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1567
  msgstr ""
1568
 
1569
- #: includes/sc_event-list_helptexts.php:55
1570
  #, php-format
1571
  msgid ""
1572
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1573
  " in the single event view."
1574
  msgstr ""
1575
 
1576
- #: includes/sc_event-list_helptexts.php:60
1577
  #, php-format
1578
  msgid ""
1579
  "This attribute specifies the available items in the filterbar. This options "
1580
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1581
  msgstr ""
1582
 
1583
- #: includes/sc_event-list_helptexts.php:61
1584
  msgid ""
1585
  "Find below an overview of the available filterbar items and their options:"
1586
  msgstr ""
1587
 
1588
- #: includes/sc_event-list_helptexts.php:64
1589
  msgid "filterbar item"
1590
  msgstr ""
1591
 
1592
- #: includes/sc_event-list_helptexts.php:64
1593
- #: includes/sc_event-list_helptexts.php:96
1594
  msgid "description"
1595
  msgstr ""
1596
 
1597
- #: includes/sc_event-list_helptexts.php:64
1598
  msgid "item options"
1599
  msgstr ""
1600
 
1601
- #: includes/sc_event-list_helptexts.php:64
1602
  msgid "option values"
1603
  msgstr ""
1604
 
1605
- #: includes/sc_event-list_helptexts.php:64
1606
  msgid "default value"
1607
  msgstr ""
1608
 
1609
- #: includes/sc_event-list_helptexts.php:64
1610
  msgid "option description"
1611
  msgstr ""
1612
 
1613
- #: includes/sc_event-list_helptexts.php:67
1614
  msgid ""
1615
  "Show a list of all available years. Additional there are some special "
1616
  "entries available (see item options)."
1617
  msgstr ""
1618
 
1619
- #: includes/sc_event-list_helptexts.php:71
1620
- #: includes/sc_event-list_helptexts.php:82
1621
  msgid "Add an entry to show all events."
1622
  msgstr ""
1623
 
1624
- #: includes/sc_event-list_helptexts.php:73
1625
- #: includes/sc_event-list_helptexts.php:84
1626
  msgid "Add an entry to show all upcoming events."
1627
  msgstr ""
1628
 
1629
- #: includes/sc_event-list_helptexts.php:74
1630
- #: includes/sc_event-list_helptexts.php:85
1631
  msgid "Add an entry to show events in the past."
1632
  msgstr ""
1633
 
1634
- #: includes/sc_event-list_helptexts.php:75
1635
  msgid "Set descending or ascending order of year entries."
1636
  msgstr ""
1637
 
1638
- #: includes/sc_event-list_helptexts.php:78
1639
  msgid "Show a list of all available months."
1640
  msgstr ""
1641
 
1642
- #: includes/sc_event-list_helptexts.php:86
1643
  msgid "Set descending or ascending order of month entries."
1644
  msgstr ""
1645
 
1646
- #: includes/sc_event-list_helptexts.php:87
1647
  msgid "php date-formats"
1648
  msgstr ""
1649
 
1650
- #: includes/sc_event-list_helptexts.php:87
1651
  msgid "Set the displayed date format of the month entries."
1652
  msgstr ""
1653
 
1654
- #: includes/sc_event-list_helptexts.php:88
1655
  #, php-format
1656
  msgid ""
1657
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1659,65 +1664,65 @@ msgid ""
1659
  "order."
1660
  msgstr ""
1661
 
1662
- #: includes/sc_event-list_helptexts.php:88
1663
  #, php-format
1664
  msgid ""
1665
  "Specifies the displayed values and their order. The items must be seperated "
1666
  "by %1$s."
1667
  msgstr ""
1668
 
1669
- #: includes/sc_event-list_helptexts.php:89
1670
  msgid "Show a list of all available categories."
1671
  msgstr ""
1672
 
1673
- #: includes/sc_event-list_helptexts.php:89
1674
  msgid "Add an entry to show events from all categories."
1675
  msgstr ""
1676
 
1677
- #: includes/sc_event-list_helptexts.php:90
1678
  msgid "A link to reset the eventlist filter to standard."
1679
  msgstr ""
1680
 
1681
- #: includes/sc_event-list_helptexts.php:90
1682
  msgid "any text"
1683
  msgstr ""
1684
 
1685
- #: includes/sc_event-list_helptexts.php:90
1686
  msgid "Set the caption of the link."
1687
  msgstr ""
1688
 
1689
- #: includes/sc_event-list_helptexts.php:93
1690
  msgid "Find below an overview of the available filterbar display options:"
1691
  msgstr ""
1692
 
1693
- #: includes/sc_event-list_helptexts.php:96
1694
  msgid "display option"
1695
  msgstr ""
1696
 
1697
- #: includes/sc_event-list_helptexts.php:96
1698
  msgid "available for"
1699
  msgstr ""
1700
 
1701
- #: includes/sc_event-list_helptexts.php:97
1702
  #, php-format
1703
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1704
  msgstr ""
1705
 
1706
- #: includes/sc_event-list_helptexts.php:98
1707
  msgid ""
1708
  "Shows a select box where an item can be choosen. After the selection of an "
1709
  "item the page is reloaded via javascript to show the filtered events."
1710
  msgstr ""
1711
 
1712
- #: includes/sc_event-list_helptexts.php:99
1713
  msgid "Shows a simple link which can be clicked."
1714
  msgstr ""
1715
 
1716
- #: includes/sc_event-list_helptexts.php:102
1717
  msgid "Find below some declaration examples with descriptions:"
1718
  msgstr ""
1719
 
1720
- #: includes/sc_event-list_helptexts.php:104
1721
  #, php-format
1722
  msgid ""
1723
  "In this example you can see that the filterbar item and the used display "
@@ -1725,22 +1730,22 @@ msgid ""
1725
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1726
  msgstr ""
1727
 
1728
- #: includes/sc_event-list_helptexts.php:106
1729
  #, php-format
1730
  msgid ""
1731
  "In this example you can see that filterbar options can be added in brackets "
1732
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1733
  msgstr ""
1734
 
1735
- #: includes/sc_event-list_helptexts.php:106
1736
  msgid "option_name"
1737
  msgstr ""
1738
 
1739
- #: includes/sc_event-list_helptexts.php:106
1740
  msgid "value"
1741
  msgstr ""
1742
 
1743
- #: includes/sc_event-list_helptexts.php:107
1744
  #, php-format
1745
  msgid ""
1746
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1749,134 +1754,134 @@ msgid ""
1749
  "left-aligned and the reset link will be on the right side."
1750
  msgstr ""
1751
 
1752
- #: includes/sc_event-list_helptexts.php:112
1753
- #: includes/sc_event-list_helptexts.php:139
1754
  msgid ""
1755
  "This attribute specifies if the title should be truncated to the given "
1756
  "number of characters in the event list."
1757
  msgstr ""
1758
 
1759
- #: includes/sc_event-list_helptexts.php:113
1760
- #: includes/sc_event-list_helptexts.php:140
1761
  #, php-format
1762
  msgid ""
1763
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1764
  "is automatically truncated via css."
1765
  msgstr ""
1766
 
1767
- #: includes/sc_event-list_helptexts.php:114
1768
- #: includes/sc_event-list_helptexts.php:141
1769
- #: includes/sc_event-list_helptexts.php:180
1770
  msgid "This attribute has no influence if only a single event is shown."
1771
  msgstr ""
1772
 
1773
- #: includes/sc_event-list_helptexts.php:120
1774
  msgid ""
1775
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1776
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1777
- "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1778
  msgstr ""
1779
 
1780
- #: includes/sc_event-list_helptexts.php:130
1781
  msgid ""
1782
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1783
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1784
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:147
1788
  msgid ""
1789
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1790
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1791
- "\t With \"event_list_only\" the categories are 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:157
1795
  msgid ""
1796
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1797
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1798
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1799
  msgstr ""
1800
 
1801
- #: includes/sc_event-list_helptexts.php:167
1802
  msgid ""
1803
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1804
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1805
- "\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"
1806
- "\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"
1807
- "\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)."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:178
1811
  msgid ""
1812
  "This attribute specifies if the content should be truncate to the given "
1813
  "number of characters in the event list."
1814
  msgstr ""
1815
 
1816
- #: includes/sc_event-list_helptexts.php:179
1817
  #, php-format
1818
  msgid "With the standard value %1$s the full text is displayed."
1819
  msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:186
1822
  msgid ""
1823
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1824
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1825
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1826
- "\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."
1827
  msgstr ""
1828
 
1829
- #: includes/sc_event-list_helptexts.php:197
1830
  msgid ""
1831
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1832
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1834
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1835
  msgstr ""
1836
 
1837
- #: includes/sc_event-list_helptexts.php:208
1838
  msgid ""
1839
  "This attribute specifies if a rss feed link should be added.<br />\n"
1840
- "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1841
- "\t On that page you can also find some settings to modify the output.<br />\n"
1842
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1843
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1844
  msgstr ""
1845
 
1846
- #: includes/sc_event-list_helptexts.php:220
1847
  msgid ""
1848
  "This attribute specifies if a ical feed link should be added.<br />\n"
1849
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1850
- "\t On that page you can also find some settings to modify the output.<br />\n"
1851
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1852
  msgstr ""
1853
 
1854
- #: includes/sc_event-list_helptexts.php:231
1855
  msgid ""
1856
  "This attribute specifies the page or post url for event links.<br />\n"
1857
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1858
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1859
  msgstr ""
1860
 
1861
- #: includes/sc_event-list_helptexts.php:243
1862
  msgid ""
1863
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1864
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1865
  msgstr ""
1866
 
1867
- #: includes/sc_event-list.php:154
1868
  msgid "Sorry, the requested event is not available!"
1869
  msgstr ""
1870
 
1871
- #: includes/sc_event-list.php:163
1872
  msgid "Event Information:"
1873
  msgstr "Información del evento:"
1874
 
1875
- #: includes/sc_event-list.php:405
1876
  msgid "Link to RSS feed"
1877
  msgstr ""
1878
 
1879
- #: includes/sc_event-list.php:414
1880
  msgid "Link to iCal feed"
1881
  msgstr ""
1882
 
@@ -1909,133 +1914,133 @@ msgstr ""
1909
  msgid "Truncate event title to"
1910
  msgstr ""
1911
 
1912
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1913
- #: includes/widget_helptexts.php:93
1914
  msgid "characters"
1915
  msgstr "caracteres"
1916
 
1917
- #: includes/widget_helptexts.php:38
1918
  msgid ""
1919
  "This option defines the number of displayed characters for the event title."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1923
  #, php-format
1924
  msgid ""
1925
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1926
  "automatically truncate the text via css."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:46
1930
  msgid "Show event starttime"
1931
  msgstr "Mostrar horario de comienzo del evento"
1932
 
1933
- #: includes/widget_helptexts.php:48
1934
  msgid "This option defines if the event start time will be displayed."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:55
1938
  msgid "Show event location"
1939
  msgstr "Mostrar localización del evento"
1940
 
1941
- #: includes/widget_helptexts.php:57
1942
  msgid "This option defines if the event location will be displayed."
1943
  msgstr ""
1944
 
1945
- #: includes/widget_helptexts.php:64
1946
  msgid "Truncate location to"
1947
  msgstr "Recortar la localización a"
1948
 
1949
- #: includes/widget_helptexts.php:66
1950
  msgid ""
1951
  "If the event location is diplayed this option defines the number of "
1952
  "displayed characters."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:74
1956
  msgid "Show event excerpt"
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:76
1960
  msgid "This option defines if the event excerpt will be displayed."
1961
  msgstr ""
1962
 
1963
- #: includes/widget_helptexts.php:83
1964
  msgid "Show event content"
1965
  msgstr ""
1966
 
1967
- #: includes/widget_helptexts.php:85
1968
  msgid "This option defines if the event content will be displayed."
1969
  msgstr ""
1970
 
1971
- #: includes/widget_helptexts.php:92
1972
  msgid "Truncate content to"
1973
  msgstr ""
1974
 
1975
- #: includes/widget_helptexts.php:94
1976
  msgid ""
1977
  "If the event content are diplayed this option defines the number of diplayed"
1978
  " characters."
1979
  msgstr ""
1980
 
1981
- #: includes/widget_helptexts.php:95
1982
  #, php-format
1983
  msgid "Set this value to %1$s to view the full text."
1984
  msgstr ""
1985
 
1986
- #: includes/widget_helptexts.php:102
1987
  msgid "URL to the linked Event List page"
1988
  msgstr "Link a la Página del Evento"
1989
 
1990
- #: includes/widget_helptexts.php:104
1991
  msgid ""
1992
  "This option defines the url to the linked Event List page. This option is "
1993
  "required if you want to use one of the options below."
1994
  msgstr ""
1995
 
1996
- #: includes/widget_helptexts.php:111
1997
  msgid "Shortcode ID on linked page"
1998
  msgstr ""
1999
 
2000
- #: includes/widget_helptexts.php:113
2001
  msgid ""
2002
  "This option defines the shortcode-id for the Event List on the linked page. "
2003
  "Normally the standard value 1 is correct, you only have to change it if you "
2004
  "use multiple event-list shortcodes on the linked page."
2005
  msgstr ""
2006
 
2007
- #: includes/widget_helptexts.php:122
2008
  msgid ""
2009
  "With this option you can add a link to the single event page for every "
2010
  "displayed event. You have to specify the url to the page and the shortcode "
2011
  "id option if you want to use it."
2012
  msgstr ""
2013
 
2014
- #: includes/widget_helptexts.php:131
2015
  msgid ""
2016
  "With this option you can add a link to the event-list page below the "
2017
  "diplayed events. You have to specify the url to page option if you want to "
2018
  "use it."
2019
  msgstr ""
2020
 
2021
- #: includes/widget_helptexts.php:138
2022
  msgid "Caption for the link"
2023
  msgstr ""
2024
 
2025
- #: includes/widget_helptexts.php:140
2026
  msgid ""
2027
  "This option defines the text for the link to the Event List page if the "
2028
  "approriate option is selected."
2029
  msgstr ""
2030
 
2031
- #: includes/widget.php:21
2032
  msgid "With this widget a list of upcoming events can be displayed."
2033
  msgstr ""
2034
 
2035
- #: includes/widget.php:26
2036
  msgid "Upcoming events"
2037
  msgstr "Eventos próximos"
2038
 
2039
- #: includes/widget.php:40
2040
  msgid "show events page"
2041
  msgstr "Mostrar página de eventos"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
12
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: es_AR\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:90
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:90
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
32
  msgid "Event List Settings"
33
  msgstr "Configuraciones del Listado de Eventos"
34
 
35
+ #: admin/admin.php:142
36
  msgid "Settings"
37
  msgstr "Configuraciones"
38
 
39
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
40
  msgid "About Event List"
41
  msgstr "Sobre Listado de Eventos"
42
 
43
+ #: admin/admin.php:146
44
  msgid "About"
45
  msgstr "Sobre"
46
 
47
+ #: admin/admin.php:170
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
55
  msgid "General"
56
  msgstr ""
57
 
58
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
59
+ #: admin/includes/admin-about.php:137
60
  msgid "Shortcode Attributes"
61
  msgstr ""
62
 
63
+ #: admin/includes/admin-about.php:102
64
  msgid "Help and Instructions"
65
  msgstr "Ayuda e Instrucciones"
66
 
67
+ #: admin/includes/admin-about.php:103
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
+ #: admin/includes/admin-about.php:104
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades"
75
 
76
+ #: admin/includes/admin-about.php:105
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio"
80
 
81
+ #: admin/includes/admin-about.php:106
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral"
85
 
86
+ #: admin/includes/admin-about.php:107
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr "El evento listado, y su estilo, pueden ser modificados mediante las configuraciones disponibles del widget, como así tambien los atributos disponibles para su atajo."
91
 
92
+ #: admin/includes/admin-about.php:108
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
+ #: admin/includes/admin-about.php:109
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información."
102
 
103
+ #: admin/includes/admin-about.php:110
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
111
  msgid "Add links to the single events"
112
  msgstr ""
113
 
114
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
115
  msgid "Add a link to the Event List page"
116
  msgstr ""
117
 
118
+ #: admin/includes/admin-about.php:111
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
+ #: admin/includes/admin-about.php:112
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
+ #: admin/includes/admin-about.php:113
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
+ #: admin/includes/admin-about.php:114
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
+ #: admin/includes/admin-about.php:116
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
+ #: admin/includes/admin-about.php:116
152
  msgid "Settings page"
153
  msgstr ""
154
 
155
+ #: admin/includes/admin-about.php:123
156
  msgid "About the plugin author"
157
  msgstr ""
158
 
159
+ #: admin/includes/admin-about.php:125
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
+ #: admin/includes/admin-about.php:125
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
+ #: admin/includes/admin-about.php:126
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
+ #: admin/includes/admin-about.php:126
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
+ #: admin/includes/admin-about.php:127
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
185
+ #: admin/includes/admin-about.php:130
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
+ #: admin/includes/admin-about.php:139
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr ""
195
 
196
+ #: admin/includes/admin-about.php:140
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr ""
202
 
203
+ #: admin/includes/admin-about.php:142
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr ""
208
 
209
+ #: admin/includes/admin-about.php:157
210
  msgid "Attribute name"
211
  msgstr ""
212
 
213
+ #: admin/includes/admin-about.php:158
214
  msgid "Value options"
215
  msgstr ""
216
 
217
+ #: admin/includes/admin-about.php:159
218
  msgid "Default value"
219
  msgstr ""
220
 
221
+ #: admin/includes/admin-about.php:160
222
  msgid "Description"
223
  msgstr "Descripción"
224
 
225
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
226
+ #: includes/sc_event-list_helptexts.php:91
227
  msgid "Filter Syntax"
228
  msgstr ""
229
 
230
+ #: admin/includes/admin-about.php:180
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr ""
235
 
236
+ #: admin/includes/admin-about.php:181
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr ""
242
 
243
+ #: admin/includes/admin-about.php:181
244
  msgid "AND"
245
  msgstr ""
246
 
247
+ #: admin/includes/admin-about.php:181
248
  msgid "OR"
249
  msgstr ""
250
 
251
+ #: admin/includes/admin-about.php:181
252
  msgid "or"
253
  msgstr ""
254
 
255
+ #: admin/includes/admin-about.php:181
256
  msgid "and"
257
  msgstr ""
258
 
259
+ #: admin/includes/admin-about.php:182
260
  msgid "Examples for cat filters:"
261
  msgstr ""
262
 
263
+ #: admin/includes/admin-about.php:183
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr ""
267
 
268
+ #: admin/includes/admin-about.php:184
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr ""
272
 
273
+ #: admin/includes/admin-about.php:185
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr ""
279
 
280
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
281
  msgid "Available Date Formats"
282
  msgstr ""
283
 
284
+ #: admin/includes/admin-about.php:192
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr ""
287
 
288
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
289
  msgid "Available Date Range Formats"
290
  msgstr ""
291
 
292
+ #: admin/includes/admin-about.php:202
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr ""
295
 
296
+ #: admin/includes/admin-about.php:215
297
  msgid "Value"
298
  msgstr ""
299
 
300
+ #: admin/includes/admin-about.php:219
301
  msgid "Example"
302
  msgstr ""
303
 
304
+ #: admin/includes/admin-categories.php:79
305
  msgid "Synchronize with post categories"
306
  msgstr ""
307
 
308
+ #: admin/includes/admin-categories.php:90
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
+ #: admin/includes/admin-categories.php:91
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
+ #: admin/includes/admin-categories.php:92
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
+ #: admin/includes/admin-categories.php:95
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
+ #: admin/includes/admin-categories.php:96
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
+ #: admin/includes/admin-categories.php:97
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
+ #: admin/includes/admin-categories.php:100
339
  msgid "An Error occured during the category sync"
340
  msgstr ""
341
 
342
+ #: admin/includes/admin-categories.php:103
343
  msgid "Category sync finished"
344
  msgstr ""
345
 
346
+ #: admin/includes/admin-category-sync.php:77
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr ""
349
 
350
+ #: admin/includes/admin-category-sync.php:93
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
+ #: admin/includes/admin-category-sync.php:94
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
+ #: admin/includes/admin-category-sync.php:95
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
+ #: admin/includes/admin-category-sync.php:96
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
+ #: admin/includes/admin-category-sync.php:98
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
+ #: admin/includes/admin-category-sync.php:99
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
+ #: admin/includes/admin-category-sync.php:100
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
+ #: admin/includes/admin-category-sync.php:103
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr ""
386
 
387
+ #: admin/includes/admin-category-sync.php:104
388
  msgid "Start synchronisation"
389
  msgstr ""
390
 
391
+ #: admin/includes/admin-category-sync.php:105
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
+ #: admin/includes/admin-category-sync.php:120
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
+ #: admin/includes/admin-category-sync.php:121
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
+ #: admin/includes/admin-category-sync.php:122
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
+ #: admin/includes/admin-category-sync.php:123
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
+ #: admin/includes/admin-category-sync.php:126
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
+ #: admin/includes/admin-category-sync.php:127
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
+ #: admin/includes/admin-category-sync.php:128
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
+ #: admin/includes/admin-category-sync.php:147
426
  msgid "none"
427
  msgstr ""
428
 
429
+ #: admin/includes/admin-import.php:91
430
  msgid "Import Events"
431
  msgstr "Importar Eventos"
432
 
433
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
434
+ #: admin/includes/admin-import.php:254
435
  msgid "Step"
436
  msgstr ""
437
 
438
+ #: admin/includes/admin-import.php:110
439
  msgid "Set import file and options"
440
  msgstr ""
441
 
442
+ #: admin/includes/admin-import.php:113
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
+ #: admin/includes/admin-import.php:116
448
  msgid "Example file"
449
  msgstr ""
450
 
451
+ #: admin/includes/admin-import.php:117
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr ""
456
 
457
+ #: admin/includes/admin-import.php:118
458
  msgid "Note"
459
  msgstr ""
460
 
461
+ #: admin/includes/admin-import.php:118
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr ""
466
 
467
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
468
  msgid "Sorry, there has been an error."
469
  msgstr ""
470
 
471
+ #: admin/includes/admin-import.php:129
472
  msgid "The file does not exist, please try again."
473
  msgstr ""
474
 
475
+ #: admin/includes/admin-import.php:138
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
+ #: admin/includes/admin-import.php:150
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
484
  msgid "Error"
485
  msgstr ""
486
 
487
+ #: admin/includes/admin-import.php:156
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
+ #: admin/includes/admin-import.php:167
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
496
  msgid "Warning"
497
  msgstr ""
498
 
499
+ #: admin/includes/admin-import.php:172
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
+ #: admin/includes/admin-import.php:184
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
+ #: admin/includes/admin-import.php:194
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
+ #: admin/includes/admin-import.php:213
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
+ #: admin/includes/admin-import.php:219
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
+ #: admin/includes/admin-import.php:254
528
  msgid "Import result"
529
  msgstr ""
530
 
531
+ #: admin/includes/admin-import.php:257
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
+ #: admin/includes/admin-import.php:258
537
  msgid "Go back to All Events"
538
  msgstr ""
539
 
540
+ #: admin/includes/admin-import.php:261
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
+ #: admin/includes/admin-import.php:269
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Título"
552
 
553
+ #: admin/includes/admin-import.php:282
554
  msgid "Start Date"
555
  msgstr ""
556
 
557
+ #: admin/includes/admin-import.php:283
558
  msgid "End Date"
559
  msgstr ""
560
 
561
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr ""
565
 
566
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
567
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr ""
571
 
572
+ #: admin/includes/admin-import.php:286
573
  msgid "Content"
574
  msgstr ""
575
 
576
+ #: admin/includes/admin-import.php:287
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
+ #: admin/includes/admin-import.php:333
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
+ #: admin/includes/admin-import.php:334
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
+ #: admin/includes/admin-import.php:341
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
+ #: admin/includes/admin-import.php:371
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
+ #: admin/includes/admin-import.php:377
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
+ #: admin/includes/admin-import.php:385
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
+ #: admin/includes/admin-import.php:439
609
  msgid "Import events"
610
  msgstr ""
611
 
612
+ #: admin/includes/admin-import.php:440
613
  msgid "Add additional categories"
614
  msgstr ""
615
 
616
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
617
  msgid "No events found"
618
  msgstr ""
619
 
620
+ #: admin/includes/admin-import.php:518
621
  msgid "Saving of event failed!"
622
  msgstr ""
623
 
624
+ #: admin/includes/admin-main.php:108
625
  msgid "Event Date"
626
  msgstr ""
627
 
628
+ #: admin/includes/admin-main.php:113
629
  msgid "Author"
630
  msgstr ""
631
 
632
+ #: admin/includes/admin-main.php:182
633
  #, php-format
634
  msgid "Add a copy of %1$s"
635
  msgstr ""
636
 
637
+ #: admin/includes/admin-main.php:182
638
  msgid "Copy"
639
  msgstr ""
640
 
641
+ #: admin/includes/admin-main.php:268
642
+ msgid "Import"
643
+ msgstr "Importar"
644
+
645
+ #: admin/includes/admin-new.php:83
646
  msgid "Event data"
647
  msgstr ""
648
 
649
+ #: admin/includes/admin-new.php:116
650
  msgid "Add Copy"
651
  msgstr ""
652
 
653
+ #: admin/includes/admin-new.php:124
654
  msgid "Date"
655
  msgstr ""
656
 
657
+ #: admin/includes/admin-new.php:124
658
  msgid "required"
659
  msgstr ""
660
 
661
+ #: admin/includes/admin-new.php:127
662
  msgid "Multi-Day Event"
663
  msgstr ""
664
 
665
+ #: admin/includes/admin-new.php:147
666
  msgid "Event Title"
667
  msgstr ""
668
 
669
+ #: admin/includes/admin-new.php:164
670
  msgid "Event Content"
671
  msgstr ""
672
 
673
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
674
  msgid "Event updated."
675
  msgstr ""
676
 
677
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
678
  msgid "View event"
679
  msgstr ""
680
 
681
+ #: admin/includes/admin-new.php:246
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
+ #: admin/includes/admin-new.php:247
687
  msgid "Event published."
688
  msgstr ""
689
 
690
+ #: admin/includes/admin-new.php:248
691
+ msgid "Event saved."
692
+ msgstr ""
693
+
694
+ #: admin/includes/admin-new.php:249
695
  msgid "Event submitted."
696
  msgstr ""
697
 
698
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
699
+ #: admin/includes/admin-new.php:253
700
  msgid "Preview event"
701
  msgstr ""
702
 
703
+ #: admin/includes/admin-new.php:251
704
  #, php-format
705
  msgid "Event scheduled for: %1$s>"
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-new.php:253
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:97
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:111
717
  msgid "Frontend Settings"
718
  msgstr ""
719
 
720
+ #: admin/includes/admin-settings.php:112
721
  msgid "Admin Page Settings"
722
  msgstr ""
723
 
724
+ #: admin/includes/admin-settings.php:113
725
  msgid "Feed Settings"
726
  msgstr ""
727
 
728
+ #: admin/includes/admin-settings.php:114
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
733
  msgid "Year"
734
  msgstr ""
735
 
736
+ #: includes/daterange_helptexts.php:10
737
  msgid "A year can be specified in 4 digit format."
738
  msgstr ""
739
 
740
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
741
+ #: includes/daterange_helptexts.php:95
742
  #, php-format
743
  msgid ""
744
  "For a start date filter the first day of %1$s is used, in an end date the "
745
  "last day."
746
  msgstr ""
747
 
748
+ #: includes/daterange_helptexts.php:13
749
  msgid "the resulting year"
750
  msgstr ""
751
 
752
+ #: includes/daterange_helptexts.php:19
753
  msgid "Month"
754
  msgstr ""
755
 
756
+ #: includes/daterange_helptexts.php:21
757
  msgid ""
758
  "A month can be specified with 4 digits for the year and 2 digits for the "
759
  "month, seperated by a hyphen (-)."
760
  msgstr ""
761
 
762
+ #: includes/daterange_helptexts.php:24
763
  msgid "the resulting month"
764
  msgstr ""
765
 
766
+ #: includes/daterange_helptexts.php:30
767
  msgid "Day"
768
  msgstr ""
769
 
770
+ #: includes/daterange_helptexts.php:31
771
  msgid ""
772
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
773
  " month and 2 digets for the day, seperated by hyphens (-)."
774
  msgstr ""
775
 
776
+ #: includes/daterange_helptexts.php:36
777
  msgid "Relative Year"
778
  msgstr ""
779
 
780
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
781
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
782
  #, php-format
783
  msgid "%1$s from now can be specified in the following notation: %2$s"
784
  msgstr ""
785
 
786
+ #: includes/daterange_helptexts.php:40
787
  msgid "A relative year"
788
  msgstr ""
789
 
790
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
791
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
792
  #, php-format
793
  msgid ""
794
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
795
  "%3$s or %4$s attached (see also the example below)."
796
  msgstr ""
797
 
798
+ #: includes/daterange_helptexts.php:46
799
  msgid "number of years"
800
  msgstr ""
801
 
802
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
803
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
804
  #, php-format
805
  msgid "Additionally the following values are available: %1$s"
806
  msgstr ""
807
 
808
+ #: includes/daterange_helptexts.php:58
809
  msgid "Relative Month"
810
  msgstr ""
811
 
812
+ #: includes/daterange_helptexts.php:62
813
  msgid "A relative month"
814
  msgstr ""
815
 
816
+ #: includes/daterange_helptexts.php:68
817
  msgid "number of months"
818
  msgstr ""
819
 
820
+ #: includes/daterange_helptexts.php:80
821
  msgid "Relative Week"
822
  msgstr ""
823
 
824
+ #: includes/daterange_helptexts.php:84
825
  msgid "A relative week"
826
  msgstr ""
827
 
828
+ #: includes/daterange_helptexts.php:90
829
  msgid "number of weeks"
830
  msgstr ""
831
 
832
+ #: includes/daterange_helptexts.php:96
833
  msgid "the resulting week"
834
  msgstr ""
835
 
836
+ #: includes/daterange_helptexts.php:99
837
  #, php-format
838
  msgid ""
839
  "The first day of the week is depending on the option %1$s which can be found"
840
  " and changed in %2$s."
841
  msgstr ""
842
 
843
+ #: includes/daterange_helptexts.php:110
844
  msgid "Relative Day"
845
  msgstr ""
846
 
847
+ #: includes/daterange_helptexts.php:114
848
  msgid "A relative day"
849
  msgstr ""
850
 
851
+ #: includes/daterange_helptexts.php:120
852
  msgid "number of days"
853
  msgstr ""
854
 
855
+ #: includes/daterange_helptexts.php:134
856
  msgid "Date range"
857
  msgstr ""
858
 
859
+ #: includes/daterange_helptexts.php:136
860
  msgid ""
861
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
862
+ "\t\t\tFor the start and end date any available date format can be used."
863
  msgstr ""
864
 
865
+ #: includes/daterange_helptexts.php:147
866
  msgid "This value defines a range without any limits."
867
  msgstr ""
868
 
869
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
870
+ #: includes/daterange_helptexts.php:171
871
  #, php-format
872
  msgid "The corresponding date_range format is: %1$s"
873
  msgstr ""
874
 
875
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
876
  msgid "Upcoming"
877
  msgstr "Próximos"
878
 
879
+ #: includes/daterange_helptexts.php:158
880
  msgid "This value defines a range from the actual day to the future."
881
  msgstr ""
882
 
883
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
884
  msgid "Past"
885
  msgstr "Pasado"
886
 
887
+ #: includes/daterange_helptexts.php:169
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
+ #: includes/event.php:157
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
895
+ #: includes/event.php:343 includes/event.php:345
896
+ #: includes/sc_event-list.php:330
897
  msgid "read more"
898
  msgstr ""
899
 
900
+ #: includes/events_post_type.php:83
901
  msgid "Events"
902
  msgstr "Eventos"
903
 
904
+ #: includes/events_post_type.php:84
905
  msgid "Event"
906
  msgstr ""
907
 
908
+ #: includes/events_post_type.php:85
909
  msgid "Add New"
910
  msgstr "Agregar Nuevo"
911
 
912
+ #: includes/events_post_type.php:86
913
  msgid "Add New Event"
914
  msgstr "Agregar un Nuevo Evento"
915
 
916
+ #: includes/events_post_type.php:87
917
  msgid "Edit Event"
918
  msgstr "Editar Evento"
919
 
920
+ #: includes/events_post_type.php:88
921
  msgid "New Event"
922
  msgstr ""
923
 
924
+ #: includes/events_post_type.php:89
925
  msgid "View Event"
926
  msgstr ""
927
 
928
+ #: includes/events_post_type.php:90
929
  msgid "View Events"
930
  msgstr ""
931
 
932
+ #: includes/events_post_type.php:91
933
  msgid "Search Events"
934
  msgstr ""
935
 
936
+ #: includes/events_post_type.php:93
937
  msgid "No events found in Trash"
938
  msgstr ""
939
 
940
+ #: includes/events_post_type.php:95
941
  msgid "All Events"
942
  msgstr "Todos los Eventos"
943
 
944
+ #: includes/events_post_type.php:96
945
  msgid "Event Archives"
946
  msgstr ""
947
 
948
+ #: includes/events_post_type.php:97
949
  msgid "Event Attributes"
950
  msgstr ""
951
 
952
+ #: includes/events_post_type.php:98
953
  msgid "Insert into event"
954
  msgstr ""
955
 
956
+ #: includes/events_post_type.php:99
957
  msgid "Uploaded to this event"
958
  msgstr ""
959
 
960
+ #: includes/events_post_type.php:100
961
  msgid "Event List"
962
  msgstr "Listado de Eventos"
963
 
964
+ #: includes/events_post_type.php:101
965
  msgid "Filter events list"
966
  msgstr ""
967
 
968
+ #: includes/events_post_type.php:102
969
  msgid "Events list navigation"
970
  msgstr ""
971
 
972
+ #: includes/events_post_type.php:103
973
  msgid "Events list"
974
  msgstr ""
975
 
976
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
977
  msgid "Reset"
978
  msgstr ""
979
 
980
+ #: includes/filterbar.php:329
981
  msgid "All"
982
  msgstr "Todos"
983
 
984
+ #: includes/filterbar.php:332
985
  msgid "All Dates"
986
  msgstr ""
987
 
1421
  " switching page from here."
1422
  msgstr ""
1423
 
1424
+ #: includes/options.php:92
1425
  msgid "events"
1426
  msgstr ""
1427
 
1428
+ #: includes/options.php:96
1429
  msgid "Show content"
1430
  msgstr ""
1431
 
1432
+ #: includes/options.php:100
1433
  msgid "Hide content"
1434
  msgstr ""
1435
 
1436
+ #: includes/sc_event-list_helptexts.php:20
1437
  msgid "event-id"
1438
  msgstr ""
1439
 
1440
+ #: includes/sc_event-list_helptexts.php:23
1441
  #, php-format
1442
  msgid ""
1443
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1445
  "this event is shown."
1446
  msgstr ""
1447
 
1448
+ #: includes/sc_event-list_helptexts.php:29
1449
+ #: includes/sc_event-list_helptexts.php:57
1450
  msgid "year"
1451
  msgstr ""
1452
 
1453
+ #: includes/sc_event-list_helptexts.php:31
1454
  msgid ""
1455
  "This attribute defines which events are initially shown. The default is to "
1456
  "show the upcoming events only."
1457
  msgstr ""
1458
 
1459
+ #: includes/sc_event-list_helptexts.php:33
1460
  #, php-format
1461
  msgid ""
1462
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1463
  "change the displayed event date range via the filterbar or url parameters."
1464
  msgstr ""
1465
 
1466
+ #: includes/sc_event-list_helptexts.php:39
1467
  msgid "category slug"
1468
  msgstr ""
1469
 
1470
+ #: includes/sc_event-list_helptexts.php:41
1471
  msgid ""
1472
  "This attribute defines the category of which events are initially shown. The"
1473
  " default is to show events of all categories."
1474
  msgstr ""
1475
 
1476
+ #: includes/sc_event-list_helptexts.php:42
1477
  msgid ""
1478
  "Provide a category slug to change this behavior. It is still possible to "
1479
  "change the displayed categories via the filterbar or url parameters."
1480
  msgstr ""
1481
 
1482
+ #: includes/sc_event-list_helptexts.php:48
1483
  msgid "This attribute defines the initial order of the events."
1484
  msgstr ""
1485
 
1486
+ #: includes/sc_event-list_helptexts.php:50
1487
+ #, php-format
1488
  msgid ""
1489
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1490
  "in the opposite direction (from new to old)."
1491
  msgstr ""
1492
 
1493
+ #: includes/sc_event-list_helptexts.php:60
1494
  #, php-format
1495
  msgid ""
1496
  "This attribute defines the dates and date ranges of which events are "
1497
  "displayed. The default is %1$s to show all events."
1498
  msgstr ""
1499
 
1500
+ #: includes/sc_event-list_helptexts.php:64
1501
  #, php-format
1502
  msgid ""
1503
  "Filtered events according to %1$s value are not available in the event list."
1504
  msgstr ""
1505
 
1506
+ #: includes/sc_event-list_helptexts.php:68
1507
  #, php-format
1508
  msgid ""
1509
  "You can find all available values with a description and examples in the "
1510
  "sections %1$s and %2$s below."
1511
  msgstr ""
1512
 
1513
+ #: includes/sc_event-list_helptexts.php:73
1514
  #, php-format
1515
  msgid "See %1$s description if you want to define complex filters."
1516
  msgstr ""
1517
 
1518
+ #: includes/sc_event-list_helptexts.php:79
1519
  msgid "category slugs"
1520
  msgstr ""
1521
 
1522
+ #: includes/sc_event-list_helptexts.php:82
1523
  msgid ""
1524
  "This attribute defines the category filter which filters the events to show."
1525
  " The default is $1$s or an empty string to show all events."
1526
  msgstr ""
1527
 
1528
+ #: includes/sc_event-list_helptexts.php:86
1529
  #, php-format
1530
  msgid ""
1531
  "Events with categories that doesn´t match %1$s are not shown in the event "
1532
  "list. They are also not available if a manual url parameter is added."
1533
  msgstr ""
1534
 
1535
+ #: includes/sc_event-list_helptexts.php:90
1536
  #, php-format
1537
  msgid ""
1538
  "The filter is specified via the given category slugs. See %1$s description "
1539
  "if you want to define complex filters."
1540
  msgstr ""
1541
 
1542
+ #: includes/sc_event-list_helptexts.php:96
1543
+ #: includes/sc_event-list_helptexts.php:242
1544
+ #: includes/sc_event-list_helptexts.php:276
1545
+ #: includes/sc_event-list_helptexts.php:318
1546
  msgid "number"
1547
  msgstr ""
1548
 
1549
+ #: includes/sc_event-list_helptexts.php:99
1550
  #, php-format
1551
  msgid ""
1552
  "This attribute defines how many events should be displayed if upcoming "
1554
  "displayed."
1555
  msgstr ""
1556
 
1557
+ #: includes/sc_event-list_helptexts.php:102
1558
  msgid ""
1559
  "Please not that in the actual version there is no pagination of the events "
1560
  "available, so the event list can be very long."
1561
  msgstr ""
1562
 
1563
+ #: includes/sc_event-list_helptexts.php:108
1564
  msgid ""
1565
  "This attribute defines if the filterbar should be displayed. The filterbar "
1566
  "allows the users to specify filters for the listed events."
1567
  msgstr ""
1568
 
1569
+ #: includes/sc_event-list_helptexts.php:110
1570
  #, php-format
1571
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1572
  msgstr ""
1573
 
1574
+ #: includes/sc_event-list_helptexts.php:115
1575
  #, php-format
1576
  msgid ""
1577
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1578
  " in the single event view."
1579
  msgstr ""
1580
 
1581
+ #: includes/sc_event-list_helptexts.php:125
1582
  #, php-format
1583
  msgid ""
1584
  "This attribute specifies the available items in the filterbar. This options "
1585
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1586
  msgstr ""
1587
 
1588
+ #: includes/sc_event-list_helptexts.php:128
1589
  msgid ""
1590
  "Find below an overview of the available filterbar items and their options:"
1591
  msgstr ""
1592
 
1593
+ #: includes/sc_event-list_helptexts.php:132
1594
  msgid "filterbar item"
1595
  msgstr ""
1596
 
1597
+ #: includes/sc_event-list_helptexts.php:133
1598
+ #: includes/sc_event-list_helptexts.php:206
1599
  msgid "description"
1600
  msgstr ""
1601
 
1602
+ #: includes/sc_event-list_helptexts.php:134
1603
  msgid "item options"
1604
  msgstr ""
1605
 
1606
+ #: includes/sc_event-list_helptexts.php:135
1607
  msgid "option values"
1608
  msgstr ""
1609
 
1610
+ #: includes/sc_event-list_helptexts.php:136
1611
  msgid "default value"
1612
  msgstr ""
1613
 
1614
+ #: includes/sc_event-list_helptexts.php:137
1615
  msgid "option description"
1616
  msgstr ""
1617
 
1618
+ #: includes/sc_event-list_helptexts.php:141
1619
  msgid ""
1620
  "Show a list of all available years. Additional there are some special "
1621
  "entries available (see item options)."
1622
  msgstr ""
1623
 
1624
+ #: includes/sc_event-list_helptexts.php:145
1625
+ #: includes/sc_event-list_helptexts.php:156
1626
  msgid "Add an entry to show all events."
1627
  msgstr ""
1628
 
1629
+ #: includes/sc_event-list_helptexts.php:147
1630
+ #: includes/sc_event-list_helptexts.php:158
1631
  msgid "Add an entry to show all upcoming events."
1632
  msgstr ""
1633
 
1634
+ #: includes/sc_event-list_helptexts.php:148
1635
+ #: includes/sc_event-list_helptexts.php:159
1636
  msgid "Add an entry to show events in the past."
1637
  msgstr ""
1638
 
1639
+ #: includes/sc_event-list_helptexts.php:149
1640
  msgid "Set descending or ascending order of year entries."
1641
  msgstr ""
1642
 
1643
+ #: includes/sc_event-list_helptexts.php:152
1644
  msgid "Show a list of all available months."
1645
  msgstr ""
1646
 
1647
+ #: includes/sc_event-list_helptexts.php:160
1648
  msgid "Set descending or ascending order of month entries."
1649
  msgstr ""
1650
 
1651
+ #: includes/sc_event-list_helptexts.php:163
1652
  msgid "php date-formats"
1653
  msgstr ""
1654
 
1655
+ #: includes/sc_event-list_helptexts.php:165
1656
  msgid "Set the displayed date format of the month entries."
1657
  msgstr ""
1658
 
1659
+ #: includes/sc_event-list_helptexts.php:170
1660
  #, php-format
1661
  msgid ""
1662
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1664
  "order."
1665
  msgstr ""
1666
 
1667
+ #: includes/sc_event-list_helptexts.php:179
1668
  #, php-format
1669
  msgid ""
1670
  "Specifies the displayed values and their order. The items must be seperated "
1671
  "by %1$s."
1672
  msgstr ""
1673
 
1674
+ #: includes/sc_event-list_helptexts.php:185
1675
  msgid "Show a list of all available categories."
1676
  msgstr ""
1677
 
1678
+ #: includes/sc_event-list_helptexts.php:189
1679
  msgid "Add an entry to show events from all categories."
1680
  msgstr ""
1681
 
1682
+ #: includes/sc_event-list_helptexts.php:193
1683
  msgid "A link to reset the eventlist filter to standard."
1684
  msgstr ""
1685
 
1686
+ #: includes/sc_event-list_helptexts.php:195
1687
  msgid "any text"
1688
  msgstr ""
1689
 
1690
+ #: includes/sc_event-list_helptexts.php:197
1691
  msgid "Set the caption of the link."
1692
  msgstr ""
1693
 
1694
+ #: includes/sc_event-list_helptexts.php:201
1695
  msgid "Find below an overview of the available filterbar display options:"
1696
  msgstr ""
1697
 
1698
+ #: includes/sc_event-list_helptexts.php:205
1699
  msgid "display option"
1700
  msgstr ""
1701
 
1702
+ #: includes/sc_event-list_helptexts.php:207
1703
  msgid "available for"
1704
  msgstr ""
1705
 
1706
+ #: includes/sc_event-list_helptexts.php:211
1707
  #, php-format
1708
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1709
  msgstr ""
1710
 
1711
+ #: includes/sc_event-list_helptexts.php:216
1712
  msgid ""
1713
  "Shows a select box where an item can be choosen. After the selection of an "
1714
  "item the page is reloaded via javascript to show the filtered events."
1715
  msgstr ""
1716
 
1717
+ #: includes/sc_event-list_helptexts.php:219
1718
  msgid "Shows a simple link which can be clicked."
1719
  msgstr ""
1720
 
1721
+ #: includes/sc_event-list_helptexts.php:222
1722
  msgid "Find below some declaration examples with descriptions:"
1723
  msgstr ""
1724
 
1725
+ #: includes/sc_event-list_helptexts.php:225
1726
  #, php-format
1727
  msgid ""
1728
  "In this example you can see that the filterbar item and the used display "
1730
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1731
  msgstr ""
1732
 
1733
+ #: includes/sc_event-list_helptexts.php:231
1734
  #, php-format
1735
  msgid ""
1736
  "In this example you can see that filterbar options can be added in brackets "
1737
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1738
  msgstr ""
1739
 
1740
+ #: includes/sc_event-list_helptexts.php:232
1741
  msgid "option_name"
1742
  msgstr ""
1743
 
1744
+ #: includes/sc_event-list_helptexts.php:232
1745
  msgid "value"
1746
  msgstr ""
1747
 
1748
+ #: includes/sc_event-list_helptexts.php:236
1749
  #, php-format
1750
  msgid ""
1751
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1754
  "left-aligned and the reset link will be on the right side."
1755
  msgstr ""
1756
 
1757
+ #: includes/sc_event-list_helptexts.php:244
1758
+ #: includes/sc_event-list_helptexts.php:277
1759
  msgid ""
1760
  "This attribute specifies if the title should be truncated to the given "
1761
  "number of characters in the event list."
1762
  msgstr ""
1763
 
1764
+ #: includes/sc_event-list_helptexts.php:246
1765
+ #: includes/sc_event-list_helptexts.php:278
1766
  #, php-format
1767
  msgid ""
1768
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1769
  "is automatically truncated via css."
1770
  msgstr ""
1771
 
1772
+ #: includes/sc_event-list_helptexts.php:250
1773
+ #: includes/sc_event-list_helptexts.php:279
1774
+ #: includes/sc_event-list_helptexts.php:322
1775
  msgid "This attribute has no influence if only a single event is shown."
1776
  msgstr ""
1777
 
1778
+ #: includes/sc_event-list_helptexts.php:257
1779
  msgid ""
1780
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1781
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1782
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1786
  msgid ""
1787
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1788
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1789
+ "\t\t\t\t\tWith \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:286
1793
  msgid ""
1794
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1795
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1796
+ "\t\t\t\t\tWith \"event_list_only\" the categories are 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:297
1800
  msgid ""
1801
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1802
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1803
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1804
  msgstr ""
1805
 
1806
+ #: includes/sc_event-list_helptexts.php:308
1807
  msgid ""
1808
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1809
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1810
+ "\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"
1811
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1812
+ "\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)."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:320
1816
  msgid ""
1817
  "This attribute specifies if the content should be truncate to the given "
1818
  "number of characters in the event list."
1819
  msgstr ""
1820
 
1821
+ #: includes/sc_event-list_helptexts.php:321
1822
  #, php-format
1823
  msgid "With the standard value %1$s the full text is displayed."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:329
1827
  msgid ""
1828
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1829
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1830
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1831
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:341
1835
  msgid ""
1836
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1837
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1838
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1839
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1840
  msgstr ""
1841
 
1842
+ #: includes/sc_event-list_helptexts.php:353
1843
  msgid ""
1844
  "This attribute specifies if a rss feed link should be added.<br />\n"
1845
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1846
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1847
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1848
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1849
  msgstr ""
1850
 
1851
+ #: includes/sc_event-list_helptexts.php:366
1852
  msgid ""
1853
  "This attribute specifies if a ical feed link should be added.<br />\n"
1854
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1855
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1856
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1857
  msgstr ""
1858
 
1859
+ #: includes/sc_event-list_helptexts.php:378
1860
  msgid ""
1861
  "This attribute specifies the page or post url for event links.<br />\n"
1862
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1863
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list_helptexts.php:391
1867
  msgid ""
1868
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1869
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1870
  msgstr ""
1871
 
1872
+ #: includes/sc_event-list.php:184
1873
  msgid "Sorry, the requested event is not available!"
1874
  msgstr ""
1875
 
1876
+ #: includes/sc_event-list.php:193
1877
  msgid "Event Information:"
1878
  msgstr "Información del evento:"
1879
 
1880
+ #: includes/sc_event-list.php:437
1881
  msgid "Link to RSS feed"
1882
  msgstr ""
1883
 
1884
+ #: includes/sc_event-list.php:447
1885
  msgid "Link to iCal feed"
1886
  msgstr ""
1887
 
1914
  msgid "Truncate event title to"
1915
  msgstr ""
1916
 
1917
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1918
+ #: includes/widget_helptexts.php:103
1919
  msgid "characters"
1920
  msgstr "caracteres"
1921
 
1922
+ #: includes/widget_helptexts.php:39
1923
  msgid ""
1924
  "This option defines the number of displayed characters for the event title."
1925
  msgstr ""
1926
 
1927
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1928
  #, php-format
1929
  msgid ""
1930
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1931
  "automatically truncate the text via css."
1932
  msgstr ""
1933
 
1934
+ #: includes/widget_helptexts.php:51
1935
  msgid "Show event starttime"
1936
  msgstr "Mostrar horario de comienzo del evento"
1937
 
1938
+ #: includes/widget_helptexts.php:53
1939
  msgid "This option defines if the event start time will be displayed."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:60
1943
  msgid "Show event location"
1944
  msgstr "Mostrar localización del evento"
1945
 
1946
+ #: includes/widget_helptexts.php:62
1947
  msgid "This option defines if the event location will be displayed."
1948
  msgstr ""
1949
 
1950
+ #: includes/widget_helptexts.php:69
1951
  msgid "Truncate location to"
1952
  msgstr "Recortar la localización a"
1953
 
1954
+ #: includes/widget_helptexts.php:72
1955
  msgid ""
1956
  "If the event location is diplayed this option defines the number of "
1957
  "displayed characters."
1958
  msgstr ""
1959
 
1960
+ #: includes/widget_helptexts.php:84
1961
  msgid "Show event excerpt"
1962
  msgstr ""
1963
 
1964
+ #: includes/widget_helptexts.php:86
1965
  msgid "This option defines if the event excerpt will be displayed."
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:93
1969
  msgid "Show event content"
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:95
1973
  msgid "This option defines if the event content will be displayed."
1974
  msgstr ""
1975
 
1976
+ #: includes/widget_helptexts.php:102
1977
  msgid "Truncate content to"
1978
  msgstr ""
1979
 
1980
+ #: includes/widget_helptexts.php:105
1981
  msgid ""
1982
  "If the event content are diplayed this option defines the number of diplayed"
1983
  " characters."
1984
  msgstr ""
1985
 
1986
+ #: includes/widget_helptexts.php:107
1987
  #, php-format
1988
  msgid "Set this value to %1$s to view the full text."
1989
  msgstr ""
1990
 
1991
+ #: includes/widget_helptexts.php:116
1992
  msgid "URL to the linked Event List page"
1993
  msgstr "Link a la Página del Evento"
1994
 
1995
+ #: includes/widget_helptexts.php:118
1996
  msgid ""
1997
  "This option defines the url to the linked Event List page. This option is "
1998
  "required if you want to use one of the options below."
1999
  msgstr ""
2000
 
2001
+ #: includes/widget_helptexts.php:125
2002
  msgid "Shortcode ID on linked page"
2003
  msgstr ""
2004
 
2005
+ #: includes/widget_helptexts.php:127
2006
  msgid ""
2007
  "This option defines the shortcode-id for the Event List on the linked page. "
2008
  "Normally the standard value 1 is correct, you only have to change it if you "
2009
  "use multiple event-list shortcodes on the linked page."
2010
  msgstr ""
2011
 
2012
+ #: includes/widget_helptexts.php:136
2013
  msgid ""
2014
  "With this option you can add a link to the single event page for every "
2015
  "displayed event. You have to specify the url to the page and the shortcode "
2016
  "id option if you want to use it."
2017
  msgstr ""
2018
 
2019
+ #: includes/widget_helptexts.php:145
2020
  msgid ""
2021
  "With this option you can add a link to the event-list page below the "
2022
  "diplayed events. You have to specify the url to page option if you want to "
2023
  "use it."
2024
  msgstr ""
2025
 
2026
+ #: includes/widget_helptexts.php:152
2027
  msgid "Caption for the link"
2028
  msgstr ""
2029
 
2030
+ #: includes/widget_helptexts.php:154
2031
  msgid ""
2032
  "This option defines the text for the link to the Event List page if the "
2033
  "approriate option is selected."
2034
  msgstr ""
2035
 
2036
+ #: includes/widget.php:38
2037
  msgid "With this widget a list of upcoming events can be displayed."
2038
  msgstr ""
2039
 
2040
+ #: includes/widget.php:43
2041
  msgid "Upcoming events"
2042
  msgstr "Eventos próximos"
2043
 
2044
+ #: includes/widget.php:57
2045
  msgid "show events page"
2046
  msgstr "Mostrar página de eventos"
languages/event-list-es_ES.mo CHANGED
Binary file
languages/event-list-es_ES.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
11
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
12
  "Last-Translator: mibuthu\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
@@ -17,117 +17,117 @@ msgstr ""
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: admin/admin.php:64
21
  #, php-format
22
  msgid "Errors during upgrade of plugin %1$s"
23
  msgstr ""
24
 
25
- #: admin/admin.php:64
26
  #, php-format
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
31
  msgid "Event List Settings"
32
  msgstr "Ajustes de eventos"
33
 
34
- #: admin/admin.php:116
35
  msgid "Settings"
36
  msgstr "Ajustes"
37
 
38
- #: admin/admin.php:120 admin/includes/admin-about.php:43
39
  msgid "About Event List"
40
  msgstr "Acerca de la lista de eventos"
41
 
42
- #: admin/admin.php:120
43
  msgid "About"
44
  msgstr "Sobre"
45
 
46
- #: admin/admin.php:144
47
  #, php-format
48
  msgid "%s Event"
49
  msgid_plural "%s Events"
50
  msgstr[0] ""
51
  msgstr[1] ""
52
 
53
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
54
  msgid "General"
55
  msgstr "General"
56
 
57
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
58
- #: admin/includes/admin-about.php:117
59
  msgid "Shortcode Attributes"
60
  msgstr ""
61
 
62
- #: admin/includes/admin-about.php:82
63
  msgid "Help and Instructions"
64
  msgstr "Ayuda e instrucciones"
65
 
66
- #: admin/includes/admin-about.php:83
67
  #, php-format
68
  msgid "You can manage the events %1$shere%2$s"
69
  msgstr ""
70
 
71
- #: admin/includes/admin-about.php:84
72
  msgid "To show the events on your site you have 2 possibilities"
73
  msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades"
74
 
75
- #: admin/includes/admin-about.php:85
76
  #, php-format
77
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
78
  msgstr ""
79
 
80
- #: admin/includes/admin-about.php:86
81
  #, php-format
82
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
83
  msgstr ""
84
 
85
- #: admin/includes/admin-about.php:87
86
  msgid ""
87
  "The displayed events and their style can be modified with the available "
88
  "widget settings and the available attributes for the shortcode."
89
  msgstr ""
90
 
91
- #: admin/includes/admin-about.php:88
92
  #, php-format
93
  msgid ""
94
  "A list of all available shortcode attributes with their descriptions is "
95
  "available in the %1$s tab."
96
  msgstr ""
97
 
98
- #: admin/includes/admin-about.php:89
99
  msgid "The available widget options are described in their tooltip text."
100
  msgstr ""
101
 
102
- #: admin/includes/admin-about.php:90
103
  #, php-format
104
  msgid ""
105
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
106
  " to insert an URL to the linked event-list page."
107
  msgstr ""
108
 
109
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
110
  msgid "Add links to the single events"
111
  msgstr ""
112
 
113
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
114
  msgid "Add a link to the Event List page"
115
  msgstr ""
116
 
117
- #: admin/includes/admin-about.php:91
118
  msgid ""
119
  "This is required because the widget does not know in which page or post the "
120
  "shortcode was included."
121
  msgstr ""
122
 
123
- #: admin/includes/admin-about.php:92
124
  msgid ""
125
  "Additionally you have to insert the correct Shortcode id on the linked page."
126
  " This id describes which shortcode should be used on the given page or post "
127
  "if you have more than one."
128
  msgstr ""
129
 
130
- #: admin/includes/admin-about.php:93
131
  #, php-format
132
  msgid ""
133
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -135,592 +135,596 @@ msgid ""
135
  "link on your linked page or post."
136
  msgstr ""
137
 
138
- #: admin/includes/admin-about.php:94
139
  #, php-format
140
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
141
  msgstr ""
142
 
143
- #: admin/includes/admin-about.php:96
144
  #, php-format
145
  msgid ""
146
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
147
  "want."
148
  msgstr ""
149
 
150
- #: admin/includes/admin-about.php:96
151
  msgid "Settings page"
152
  msgstr ""
153
 
154
- #: admin/includes/admin-about.php:103
155
  msgid "About the plugin author"
156
  msgstr ""
157
 
158
- #: admin/includes/admin-about.php:105
159
  #, php-format
160
  msgid ""
161
  "This plugin is developed by %1$s, you can find more information about the "
162
  "plugin on the %2$s."
163
  msgstr ""
164
 
165
- #: admin/includes/admin-about.php:105
166
  msgid "WordPress plugin site"
167
  msgstr ""
168
 
169
- #: admin/includes/admin-about.php:106
170
  #, php-format
171
  msgid "If you like the plugin please rate it on the %1$s."
172
  msgstr ""
173
 
174
- #: admin/includes/admin-about.php:106
175
  msgid "WordPress plugin review site"
176
  msgstr ""
177
 
178
- #: admin/includes/admin-about.php:107
179
  msgid ""
180
  "If you want to support the plugin I would be happy to get a small donation"
181
  msgstr ""
182
 
183
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
184
- #: admin/includes/admin-about.php:110
185
  #, php-format
186
  msgid "Donate with %1$s"
187
  msgstr ""
188
 
189
- #: admin/includes/admin-about.php:119
190
  msgid ""
191
  "You have the possibility to modify the output if you add some of the "
192
  "following attributes to the shortcode."
193
  msgstr ""
194
 
195
- #: admin/includes/admin-about.php:120
196
  #, php-format
197
  msgid ""
198
  "You can combine and add as much attributes as you want. E.g. the shortcode "
199
  "including the attributes %1$s and %2$s would looks like this:"
200
  msgstr ""
201
 
202
- #: admin/includes/admin-about.php:122
203
  msgid ""
204
  "Below you can find a list of all supported attributes with their "
205
  "descriptions and available options:"
206
  msgstr ""
207
 
208
- #: admin/includes/admin-about.php:137
209
  msgid "Attribute name"
210
  msgstr "Nombre de atributo"
211
 
212
- #: admin/includes/admin-about.php:138
213
  msgid "Value options"
214
  msgstr "Opciones de valor"
215
 
216
- #: admin/includes/admin-about.php:139
217
  msgid "Default value"
218
  msgstr "Valor por defecto"
219
 
220
- #: admin/includes/admin-about.php:140
221
  msgid "Description"
222
  msgstr "Descripción"
223
 
224
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
225
- #: includes/sc_event-list_helptexts.php:42
226
  msgid "Filter Syntax"
227
  msgstr "Sintaxis de filtro"
228
 
229
- #: admin/includes/admin-about.php:160
230
  msgid ""
231
  "For date and cat filters you can specify complex filters with the following "
232
  "syntax:"
233
  msgstr ""
234
 
235
- #: admin/includes/admin-about.php:161
236
  #, php-format
237
  msgid ""
238
  "You can use %1$s and %2$s connections to define complex filters. "
239
  "Additionally you can set brackets %3$s for nested queries."
240
  msgstr ""
241
 
242
- #: admin/includes/admin-about.php:161
243
  msgid "AND"
244
  msgstr "Y"
245
 
246
- #: admin/includes/admin-about.php:161
247
  msgid "OR"
248
  msgstr "O"
249
 
250
- #: admin/includes/admin-about.php:161
251
  msgid "or"
252
  msgstr "o"
253
 
254
- #: admin/includes/admin-about.php:161
255
  msgid "and"
256
  msgstr "y"
257
 
258
- #: admin/includes/admin-about.php:162
259
  msgid "Examples for cat filters:"
260
  msgstr "Ejemplos de filtros cat:"
261
 
262
- #: admin/includes/admin-about.php:163
263
  #, php-format
264
  msgid "Show all events with category %1$s."
265
  msgstr ""
266
 
267
- #: admin/includes/admin-about.php:164
268
  #, php-format
269
  msgid "Show all events with category %1$s or %2$s."
270
  msgstr ""
271
 
272
- #: admin/includes/admin-about.php:165
273
  #, php-format
274
  msgid ""
275
  "Show all events with category %1$s and all events where category %2$s as "
276
  "well as %3$s is selected."
277
  msgstr ""
278
 
279
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
280
  msgid "Available Date Formats"
281
  msgstr "Formatos de fecha disponibles"
282
 
283
- #: admin/includes/admin-about.php:172
284
  msgid "For date filters you can use the following date formats:"
285
  msgstr ""
286
 
287
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
288
  msgid "Available Date Range Formats"
289
  msgstr "Formatos Rango Fecha Disponible"
290
 
291
- #: admin/includes/admin-about.php:182
292
  msgid "For date filters you can use the following daterange formats:"
293
  msgstr ""
294
 
295
- #: admin/includes/admin-about.php:195
296
  msgid "Value"
297
  msgstr "Valor"
298
 
299
- #: admin/includes/admin-about.php:199
300
  msgid "Example"
301
  msgstr "Ejemplo"
302
 
303
- #: admin/includes/admin-categories.php:54
304
  msgid "Synchronize with post categories"
305
  msgstr ""
306
 
307
- #: admin/includes/admin-categories.php:63
308
  #, php-format
309
  msgid "%1$s categories modified (%2$s)"
310
  msgstr ""
311
 
312
- #: admin/includes/admin-categories.php:64
313
  #, php-format
314
  msgid "%1$s categories added (%2$s)"
315
  msgstr ""
316
 
317
- #: admin/includes/admin-categories.php:65
318
  #, php-format
319
  msgid "%1$s categories deleted (%2$s)"
320
  msgstr ""
321
 
322
- #: admin/includes/admin-categories.php:67
323
  #, php-format
324
  msgid "%1$s categories not modified (%2$s)"
325
  msgstr ""
326
 
327
- #: admin/includes/admin-categories.php:68
328
  #, php-format
329
  msgid "%1$s categories not added (%2$s)"
330
  msgstr ""
331
 
332
- #: admin/includes/admin-categories.php:69
333
  #, php-format
334
  msgid "%1$s categories not deleted (%2$s)"
335
  msgstr ""
336
 
337
- #: admin/includes/admin-categories.php:72
338
  msgid "An Error occured during the category sync"
339
  msgstr ""
340
 
341
- #: admin/includes/admin-categories.php:75
342
  msgid "Category sync finished"
343
  msgstr ""
344
 
345
- #: admin/includes/admin-category-sync.php:54
346
  msgid "Error: You are not allowed to view this page!"
347
  msgstr ""
348
 
349
- #: admin/includes/admin-category-sync.php:70
350
  msgid "Affected Categories when switching to seperate Event Categories"
351
  msgstr ""
352
 
353
- #: admin/includes/admin-category-sync.php:71
354
  msgid "Switch option to seperate Event Categories"
355
  msgstr ""
356
 
357
- #: admin/includes/admin-category-sync.php:72
358
  msgid ""
359
  "If you proceed, all post categories will be copied and all events will be "
360
  "re-assigned to this new categories."
361
  msgstr ""
362
 
363
- #: admin/includes/admin-category-sync.php:73
364
  msgid ""
365
  "Afterwards the event categories are independent of the post categories."
366
  msgstr ""
367
 
368
- #: admin/includes/admin-category-sync.php:75
369
  msgid "Affected Categories when switching to use Post Categories for events"
370
  msgstr ""
371
 
372
- #: admin/includes/admin-category-sync.php:76
373
  msgid "Switch option to use Post Categories for events"
374
  msgstr ""
375
 
376
- #: admin/includes/admin-category-sync.php:77
377
  msgid ""
378
  "Take a detailed look at the affected categories above before you proceed! "
379
  "All seperate event categories will be deleted, this cannot be undone!"
380
  msgstr ""
381
 
382
- #: admin/includes/admin-category-sync.php:79
383
  msgid "Event Categories: Synchronise with Post Categories"
384
  msgstr ""
385
 
386
- #: admin/includes/admin-category-sync.php:80
387
  msgid "Start synchronisation"
388
  msgstr ""
389
 
390
- #: admin/includes/admin-category-sync.php:81
391
  msgid ""
392
  "If this option is enabled the above listed categories will be deleted and "
393
  "removed from the existing events!"
394
  msgstr ""
395
 
396
- #: admin/includes/admin-category-sync.php:96
397
  msgid "Categories to modify"
398
  msgstr ""
399
 
400
- #: admin/includes/admin-category-sync.php:97
401
  msgid "Categories to add"
402
  msgstr ""
403
 
404
- #: admin/includes/admin-category-sync.php:98
405
  msgid "Categories to delete (optional)"
406
  msgstr ""
407
 
408
- #: admin/includes/admin-category-sync.php:99
409
  msgid "Delete not available post categories"
410
  msgstr ""
411
 
412
- #: admin/includes/admin-category-sync.php:102
413
  msgid "Categories with differences"
414
  msgstr ""
415
 
416
- #: admin/includes/admin-category-sync.php:103
417
  msgid "Categories to add (optional)"
418
  msgstr ""
419
 
420
- #: admin/includes/admin-category-sync.php:104
421
  msgid "Add not available post categories"
422
  msgstr ""
423
 
424
- #: admin/includes/admin-category-sync.php:123
425
  msgid "none"
426
  msgstr ""
427
 
428
- #: admin/includes/admin-import.php:58
429
  msgid "Import Events"
430
  msgstr "Importar Eventos"
431
 
432
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
433
- #: admin/includes/admin-import.php:220
434
  msgid "Step"
435
  msgstr "Paso"
436
 
437
- #: admin/includes/admin-import.php:79
438
  msgid "Set import file and options"
439
  msgstr ""
440
 
441
- #: admin/includes/admin-import.php:82
442
  #, php-format
443
  msgid "Proceed with Step %1$s"
444
  msgstr ""
445
 
446
- #: admin/includes/admin-import.php:85
447
  msgid "Example file"
448
  msgstr "Archivo de ejemplo"
449
 
450
- #: admin/includes/admin-import.php:86
451
  #, php-format
452
  msgid ""
453
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
454
  msgstr ""
455
 
456
- #: admin/includes/admin-import.php:87
457
  msgid "Note"
458
  msgstr "Nota"
459
 
460
- #: admin/includes/admin-import.php:87
461
  msgid ""
462
  "Do not change the column header and separator line (first two lines), "
463
  "otherwise the import will fail!"
464
  msgstr ""
465
 
466
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
467
  msgid "Sorry, there has been an error."
468
  msgstr ""
469
 
470
- #: admin/includes/admin-import.php:96
471
  msgid "The file does not exist, please try again."
472
  msgstr ""
473
 
474
- #: admin/includes/admin-import.php:104
475
  msgid "The uploaded file does not have the required csv extension."
476
  msgstr ""
477
 
478
- #: admin/includes/admin-import.php:116
479
  msgid "Events review and additonal category selection"
480
  msgstr ""
481
 
482
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
483
  msgid "Error"
484
  msgstr ""
485
 
486
- #: admin/includes/admin-import.php:122
487
  msgid "This CSV file cannot be imported"
488
  msgstr ""
489
 
490
- #: admin/includes/admin-import.php:133
491
  msgid "None of the events in this CSV file can be imported"
492
  msgstr ""
493
 
494
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
495
  msgid "Warning"
496
  msgstr ""
497
 
498
- #: admin/includes/admin-import.php:138
499
  #, php-format
500
  msgid "There is %1$s event which cannot be imported"
501
  msgid_plural "There are %1$s events which cannot be imported"
502
  msgstr[0] ""
503
  msgstr[1] ""
504
 
505
- #: admin/includes/admin-import.php:150
506
  #, php-format
507
  msgid "CSV line %1$s"
508
  msgstr ""
509
 
510
- #: admin/includes/admin-import.php:160
511
  msgid "You can still import all other events listed below."
512
  msgstr ""
513
 
514
- #: admin/includes/admin-import.php:179
515
  msgid ""
516
  "The following category slugs are not available and will be removed from the "
517
  "imported events"
518
  msgstr ""
519
 
520
- #: admin/includes/admin-import.php:185
521
  msgid ""
522
  "If you want to keep these categories, please create these Categories first "
523
  "and do the import afterwards."
524
  msgstr ""
525
 
526
- #: admin/includes/admin-import.php:220
527
  msgid "Import result"
528
  msgstr ""
529
 
530
- #: admin/includes/admin-import.php:223
531
  #, php-format
532
  msgid "Import of %1$s events successful!"
533
  msgstr ""
534
 
535
- #: admin/includes/admin-import.php:224
536
  msgid "Go back to All Events"
537
  msgstr ""
538
 
539
- #: admin/includes/admin-import.php:227
540
  msgid "Errors during Import"
541
  msgstr ""
542
 
543
- #: admin/includes/admin-import.php:235
544
  msgid "Event from CSV-line"
545
  msgstr ""
546
 
547
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
548
  #: includes/widget_helptexts.php:9
549
  msgid "Title"
550
  msgstr "Título"
551
 
552
- #: admin/includes/admin-import.php:248
553
  msgid "Start Date"
554
  msgstr "Fecha Inicio"
555
 
556
- #: admin/includes/admin-import.php:249
557
  msgid "End Date"
558
  msgstr "Fecha Final"
559
 
560
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
561
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
562
  msgid "Time"
563
  msgstr "Hora"
564
 
565
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
566
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
567
  #: includes/options_helptexts.php:76
568
  msgid "Location"
569
  msgstr "Ubicación"
570
 
571
- #: admin/includes/admin-import.php:252
572
  msgid "Content"
573
  msgstr ""
574
 
575
- #: admin/includes/admin-import.php:253
576
  msgid "Category slugs"
577
  msgstr ""
578
 
579
- #: admin/includes/admin-import.php:297
580
  msgid "Header line is missing or not correct!"
581
  msgstr ""
582
 
583
- #: admin/includes/admin-import.php:298
584
  #, php-format
585
  msgid ""
586
  "Have a look at the %1$sexample file%2$s to see the correct header line "
587
  "format."
588
  msgstr ""
589
 
590
- #: admin/includes/admin-import.php:305
591
  #, php-format
592
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
593
  msgstr ""
594
 
595
- #: admin/includes/admin-import.php:334
596
  msgid "Empty event title found"
597
  msgstr ""
598
 
599
- #: admin/includes/admin-import.php:340
600
  msgid "Wrong date format for startdate"
601
  msgstr ""
602
 
603
- #: admin/includes/admin-import.php:348
604
  msgid "Wrong date format for enddate"
605
  msgstr ""
606
 
607
- #: admin/includes/admin-import.php:401
608
  msgid "Import events"
609
  msgstr ""
610
 
611
- #: admin/includes/admin-import.php:402
612
  msgid "Add additional categories"
613
  msgstr ""
614
 
615
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
616
- msgid "Import"
617
- msgstr "Importar"
618
-
619
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
620
  msgid "No events found"
621
  msgstr ""
622
 
623
- #: admin/includes/admin-import.php:473
624
  msgid "Saving of event failed!"
625
  msgstr ""
626
 
627
- #: admin/includes/admin-main.php:76
628
  msgid "Event Date"
629
  msgstr ""
630
 
631
- #: admin/includes/admin-main.php:80
632
  msgid "Author"
633
  msgstr "Autor"
634
 
635
- #: admin/includes/admin-main.php:148
636
  #, php-format
637
  msgid "Add a copy of %1$s"
638
  msgstr ""
639
 
640
- #: admin/includes/admin-main.php:148
641
  msgid "Copy"
642
  msgstr ""
643
 
644
- #: admin/includes/admin-new.php:58
 
 
 
 
645
  msgid "Event data"
646
  msgstr ""
647
 
648
- #: admin/includes/admin-new.php:90
649
  msgid "Add Copy"
650
  msgstr ""
651
 
652
- #: admin/includes/admin-new.php:98
653
  msgid "Date"
654
  msgstr "Fecha"
655
 
656
- #: admin/includes/admin-new.php:98
657
  msgid "required"
658
  msgstr "obligatorio"
659
 
660
- #: admin/includes/admin-new.php:101
661
  msgid "Multi-Day Event"
662
  msgstr "Evento de varios días"
663
 
664
- #: admin/includes/admin-new.php:121
665
  msgid "Event Title"
666
  msgstr ""
667
 
668
- #: admin/includes/admin-new.php:137
669
  msgid "Event Content"
670
  msgstr ""
671
 
672
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
673
  msgid "Event updated."
674
  msgstr ""
675
 
676
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
677
  msgid "View event"
678
  msgstr ""
679
 
680
- #: admin/includes/admin-new.php:204
681
  #, php-format
682
  msgid "Event restored to revision from %1$s"
683
  msgstr ""
684
 
685
- #: admin/includes/admin-new.php:205
686
  msgid "Event published."
687
  msgstr ""
688
 
689
- #: admin/includes/admin-new.php:207
 
 
 
 
690
  msgid "Event submitted."
691
  msgstr ""
692
 
693
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
694
- #: admin/includes/admin-new.php:210
695
  msgid "Preview event"
696
  msgstr ""
697
 
698
- #: admin/includes/admin-new.php:208
699
  #, php-format
700
  msgid "Event scheduled for: %1$s>"
701
  msgstr ""
702
 
703
- #: admin/includes/admin-new.php:210
704
  msgid "Event draft updated."
705
  msgstr ""
706
 
707
- #: admin/includes/admin-settings.php:79
708
  msgid "Go to Event Category switching page"
709
  msgstr ""
710
 
711
- #: admin/includes/admin-settings.php:93
712
  msgid "Frontend Settings"
713
  msgstr "Configuración de interfaz"
714
 
715
- #: admin/includes/admin-settings.php:94
716
  msgid "Admin Page Settings"
717
  msgstr "Configuración de página de administrador"
718
 
719
- #: admin/includes/admin-settings.php:95
720
  msgid "Feed Settings"
721
  msgstr "Configuración Conectores"
722
 
723
- #: admin/includes/admin-settings.php:96
724
  msgid "Category Taxonomy"
725
  msgstr ""
726
 
@@ -728,255 +732,255 @@ msgstr ""
728
  msgid "Year"
729
  msgstr "Año"
730
 
731
- #: includes/daterange_helptexts.php:9
732
  msgid "A year can be specified in 4 digit format."
733
  msgstr ""
734
 
735
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
736
- #: includes/daterange_helptexts.php:47
737
  #, php-format
738
  msgid ""
739
  "For a start date filter the first day of %1$s is used, in an end date the "
740
  "last day."
741
  msgstr ""
742
 
743
- #: includes/daterange_helptexts.php:10
744
  msgid "the resulting year"
745
  msgstr ""
746
 
747
- #: includes/daterange_helptexts.php:15
748
  msgid "Month"
749
  msgstr "Mes"
750
 
751
- #: includes/daterange_helptexts.php:16
752
  msgid ""
753
  "A month can be specified with 4 digits for the year and 2 digits for the "
754
  "month, seperated by a hyphen (-)."
755
  msgstr ""
756
 
757
- #: includes/daterange_helptexts.php:17
758
  msgid "the resulting month"
759
  msgstr ""
760
 
761
- #: includes/daterange_helptexts.php:22
762
  msgid "Day"
763
  msgstr "Día"
764
 
765
- #: includes/daterange_helptexts.php:23
766
  msgid ""
767
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
768
  " month and 2 digets for the day, seperated by hyphens (-)."
769
  msgstr ""
770
 
771
- #: includes/daterange_helptexts.php:28
772
  msgid "Relative Year"
773
  msgstr "Año relativo"
774
 
775
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
776
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
777
  #, php-format
778
  msgid "%1$s from now can be specified in the following notation: %2$s"
779
  msgstr ""
780
 
781
- #: includes/daterange_helptexts.php:29
782
  msgid "A relative year"
783
  msgstr ""
784
 
785
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
786
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
787
  #, php-format
788
  msgid ""
789
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
790
  "%3$s or %4$s attached (see also the example below)."
791
  msgstr ""
792
 
793
- #: includes/daterange_helptexts.php:30
794
  msgid "number of years"
795
  msgstr ""
796
 
797
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
798
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
799
  #, php-format
800
  msgid "Additionally the following values are available: %1$s"
801
  msgstr ""
802
 
803
- #: includes/daterange_helptexts.php:36
804
  msgid "Relative Month"
805
  msgstr "Mes relativo"
806
 
807
- #: includes/daterange_helptexts.php:37
808
  msgid "A relative month"
809
  msgstr "Un mes relativo"
810
 
811
- #: includes/daterange_helptexts.php:38
812
  msgid "number of months"
813
  msgstr "número de meses"
814
 
815
- #: includes/daterange_helptexts.php:44
816
  msgid "Relative Week"
817
  msgstr "Semana relativa"
818
 
819
- #: includes/daterange_helptexts.php:45
820
  msgid "A relative week"
821
  msgstr "Una semana relativa"
822
 
823
- #: includes/daterange_helptexts.php:46
824
  msgid "number of weeks"
825
  msgstr "número de semanas"
826
 
827
- #: includes/daterange_helptexts.php:47
828
  msgid "the resulting week"
829
  msgstr ""
830
 
831
- #: includes/daterange_helptexts.php:48
832
  #, php-format
833
  msgid ""
834
  "The first day of the week is depending on the option %1$s which can be found"
835
  " and changed in %2$s."
836
  msgstr ""
837
 
838
- #: includes/daterange_helptexts.php:54
839
  msgid "Relative Day"
840
  msgstr "Día relativo"
841
 
842
- #: includes/daterange_helptexts.php:55
843
  msgid "A relative day"
844
  msgstr "Un día relativo"
845
 
846
- #: includes/daterange_helptexts.php:56
847
  msgid "number of days"
848
  msgstr "Número de días"
849
 
850
- #: includes/daterange_helptexts.php:64
851
  msgid "Date range"
852
  msgstr "Rango de fechas"
853
 
854
- #: includes/daterange_helptexts.php:66
855
  msgid ""
856
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
857
- "\t For the start and end date any available date format can be used."
858
  msgstr ""
859
 
860
- #: includes/daterange_helptexts.php:75
861
  msgid "This value defines a range without any limits."
862
  msgstr ""
863
 
864
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
865
- #: includes/daterange_helptexts.php:90
866
  #, php-format
867
  msgid "The corresponding date_range format is: %1$s"
868
  msgstr ""
869
 
870
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
871
  msgid "Upcoming"
872
  msgstr "Próximamente"
873
 
874
- #: includes/daterange_helptexts.php:82
875
  msgid "This value defines a range from the actual day to the future."
876
  msgstr ""
877
 
878
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
879
  msgid "Past"
880
  msgstr "Pasado"
881
 
882
- #: includes/daterange_helptexts.php:89
883
  msgid "This value defines a range from the past to the previous day."
884
  msgstr ""
885
 
886
- #: includes/event.php:124
887
  msgid "No valid start date provided"
888
  msgstr ""
889
 
890
- #: includes/event.php:299 includes/event.php:301
891
- #: includes/sc_event-list.php:298
892
  msgid "read more"
893
  msgstr ""
894
 
895
- #: includes/events_post_type.php:69
896
  msgid "Events"
897
  msgstr "Eventos"
898
 
899
- #: includes/events_post_type.php:70
900
  msgid "Event"
901
  msgstr ""
902
 
903
- #: includes/events_post_type.php:71
904
  msgid "Add New"
905
  msgstr "Añadir Nuevo"
906
 
907
- #: includes/events_post_type.php:72
908
  msgid "Add New Event"
909
  msgstr "Añadir Nuevo Evento"
910
 
911
- #: includes/events_post_type.php:73
912
  msgid "Edit Event"
913
  msgstr "Editar Evento"
914
 
915
- #: includes/events_post_type.php:74
916
  msgid "New Event"
917
  msgstr ""
918
 
919
- #: includes/events_post_type.php:75
920
  msgid "View Event"
921
  msgstr ""
922
 
923
- #: includes/events_post_type.php:76
924
  msgid "View Events"
925
  msgstr ""
926
 
927
- #: includes/events_post_type.php:77
928
  msgid "Search Events"
929
  msgstr ""
930
 
931
- #: includes/events_post_type.php:79
932
  msgid "No events found in Trash"
933
  msgstr ""
934
 
935
- #: includes/events_post_type.php:81
936
  msgid "All Events"
937
  msgstr "Añadir Eventos"
938
 
939
- #: includes/events_post_type.php:82
940
  msgid "Event Archives"
941
  msgstr ""
942
 
943
- #: includes/events_post_type.php:83
944
  msgid "Event Attributes"
945
  msgstr ""
946
 
947
- #: includes/events_post_type.php:84
948
  msgid "Insert into event"
949
  msgstr ""
950
 
951
- #: includes/events_post_type.php:85
952
  msgid "Uploaded to this event"
953
  msgstr ""
954
 
955
- #: includes/events_post_type.php:86
956
  msgid "Event List"
957
  msgstr "Listado Eventos"
958
 
959
- #: includes/events_post_type.php:87
960
  msgid "Filter events list"
961
  msgstr ""
962
 
963
- #: includes/events_post_type.php:88
964
  msgid "Events list navigation"
965
  msgstr ""
966
 
967
- #: includes/events_post_type.php:89
968
  msgid "Events list"
969
  msgstr ""
970
 
971
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
972
  msgid "Reset"
973
  msgstr ""
974
 
975
- #: includes/filterbar.php:296
976
  msgid "All"
977
  msgstr "Todos"
978
 
979
- #: includes/filterbar.php:298
980
  msgid "All Dates"
981
  msgstr ""
982
 
@@ -1416,23 +1420,23 @@ msgid ""
1416
  " switching page from here."
1417
  msgstr ""
1418
 
1419
- #: includes/options.php:73
1420
  msgid "events"
1421
  msgstr ""
1422
 
1423
- #: includes/options.php:77
1424
  msgid "Show content"
1425
  msgstr ""
1426
 
1427
- #: includes/options.php:81
1428
  msgid "Hide content"
1429
  msgstr ""
1430
 
1431
- #: includes/sc_event-list_helptexts.php:8
1432
  msgid "event-id"
1433
  msgstr ""
1434
 
1435
- #: includes/sc_event-list_helptexts.php:9
1436
  #, php-format
1437
  msgid ""
1438
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1440,107 +1444,108 @@ msgid ""
1440
  "this event is shown."
1441
  msgstr ""
1442
 
1443
- #: includes/sc_event-list_helptexts.php:13
1444
- #: includes/sc_event-list_helptexts.php:31
1445
  msgid "year"
1446
  msgstr ""
1447
 
1448
- #: includes/sc_event-list_helptexts.php:14
1449
  msgid ""
1450
  "This attribute defines which events are initially shown. The default is to "
1451
  "show the upcoming events only."
1452
  msgstr ""
1453
 
1454
- #: includes/sc_event-list_helptexts.php:15
1455
  #, php-format
1456
  msgid ""
1457
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1458
  "change the displayed event date range via the filterbar or url parameters."
1459
  msgstr ""
1460
 
1461
- #: includes/sc_event-list_helptexts.php:19
1462
  msgid "category slug"
1463
  msgstr ""
1464
 
1465
- #: includes/sc_event-list_helptexts.php:20
1466
  msgid ""
1467
  "This attribute defines the category of which events are initially shown. The"
1468
  " default is to show events of all categories."
1469
  msgstr ""
1470
 
1471
- #: includes/sc_event-list_helptexts.php:21
1472
  msgid ""
1473
  "Provide a category slug to change this behavior. It is still possible to "
1474
  "change the displayed categories via the filterbar or url parameters."
1475
  msgstr ""
1476
 
1477
- #: includes/sc_event-list_helptexts.php:26
1478
  msgid "This attribute defines the initial order of the events."
1479
  msgstr ""
1480
 
1481
- #: includes/sc_event-list_helptexts.php:27
 
1482
  msgid ""
1483
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1484
  "in the opposite direction (from new to old)."
1485
  msgstr ""
1486
 
1487
- #: includes/sc_event-list_helptexts.php:32
1488
  #, php-format
1489
  msgid ""
1490
  "This attribute defines the dates and date ranges of which events are "
1491
  "displayed. The default is %1$s to show all events."
1492
  msgstr ""
1493
 
1494
- #: includes/sc_event-list_helptexts.php:33
1495
  #, php-format
1496
  msgid ""
1497
  "Filtered events according to %1$s value are not available in the event list."
1498
  msgstr ""
1499
 
1500
- #: includes/sc_event-list_helptexts.php:34
1501
  #, php-format
1502
  msgid ""
1503
  "You can find all available values with a description and examples in the "
1504
  "sections %1$s and %2$s below."
1505
  msgstr ""
1506
 
1507
- #: includes/sc_event-list_helptexts.php:35
1508
  #, php-format
1509
  msgid "See %1$s description if you want to define complex filters."
1510
  msgstr ""
1511
 
1512
- #: includes/sc_event-list_helptexts.php:39
1513
  msgid "category slugs"
1514
  msgstr ""
1515
 
1516
- #: includes/sc_event-list_helptexts.php:40
1517
  msgid ""
1518
  "This attribute defines the category filter which filters the events to show."
1519
  " The default is $1$s or an empty string to show all events."
1520
  msgstr ""
1521
 
1522
- #: includes/sc_event-list_helptexts.php:41
1523
  #, php-format
1524
  msgid ""
1525
  "Events with categories that doesn´t match %1$s are not shown in the event "
1526
  "list. They are also not available if a manual url parameter is added."
1527
  msgstr ""
1528
 
1529
- #: includes/sc_event-list_helptexts.php:42
1530
  #, php-format
1531
  msgid ""
1532
  "The filter is specified via the given category slugs. See %1$s description "
1533
  "if you want to define complex filters."
1534
  msgstr ""
1535
 
1536
- #: includes/sc_event-list_helptexts.php:46
1537
- #: includes/sc_event-list_helptexts.php:111
1538
- #: includes/sc_event-list_helptexts.php:138
1539
- #: includes/sc_event-list_helptexts.php:177
1540
  msgid "number"
1541
  msgstr ""
1542
 
1543
- #: includes/sc_event-list_helptexts.php:47
1544
  #, php-format
1545
  msgid ""
1546
  "This attribute defines how many events should be displayed if upcoming "
@@ -1548,109 +1553,109 @@ msgid ""
1548
  "displayed."
1549
  msgstr ""
1550
 
1551
- #: includes/sc_event-list_helptexts.php:48
1552
  msgid ""
1553
  "Please not that in the actual version there is no pagination of the events "
1554
  "available, so the event list can be very long."
1555
  msgstr ""
1556
 
1557
- #: includes/sc_event-list_helptexts.php:53
1558
  msgid ""
1559
  "This attribute defines if the filterbar should be displayed. The filterbar "
1560
  "allows the users to specify filters for the listed events."
1561
  msgstr ""
1562
 
1563
- #: includes/sc_event-list_helptexts.php:54
1564
  #, php-format
1565
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1566
  msgstr ""
1567
 
1568
- #: includes/sc_event-list_helptexts.php:55
1569
  #, php-format
1570
  msgid ""
1571
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1572
  " in the single event view."
1573
  msgstr ""
1574
 
1575
- #: includes/sc_event-list_helptexts.php:60
1576
  #, php-format
1577
  msgid ""
1578
  "This attribute specifies the available items in the filterbar. This options "
1579
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1580
  msgstr ""
1581
 
1582
- #: includes/sc_event-list_helptexts.php:61
1583
  msgid ""
1584
  "Find below an overview of the available filterbar items and their options:"
1585
  msgstr ""
1586
 
1587
- #: includes/sc_event-list_helptexts.php:64
1588
  msgid "filterbar item"
1589
  msgstr ""
1590
 
1591
- #: includes/sc_event-list_helptexts.php:64
1592
- #: includes/sc_event-list_helptexts.php:96
1593
  msgid "description"
1594
  msgstr ""
1595
 
1596
- #: includes/sc_event-list_helptexts.php:64
1597
  msgid "item options"
1598
  msgstr ""
1599
 
1600
- #: includes/sc_event-list_helptexts.php:64
1601
  msgid "option values"
1602
  msgstr ""
1603
 
1604
- #: includes/sc_event-list_helptexts.php:64
1605
  msgid "default value"
1606
  msgstr ""
1607
 
1608
- #: includes/sc_event-list_helptexts.php:64
1609
  msgid "option description"
1610
  msgstr ""
1611
 
1612
- #: includes/sc_event-list_helptexts.php:67
1613
  msgid ""
1614
  "Show a list of all available years. Additional there are some special "
1615
  "entries available (see item options)."
1616
  msgstr ""
1617
 
1618
- #: includes/sc_event-list_helptexts.php:71
1619
- #: includes/sc_event-list_helptexts.php:82
1620
  msgid "Add an entry to show all events."
1621
  msgstr ""
1622
 
1623
- #: includes/sc_event-list_helptexts.php:73
1624
- #: includes/sc_event-list_helptexts.php:84
1625
  msgid "Add an entry to show all upcoming events."
1626
  msgstr ""
1627
 
1628
- #: includes/sc_event-list_helptexts.php:74
1629
- #: includes/sc_event-list_helptexts.php:85
1630
  msgid "Add an entry to show events in the past."
1631
  msgstr ""
1632
 
1633
- #: includes/sc_event-list_helptexts.php:75
1634
  msgid "Set descending or ascending order of year entries."
1635
  msgstr ""
1636
 
1637
- #: includes/sc_event-list_helptexts.php:78
1638
  msgid "Show a list of all available months."
1639
  msgstr ""
1640
 
1641
- #: includes/sc_event-list_helptexts.php:86
1642
  msgid "Set descending or ascending order of month entries."
1643
  msgstr ""
1644
 
1645
- #: includes/sc_event-list_helptexts.php:87
1646
  msgid "php date-formats"
1647
  msgstr ""
1648
 
1649
- #: includes/sc_event-list_helptexts.php:87
1650
  msgid "Set the displayed date format of the month entries."
1651
  msgstr ""
1652
 
1653
- #: includes/sc_event-list_helptexts.php:88
1654
  #, php-format
1655
  msgid ""
1656
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1658,65 +1663,65 @@ msgid ""
1658
  "order."
1659
  msgstr ""
1660
 
1661
- #: includes/sc_event-list_helptexts.php:88
1662
  #, php-format
1663
  msgid ""
1664
  "Specifies the displayed values and their order. The items must be seperated "
1665
  "by %1$s."
1666
  msgstr ""
1667
 
1668
- #: includes/sc_event-list_helptexts.php:89
1669
  msgid "Show a list of all available categories."
1670
  msgstr ""
1671
 
1672
- #: includes/sc_event-list_helptexts.php:89
1673
  msgid "Add an entry to show events from all categories."
1674
  msgstr ""
1675
 
1676
- #: includes/sc_event-list_helptexts.php:90
1677
  msgid "A link to reset the eventlist filter to standard."
1678
  msgstr ""
1679
 
1680
- #: includes/sc_event-list_helptexts.php:90
1681
  msgid "any text"
1682
  msgstr ""
1683
 
1684
- #: includes/sc_event-list_helptexts.php:90
1685
  msgid "Set the caption of the link."
1686
  msgstr ""
1687
 
1688
- #: includes/sc_event-list_helptexts.php:93
1689
  msgid "Find below an overview of the available filterbar display options:"
1690
  msgstr ""
1691
 
1692
- #: includes/sc_event-list_helptexts.php:96
1693
  msgid "display option"
1694
  msgstr ""
1695
 
1696
- #: includes/sc_event-list_helptexts.php:96
1697
  msgid "available for"
1698
  msgstr ""
1699
 
1700
- #: includes/sc_event-list_helptexts.php:97
1701
  #, php-format
1702
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1703
  msgstr ""
1704
 
1705
- #: includes/sc_event-list_helptexts.php:98
1706
  msgid ""
1707
  "Shows a select box where an item can be choosen. After the selection of an "
1708
  "item the page is reloaded via javascript to show the filtered events."
1709
  msgstr ""
1710
 
1711
- #: includes/sc_event-list_helptexts.php:99
1712
  msgid "Shows a simple link which can be clicked."
1713
  msgstr ""
1714
 
1715
- #: includes/sc_event-list_helptexts.php:102
1716
  msgid "Find below some declaration examples with descriptions:"
1717
  msgstr ""
1718
 
1719
- #: includes/sc_event-list_helptexts.php:104
1720
  #, php-format
1721
  msgid ""
1722
  "In this example you can see that the filterbar item and the used display "
@@ -1724,22 +1729,22 @@ msgid ""
1724
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1725
  msgstr ""
1726
 
1727
- #: includes/sc_event-list_helptexts.php:106
1728
  #, php-format
1729
  msgid ""
1730
  "In this example you can see that filterbar options can be added in brackets "
1731
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1732
  msgstr ""
1733
 
1734
- #: includes/sc_event-list_helptexts.php:106
1735
  msgid "option_name"
1736
  msgstr ""
1737
 
1738
- #: includes/sc_event-list_helptexts.php:106
1739
  msgid "value"
1740
  msgstr ""
1741
 
1742
- #: includes/sc_event-list_helptexts.php:107
1743
  #, php-format
1744
  msgid ""
1745
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1748,134 +1753,134 @@ msgid ""
1748
  "left-aligned and the reset link will be on the right side."
1749
  msgstr ""
1750
 
1751
- #: includes/sc_event-list_helptexts.php:112
1752
- #: includes/sc_event-list_helptexts.php:139
1753
  msgid ""
1754
  "This attribute specifies if the title should be truncated to the given "
1755
  "number of characters in the event list."
1756
  msgstr ""
1757
 
1758
- #: includes/sc_event-list_helptexts.php:113
1759
- #: includes/sc_event-list_helptexts.php:140
1760
  #, php-format
1761
  msgid ""
1762
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1763
  "is automatically truncated via css."
1764
  msgstr ""
1765
 
1766
- #: includes/sc_event-list_helptexts.php:114
1767
- #: includes/sc_event-list_helptexts.php:141
1768
- #: includes/sc_event-list_helptexts.php:180
1769
  msgid "This attribute has no influence if only a single event is shown."
1770
  msgstr ""
1771
 
1772
- #: includes/sc_event-list_helptexts.php:120
1773
  msgid ""
1774
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1775
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1776
- "\t With \"event_list_only\" the starttime 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:130
1780
  msgid ""
1781
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1782
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1783
- "\t With \"event_list_only\" the location 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:147
1787
  msgid ""
1788
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1789
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1790
- "\t With \"event_list_only\" the categories are 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:157
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:167
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:178
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:179
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:186
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:197
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"
1832
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
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:208
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"
1840
- "\t On that page you can also find some settings to modify the output.<br />\n"
1841
- "\t Choose \"false\" to never add and \"true\" to always add the link.<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:220
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:231
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:243
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:154
1867
  msgid "Sorry, the requested event is not available!"
1868
  msgstr ""
1869
 
1870
- #: includes/sc_event-list.php:163
1871
  msgid "Event Information:"
1872
  msgstr "Información del evento:"
1873
 
1874
- #: includes/sc_event-list.php:405
1875
  msgid "Link to RSS feed"
1876
  msgstr ""
1877
 
1878
- #: includes/sc_event-list.php:414
1879
  msgid "Link to iCal feed"
1880
  msgstr ""
1881
 
@@ -1908,133 +1913,133 @@ msgstr ""
1908
  msgid "Truncate event title to"
1909
  msgstr ""
1910
 
1911
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1912
- #: includes/widget_helptexts.php:93
1913
  msgid "characters"
1914
  msgstr "caracteres"
1915
 
1916
- #: includes/widget_helptexts.php:38
1917
  msgid ""
1918
  "This option defines the number of displayed characters for the event title."
1919
  msgstr ""
1920
 
1921
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1922
  #, php-format
1923
  msgid ""
1924
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1925
  "automatically truncate the text via css."
1926
  msgstr ""
1927
 
1928
- #: includes/widget_helptexts.php:46
1929
  msgid "Show event starttime"
1930
  msgstr ""
1931
 
1932
- #: includes/widget_helptexts.php:48
1933
  msgid "This option defines if the event start time will be displayed."
1934
  msgstr ""
1935
 
1936
- #: includes/widget_helptexts.php:55
1937
  msgid "Show event location"
1938
  msgstr ""
1939
 
1940
- #: includes/widget_helptexts.php:57
1941
  msgid "This option defines if the event location will be displayed."
1942
  msgstr ""
1943
 
1944
- #: includes/widget_helptexts.php:64
1945
  msgid "Truncate location to"
1946
  msgstr ""
1947
 
1948
- #: includes/widget_helptexts.php:66
1949
  msgid ""
1950
  "If the event location is diplayed this option defines the number of "
1951
  "displayed characters."
1952
  msgstr ""
1953
 
1954
- #: includes/widget_helptexts.php:74
1955
  msgid "Show event excerpt"
1956
  msgstr ""
1957
 
1958
- #: includes/widget_helptexts.php:76
1959
  msgid "This option defines if the event excerpt will be displayed."
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:83
1963
  msgid "Show event content"
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:85
1967
  msgid "This option defines if the event content will be displayed."
1968
  msgstr ""
1969
 
1970
- #: includes/widget_helptexts.php:92
1971
  msgid "Truncate content to"
1972
  msgstr ""
1973
 
1974
- #: includes/widget_helptexts.php:94
1975
  msgid ""
1976
  "If the event content are diplayed this option defines the number of diplayed"
1977
  " characters."
1978
  msgstr ""
1979
 
1980
- #: includes/widget_helptexts.php:95
1981
  #, php-format
1982
  msgid "Set this value to %1$s to view the full text."
1983
  msgstr ""
1984
 
1985
- #: includes/widget_helptexts.php:102
1986
  msgid "URL to the linked Event List page"
1987
  msgstr ""
1988
 
1989
- #: includes/widget_helptexts.php:104
1990
  msgid ""
1991
  "This option defines the url to the linked Event List page. This option is "
1992
  "required if you want to use one of the options below."
1993
  msgstr ""
1994
 
1995
- #: includes/widget_helptexts.php:111
1996
  msgid "Shortcode ID on linked page"
1997
  msgstr ""
1998
 
1999
- #: includes/widget_helptexts.php:113
2000
  msgid ""
2001
  "This option defines the shortcode-id for the Event List on the linked page. "
2002
  "Normally the standard value 1 is correct, you only have to change it if you "
2003
  "use multiple event-list shortcodes on the linked page."
2004
  msgstr ""
2005
 
2006
- #: includes/widget_helptexts.php:122
2007
  msgid ""
2008
  "With this option you can add a link to the single event page for every "
2009
  "displayed event. You have to specify the url to the page and the shortcode "
2010
  "id option if you want to use it."
2011
  msgstr ""
2012
 
2013
- #: includes/widget_helptexts.php:131
2014
  msgid ""
2015
  "With this option you can add a link to the event-list page below the "
2016
  "diplayed events. You have to specify the url to page option if you want to "
2017
  "use it."
2018
  msgstr ""
2019
 
2020
- #: includes/widget_helptexts.php:138
2021
  msgid "Caption for the link"
2022
  msgstr ""
2023
 
2024
- #: includes/widget_helptexts.php:140
2025
  msgid ""
2026
  "This option defines the text for the link to the Event List page if the "
2027
  "approriate option is selected."
2028
  msgstr ""
2029
 
2030
- #: includes/widget.php:21
2031
  msgid "With this widget a list of upcoming events can be displayed."
2032
  msgstr ""
2033
 
2034
- #: includes/widget.php:26
2035
  msgid "Upcoming events"
2036
  msgstr ""
2037
 
2038
- #: includes/widget.php:40
2039
  msgid "show events page"
2040
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
7
  msgstr ""
8
  "Project-Id-Version: wp-event-list\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
10
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
11
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
12
  "Last-Translator: mibuthu\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
17
  "Language: es_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
+ #: admin/admin.php:90
21
  #, php-format
22
  msgid "Errors during upgrade of plugin %1$s"
23
  msgstr ""
24
 
25
+ #: admin/admin.php:90
26
  #, php-format
27
  msgid "Upgrade of plugin %1$s successful"
28
  msgstr ""
29
 
30
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
31
  msgid "Event List Settings"
32
  msgstr "Ajustes de eventos"
33
 
34
+ #: admin/admin.php:142
35
  msgid "Settings"
36
  msgstr "Ajustes"
37
 
38
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
39
  msgid "About Event List"
40
  msgstr "Acerca de la lista de eventos"
41
 
42
+ #: admin/admin.php:146
43
  msgid "About"
44
  msgstr "Sobre"
45
 
46
+ #: admin/admin.php:170
47
  #, php-format
48
  msgid "%s Event"
49
  msgid_plural "%s Events"
50
  msgstr[0] ""
51
  msgstr[1] ""
52
 
53
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
54
  msgid "General"
55
  msgstr "General"
56
 
57
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
58
+ #: admin/includes/admin-about.php:137
59
  msgid "Shortcode Attributes"
60
  msgstr ""
61
 
62
+ #: admin/includes/admin-about.php:102
63
  msgid "Help and Instructions"
64
  msgstr "Ayuda e instrucciones"
65
 
66
+ #: admin/includes/admin-about.php:103
67
  #, php-format
68
  msgid "You can manage the events %1$shere%2$s"
69
  msgstr ""
70
 
71
+ #: admin/includes/admin-about.php:104
72
  msgid "To show the events on your site you have 2 possibilities"
73
  msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades"
74
 
75
+ #: admin/includes/admin-about.php:105
76
  #, php-format
77
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
78
  msgstr ""
79
 
80
+ #: admin/includes/admin-about.php:106
81
  #, php-format
82
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
83
  msgstr ""
84
 
85
+ #: admin/includes/admin-about.php:107
86
  msgid ""
87
  "The displayed events and their style can be modified with the available "
88
  "widget settings and the available attributes for the shortcode."
89
  msgstr ""
90
 
91
+ #: admin/includes/admin-about.php:108
92
  #, php-format
93
  msgid ""
94
  "A list of all available shortcode attributes with their descriptions is "
95
  "available in the %1$s tab."
96
  msgstr ""
97
 
98
+ #: admin/includes/admin-about.php:109
99
  msgid "The available widget options are described in their tooltip text."
100
  msgstr ""
101
 
102
+ #: admin/includes/admin-about.php:110
103
  #, php-format
104
  msgid ""
105
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
106
  " to insert an URL to the linked event-list page."
107
  msgstr ""
108
 
109
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
110
  msgid "Add links to the single events"
111
  msgstr ""
112
 
113
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
114
  msgid "Add a link to the Event List page"
115
  msgstr ""
116
 
117
+ #: admin/includes/admin-about.php:111
118
  msgid ""
119
  "This is required because the widget does not know in which page or post the "
120
  "shortcode was included."
121
  msgstr ""
122
 
123
+ #: admin/includes/admin-about.php:112
124
  msgid ""
125
  "Additionally you have to insert the correct Shortcode id on the linked page."
126
  " This id describes which shortcode should be used on the given page or post "
127
  "if you have more than one."
128
  msgstr ""
129
 
130
+ #: admin/includes/admin-about.php:113
131
  #, php-format
132
  msgid ""
133
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
135
  "link on your linked page or post."
136
  msgstr ""
137
 
138
+ #: admin/includes/admin-about.php:114
139
  #, php-format
140
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
141
  msgstr ""
142
 
143
+ #: admin/includes/admin-about.php:116
144
  #, php-format
145
  msgid ""
146
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
147
  "want."
148
  msgstr ""
149
 
150
+ #: admin/includes/admin-about.php:116
151
  msgid "Settings page"
152
  msgstr ""
153
 
154
+ #: admin/includes/admin-about.php:123
155
  msgid "About the plugin author"
156
  msgstr ""
157
 
158
+ #: admin/includes/admin-about.php:125
159
  #, php-format
160
  msgid ""
161
  "This plugin is developed by %1$s, you can find more information about the "
162
  "plugin on the %2$s."
163
  msgstr ""
164
 
165
+ #: admin/includes/admin-about.php:125
166
  msgid "WordPress plugin site"
167
  msgstr ""
168
 
169
+ #: admin/includes/admin-about.php:126
170
  #, php-format
171
  msgid "If you like the plugin please rate it on the %1$s."
172
  msgstr ""
173
 
174
+ #: admin/includes/admin-about.php:126
175
  msgid "WordPress plugin review site"
176
  msgstr ""
177
 
178
+ #: admin/includes/admin-about.php:127
179
  msgid ""
180
  "If you want to support the plugin I would be happy to get a small donation"
181
  msgstr ""
182
 
183
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
184
+ #: admin/includes/admin-about.php:130
185
  #, php-format
186
  msgid "Donate with %1$s"
187
  msgstr ""
188
 
189
+ #: admin/includes/admin-about.php:139
190
  msgid ""
191
  "You have the possibility to modify the output if you add some of the "
192
  "following attributes to the shortcode."
193
  msgstr ""
194
 
195
+ #: admin/includes/admin-about.php:140
196
  #, php-format
197
  msgid ""
198
  "You can combine and add as much attributes as you want. E.g. the shortcode "
199
  "including the attributes %1$s and %2$s would looks like this:"
200
  msgstr ""
201
 
202
+ #: admin/includes/admin-about.php:142
203
  msgid ""
204
  "Below you can find a list of all supported attributes with their "
205
  "descriptions and available options:"
206
  msgstr ""
207
 
208
+ #: admin/includes/admin-about.php:157
209
  msgid "Attribute name"
210
  msgstr "Nombre de atributo"
211
 
212
+ #: admin/includes/admin-about.php:158
213
  msgid "Value options"
214
  msgstr "Opciones de valor"
215
 
216
+ #: admin/includes/admin-about.php:159
217
  msgid "Default value"
218
  msgstr "Valor por defecto"
219
 
220
+ #: admin/includes/admin-about.php:160
221
  msgid "Description"
222
  msgstr "Descripción"
223
 
224
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
225
+ #: includes/sc_event-list_helptexts.php:91
226
  msgid "Filter Syntax"
227
  msgstr "Sintaxis de filtro"
228
 
229
+ #: admin/includes/admin-about.php:180
230
  msgid ""
231
  "For date and cat filters you can specify complex filters with the following "
232
  "syntax:"
233
  msgstr ""
234
 
235
+ #: admin/includes/admin-about.php:181
236
  #, php-format
237
  msgid ""
238
  "You can use %1$s and %2$s connections to define complex filters. "
239
  "Additionally you can set brackets %3$s for nested queries."
240
  msgstr ""
241
 
242
+ #: admin/includes/admin-about.php:181
243
  msgid "AND"
244
  msgstr "Y"
245
 
246
+ #: admin/includes/admin-about.php:181
247
  msgid "OR"
248
  msgstr "O"
249
 
250
+ #: admin/includes/admin-about.php:181
251
  msgid "or"
252
  msgstr "o"
253
 
254
+ #: admin/includes/admin-about.php:181
255
  msgid "and"
256
  msgstr "y"
257
 
258
+ #: admin/includes/admin-about.php:182
259
  msgid "Examples for cat filters:"
260
  msgstr "Ejemplos de filtros cat:"
261
 
262
+ #: admin/includes/admin-about.php:183
263
  #, php-format
264
  msgid "Show all events with category %1$s."
265
  msgstr ""
266
 
267
+ #: admin/includes/admin-about.php:184
268
  #, php-format
269
  msgid "Show all events with category %1$s or %2$s."
270
  msgstr ""
271
 
272
+ #: admin/includes/admin-about.php:185
273
  #, php-format
274
  msgid ""
275
  "Show all events with category %1$s and all events where category %2$s as "
276
  "well as %3$s is selected."
277
  msgstr ""
278
 
279
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
280
  msgid "Available Date Formats"
281
  msgstr "Formatos de fecha disponibles"
282
 
283
+ #: admin/includes/admin-about.php:192
284
  msgid "For date filters you can use the following date formats:"
285
  msgstr ""
286
 
287
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
288
  msgid "Available Date Range Formats"
289
  msgstr "Formatos Rango Fecha Disponible"
290
 
291
+ #: admin/includes/admin-about.php:202
292
  msgid "For date filters you can use the following daterange formats:"
293
  msgstr ""
294
 
295
+ #: admin/includes/admin-about.php:215
296
  msgid "Value"
297
  msgstr "Valor"
298
 
299
+ #: admin/includes/admin-about.php:219
300
  msgid "Example"
301
  msgstr "Ejemplo"
302
 
303
+ #: admin/includes/admin-categories.php:79
304
  msgid "Synchronize with post categories"
305
  msgstr ""
306
 
307
+ #: admin/includes/admin-categories.php:90
308
  #, php-format
309
  msgid "%1$s categories modified (%2$s)"
310
  msgstr ""
311
 
312
+ #: admin/includes/admin-categories.php:91
313
  #, php-format
314
  msgid "%1$s categories added (%2$s)"
315
  msgstr ""
316
 
317
+ #: admin/includes/admin-categories.php:92
318
  #, php-format
319
  msgid "%1$s categories deleted (%2$s)"
320
  msgstr ""
321
 
322
+ #: admin/includes/admin-categories.php:95
323
  #, php-format
324
  msgid "%1$s categories not modified (%2$s)"
325
  msgstr ""
326
 
327
+ #: admin/includes/admin-categories.php:96
328
  #, php-format
329
  msgid "%1$s categories not added (%2$s)"
330
  msgstr ""
331
 
332
+ #: admin/includes/admin-categories.php:97
333
  #, php-format
334
  msgid "%1$s categories not deleted (%2$s)"
335
  msgstr ""
336
 
337
+ #: admin/includes/admin-categories.php:100
338
  msgid "An Error occured during the category sync"
339
  msgstr ""
340
 
341
+ #: admin/includes/admin-categories.php:103
342
  msgid "Category sync finished"
343
  msgstr ""
344
 
345
+ #: admin/includes/admin-category-sync.php:77
346
  msgid "Error: You are not allowed to view this page!"
347
  msgstr ""
348
 
349
+ #: admin/includes/admin-category-sync.php:93
350
  msgid "Affected Categories when switching to seperate Event Categories"
351
  msgstr ""
352
 
353
+ #: admin/includes/admin-category-sync.php:94
354
  msgid "Switch option to seperate Event Categories"
355
  msgstr ""
356
 
357
+ #: admin/includes/admin-category-sync.php:95
358
  msgid ""
359
  "If you proceed, all post categories will be copied and all events will be "
360
  "re-assigned to this new categories."
361
  msgstr ""
362
 
363
+ #: admin/includes/admin-category-sync.php:96
364
  msgid ""
365
  "Afterwards the event categories are independent of the post categories."
366
  msgstr ""
367
 
368
+ #: admin/includes/admin-category-sync.php:98
369
  msgid "Affected Categories when switching to use Post Categories for events"
370
  msgstr ""
371
 
372
+ #: admin/includes/admin-category-sync.php:99
373
  msgid "Switch option to use Post Categories for events"
374
  msgstr ""
375
 
376
+ #: admin/includes/admin-category-sync.php:100
377
  msgid ""
378
  "Take a detailed look at the affected categories above before you proceed! "
379
  "All seperate event categories will be deleted, this cannot be undone!"
380
  msgstr ""
381
 
382
+ #: admin/includes/admin-category-sync.php:103
383
  msgid "Event Categories: Synchronise with Post Categories"
384
  msgstr ""
385
 
386
+ #: admin/includes/admin-category-sync.php:104
387
  msgid "Start synchronisation"
388
  msgstr ""
389
 
390
+ #: admin/includes/admin-category-sync.php:105
391
  msgid ""
392
  "If this option is enabled the above listed categories will be deleted and "
393
  "removed from the existing events!"
394
  msgstr ""
395
 
396
+ #: admin/includes/admin-category-sync.php:120
397
  msgid "Categories to modify"
398
  msgstr ""
399
 
400
+ #: admin/includes/admin-category-sync.php:121
401
  msgid "Categories to add"
402
  msgstr ""
403
 
404
+ #: admin/includes/admin-category-sync.php:122
405
  msgid "Categories to delete (optional)"
406
  msgstr ""
407
 
408
+ #: admin/includes/admin-category-sync.php:123
409
  msgid "Delete not available post categories"
410
  msgstr ""
411
 
412
+ #: admin/includes/admin-category-sync.php:126
413
  msgid "Categories with differences"
414
  msgstr ""
415
 
416
+ #: admin/includes/admin-category-sync.php:127
417
  msgid "Categories to add (optional)"
418
  msgstr ""
419
 
420
+ #: admin/includes/admin-category-sync.php:128
421
  msgid "Add not available post categories"
422
  msgstr ""
423
 
424
+ #: admin/includes/admin-category-sync.php:147
425
  msgid "none"
426
  msgstr ""
427
 
428
+ #: admin/includes/admin-import.php:91
429
  msgid "Import Events"
430
  msgstr "Importar Eventos"
431
 
432
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
433
+ #: admin/includes/admin-import.php:254
434
  msgid "Step"
435
  msgstr "Paso"
436
 
437
+ #: admin/includes/admin-import.php:110
438
  msgid "Set import file and options"
439
  msgstr ""
440
 
441
+ #: admin/includes/admin-import.php:113
442
  #, php-format
443
  msgid "Proceed with Step %1$s"
444
  msgstr ""
445
 
446
+ #: admin/includes/admin-import.php:116
447
  msgid "Example file"
448
  msgstr "Archivo de ejemplo"
449
 
450
+ #: admin/includes/admin-import.php:117
451
  #, php-format
452
  msgid ""
453
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
454
  msgstr ""
455
 
456
+ #: admin/includes/admin-import.php:118
457
  msgid "Note"
458
  msgstr "Nota"
459
 
460
+ #: admin/includes/admin-import.php:118
461
  msgid ""
462
  "Do not change the column header and separator line (first two lines), "
463
  "otherwise the import will fail!"
464
  msgstr ""
465
 
466
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
467
  msgid "Sorry, there has been an error."
468
  msgstr ""
469
 
470
+ #: admin/includes/admin-import.php:129
471
  msgid "The file does not exist, please try again."
472
  msgstr ""
473
 
474
+ #: admin/includes/admin-import.php:138
475
  msgid "The uploaded file does not have the required csv extension."
476
  msgstr ""
477
 
478
+ #: admin/includes/admin-import.php:150
479
  msgid "Events review and additonal category selection"
480
  msgstr ""
481
 
482
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
483
  msgid "Error"
484
  msgstr ""
485
 
486
+ #: admin/includes/admin-import.php:156
487
  msgid "This CSV file cannot be imported"
488
  msgstr ""
489
 
490
+ #: admin/includes/admin-import.php:167
491
  msgid "None of the events in this CSV file can be imported"
492
  msgstr ""
493
 
494
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
495
  msgid "Warning"
496
  msgstr ""
497
 
498
+ #: admin/includes/admin-import.php:172
499
  #, php-format
500
  msgid "There is %1$s event which cannot be imported"
501
  msgid_plural "There are %1$s events which cannot be imported"
502
  msgstr[0] ""
503
  msgstr[1] ""
504
 
505
+ #: admin/includes/admin-import.php:184
506
  #, php-format
507
  msgid "CSV line %1$s"
508
  msgstr ""
509
 
510
+ #: admin/includes/admin-import.php:194
511
  msgid "You can still import all other events listed below."
512
  msgstr ""
513
 
514
+ #: admin/includes/admin-import.php:213
515
  msgid ""
516
  "The following category slugs are not available and will be removed from the "
517
  "imported events"
518
  msgstr ""
519
 
520
+ #: admin/includes/admin-import.php:219
521
  msgid ""
522
  "If you want to keep these categories, please create these Categories first "
523
  "and do the import afterwards."
524
  msgstr ""
525
 
526
+ #: admin/includes/admin-import.php:254
527
  msgid "Import result"
528
  msgstr ""
529
 
530
+ #: admin/includes/admin-import.php:257
531
  #, php-format
532
  msgid "Import of %1$s events successful!"
533
  msgstr ""
534
 
535
+ #: admin/includes/admin-import.php:258
536
  msgid "Go back to All Events"
537
  msgstr ""
538
 
539
+ #: admin/includes/admin-import.php:261
540
  msgid "Errors during Import"
541
  msgstr ""
542
 
543
+ #: admin/includes/admin-import.php:269
544
  msgid "Event from CSV-line"
545
  msgstr ""
546
 
547
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
548
  #: includes/widget_helptexts.php:9
549
  msgid "Title"
550
  msgstr "Título"
551
 
552
+ #: admin/includes/admin-import.php:282
553
  msgid "Start Date"
554
  msgstr "Fecha Inicio"
555
 
556
+ #: admin/includes/admin-import.php:283
557
  msgid "End Date"
558
  msgstr "Fecha Final"
559
 
560
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
561
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
562
  msgid "Time"
563
  msgstr "Hora"
564
 
565
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
566
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
567
  #: includes/options_helptexts.php:76
568
  msgid "Location"
569
  msgstr "Ubicación"
570
 
571
+ #: admin/includes/admin-import.php:286
572
  msgid "Content"
573
  msgstr ""
574
 
575
+ #: admin/includes/admin-import.php:287
576
  msgid "Category slugs"
577
  msgstr ""
578
 
579
+ #: admin/includes/admin-import.php:333
580
  msgid "Header line is missing or not correct!"
581
  msgstr ""
582
 
583
+ #: admin/includes/admin-import.php:334
584
  #, php-format
585
  msgid ""
586
  "Have a look at the %1$sexample file%2$s to see the correct header line "
587
  "format."
588
  msgstr ""
589
 
590
+ #: admin/includes/admin-import.php:341
591
  #, php-format
592
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
593
  msgstr ""
594
 
595
+ #: admin/includes/admin-import.php:371
596
  msgid "Empty event title found"
597
  msgstr ""
598
 
599
+ #: admin/includes/admin-import.php:377
600
  msgid "Wrong date format for startdate"
601
  msgstr ""
602
 
603
+ #: admin/includes/admin-import.php:385
604
  msgid "Wrong date format for enddate"
605
  msgstr ""
606
 
607
+ #: admin/includes/admin-import.php:439
608
  msgid "Import events"
609
  msgstr ""
610
 
611
+ #: admin/includes/admin-import.php:440
612
  msgid "Add additional categories"
613
  msgstr ""
614
 
615
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
616
  msgid "No events found"
617
  msgstr ""
618
 
619
+ #: admin/includes/admin-import.php:518
620
  msgid "Saving of event failed!"
621
  msgstr ""
622
 
623
+ #: admin/includes/admin-main.php:108
624
  msgid "Event Date"
625
  msgstr ""
626
 
627
+ #: admin/includes/admin-main.php:113
628
  msgid "Author"
629
  msgstr "Autor"
630
 
631
+ #: admin/includes/admin-main.php:182
632
  #, php-format
633
  msgid "Add a copy of %1$s"
634
  msgstr ""
635
 
636
+ #: admin/includes/admin-main.php:182
637
  msgid "Copy"
638
  msgstr ""
639
 
640
+ #: admin/includes/admin-main.php:268
641
+ msgid "Import"
642
+ msgstr "Importar"
643
+
644
+ #: admin/includes/admin-new.php:83
645
  msgid "Event data"
646
  msgstr ""
647
 
648
+ #: admin/includes/admin-new.php:116
649
  msgid "Add Copy"
650
  msgstr ""
651
 
652
+ #: admin/includes/admin-new.php:124
653
  msgid "Date"
654
  msgstr "Fecha"
655
 
656
+ #: admin/includes/admin-new.php:124
657
  msgid "required"
658
  msgstr "obligatorio"
659
 
660
+ #: admin/includes/admin-new.php:127
661
  msgid "Multi-Day Event"
662
  msgstr "Evento de varios días"
663
 
664
+ #: admin/includes/admin-new.php:147
665
  msgid "Event Title"
666
  msgstr ""
667
 
668
+ #: admin/includes/admin-new.php:164
669
  msgid "Event Content"
670
  msgstr ""
671
 
672
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
673
  msgid "Event updated."
674
  msgstr ""
675
 
676
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
677
  msgid "View event"
678
  msgstr ""
679
 
680
+ #: admin/includes/admin-new.php:246
681
  #, php-format
682
  msgid "Event restored to revision from %1$s"
683
  msgstr ""
684
 
685
+ #: admin/includes/admin-new.php:247
686
  msgid "Event published."
687
  msgstr ""
688
 
689
+ #: admin/includes/admin-new.php:248
690
+ msgid "Event saved."
691
+ msgstr ""
692
+
693
+ #: admin/includes/admin-new.php:249
694
  msgid "Event submitted."
695
  msgstr ""
696
 
697
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
698
+ #: admin/includes/admin-new.php:253
699
  msgid "Preview event"
700
  msgstr ""
701
 
702
+ #: admin/includes/admin-new.php:251
703
  #, php-format
704
  msgid "Event scheduled for: %1$s>"
705
  msgstr ""
706
 
707
+ #: admin/includes/admin-new.php:253
708
  msgid "Event draft updated."
709
  msgstr ""
710
 
711
+ #: admin/includes/admin-settings.php:97
712
  msgid "Go to Event Category switching page"
713
  msgstr ""
714
 
715
+ #: admin/includes/admin-settings.php:111
716
  msgid "Frontend Settings"
717
  msgstr "Configuración de interfaz"
718
 
719
+ #: admin/includes/admin-settings.php:112
720
  msgid "Admin Page Settings"
721
  msgstr "Configuración de página de administrador"
722
 
723
+ #: admin/includes/admin-settings.php:113
724
  msgid "Feed Settings"
725
  msgstr "Configuración Conectores"
726
 
727
+ #: admin/includes/admin-settings.php:114
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
732
  msgid "Year"
733
  msgstr "Año"
734
 
735
+ #: includes/daterange_helptexts.php:10
736
  msgid "A year can be specified in 4 digit format."
737
  msgstr ""
738
 
739
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
740
+ #: includes/daterange_helptexts.php:95
741
  #, php-format
742
  msgid ""
743
  "For a start date filter the first day of %1$s is used, in an end date the "
744
  "last day."
745
  msgstr ""
746
 
747
+ #: includes/daterange_helptexts.php:13
748
  msgid "the resulting year"
749
  msgstr ""
750
 
751
+ #: includes/daterange_helptexts.php:19
752
  msgid "Month"
753
  msgstr "Mes"
754
 
755
+ #: includes/daterange_helptexts.php:21
756
  msgid ""
757
  "A month can be specified with 4 digits for the year and 2 digits for the "
758
  "month, seperated by a hyphen (-)."
759
  msgstr ""
760
 
761
+ #: includes/daterange_helptexts.php:24
762
  msgid "the resulting month"
763
  msgstr ""
764
 
765
+ #: includes/daterange_helptexts.php:30
766
  msgid "Day"
767
  msgstr "Día"
768
 
769
+ #: includes/daterange_helptexts.php:31
770
  msgid ""
771
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
772
  " month and 2 digets for the day, seperated by hyphens (-)."
773
  msgstr ""
774
 
775
+ #: includes/daterange_helptexts.php:36
776
  msgid "Relative Year"
777
  msgstr "Año relativo"
778
 
779
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
780
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
781
  #, php-format
782
  msgid "%1$s from now can be specified in the following notation: %2$s"
783
  msgstr ""
784
 
785
+ #: includes/daterange_helptexts.php:40
786
  msgid "A relative year"
787
  msgstr ""
788
 
789
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
790
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
791
  #, php-format
792
  msgid ""
793
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
794
  "%3$s or %4$s attached (see also the example below)."
795
  msgstr ""
796
 
797
+ #: includes/daterange_helptexts.php:46
798
  msgid "number of years"
799
  msgstr ""
800
 
801
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
802
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
803
  #, php-format
804
  msgid "Additionally the following values are available: %1$s"
805
  msgstr ""
806
 
807
+ #: includes/daterange_helptexts.php:58
808
  msgid "Relative Month"
809
  msgstr "Mes relativo"
810
 
811
+ #: includes/daterange_helptexts.php:62
812
  msgid "A relative month"
813
  msgstr "Un mes relativo"
814
 
815
+ #: includes/daterange_helptexts.php:68
816
  msgid "number of months"
817
  msgstr "número de meses"
818
 
819
+ #: includes/daterange_helptexts.php:80
820
  msgid "Relative Week"
821
  msgstr "Semana relativa"
822
 
823
+ #: includes/daterange_helptexts.php:84
824
  msgid "A relative week"
825
  msgstr "Una semana relativa"
826
 
827
+ #: includes/daterange_helptexts.php:90
828
  msgid "number of weeks"
829
  msgstr "número de semanas"
830
 
831
+ #: includes/daterange_helptexts.php:96
832
  msgid "the resulting week"
833
  msgstr ""
834
 
835
+ #: includes/daterange_helptexts.php:99
836
  #, php-format
837
  msgid ""
838
  "The first day of the week is depending on the option %1$s which can be found"
839
  " and changed in %2$s."
840
  msgstr ""
841
 
842
+ #: includes/daterange_helptexts.php:110
843
  msgid "Relative Day"
844
  msgstr "Día relativo"
845
 
846
+ #: includes/daterange_helptexts.php:114
847
  msgid "A relative day"
848
  msgstr "Un día relativo"
849
 
850
+ #: includes/daterange_helptexts.php:120
851
  msgid "number of days"
852
  msgstr "Número de días"
853
 
854
+ #: includes/daterange_helptexts.php:134
855
  msgid "Date range"
856
  msgstr "Rango de fechas"
857
 
858
+ #: includes/daterange_helptexts.php:136
859
  msgid ""
860
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
861
+ "\t\t\tFor the start and end date any available date format can be used."
862
  msgstr ""
863
 
864
+ #: includes/daterange_helptexts.php:147
865
  msgid "This value defines a range without any limits."
866
  msgstr ""
867
 
868
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
869
+ #: includes/daterange_helptexts.php:171
870
  #, php-format
871
  msgid "The corresponding date_range format is: %1$s"
872
  msgstr ""
873
 
874
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
875
  msgid "Upcoming"
876
  msgstr "Próximamente"
877
 
878
+ #: includes/daterange_helptexts.php:158
879
  msgid "This value defines a range from the actual day to the future."
880
  msgstr ""
881
 
882
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
883
  msgid "Past"
884
  msgstr "Pasado"
885
 
886
+ #: includes/daterange_helptexts.php:169
887
  msgid "This value defines a range from the past to the previous day."
888
  msgstr ""
889
 
890
+ #: includes/event.php:157
891
  msgid "No valid start date provided"
892
  msgstr ""
893
 
894
+ #: includes/event.php:343 includes/event.php:345
895
+ #: includes/sc_event-list.php:330
896
  msgid "read more"
897
  msgstr ""
898
 
899
+ #: includes/events_post_type.php:83
900
  msgid "Events"
901
  msgstr "Eventos"
902
 
903
+ #: includes/events_post_type.php:84
904
  msgid "Event"
905
  msgstr ""
906
 
907
+ #: includes/events_post_type.php:85
908
  msgid "Add New"
909
  msgstr "Añadir Nuevo"
910
 
911
+ #: includes/events_post_type.php:86
912
  msgid "Add New Event"
913
  msgstr "Añadir Nuevo Evento"
914
 
915
+ #: includes/events_post_type.php:87
916
  msgid "Edit Event"
917
  msgstr "Editar Evento"
918
 
919
+ #: includes/events_post_type.php:88
920
  msgid "New Event"
921
  msgstr ""
922
 
923
+ #: includes/events_post_type.php:89
924
  msgid "View Event"
925
  msgstr ""
926
 
927
+ #: includes/events_post_type.php:90
928
  msgid "View Events"
929
  msgstr ""
930
 
931
+ #: includes/events_post_type.php:91
932
  msgid "Search Events"
933
  msgstr ""
934
 
935
+ #: includes/events_post_type.php:93
936
  msgid "No events found in Trash"
937
  msgstr ""
938
 
939
+ #: includes/events_post_type.php:95
940
  msgid "All Events"
941
  msgstr "Añadir Eventos"
942
 
943
+ #: includes/events_post_type.php:96
944
  msgid "Event Archives"
945
  msgstr ""
946
 
947
+ #: includes/events_post_type.php:97
948
  msgid "Event Attributes"
949
  msgstr ""
950
 
951
+ #: includes/events_post_type.php:98
952
  msgid "Insert into event"
953
  msgstr ""
954
 
955
+ #: includes/events_post_type.php:99
956
  msgid "Uploaded to this event"
957
  msgstr ""
958
 
959
+ #: includes/events_post_type.php:100
960
  msgid "Event List"
961
  msgstr "Listado Eventos"
962
 
963
+ #: includes/events_post_type.php:101
964
  msgid "Filter events list"
965
  msgstr ""
966
 
967
+ #: includes/events_post_type.php:102
968
  msgid "Events list navigation"
969
  msgstr ""
970
 
971
+ #: includes/events_post_type.php:103
972
  msgid "Events list"
973
  msgstr ""
974
 
975
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
976
  msgid "Reset"
977
  msgstr ""
978
 
979
+ #: includes/filterbar.php:329
980
  msgid "All"
981
  msgstr "Todos"
982
 
983
+ #: includes/filterbar.php:332
984
  msgid "All Dates"
985
  msgstr ""
986
 
1420
  " switching page from here."
1421
  msgstr ""
1422
 
1423
+ #: includes/options.php:92
1424
  msgid "events"
1425
  msgstr ""
1426
 
1427
+ #: includes/options.php:96
1428
  msgid "Show content"
1429
  msgstr ""
1430
 
1431
+ #: includes/options.php:100
1432
  msgid "Hide content"
1433
  msgstr ""
1434
 
1435
+ #: includes/sc_event-list_helptexts.php:20
1436
  msgid "event-id"
1437
  msgstr ""
1438
 
1439
+ #: includes/sc_event-list_helptexts.php:23
1440
  #, php-format
1441
  msgid ""
1442
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1444
  "this event is shown."
1445
  msgstr ""
1446
 
1447
+ #: includes/sc_event-list_helptexts.php:29
1448
+ #: includes/sc_event-list_helptexts.php:57
1449
  msgid "year"
1450
  msgstr ""
1451
 
1452
+ #: includes/sc_event-list_helptexts.php:31
1453
  msgid ""
1454
  "This attribute defines which events are initially shown. The default is to "
1455
  "show the upcoming events only."
1456
  msgstr ""
1457
 
1458
+ #: includes/sc_event-list_helptexts.php:33
1459
  #, php-format
1460
  msgid ""
1461
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1462
  "change the displayed event date range via the filterbar or url parameters."
1463
  msgstr ""
1464
 
1465
+ #: includes/sc_event-list_helptexts.php:39
1466
  msgid "category slug"
1467
  msgstr ""
1468
 
1469
+ #: includes/sc_event-list_helptexts.php:41
1470
  msgid ""
1471
  "This attribute defines the category of which events are initially shown. The"
1472
  " default is to show events of all categories."
1473
  msgstr ""
1474
 
1475
+ #: includes/sc_event-list_helptexts.php:42
1476
  msgid ""
1477
  "Provide a category slug to change this behavior. It is still possible to "
1478
  "change the displayed categories via the filterbar or url parameters."
1479
  msgstr ""
1480
 
1481
+ #: includes/sc_event-list_helptexts.php:48
1482
  msgid "This attribute defines the initial order of the events."
1483
  msgstr ""
1484
 
1485
+ #: includes/sc_event-list_helptexts.php:50
1486
+ #, php-format
1487
  msgid ""
1488
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1489
  "in the opposite direction (from new to old)."
1490
  msgstr ""
1491
 
1492
+ #: includes/sc_event-list_helptexts.php:60
1493
  #, php-format
1494
  msgid ""
1495
  "This attribute defines the dates and date ranges of which events are "
1496
  "displayed. The default is %1$s to show all events."
1497
  msgstr ""
1498
 
1499
+ #: includes/sc_event-list_helptexts.php:64
1500
  #, php-format
1501
  msgid ""
1502
  "Filtered events according to %1$s value are not available in the event list."
1503
  msgstr ""
1504
 
1505
+ #: includes/sc_event-list_helptexts.php:68
1506
  #, php-format
1507
  msgid ""
1508
  "You can find all available values with a description and examples in the "
1509
  "sections %1$s and %2$s below."
1510
  msgstr ""
1511
 
1512
+ #: includes/sc_event-list_helptexts.php:73
1513
  #, php-format
1514
  msgid "See %1$s description if you want to define complex filters."
1515
  msgstr ""
1516
 
1517
+ #: includes/sc_event-list_helptexts.php:79
1518
  msgid "category slugs"
1519
  msgstr ""
1520
 
1521
+ #: includes/sc_event-list_helptexts.php:82
1522
  msgid ""
1523
  "This attribute defines the category filter which filters the events to show."
1524
  " The default is $1$s or an empty string to show all events."
1525
  msgstr ""
1526
 
1527
+ #: includes/sc_event-list_helptexts.php:86
1528
  #, php-format
1529
  msgid ""
1530
  "Events with categories that doesn´t match %1$s are not shown in the event "
1531
  "list. They are also not available if a manual url parameter is added."
1532
  msgstr ""
1533
 
1534
+ #: includes/sc_event-list_helptexts.php:90
1535
  #, php-format
1536
  msgid ""
1537
  "The filter is specified via the given category slugs. See %1$s description "
1538
  "if you want to define complex filters."
1539
  msgstr ""
1540
 
1541
+ #: includes/sc_event-list_helptexts.php:96
1542
+ #: includes/sc_event-list_helptexts.php:242
1543
+ #: includes/sc_event-list_helptexts.php:276
1544
+ #: includes/sc_event-list_helptexts.php:318
1545
  msgid "number"
1546
  msgstr ""
1547
 
1548
+ #: includes/sc_event-list_helptexts.php:99
1549
  #, php-format
1550
  msgid ""
1551
  "This attribute defines how many events should be displayed if upcoming "
1553
  "displayed."
1554
  msgstr ""
1555
 
1556
+ #: includes/sc_event-list_helptexts.php:102
1557
  msgid ""
1558
  "Please not that in the actual version there is no pagination of the events "
1559
  "available, so the event list can be very long."
1560
  msgstr ""
1561
 
1562
+ #: includes/sc_event-list_helptexts.php:108
1563
  msgid ""
1564
  "This attribute defines if the filterbar should be displayed. The filterbar "
1565
  "allows the users to specify filters for the listed events."
1566
  msgstr ""
1567
 
1568
+ #: includes/sc_event-list_helptexts.php:110
1569
  #, php-format
1570
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1571
  msgstr ""
1572
 
1573
+ #: includes/sc_event-list_helptexts.php:115
1574
  #, php-format
1575
  msgid ""
1576
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1577
  " in the single event view."
1578
  msgstr ""
1579
 
1580
+ #: includes/sc_event-list_helptexts.php:125
1581
  #, php-format
1582
  msgid ""
1583
  "This attribute specifies the available items in the filterbar. This options "
1584
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1585
  msgstr ""
1586
 
1587
+ #: includes/sc_event-list_helptexts.php:128
1588
  msgid ""
1589
  "Find below an overview of the available filterbar items and their options:"
1590
  msgstr ""
1591
 
1592
+ #: includes/sc_event-list_helptexts.php:132
1593
  msgid "filterbar item"
1594
  msgstr ""
1595
 
1596
+ #: includes/sc_event-list_helptexts.php:133
1597
+ #: includes/sc_event-list_helptexts.php:206
1598
  msgid "description"
1599
  msgstr ""
1600
 
1601
+ #: includes/sc_event-list_helptexts.php:134
1602
  msgid "item options"
1603
  msgstr ""
1604
 
1605
+ #: includes/sc_event-list_helptexts.php:135
1606
  msgid "option values"
1607
  msgstr ""
1608
 
1609
+ #: includes/sc_event-list_helptexts.php:136
1610
  msgid "default value"
1611
  msgstr ""
1612
 
1613
+ #: includes/sc_event-list_helptexts.php:137
1614
  msgid "option description"
1615
  msgstr ""
1616
 
1617
+ #: includes/sc_event-list_helptexts.php:141
1618
  msgid ""
1619
  "Show a list of all available years. Additional there are some special "
1620
  "entries available (see item options)."
1621
  msgstr ""
1622
 
1623
+ #: includes/sc_event-list_helptexts.php:145
1624
+ #: includes/sc_event-list_helptexts.php:156
1625
  msgid "Add an entry to show all events."
1626
  msgstr ""
1627
 
1628
+ #: includes/sc_event-list_helptexts.php:147
1629
+ #: includes/sc_event-list_helptexts.php:158
1630
  msgid "Add an entry to show all upcoming events."
1631
  msgstr ""
1632
 
1633
+ #: includes/sc_event-list_helptexts.php:148
1634
+ #: includes/sc_event-list_helptexts.php:159
1635
  msgid "Add an entry to show events in the past."
1636
  msgstr ""
1637
 
1638
+ #: includes/sc_event-list_helptexts.php:149
1639
  msgid "Set descending or ascending order of year entries."
1640
  msgstr ""
1641
 
1642
+ #: includes/sc_event-list_helptexts.php:152
1643
  msgid "Show a list of all available months."
1644
  msgstr ""
1645
 
1646
+ #: includes/sc_event-list_helptexts.php:160
1647
  msgid "Set descending or ascending order of month entries."
1648
  msgstr ""
1649
 
1650
+ #: includes/sc_event-list_helptexts.php:163
1651
  msgid "php date-formats"
1652
  msgstr ""
1653
 
1654
+ #: includes/sc_event-list_helptexts.php:165
1655
  msgid "Set the displayed date format of the month entries."
1656
  msgstr ""
1657
 
1658
+ #: includes/sc_event-list_helptexts.php:170
1659
  #, php-format
1660
  msgid ""
1661
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1663
  "order."
1664
  msgstr ""
1665
 
1666
+ #: includes/sc_event-list_helptexts.php:179
1667
  #, php-format
1668
  msgid ""
1669
  "Specifies the displayed values and their order. The items must be seperated "
1670
  "by %1$s."
1671
  msgstr ""
1672
 
1673
+ #: includes/sc_event-list_helptexts.php:185
1674
  msgid "Show a list of all available categories."
1675
  msgstr ""
1676
 
1677
+ #: includes/sc_event-list_helptexts.php:189
1678
  msgid "Add an entry to show events from all categories."
1679
  msgstr ""
1680
 
1681
+ #: includes/sc_event-list_helptexts.php:193
1682
  msgid "A link to reset the eventlist filter to standard."
1683
  msgstr ""
1684
 
1685
+ #: includes/sc_event-list_helptexts.php:195
1686
  msgid "any text"
1687
  msgstr ""
1688
 
1689
+ #: includes/sc_event-list_helptexts.php:197
1690
  msgid "Set the caption of the link."
1691
  msgstr ""
1692
 
1693
+ #: includes/sc_event-list_helptexts.php:201
1694
  msgid "Find below an overview of the available filterbar display options:"
1695
  msgstr ""
1696
 
1697
+ #: includes/sc_event-list_helptexts.php:205
1698
  msgid "display option"
1699
  msgstr ""
1700
 
1701
+ #: includes/sc_event-list_helptexts.php:207
1702
  msgid "available for"
1703
  msgstr ""
1704
 
1705
+ #: includes/sc_event-list_helptexts.php:211
1706
  #, php-format
1707
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1708
  msgstr ""
1709
 
1710
+ #: includes/sc_event-list_helptexts.php:216
1711
  msgid ""
1712
  "Shows a select box where an item can be choosen. After the selection of an "
1713
  "item the page is reloaded via javascript to show the filtered events."
1714
  msgstr ""
1715
 
1716
+ #: includes/sc_event-list_helptexts.php:219
1717
  msgid "Shows a simple link which can be clicked."
1718
  msgstr ""
1719
 
1720
+ #: includes/sc_event-list_helptexts.php:222
1721
  msgid "Find below some declaration examples with descriptions:"
1722
  msgstr ""
1723
 
1724
+ #: includes/sc_event-list_helptexts.php:225
1725
  #, php-format
1726
  msgid ""
1727
  "In this example you can see that the filterbar item and the used display "
1729
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1730
  msgstr ""
1731
 
1732
+ #: includes/sc_event-list_helptexts.php:231
1733
  #, php-format
1734
  msgid ""
1735
  "In this example you can see that filterbar options can be added in brackets "
1736
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1737
  msgstr ""
1738
 
1739
+ #: includes/sc_event-list_helptexts.php:232
1740
  msgid "option_name"
1741
  msgstr ""
1742
 
1743
+ #: includes/sc_event-list_helptexts.php:232
1744
  msgid "value"
1745
  msgstr ""
1746
 
1747
+ #: includes/sc_event-list_helptexts.php:236
1748
  #, php-format
1749
  msgid ""
1750
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1753
  "left-aligned and the reset link will be on the right side."
1754
  msgstr ""
1755
 
1756
+ #: includes/sc_event-list_helptexts.php:244
1757
+ #: includes/sc_event-list_helptexts.php:277
1758
  msgid ""
1759
  "This attribute specifies if the title should be truncated to the given "
1760
  "number of characters in the event list."
1761
  msgstr ""
1762
 
1763
+ #: includes/sc_event-list_helptexts.php:246
1764
+ #: includes/sc_event-list_helptexts.php:278
1765
  #, php-format
1766
  msgid ""
1767
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1768
  "is automatically truncated via css."
1769
  msgstr ""
1770
 
1771
+ #: includes/sc_event-list_helptexts.php:250
1772
+ #: includes/sc_event-list_helptexts.php:279
1773
+ #: includes/sc_event-list_helptexts.php:322
1774
  msgid "This attribute has no influence if only a single event is shown."
1775
  msgstr ""
1776
 
1777
+ #: includes/sc_event-list_helptexts.php:257
1778
  msgid ""
1779
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1780
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1781
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1785
  msgid ""
1786
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1787
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1788
+ "\t\t\t\t\tWith \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1789
  msgstr ""
1790
 
1791
+ #: includes/sc_event-list_helptexts.php:286
1792
  msgid ""
1793
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1794
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1795
+ "\t\t\t\t\tWith \"event_list_only\" the categories are 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:297
1799
  msgid ""
1800
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1801
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1802
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1803
  msgstr ""
1804
 
1805
+ #: includes/sc_event-list_helptexts.php:308
1806
  msgid ""
1807
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1808
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1809
+ "\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"
1810
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1811
+ "\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)."
1812
  msgstr ""
1813
 
1814
+ #: includes/sc_event-list_helptexts.php:320
1815
  msgid ""
1816
  "This attribute specifies if the content should be truncate to the given "
1817
  "number of characters in the event list."
1818
  msgstr ""
1819
 
1820
+ #: includes/sc_event-list_helptexts.php:321
1821
  #, php-format
1822
  msgid "With the standard value %1$s the full text is displayed."
1823
  msgstr ""
1824
 
1825
+ #: includes/sc_event-list_helptexts.php:329
1826
  msgid ""
1827
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1828
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1829
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1830
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1831
  msgstr ""
1832
 
1833
+ #: includes/sc_event-list_helptexts.php:341
1834
  msgid ""
1835
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1836
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1837
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1838
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1839
  msgstr ""
1840
 
1841
+ #: includes/sc_event-list_helptexts.php:353
1842
  msgid ""
1843
  "This attribute specifies if a rss feed link should be added.<br />\n"
1844
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1845
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1846
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1847
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1848
  msgstr ""
1849
 
1850
+ #: includes/sc_event-list_helptexts.php:366
1851
  msgid ""
1852
  "This attribute specifies if a ical feed link should be added.<br />\n"
1853
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1854
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1855
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1856
  msgstr ""
1857
 
1858
+ #: includes/sc_event-list_helptexts.php:378
1859
  msgid ""
1860
  "This attribute specifies the page or post url for event links.<br />\n"
1861
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1862
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1863
  msgstr ""
1864
 
1865
+ #: includes/sc_event-list_helptexts.php:391
1866
  msgid ""
1867
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1868
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1869
  msgstr ""
1870
 
1871
+ #: includes/sc_event-list.php:184
1872
  msgid "Sorry, the requested event is not available!"
1873
  msgstr ""
1874
 
1875
+ #: includes/sc_event-list.php:193
1876
  msgid "Event Information:"
1877
  msgstr "Información del evento:"
1878
 
1879
+ #: includes/sc_event-list.php:437
1880
  msgid "Link to RSS feed"
1881
  msgstr ""
1882
 
1883
+ #: includes/sc_event-list.php:447
1884
  msgid "Link to iCal feed"
1885
  msgstr ""
1886
 
1913
  msgid "Truncate event title to"
1914
  msgstr ""
1915
 
1916
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1917
+ #: includes/widget_helptexts.php:103
1918
  msgid "characters"
1919
  msgstr "caracteres"
1920
 
1921
+ #: includes/widget_helptexts.php:39
1922
  msgid ""
1923
  "This option defines the number of displayed characters for the event title."
1924
  msgstr ""
1925
 
1926
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1927
  #, php-format
1928
  msgid ""
1929
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1930
  "automatically truncate the text via css."
1931
  msgstr ""
1932
 
1933
+ #: includes/widget_helptexts.php:51
1934
  msgid "Show event starttime"
1935
  msgstr ""
1936
 
1937
+ #: includes/widget_helptexts.php:53
1938
  msgid "This option defines if the event start time will be displayed."
1939
  msgstr ""
1940
 
1941
+ #: includes/widget_helptexts.php:60
1942
  msgid "Show event location"
1943
  msgstr ""
1944
 
1945
+ #: includes/widget_helptexts.php:62
1946
  msgid "This option defines if the event location will be displayed."
1947
  msgstr ""
1948
 
1949
+ #: includes/widget_helptexts.php:69
1950
  msgid "Truncate location to"
1951
  msgstr ""
1952
 
1953
+ #: includes/widget_helptexts.php:72
1954
  msgid ""
1955
  "If the event location is diplayed this option defines the number of "
1956
  "displayed characters."
1957
  msgstr ""
1958
 
1959
+ #: includes/widget_helptexts.php:84
1960
  msgid "Show event excerpt"
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:86
1964
  msgid "This option defines if the event excerpt will be displayed."
1965
  msgstr ""
1966
 
1967
+ #: includes/widget_helptexts.php:93
1968
  msgid "Show event content"
1969
  msgstr ""
1970
 
1971
+ #: includes/widget_helptexts.php:95
1972
  msgid "This option defines if the event content will be displayed."
1973
  msgstr ""
1974
 
1975
+ #: includes/widget_helptexts.php:102
1976
  msgid "Truncate content to"
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:105
1980
  msgid ""
1981
  "If the event content are diplayed this option defines the number of diplayed"
1982
  " characters."
1983
  msgstr ""
1984
 
1985
+ #: includes/widget_helptexts.php:107
1986
  #, php-format
1987
  msgid "Set this value to %1$s to view the full text."
1988
  msgstr ""
1989
 
1990
+ #: includes/widget_helptexts.php:116
1991
  msgid "URL to the linked Event List page"
1992
  msgstr ""
1993
 
1994
+ #: includes/widget_helptexts.php:118
1995
  msgid ""
1996
  "This option defines the url to the linked Event List page. This option is "
1997
  "required if you want to use one of the options below."
1998
  msgstr ""
1999
 
2000
+ #: includes/widget_helptexts.php:125
2001
  msgid "Shortcode ID on linked page"
2002
  msgstr ""
2003
 
2004
+ #: includes/widget_helptexts.php:127
2005
  msgid ""
2006
  "This option defines the shortcode-id for the Event List on the linked page. "
2007
  "Normally the standard value 1 is correct, you only have to change it if you "
2008
  "use multiple event-list shortcodes on the linked page."
2009
  msgstr ""
2010
 
2011
+ #: includes/widget_helptexts.php:136
2012
  msgid ""
2013
  "With this option you can add a link to the single event page for every "
2014
  "displayed event. You have to specify the url to the page and the shortcode "
2015
  "id option if you want to use it."
2016
  msgstr ""
2017
 
2018
+ #: includes/widget_helptexts.php:145
2019
  msgid ""
2020
  "With this option you can add a link to the event-list page below the "
2021
  "diplayed events. You have to specify the url to page option if you want to "
2022
  "use it."
2023
  msgstr ""
2024
 
2025
+ #: includes/widget_helptexts.php:152
2026
  msgid "Caption for the link"
2027
  msgstr ""
2028
 
2029
+ #: includes/widget_helptexts.php:154
2030
  msgid ""
2031
  "This option defines the text for the link to the Event List page if the "
2032
  "approriate option is selected."
2033
  msgstr ""
2034
 
2035
+ #: includes/widget.php:38
2036
  msgid "With this widget a list of upcoming events can be displayed."
2037
  msgstr ""
2038
 
2039
+ #: includes/widget.php:43
2040
  msgid "Upcoming events"
2041
  msgstr ""
2042
 
2043
+ #: includes/widget.php:57
2044
  msgid "show events page"
2045
  msgstr ""
languages/event-list-et_EE.mo CHANGED
Binary file
languages/event-list-et_EE.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
12
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,117 +18,117 @@ msgstr ""
18
  "Language: et_EE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:64
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
32
  msgid "Event List Settings"
33
  msgstr "Sündmuste loendi seaded"
34
 
35
- #: admin/admin.php:116
36
  msgid "Settings"
37
  msgstr "Seaded"
38
 
39
- #: admin/admin.php:120 admin/includes/admin-about.php:43
40
  msgid "About Event List"
41
  msgstr "Sündmuste loendist"
42
 
43
- #: admin/admin.php:120
44
  msgid "About"
45
  msgstr ""
46
 
47
- #: admin/admin.php:144
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
55
  msgid "General"
56
  msgstr ""
57
 
58
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
59
- #: admin/includes/admin-about.php:117
60
  msgid "Shortcode Attributes"
61
  msgstr ""
62
 
63
- #: admin/includes/admin-about.php:82
64
  msgid "Help and Instructions"
65
  msgstr "Abi ja juhised"
66
 
67
- #: admin/includes/admin-about.php:83
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
- #: admin/includes/admin-about.php:84
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Saidil olevate sündmuste kuvamiseks on 2 võimalust"
75
 
76
- #: admin/includes/admin-about.php:85
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "lisades lühikoodi<strong> shotcode</strong> %1$s mis tahes lehele või postitusele"
80
 
81
- #: admin/includes/admin-about.php:86
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "lisades vidina <strong>widget</strong> %1$s külgribale"
85
 
86
- #: admin/includes/admin-about.php:87
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr ""
91
 
92
- #: admin/includes/admin-about.php:88
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
- #: admin/includes/admin-about.php:89
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr ""
102
 
103
- #: admin/includes/admin-about.php:90
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
111
  msgid "Add links to the single events"
112
  msgstr "Lisa link sündmuse juurde"
113
 
114
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
115
  msgid "Add a link to the Event List page"
116
  msgstr "Lisa link lehe sündmuste loendisse"
117
 
118
- #: admin/includes/admin-about.php:91
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
- #: admin/includes/admin-about.php:92
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
- #: admin/includes/admin-about.php:93
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -136,592 +136,596 @@ msgid ""
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
- #: admin/includes/admin-about.php:94
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
- #: admin/includes/admin-about.php:96
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
- #: admin/includes/admin-about.php:96
152
  msgid "Settings page"
153
  msgstr "Seadete leht"
154
 
155
- #: admin/includes/admin-about.php:103
156
  msgid "About the plugin author"
157
  msgstr "Plugina autorist"
158
 
159
- #: admin/includes/admin-about.php:105
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
- #: admin/includes/admin-about.php:105
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
- #: admin/includes/admin-about.php:106
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
- #: admin/includes/admin-about.php:106
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
- #: admin/includes/admin-about.php:107
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
185
- #: admin/includes/admin-about.php:110
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
- #: admin/includes/admin-about.php:119
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr ""
195
 
196
- #: admin/includes/admin-about.php:120
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr ""
202
 
203
- #: admin/includes/admin-about.php:122
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr ""
208
 
209
- #: admin/includes/admin-about.php:137
210
  msgid "Attribute name"
211
  msgstr "Atribuudi nimi"
212
 
213
- #: admin/includes/admin-about.php:138
214
  msgid "Value options"
215
  msgstr ""
216
 
217
- #: admin/includes/admin-about.php:139
218
  msgid "Default value"
219
  msgstr ""
220
 
221
- #: admin/includes/admin-about.php:140
222
  msgid "Description"
223
  msgstr "Kirjeldus"
224
 
225
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
226
- #: includes/sc_event-list_helptexts.php:42
227
  msgid "Filter Syntax"
228
  msgstr ""
229
 
230
- #: admin/includes/admin-about.php:160
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr ""
235
 
236
- #: admin/includes/admin-about.php:161
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr ""
242
 
243
- #: admin/includes/admin-about.php:161
244
  msgid "AND"
245
  msgstr "JA"
246
 
247
- #: admin/includes/admin-about.php:161
248
  msgid "OR"
249
  msgstr "VÕI"
250
 
251
- #: admin/includes/admin-about.php:161
252
  msgid "or"
253
  msgstr "või"
254
 
255
- #: admin/includes/admin-about.php:161
256
  msgid "and"
257
  msgstr "ja"
258
 
259
- #: admin/includes/admin-about.php:162
260
  msgid "Examples for cat filters:"
261
  msgstr ""
262
 
263
- #: admin/includes/admin-about.php:163
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr "Näita kõiki sündmusi koos kategooriaga %1$s."
267
 
268
- #: admin/includes/admin-about.php:164
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr "Näita kõiki sündmusi koos kategooriaga %1$s või %2$s."
272
 
273
- #: admin/includes/admin-about.php:165
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr ""
279
 
280
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
281
  msgid "Available Date Formats"
282
  msgstr "Saadaolevad kuupäeva vormingud"
283
 
284
- #: admin/includes/admin-about.php:172
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr ""
287
 
288
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
289
  msgid "Available Date Range Formats"
290
  msgstr "Saadaolevad kuupäevavahemiku formaadid"
291
 
292
- #: admin/includes/admin-about.php:182
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr ""
295
 
296
- #: admin/includes/admin-about.php:195
297
  msgid "Value"
298
  msgstr "Väärtus"
299
 
300
- #: admin/includes/admin-about.php:199
301
  msgid "Example"
302
  msgstr "Näide"
303
 
304
- #: admin/includes/admin-categories.php:54
305
  msgid "Synchronize with post categories"
306
  msgstr "Sünkrooni postituste kategooriatega"
307
 
308
- #: admin/includes/admin-categories.php:63
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
- #: admin/includes/admin-categories.php:64
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
- #: admin/includes/admin-categories.php:65
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
- #: admin/includes/admin-categories.php:67
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
- #: admin/includes/admin-categories.php:68
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
- #: admin/includes/admin-categories.php:69
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
- #: admin/includes/admin-categories.php:72
339
  msgid "An Error occured during the category sync"
340
  msgstr "Kategooria sünkroonimisel tekkis viga"
341
 
342
- #: admin/includes/admin-categories.php:75
343
  msgid "Category sync finished"
344
  msgstr "Kategooria sünkroonimine on lõpetatud"
345
 
346
- #: admin/includes/admin-category-sync.php:54
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr "Viga: Sul ei ole luba seda lehekülge näha!"
349
 
350
- #: admin/includes/admin-category-sync.php:70
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
- #: admin/includes/admin-category-sync.php:71
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
- #: admin/includes/admin-category-sync.php:72
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
- #: admin/includes/admin-category-sync.php:73
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
- #: admin/includes/admin-category-sync.php:75
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
- #: admin/includes/admin-category-sync.php:76
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
- #: admin/includes/admin-category-sync.php:77
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
- #: admin/includes/admin-category-sync.php:79
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr "Sündmuste kategooriate sünkroonimine postituskategooriatega"
386
 
387
- #: admin/includes/admin-category-sync.php:80
388
  msgid "Start synchronisation"
389
  msgstr "Käivitage sünkroonimine"
390
 
391
- #: admin/includes/admin-category-sync.php:81
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
- #: admin/includes/admin-category-sync.php:96
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
- #: admin/includes/admin-category-sync.php:97
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
- #: admin/includes/admin-category-sync.php:98
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
- #: admin/includes/admin-category-sync.php:99
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
- #: admin/includes/admin-category-sync.php:102
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
- #: admin/includes/admin-category-sync.php:103
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
- #: admin/includes/admin-category-sync.php:104
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
- #: admin/includes/admin-category-sync.php:123
426
  msgid "none"
427
  msgstr "pole ühtegi"
428
 
429
- #: admin/includes/admin-import.php:58
430
  msgid "Import Events"
431
  msgstr "Impordi sündmused"
432
 
433
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
434
- #: admin/includes/admin-import.php:220
435
  msgid "Step"
436
  msgstr "Samm"
437
 
438
- #: admin/includes/admin-import.php:79
439
  msgid "Set import file and options"
440
  msgstr "Määrake impordifail ja valikud"
441
 
442
- #: admin/includes/admin-import.php:82
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
- #: admin/includes/admin-import.php:85
448
  msgid "Example file"
449
  msgstr "Näidisfail"
450
 
451
- #: admin/includes/admin-import.php:86
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr ""
456
 
457
- #: admin/includes/admin-import.php:87
458
  msgid "Note"
459
  msgstr "Märge"
460
 
461
- #: admin/includes/admin-import.php:87
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr ""
466
 
467
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
468
  msgid "Sorry, there has been an error."
469
  msgstr "Vabandage, tekkis viga."
470
 
471
- #: admin/includes/admin-import.php:96
472
  msgid "The file does not exist, please try again."
473
  msgstr "Sellist faili ei eksisteeri, palun proovi uuesti."
474
 
475
- #: admin/includes/admin-import.php:104
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
- #: admin/includes/admin-import.php:116
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
484
  msgid "Error"
485
  msgstr ""
486
 
487
- #: admin/includes/admin-import.php:122
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
- #: admin/includes/admin-import.php:133
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
496
  msgid "Warning"
497
  msgstr ""
498
 
499
- #: admin/includes/admin-import.php:138
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
- #: admin/includes/admin-import.php:150
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
- #: admin/includes/admin-import.php:160
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
- #: admin/includes/admin-import.php:179
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
- #: admin/includes/admin-import.php:185
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
- #: admin/includes/admin-import.php:220
528
  msgid "Import result"
529
  msgstr ""
530
 
531
- #: admin/includes/admin-import.php:223
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
- #: admin/includes/admin-import.php:224
537
  msgid "Go back to All Events"
538
  msgstr "Mine tagasi \"Kõik sündmused\" juurde"
539
 
540
- #: admin/includes/admin-import.php:227
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
- #: admin/includes/admin-import.php:235
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Pealkiri"
552
 
553
- #: admin/includes/admin-import.php:248
554
  msgid "Start Date"
555
  msgstr "Alguskuupäev"
556
 
557
- #: admin/includes/admin-import.php:249
558
  msgid "End Date"
559
  msgstr "Lõppkuupäev"
560
 
561
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr "Aeg"
565
 
566
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
567
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr "Koht"
571
 
572
- #: admin/includes/admin-import.php:252
573
  msgid "Content"
574
  msgstr "Sisu"
575
 
576
- #: admin/includes/admin-import.php:253
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
- #: admin/includes/admin-import.php:297
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
- #: admin/includes/admin-import.php:298
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
- #: admin/includes/admin-import.php:305
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
- #: admin/includes/admin-import.php:334
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
- #: admin/includes/admin-import.php:340
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
- #: admin/includes/admin-import.php:348
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
- #: admin/includes/admin-import.php:401
609
  msgid "Import events"
610
  msgstr "Impordi sündmused"
611
 
612
- #: admin/includes/admin-import.php:402
613
  msgid "Add additional categories"
614
  msgstr "Lisage täiendavaid kategooriaid"
615
 
616
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
617
- msgid "Import"
618
- msgstr "Impordi"
619
-
620
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
621
  msgid "No events found"
622
  msgstr "Ühtegi sündmust ei leitud"
623
 
624
- #: admin/includes/admin-import.php:473
625
  msgid "Saving of event failed!"
626
  msgstr ""
627
 
628
- #: admin/includes/admin-main.php:76
629
  msgid "Event Date"
630
  msgstr "Sündmuse kuupäev"
631
 
632
- #: admin/includes/admin-main.php:80
633
  msgid "Author"
634
  msgstr "Autor"
635
 
636
- #: admin/includes/admin-main.php:148
637
  #, php-format
638
  msgid "Add a copy of %1$s"
639
  msgstr ""
640
 
641
- #: admin/includes/admin-main.php:148
642
  msgid "Copy"
643
  msgstr "Kopeeri"
644
 
645
- #: admin/includes/admin-new.php:58
 
 
 
 
646
  msgid "Event data"
647
  msgstr "Sündmuse andmed"
648
 
649
- #: admin/includes/admin-new.php:90
650
  msgid "Add Copy"
651
  msgstr "Lisa koopia"
652
 
653
- #: admin/includes/admin-new.php:98
654
  msgid "Date"
655
  msgstr "Kuupäev"
656
 
657
- #: admin/includes/admin-new.php:98
658
  msgid "required"
659
  msgstr "nõutud"
660
 
661
- #: admin/includes/admin-new.php:101
662
  msgid "Multi-Day Event"
663
  msgstr "Mitmepäevane sündmus"
664
 
665
- #: admin/includes/admin-new.php:121
666
  msgid "Event Title"
667
  msgstr "Sündmuse pealkiri"
668
 
669
- #: admin/includes/admin-new.php:137
670
  msgid "Event Content"
671
  msgstr "Sündmuse sisu"
672
 
673
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
674
  msgid "Event updated."
675
  msgstr "Sündmus uuendatud."
676
 
677
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
678
  msgid "View event"
679
  msgstr "Vaata sündmust"
680
 
681
- #: admin/includes/admin-new.php:204
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
- #: admin/includes/admin-new.php:205
687
  msgid "Event published."
688
  msgstr "Sündmus avaldatud."
689
 
690
- #: admin/includes/admin-new.php:207
 
 
 
 
691
  msgid "Event submitted."
692
  msgstr "Sündmus on esitatud."
693
 
694
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
695
- #: admin/includes/admin-new.php:210
696
  msgid "Preview event"
697
  msgstr "Sündmuse eelvaade"
698
 
699
- #: admin/includes/admin-new.php:208
700
  #, php-format
701
  msgid "Event scheduled for: %1$s>"
702
  msgstr ""
703
 
704
- #: admin/includes/admin-new.php:210
705
  msgid "Event draft updated."
706
  msgstr "Sündmuse visand uuendatud."
707
 
708
- #: admin/includes/admin-settings.php:79
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:93
713
  msgid "Frontend Settings"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:94
717
  msgid "Admin Page Settings"
718
  msgstr ""
719
 
720
- #: admin/includes/admin-settings.php:95
721
  msgid "Feed Settings"
722
  msgstr ""
723
 
724
- #: admin/includes/admin-settings.php:96
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -729,255 +733,255 @@ msgstr ""
729
  msgid "Year"
730
  msgstr "Aasta"
731
 
732
- #: includes/daterange_helptexts.php:9
733
  msgid "A year can be specified in 4 digit format."
734
  msgstr ""
735
 
736
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
737
- #: includes/daterange_helptexts.php:47
738
  #, php-format
739
  msgid ""
740
  "For a start date filter the first day of %1$s is used, in an end date the "
741
  "last day."
742
  msgstr ""
743
 
744
- #: includes/daterange_helptexts.php:10
745
  msgid "the resulting year"
746
  msgstr ""
747
 
748
- #: includes/daterange_helptexts.php:15
749
  msgid "Month"
750
  msgstr "Kuu"
751
 
752
- #: includes/daterange_helptexts.php:16
753
  msgid ""
754
  "A month can be specified with 4 digits for the year and 2 digits for the "
755
  "month, seperated by a hyphen (-)."
756
  msgstr ""
757
 
758
- #: includes/daterange_helptexts.php:17
759
  msgid "the resulting month"
760
  msgstr ""
761
 
762
- #: includes/daterange_helptexts.php:22
763
  msgid "Day"
764
  msgstr "Päev"
765
 
766
- #: includes/daterange_helptexts.php:23
767
  msgid ""
768
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
769
  " month and 2 digets for the day, seperated by hyphens (-)."
770
  msgstr ""
771
 
772
- #: includes/daterange_helptexts.php:28
773
  msgid "Relative Year"
774
  msgstr ""
775
 
776
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
777
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
778
  #, php-format
779
  msgid "%1$s from now can be specified in the following notation: %2$s"
780
  msgstr ""
781
 
782
- #: includes/daterange_helptexts.php:29
783
  msgid "A relative year"
784
  msgstr ""
785
 
786
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
787
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
788
  #, php-format
789
  msgid ""
790
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
791
  "%3$s or %4$s attached (see also the example below)."
792
  msgstr ""
793
 
794
- #: includes/daterange_helptexts.php:30
795
  msgid "number of years"
796
  msgstr ""
797
 
798
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
799
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
800
  #, php-format
801
  msgid "Additionally the following values are available: %1$s"
802
  msgstr ""
803
 
804
- #: includes/daterange_helptexts.php:36
805
  msgid "Relative Month"
806
  msgstr ""
807
 
808
- #: includes/daterange_helptexts.php:37
809
  msgid "A relative month"
810
  msgstr ""
811
 
812
- #: includes/daterange_helptexts.php:38
813
  msgid "number of months"
814
  msgstr ""
815
 
816
- #: includes/daterange_helptexts.php:44
817
  msgid "Relative Week"
818
  msgstr ""
819
 
820
- #: includes/daterange_helptexts.php:45
821
  msgid "A relative week"
822
  msgstr ""
823
 
824
- #: includes/daterange_helptexts.php:46
825
  msgid "number of weeks"
826
  msgstr ""
827
 
828
- #: includes/daterange_helptexts.php:47
829
  msgid "the resulting week"
830
  msgstr ""
831
 
832
- #: includes/daterange_helptexts.php:48
833
  #, php-format
834
  msgid ""
835
  "The first day of the week is depending on the option %1$s which can be found"
836
  " and changed in %2$s."
837
  msgstr ""
838
 
839
- #: includes/daterange_helptexts.php:54
840
  msgid "Relative Day"
841
  msgstr ""
842
 
843
- #: includes/daterange_helptexts.php:55
844
  msgid "A relative day"
845
  msgstr ""
846
 
847
- #: includes/daterange_helptexts.php:56
848
  msgid "number of days"
849
  msgstr ""
850
 
851
- #: includes/daterange_helptexts.php:64
852
  msgid "Date range"
853
  msgstr "Kuupäevavahemik"
854
 
855
- #: includes/daterange_helptexts.php:66
856
  msgid ""
857
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
858
- "\t For the start and end date any available date format can be used."
859
  msgstr ""
860
 
861
- #: includes/daterange_helptexts.php:75
862
  msgid "This value defines a range without any limits."
863
  msgstr ""
864
 
865
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
866
- #: includes/daterange_helptexts.php:90
867
  #, php-format
868
  msgid "The corresponding date_range format is: %1$s"
869
  msgstr ""
870
 
871
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
872
  msgid "Upcoming"
873
  msgstr "Tulemas"
874
 
875
- #: includes/daterange_helptexts.php:82
876
  msgid "This value defines a range from the actual day to the future."
877
  msgstr ""
878
 
879
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
880
  msgid "Past"
881
  msgstr "Toimunud"
882
 
883
- #: includes/daterange_helptexts.php:89
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:124
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
891
- #: includes/event.php:299 includes/event.php:301
892
- #: includes/sc_event-list.php:298
893
  msgid "read more"
894
  msgstr ""
895
 
896
- #: includes/events_post_type.php:69
897
  msgid "Events"
898
  msgstr "Sündmused"
899
 
900
- #: includes/events_post_type.php:70
901
  msgid "Event"
902
  msgstr "Sündmus"
903
 
904
- #: includes/events_post_type.php:71
905
  msgid "Add New"
906
  msgstr "Lisa uus"
907
 
908
- #: includes/events_post_type.php:72
909
  msgid "Add New Event"
910
  msgstr "Lisa uus sündmus"
911
 
912
- #: includes/events_post_type.php:73
913
  msgid "Edit Event"
914
  msgstr "Muuda sündmust"
915
 
916
- #: includes/events_post_type.php:74
917
  msgid "New Event"
918
  msgstr "Uus sündmus"
919
 
920
- #: includes/events_post_type.php:75
921
  msgid "View Event"
922
  msgstr "Vaata sündmust"
923
 
924
- #: includes/events_post_type.php:76
925
  msgid "View Events"
926
  msgstr "Vaata sündmusi"
927
 
928
- #: includes/events_post_type.php:77
929
  msgid "Search Events"
930
  msgstr "Otsi sündmusi"
931
 
932
- #: includes/events_post_type.php:79
933
  msgid "No events found in Trash"
934
  msgstr "Prügikastist ei leitud ühtegi sündmust"
935
 
936
- #: includes/events_post_type.php:81
937
  msgid "All Events"
938
  msgstr "Kõik sündmused"
939
 
940
- #: includes/events_post_type.php:82
941
  msgid "Event Archives"
942
  msgstr "Sündmuste arhiiv"
943
 
944
- #: includes/events_post_type.php:83
945
  msgid "Event Attributes"
946
  msgstr "Sündmuse atribuudid"
947
 
948
- #: includes/events_post_type.php:84
949
  msgid "Insert into event"
950
  msgstr ""
951
 
952
- #: includes/events_post_type.php:85
953
  msgid "Uploaded to this event"
954
  msgstr ""
955
 
956
- #: includes/events_post_type.php:86
957
  msgid "Event List"
958
  msgstr "Sündmuse loend"
959
 
960
- #: includes/events_post_type.php:87
961
  msgid "Filter events list"
962
  msgstr "Filtreeri sündmuste loendit"
963
 
964
- #: includes/events_post_type.php:88
965
  msgid "Events list navigation"
966
  msgstr "Sündmuste loendi navigeerimine"
967
 
968
- #: includes/events_post_type.php:89
969
  msgid "Events list"
970
  msgstr "Sündmuste loend"
971
 
972
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
973
  msgid "Reset"
974
  msgstr "Lähtesta"
975
 
976
- #: includes/filterbar.php:296
977
  msgid "All"
978
  msgstr "Kõik"
979
 
980
- #: includes/filterbar.php:298
981
  msgid "All Dates"
982
  msgstr "Kõik kuupäevad"
983
 
@@ -1417,23 +1421,23 @@ msgid ""
1417
  " switching page from here."
1418
  msgstr ""
1419
 
1420
- #: includes/options.php:73
1421
  msgid "events"
1422
  msgstr ""
1423
 
1424
- #: includes/options.php:77
1425
  msgid "Show content"
1426
  msgstr "Näita sisu"
1427
 
1428
- #: includes/options.php:81
1429
  msgid "Hide content"
1430
  msgstr "Peida sisu"
1431
 
1432
- #: includes/sc_event-list_helptexts.php:8
1433
  msgid "event-id"
1434
  msgstr ""
1435
 
1436
- #: includes/sc_event-list_helptexts.php:9
1437
  #, php-format
1438
  msgid ""
1439
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1441,107 +1445,108 @@ msgid ""
1441
  "this event is shown."
1442
  msgstr ""
1443
 
1444
- #: includes/sc_event-list_helptexts.php:13
1445
- #: includes/sc_event-list_helptexts.php:31
1446
  msgid "year"
1447
  msgstr "aasta"
1448
 
1449
- #: includes/sc_event-list_helptexts.php:14
1450
  msgid ""
1451
  "This attribute defines which events are initially shown. The default is to "
1452
  "show the upcoming events only."
1453
  msgstr ""
1454
 
1455
- #: includes/sc_event-list_helptexts.php:15
1456
  #, php-format
1457
  msgid ""
1458
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1459
  "change the displayed event date range via the filterbar or url parameters."
1460
  msgstr ""
1461
 
1462
- #: includes/sc_event-list_helptexts.php:19
1463
  msgid "category slug"
1464
  msgstr ""
1465
 
1466
- #: includes/sc_event-list_helptexts.php:20
1467
  msgid ""
1468
  "This attribute defines the category of which events are initially shown. The"
1469
  " default is to show events of all categories."
1470
  msgstr ""
1471
 
1472
- #: includes/sc_event-list_helptexts.php:21
1473
  msgid ""
1474
  "Provide a category slug to change this behavior. It is still possible to "
1475
  "change the displayed categories via the filterbar or url parameters."
1476
  msgstr ""
1477
 
1478
- #: includes/sc_event-list_helptexts.php:26
1479
  msgid "This attribute defines the initial order of the events."
1480
  msgstr ""
1481
 
1482
- #: includes/sc_event-list_helptexts.php:27
 
1483
  msgid ""
1484
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1485
  "in the opposite direction (from new to old)."
1486
  msgstr ""
1487
 
1488
- #: includes/sc_event-list_helptexts.php:32
1489
  #, php-format
1490
  msgid ""
1491
  "This attribute defines the dates and date ranges of which events are "
1492
  "displayed. The default is %1$s to show all events."
1493
  msgstr ""
1494
 
1495
- #: includes/sc_event-list_helptexts.php:33
1496
  #, php-format
1497
  msgid ""
1498
  "Filtered events according to %1$s value are not available in the event list."
1499
  msgstr ""
1500
 
1501
- #: includes/sc_event-list_helptexts.php:34
1502
  #, php-format
1503
  msgid ""
1504
  "You can find all available values with a description and examples in the "
1505
  "sections %1$s and %2$s below."
1506
  msgstr ""
1507
 
1508
- #: includes/sc_event-list_helptexts.php:35
1509
  #, php-format
1510
  msgid "See %1$s description if you want to define complex filters."
1511
  msgstr ""
1512
 
1513
- #: includes/sc_event-list_helptexts.php:39
1514
  msgid "category slugs"
1515
  msgstr ""
1516
 
1517
- #: includes/sc_event-list_helptexts.php:40
1518
  msgid ""
1519
  "This attribute defines the category filter which filters the events to show."
1520
  " The default is $1$s or an empty string to show all events."
1521
  msgstr ""
1522
 
1523
- #: includes/sc_event-list_helptexts.php:41
1524
  #, php-format
1525
  msgid ""
1526
  "Events with categories that doesn´t match %1$s are not shown in the event "
1527
  "list. They are also not available if a manual url parameter is added."
1528
  msgstr ""
1529
 
1530
- #: includes/sc_event-list_helptexts.php:42
1531
  #, php-format
1532
  msgid ""
1533
  "The filter is specified via the given category slugs. See %1$s description "
1534
  "if you want to define complex filters."
1535
  msgstr ""
1536
 
1537
- #: includes/sc_event-list_helptexts.php:46
1538
- #: includes/sc_event-list_helptexts.php:111
1539
- #: includes/sc_event-list_helptexts.php:138
1540
- #: includes/sc_event-list_helptexts.php:177
1541
  msgid "number"
1542
  msgstr "number"
1543
 
1544
- #: includes/sc_event-list_helptexts.php:47
1545
  #, php-format
1546
  msgid ""
1547
  "This attribute defines how many events should be displayed if upcoming "
@@ -1549,109 +1554,109 @@ msgid ""
1549
  "displayed."
1550
  msgstr ""
1551
 
1552
- #: includes/sc_event-list_helptexts.php:48
1553
  msgid ""
1554
  "Please not that in the actual version there is no pagination of the events "
1555
  "available, so the event list can be very long."
1556
  msgstr ""
1557
 
1558
- #: includes/sc_event-list_helptexts.php:53
1559
  msgid ""
1560
  "This attribute defines if the filterbar should be displayed. The filterbar "
1561
  "allows the users to specify filters for the listed events."
1562
  msgstr ""
1563
 
1564
- #: includes/sc_event-list_helptexts.php:54
1565
  #, php-format
1566
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1567
  msgstr ""
1568
 
1569
- #: includes/sc_event-list_helptexts.php:55
1570
  #, php-format
1571
  msgid ""
1572
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1573
  " in the single event view."
1574
  msgstr ""
1575
 
1576
- #: includes/sc_event-list_helptexts.php:60
1577
  #, php-format
1578
  msgid ""
1579
  "This attribute specifies the available items in the filterbar. This options "
1580
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1581
  msgstr ""
1582
 
1583
- #: includes/sc_event-list_helptexts.php:61
1584
  msgid ""
1585
  "Find below an overview of the available filterbar items and their options:"
1586
  msgstr ""
1587
 
1588
- #: includes/sc_event-list_helptexts.php:64
1589
  msgid "filterbar item"
1590
  msgstr ""
1591
 
1592
- #: includes/sc_event-list_helptexts.php:64
1593
- #: includes/sc_event-list_helptexts.php:96
1594
  msgid "description"
1595
  msgstr "kirjeldus"
1596
 
1597
- #: includes/sc_event-list_helptexts.php:64
1598
  msgid "item options"
1599
  msgstr ""
1600
 
1601
- #: includes/sc_event-list_helptexts.php:64
1602
  msgid "option values"
1603
  msgstr ""
1604
 
1605
- #: includes/sc_event-list_helptexts.php:64
1606
  msgid "default value"
1607
  msgstr "vaikeväärtus"
1608
 
1609
- #: includes/sc_event-list_helptexts.php:64
1610
  msgid "option description"
1611
  msgstr ""
1612
 
1613
- #: includes/sc_event-list_helptexts.php:67
1614
  msgid ""
1615
  "Show a list of all available years. Additional there are some special "
1616
  "entries available (see item options)."
1617
  msgstr ""
1618
 
1619
- #: includes/sc_event-list_helptexts.php:71
1620
- #: includes/sc_event-list_helptexts.php:82
1621
  msgid "Add an entry to show all events."
1622
  msgstr ""
1623
 
1624
- #: includes/sc_event-list_helptexts.php:73
1625
- #: includes/sc_event-list_helptexts.php:84
1626
  msgid "Add an entry to show all upcoming events."
1627
  msgstr ""
1628
 
1629
- #: includes/sc_event-list_helptexts.php:74
1630
- #: includes/sc_event-list_helptexts.php:85
1631
  msgid "Add an entry to show events in the past."
1632
  msgstr ""
1633
 
1634
- #: includes/sc_event-list_helptexts.php:75
1635
  msgid "Set descending or ascending order of year entries."
1636
  msgstr ""
1637
 
1638
- #: includes/sc_event-list_helptexts.php:78
1639
  msgid "Show a list of all available months."
1640
  msgstr ""
1641
 
1642
- #: includes/sc_event-list_helptexts.php:86
1643
  msgid "Set descending or ascending order of month entries."
1644
  msgstr ""
1645
 
1646
- #: includes/sc_event-list_helptexts.php:87
1647
  msgid "php date-formats"
1648
  msgstr ""
1649
 
1650
- #: includes/sc_event-list_helptexts.php:87
1651
  msgid "Set the displayed date format of the month entries."
1652
  msgstr ""
1653
 
1654
- #: includes/sc_event-list_helptexts.php:88
1655
  #, php-format
1656
  msgid ""
1657
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1659,65 +1664,65 @@ msgid ""
1659
  "order."
1660
  msgstr ""
1661
 
1662
- #: includes/sc_event-list_helptexts.php:88
1663
  #, php-format
1664
  msgid ""
1665
  "Specifies the displayed values and their order. The items must be seperated "
1666
  "by %1$s."
1667
  msgstr ""
1668
 
1669
- #: includes/sc_event-list_helptexts.php:89
1670
  msgid "Show a list of all available categories."
1671
  msgstr ""
1672
 
1673
- #: includes/sc_event-list_helptexts.php:89
1674
  msgid "Add an entry to show events from all categories."
1675
  msgstr ""
1676
 
1677
- #: includes/sc_event-list_helptexts.php:90
1678
  msgid "A link to reset the eventlist filter to standard."
1679
  msgstr ""
1680
 
1681
- #: includes/sc_event-list_helptexts.php:90
1682
  msgid "any text"
1683
  msgstr ""
1684
 
1685
- #: includes/sc_event-list_helptexts.php:90
1686
  msgid "Set the caption of the link."
1687
  msgstr ""
1688
 
1689
- #: includes/sc_event-list_helptexts.php:93
1690
  msgid "Find below an overview of the available filterbar display options:"
1691
  msgstr ""
1692
 
1693
- #: includes/sc_event-list_helptexts.php:96
1694
  msgid "display option"
1695
  msgstr ""
1696
 
1697
- #: includes/sc_event-list_helptexts.php:96
1698
  msgid "available for"
1699
  msgstr ""
1700
 
1701
- #: includes/sc_event-list_helptexts.php:97
1702
  #, php-format
1703
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1704
  msgstr ""
1705
 
1706
- #: includes/sc_event-list_helptexts.php:98
1707
  msgid ""
1708
  "Shows a select box where an item can be choosen. After the selection of an "
1709
  "item the page is reloaded via javascript to show the filtered events."
1710
  msgstr ""
1711
 
1712
- #: includes/sc_event-list_helptexts.php:99
1713
  msgid "Shows a simple link which can be clicked."
1714
  msgstr ""
1715
 
1716
- #: includes/sc_event-list_helptexts.php:102
1717
  msgid "Find below some declaration examples with descriptions:"
1718
  msgstr ""
1719
 
1720
- #: includes/sc_event-list_helptexts.php:104
1721
  #, php-format
1722
  msgid ""
1723
  "In this example you can see that the filterbar item and the used display "
@@ -1725,22 +1730,22 @@ msgid ""
1725
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1726
  msgstr ""
1727
 
1728
- #: includes/sc_event-list_helptexts.php:106
1729
  #, php-format
1730
  msgid ""
1731
  "In this example you can see that filterbar options can be added in brackets "
1732
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1733
  msgstr ""
1734
 
1735
- #: includes/sc_event-list_helptexts.php:106
1736
  msgid "option_name"
1737
  msgstr ""
1738
 
1739
- #: includes/sc_event-list_helptexts.php:106
1740
  msgid "value"
1741
  msgstr ""
1742
 
1743
- #: includes/sc_event-list_helptexts.php:107
1744
  #, php-format
1745
  msgid ""
1746
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1749,134 +1754,134 @@ msgid ""
1749
  "left-aligned and the reset link will be on the right side."
1750
  msgstr ""
1751
 
1752
- #: includes/sc_event-list_helptexts.php:112
1753
- #: includes/sc_event-list_helptexts.php:139
1754
  msgid ""
1755
  "This attribute specifies if the title should be truncated to the given "
1756
  "number of characters in the event list."
1757
  msgstr ""
1758
 
1759
- #: includes/sc_event-list_helptexts.php:113
1760
- #: includes/sc_event-list_helptexts.php:140
1761
  #, php-format
1762
  msgid ""
1763
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1764
  "is automatically truncated via css."
1765
  msgstr ""
1766
 
1767
- #: includes/sc_event-list_helptexts.php:114
1768
- #: includes/sc_event-list_helptexts.php:141
1769
- #: includes/sc_event-list_helptexts.php:180
1770
  msgid "This attribute has no influence if only a single event is shown."
1771
  msgstr ""
1772
 
1773
- #: includes/sc_event-list_helptexts.php:120
1774
  msgid ""
1775
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1776
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1777
- "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1778
  msgstr ""
1779
 
1780
- #: includes/sc_event-list_helptexts.php:130
1781
  msgid ""
1782
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1783
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1784
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:147
1788
  msgid ""
1789
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1790
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1791
- "\t With \"event_list_only\" the categories are 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:157
1795
  msgid ""
1796
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1797
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1798
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1799
  msgstr ""
1800
 
1801
- #: includes/sc_event-list_helptexts.php:167
1802
  msgid ""
1803
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1804
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1805
- "\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"
1806
- "\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"
1807
- "\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)."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:178
1811
  msgid ""
1812
  "This attribute specifies if the content should be truncate to the given "
1813
  "number of characters in the event list."
1814
  msgstr ""
1815
 
1816
- #: includes/sc_event-list_helptexts.php:179
1817
  #, php-format
1818
  msgid "With the standard value %1$s the full text is displayed."
1819
  msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:186
1822
  msgid ""
1823
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1824
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1825
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1826
- "\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."
1827
  msgstr ""
1828
 
1829
- #: includes/sc_event-list_helptexts.php:197
1830
  msgid ""
1831
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1832
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1834
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1835
  msgstr ""
1836
 
1837
- #: includes/sc_event-list_helptexts.php:208
1838
  msgid ""
1839
  "This attribute specifies if a rss feed link should be added.<br />\n"
1840
- "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1841
- "\t On that page you can also find some settings to modify the output.<br />\n"
1842
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1843
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1844
  msgstr ""
1845
 
1846
- #: includes/sc_event-list_helptexts.php:220
1847
  msgid ""
1848
  "This attribute specifies if a ical feed link should be added.<br />\n"
1849
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1850
- "\t On that page you can also find some settings to modify the output.<br />\n"
1851
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1852
  msgstr ""
1853
 
1854
- #: includes/sc_event-list_helptexts.php:231
1855
  msgid ""
1856
  "This attribute specifies the page or post url for event links.<br />\n"
1857
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1858
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1859
  msgstr ""
1860
 
1861
- #: includes/sc_event-list_helptexts.php:243
1862
  msgid ""
1863
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1864
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1865
  msgstr ""
1866
 
1867
- #: includes/sc_event-list.php:154
1868
  msgid "Sorry, the requested event is not available!"
1869
  msgstr ""
1870
 
1871
- #: includes/sc_event-list.php:163
1872
  msgid "Event Information:"
1873
  msgstr "Sündmuse info:"
1874
 
1875
- #: includes/sc_event-list.php:405
1876
  msgid "Link to RSS feed"
1877
  msgstr ""
1878
 
1879
- #: includes/sc_event-list.php:414
1880
  msgid "Link to iCal feed"
1881
  msgstr ""
1882
 
@@ -1909,133 +1914,133 @@ msgstr "Määra, mitu eelseisvat sündmust kuvatakse"
1909
  msgid "Truncate event title to"
1910
  msgstr "Kärbi sündmuse pealkiri"
1911
 
1912
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1913
- #: includes/widget_helptexts.php:93
1914
  msgid "characters"
1915
  msgstr "tähemärgini"
1916
 
1917
- #: includes/widget_helptexts.php:38
1918
  msgid ""
1919
  "This option defines the number of displayed characters for the event title."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1923
  #, php-format
1924
  msgid ""
1925
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1926
  "automatically truncate the text via css."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:46
1930
  msgid "Show event starttime"
1931
  msgstr "Kuva sündmuse algusaeg"
1932
 
1933
- #: includes/widget_helptexts.php:48
1934
  msgid "This option defines if the event start time will be displayed."
1935
  msgstr ""
1936
 
1937
- #: includes/widget_helptexts.php:55
1938
  msgid "Show event location"
1939
  msgstr "Kuva sündmuse koht"
1940
 
1941
- #: includes/widget_helptexts.php:57
1942
  msgid "This option defines if the event location will be displayed."
1943
  msgstr ""
1944
 
1945
- #: includes/widget_helptexts.php:64
1946
  msgid "Truncate location to"
1947
  msgstr "Kärbi sündmuse koht"
1948
 
1949
- #: includes/widget_helptexts.php:66
1950
  msgid ""
1951
  "If the event location is diplayed this option defines the number of "
1952
  "displayed characters."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:74
1956
  msgid "Show event excerpt"
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:76
1960
  msgid "This option defines if the event excerpt will be displayed."
1961
  msgstr ""
1962
 
1963
- #: includes/widget_helptexts.php:83
1964
  msgid "Show event content"
1965
  msgstr "Kuva sündmuse sisu"
1966
 
1967
- #: includes/widget_helptexts.php:85
1968
  msgid "This option defines if the event content will be displayed."
1969
  msgstr ""
1970
 
1971
- #: includes/widget_helptexts.php:92
1972
  msgid "Truncate content to"
1973
  msgstr "Kärbi sündmuse sisu"
1974
 
1975
- #: includes/widget_helptexts.php:94
1976
  msgid ""
1977
  "If the event content are diplayed this option defines the number of diplayed"
1978
  " characters."
1979
  msgstr ""
1980
 
1981
- #: includes/widget_helptexts.php:95
1982
  #, php-format
1983
  msgid "Set this value to %1$s to view the full text."
1984
  msgstr ""
1985
 
1986
- #: includes/widget_helptexts.php:102
1987
  msgid "URL to the linked Event List page"
1988
  msgstr ""
1989
 
1990
- #: includes/widget_helptexts.php:104
1991
  msgid ""
1992
  "This option defines the url to the linked Event List page. This option is "
1993
  "required if you want to use one of the options below."
1994
  msgstr ""
1995
 
1996
- #: includes/widget_helptexts.php:111
1997
  msgid "Shortcode ID on linked page"
1998
  msgstr ""
1999
 
2000
- #: includes/widget_helptexts.php:113
2001
  msgid ""
2002
  "This option defines the shortcode-id for the Event List on the linked page. "
2003
  "Normally the standard value 1 is correct, you only have to change it if you "
2004
  "use multiple event-list shortcodes on the linked page."
2005
  msgstr ""
2006
 
2007
- #: includes/widget_helptexts.php:122
2008
  msgid ""
2009
  "With this option you can add a link to the single event page for every "
2010
  "displayed event. You have to specify the url to the page and the shortcode "
2011
  "id option if you want to use it."
2012
  msgstr ""
2013
 
2014
- #: includes/widget_helptexts.php:131
2015
  msgid ""
2016
  "With this option you can add a link to the event-list page below the "
2017
  "diplayed events. You have to specify the url to page option if you want to "
2018
  "use it."
2019
  msgstr ""
2020
 
2021
- #: includes/widget_helptexts.php:138
2022
  msgid "Caption for the link"
2023
  msgstr "Lingi pealkiri"
2024
 
2025
- #: includes/widget_helptexts.php:140
2026
  msgid ""
2027
  "This option defines the text for the link to the Event List page if the "
2028
  "approriate option is selected."
2029
  msgstr ""
2030
 
2031
- #: includes/widget.php:21
2032
  msgid "With this widget a list of upcoming events can be displayed."
2033
  msgstr ""
2034
 
2035
- #: includes/widget.php:26
2036
  msgid "Upcoming events"
2037
  msgstr "Eesseisvad sündmused"
2038
 
2039
- #: includes/widget.php:40
2040
  msgid "show events page"
2041
  msgstr "näita sündmuste lehte"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
12
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: et_EE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:90
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:90
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
32
  msgid "Event List Settings"
33
  msgstr "Sündmuste loendi seaded"
34
 
35
+ #: admin/admin.php:142
36
  msgid "Settings"
37
  msgstr "Seaded"
38
 
39
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
40
  msgid "About Event List"
41
  msgstr "Sündmuste loendist"
42
 
43
+ #: admin/admin.php:146
44
  msgid "About"
45
  msgstr ""
46
 
47
+ #: admin/admin.php:170
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
55
  msgid "General"
56
  msgstr ""
57
 
58
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
59
+ #: admin/includes/admin-about.php:137
60
  msgid "Shortcode Attributes"
61
  msgstr ""
62
 
63
+ #: admin/includes/admin-about.php:102
64
  msgid "Help and Instructions"
65
  msgstr "Abi ja juhised"
66
 
67
+ #: admin/includes/admin-about.php:103
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
+ #: admin/includes/admin-about.php:104
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Saidil olevate sündmuste kuvamiseks on 2 võimalust"
75
 
76
+ #: admin/includes/admin-about.php:105
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "lisades lühikoodi<strong> shotcode</strong> %1$s mis tahes lehele või postitusele"
80
 
81
+ #: admin/includes/admin-about.php:106
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "lisades vidina <strong>widget</strong> %1$s külgribale"
85
 
86
+ #: admin/includes/admin-about.php:107
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr ""
91
 
92
+ #: admin/includes/admin-about.php:108
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
+ #: admin/includes/admin-about.php:109
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr ""
102
 
103
+ #: admin/includes/admin-about.php:110
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
111
  msgid "Add links to the single events"
112
  msgstr "Lisa link sündmuse juurde"
113
 
114
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
115
  msgid "Add a link to the Event List page"
116
  msgstr "Lisa link lehe sündmuste loendisse"
117
 
118
+ #: admin/includes/admin-about.php:111
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
+ #: admin/includes/admin-about.php:112
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
+ #: admin/includes/admin-about.php:113
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
+ #: admin/includes/admin-about.php:114
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
+ #: admin/includes/admin-about.php:116
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
+ #: admin/includes/admin-about.php:116
152
  msgid "Settings page"
153
  msgstr "Seadete leht"
154
 
155
+ #: admin/includes/admin-about.php:123
156
  msgid "About the plugin author"
157
  msgstr "Plugina autorist"
158
 
159
+ #: admin/includes/admin-about.php:125
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
+ #: admin/includes/admin-about.php:125
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
+ #: admin/includes/admin-about.php:126
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
+ #: admin/includes/admin-about.php:126
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
+ #: admin/includes/admin-about.php:127
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
185
+ #: admin/includes/admin-about.php:130
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
+ #: admin/includes/admin-about.php:139
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr ""
195
 
196
+ #: admin/includes/admin-about.php:140
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr ""
202
 
203
+ #: admin/includes/admin-about.php:142
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr ""
208
 
209
+ #: admin/includes/admin-about.php:157
210
  msgid "Attribute name"
211
  msgstr "Atribuudi nimi"
212
 
213
+ #: admin/includes/admin-about.php:158
214
  msgid "Value options"
215
  msgstr ""
216
 
217
+ #: admin/includes/admin-about.php:159
218
  msgid "Default value"
219
  msgstr ""
220
 
221
+ #: admin/includes/admin-about.php:160
222
  msgid "Description"
223
  msgstr "Kirjeldus"
224
 
225
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
226
+ #: includes/sc_event-list_helptexts.php:91
227
  msgid "Filter Syntax"
228
  msgstr ""
229
 
230
+ #: admin/includes/admin-about.php:180
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr ""
235
 
236
+ #: admin/includes/admin-about.php:181
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr ""
242
 
243
+ #: admin/includes/admin-about.php:181
244
  msgid "AND"
245
  msgstr "JA"
246
 
247
+ #: admin/includes/admin-about.php:181
248
  msgid "OR"
249
  msgstr "VÕI"
250
 
251
+ #: admin/includes/admin-about.php:181
252
  msgid "or"
253
  msgstr "või"
254
 
255
+ #: admin/includes/admin-about.php:181
256
  msgid "and"
257
  msgstr "ja"
258
 
259
+ #: admin/includes/admin-about.php:182
260
  msgid "Examples for cat filters:"
261
  msgstr ""
262
 
263
+ #: admin/includes/admin-about.php:183
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr "Näita kõiki sündmusi koos kategooriaga %1$s."
267
 
268
+ #: admin/includes/admin-about.php:184
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr "Näita kõiki sündmusi koos kategooriaga %1$s või %2$s."
272
 
273
+ #: admin/includes/admin-about.php:185
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr ""
279
 
280
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
281
  msgid "Available Date Formats"
282
  msgstr "Saadaolevad kuupäeva vormingud"
283
 
284
+ #: admin/includes/admin-about.php:192
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr ""
287
 
288
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
289
  msgid "Available Date Range Formats"
290
  msgstr "Saadaolevad kuupäevavahemiku formaadid"
291
 
292
+ #: admin/includes/admin-about.php:202
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr ""
295
 
296
+ #: admin/includes/admin-about.php:215
297
  msgid "Value"
298
  msgstr "Väärtus"
299
 
300
+ #: admin/includes/admin-about.php:219
301
  msgid "Example"
302
  msgstr "Näide"
303
 
304
+ #: admin/includes/admin-categories.php:79
305
  msgid "Synchronize with post categories"
306
  msgstr "Sünkrooni postituste kategooriatega"
307
 
308
+ #: admin/includes/admin-categories.php:90
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
+ #: admin/includes/admin-categories.php:91
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
+ #: admin/includes/admin-categories.php:92
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
+ #: admin/includes/admin-categories.php:95
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
+ #: admin/includes/admin-categories.php:96
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
+ #: admin/includes/admin-categories.php:97
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
+ #: admin/includes/admin-categories.php:100
339
  msgid "An Error occured during the category sync"
340
  msgstr "Kategooria sünkroonimisel tekkis viga"
341
 
342
+ #: admin/includes/admin-categories.php:103
343
  msgid "Category sync finished"
344
  msgstr "Kategooria sünkroonimine on lõpetatud"
345
 
346
+ #: admin/includes/admin-category-sync.php:77
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr "Viga: Sul ei ole luba seda lehekülge näha!"
349
 
350
+ #: admin/includes/admin-category-sync.php:93
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
+ #: admin/includes/admin-category-sync.php:94
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
+ #: admin/includes/admin-category-sync.php:95
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
+ #: admin/includes/admin-category-sync.php:96
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
+ #: admin/includes/admin-category-sync.php:98
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
+ #: admin/includes/admin-category-sync.php:99
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
+ #: admin/includes/admin-category-sync.php:100
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
+ #: admin/includes/admin-category-sync.php:103
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr "Sündmuste kategooriate sünkroonimine postituskategooriatega"
386
 
387
+ #: admin/includes/admin-category-sync.php:104
388
  msgid "Start synchronisation"
389
  msgstr "Käivitage sünkroonimine"
390
 
391
+ #: admin/includes/admin-category-sync.php:105
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
+ #: admin/includes/admin-category-sync.php:120
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
+ #: admin/includes/admin-category-sync.php:121
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
+ #: admin/includes/admin-category-sync.php:122
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
+ #: admin/includes/admin-category-sync.php:123
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
+ #: admin/includes/admin-category-sync.php:126
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
+ #: admin/includes/admin-category-sync.php:127
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
+ #: admin/includes/admin-category-sync.php:128
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
+ #: admin/includes/admin-category-sync.php:147
426
  msgid "none"
427
  msgstr "pole ühtegi"
428
 
429
+ #: admin/includes/admin-import.php:91
430
  msgid "Import Events"
431
  msgstr "Impordi sündmused"
432
 
433
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
434
+ #: admin/includes/admin-import.php:254
435
  msgid "Step"
436
  msgstr "Samm"
437
 
438
+ #: admin/includes/admin-import.php:110
439
  msgid "Set import file and options"
440
  msgstr "Määrake impordifail ja valikud"
441
 
442
+ #: admin/includes/admin-import.php:113
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
+ #: admin/includes/admin-import.php:116
448
  msgid "Example file"
449
  msgstr "Näidisfail"
450
 
451
+ #: admin/includes/admin-import.php:117
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr ""
456
 
457
+ #: admin/includes/admin-import.php:118
458
  msgid "Note"
459
  msgstr "Märge"
460
 
461
+ #: admin/includes/admin-import.php:118
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr ""
466
 
467
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
468
  msgid "Sorry, there has been an error."
469
  msgstr "Vabandage, tekkis viga."
470
 
471
+ #: admin/includes/admin-import.php:129
472
  msgid "The file does not exist, please try again."
473
  msgstr "Sellist faili ei eksisteeri, palun proovi uuesti."
474
 
475
+ #: admin/includes/admin-import.php:138
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
+ #: admin/includes/admin-import.php:150
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
484
  msgid "Error"
485
  msgstr ""
486
 
487
+ #: admin/includes/admin-import.php:156
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
+ #: admin/includes/admin-import.php:167
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
496
  msgid "Warning"
497
  msgstr ""
498
 
499
+ #: admin/includes/admin-import.php:172
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
+ #: admin/includes/admin-import.php:184
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
+ #: admin/includes/admin-import.php:194
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
+ #: admin/includes/admin-import.php:213
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
+ #: admin/includes/admin-import.php:219
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
+ #: admin/includes/admin-import.php:254
528
  msgid "Import result"
529
  msgstr ""
530
 
531
+ #: admin/includes/admin-import.php:257
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
+ #: admin/includes/admin-import.php:258
537
  msgid "Go back to All Events"
538
  msgstr "Mine tagasi \"Kõik sündmused\" juurde"
539
 
540
+ #: admin/includes/admin-import.php:261
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
+ #: admin/includes/admin-import.php:269
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Pealkiri"
552
 
553
+ #: admin/includes/admin-import.php:282
554
  msgid "Start Date"
555
  msgstr "Alguskuupäev"
556
 
557
+ #: admin/includes/admin-import.php:283
558
  msgid "End Date"
559
  msgstr "Lõppkuupäev"
560
 
561
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr "Aeg"
565
 
566
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
567
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr "Koht"
571
 
572
+ #: admin/includes/admin-import.php:286
573
  msgid "Content"
574
  msgstr "Sisu"
575
 
576
+ #: admin/includes/admin-import.php:287
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
+ #: admin/includes/admin-import.php:333
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
+ #: admin/includes/admin-import.php:334
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
+ #: admin/includes/admin-import.php:341
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
+ #: admin/includes/admin-import.php:371
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
+ #: admin/includes/admin-import.php:377
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
+ #: admin/includes/admin-import.php:385
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
+ #: admin/includes/admin-import.php:439
609
  msgid "Import events"
610
  msgstr "Impordi sündmused"
611
 
612
+ #: admin/includes/admin-import.php:440
613
  msgid "Add additional categories"
614
  msgstr "Lisage täiendavaid kategooriaid"
615
 
616
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
617
  msgid "No events found"
618
  msgstr "Ühtegi sündmust ei leitud"
619
 
620
+ #: admin/includes/admin-import.php:518
621
  msgid "Saving of event failed!"
622
  msgstr ""
623
 
624
+ #: admin/includes/admin-main.php:108
625
  msgid "Event Date"
626
  msgstr "Sündmuse kuupäev"
627
 
628
+ #: admin/includes/admin-main.php:113
629
  msgid "Author"
630
  msgstr "Autor"
631
 
632
+ #: admin/includes/admin-main.php:182
633
  #, php-format
634
  msgid "Add a copy of %1$s"
635
  msgstr ""
636
 
637
+ #: admin/includes/admin-main.php:182
638
  msgid "Copy"
639
  msgstr "Kopeeri"
640
 
641
+ #: admin/includes/admin-main.php:268
642
+ msgid "Import"
643
+ msgstr "Impordi"
644
+
645
+ #: admin/includes/admin-new.php:83
646
  msgid "Event data"
647
  msgstr "Sündmuse andmed"
648
 
649
+ #: admin/includes/admin-new.php:116
650
  msgid "Add Copy"
651
  msgstr "Lisa koopia"
652
 
653
+ #: admin/includes/admin-new.php:124
654
  msgid "Date"
655
  msgstr "Kuupäev"
656
 
657
+ #: admin/includes/admin-new.php:124
658
  msgid "required"
659
  msgstr "nõutud"
660
 
661
+ #: admin/includes/admin-new.php:127
662
  msgid "Multi-Day Event"
663
  msgstr "Mitmepäevane sündmus"
664
 
665
+ #: admin/includes/admin-new.php:147
666
  msgid "Event Title"
667
  msgstr "Sündmuse pealkiri"
668
 
669
+ #: admin/includes/admin-new.php:164
670
  msgid "Event Content"
671
  msgstr "Sündmuse sisu"
672
 
673
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
674
  msgid "Event updated."
675
  msgstr "Sündmus uuendatud."
676
 
677
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
678
  msgid "View event"
679
  msgstr "Vaata sündmust"
680
 
681
+ #: admin/includes/admin-new.php:246
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
+ #: admin/includes/admin-new.php:247
687
  msgid "Event published."
688
  msgstr "Sündmus avaldatud."
689
 
690
+ #: admin/includes/admin-new.php:248
691
+ msgid "Event saved."
692
+ msgstr ""
693
+
694
+ #: admin/includes/admin-new.php:249
695
  msgid "Event submitted."
696
  msgstr "Sündmus on esitatud."
697
 
698
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
699
+ #: admin/includes/admin-new.php:253
700
  msgid "Preview event"
701
  msgstr "Sündmuse eelvaade"
702
 
703
+ #: admin/includes/admin-new.php:251
704
  #, php-format
705
  msgid "Event scheduled for: %1$s>"
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-new.php:253
709
  msgid "Event draft updated."
710
  msgstr "Sündmuse visand uuendatud."
711
 
712
+ #: admin/includes/admin-settings.php:97
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:111
717
  msgid "Frontend Settings"
718
  msgstr ""
719
 
720
+ #: admin/includes/admin-settings.php:112
721
  msgid "Admin Page Settings"
722
  msgstr ""
723
 
724
+ #: admin/includes/admin-settings.php:113
725
  msgid "Feed Settings"
726
  msgstr ""
727
 
728
+ #: admin/includes/admin-settings.php:114
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
733
  msgid "Year"
734
  msgstr "Aasta"
735
 
736
+ #: includes/daterange_helptexts.php:10
737
  msgid "A year can be specified in 4 digit format."
738
  msgstr ""
739
 
740
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
741
+ #: includes/daterange_helptexts.php:95
742
  #, php-format
743
  msgid ""
744
  "For a start date filter the first day of %1$s is used, in an end date the "
745
  "last day."
746
  msgstr ""
747
 
748
+ #: includes/daterange_helptexts.php:13
749
  msgid "the resulting year"
750
  msgstr ""
751
 
752
+ #: includes/daterange_helptexts.php:19
753
  msgid "Month"
754
  msgstr "Kuu"
755
 
756
+ #: includes/daterange_helptexts.php:21
757
  msgid ""
758
  "A month can be specified with 4 digits for the year and 2 digits for the "
759
  "month, seperated by a hyphen (-)."
760
  msgstr ""
761
 
762
+ #: includes/daterange_helptexts.php:24
763
  msgid "the resulting month"
764
  msgstr ""
765
 
766
+ #: includes/daterange_helptexts.php:30
767
  msgid "Day"
768
  msgstr "Päev"
769
 
770
+ #: includes/daterange_helptexts.php:31
771
  msgid ""
772
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
773
  " month and 2 digets for the day, seperated by hyphens (-)."
774
  msgstr ""
775
 
776
+ #: includes/daterange_helptexts.php:36
777
  msgid "Relative Year"
778
  msgstr ""
779
 
780
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
781
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
782
  #, php-format
783
  msgid "%1$s from now can be specified in the following notation: %2$s"
784
  msgstr ""
785
 
786
+ #: includes/daterange_helptexts.php:40
787
  msgid "A relative year"
788
  msgstr ""
789
 
790
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
791
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
792
  #, php-format
793
  msgid ""
794
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
795
  "%3$s or %4$s attached (see also the example below)."
796
  msgstr ""
797
 
798
+ #: includes/daterange_helptexts.php:46
799
  msgid "number of years"
800
  msgstr ""
801
 
802
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
803
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
804
  #, php-format
805
  msgid "Additionally the following values are available: %1$s"
806
  msgstr ""
807
 
808
+ #: includes/daterange_helptexts.php:58
809
  msgid "Relative Month"
810
  msgstr ""
811
 
812
+ #: includes/daterange_helptexts.php:62
813
  msgid "A relative month"
814
  msgstr ""
815
 
816
+ #: includes/daterange_helptexts.php:68
817
  msgid "number of months"
818
  msgstr ""
819
 
820
+ #: includes/daterange_helptexts.php:80
821
  msgid "Relative Week"
822
  msgstr ""
823
 
824
+ #: includes/daterange_helptexts.php:84
825
  msgid "A relative week"
826
  msgstr ""
827
 
828
+ #: includes/daterange_helptexts.php:90
829
  msgid "number of weeks"
830
  msgstr ""
831
 
832
+ #: includes/daterange_helptexts.php:96
833
  msgid "the resulting week"
834
  msgstr ""
835
 
836
+ #: includes/daterange_helptexts.php:99
837
  #, php-format
838
  msgid ""
839
  "The first day of the week is depending on the option %1$s which can be found"
840
  " and changed in %2$s."
841
  msgstr ""
842
 
843
+ #: includes/daterange_helptexts.php:110
844
  msgid "Relative Day"
845
  msgstr ""
846
 
847
+ #: includes/daterange_helptexts.php:114
848
  msgid "A relative day"
849
  msgstr ""
850
 
851
+ #: includes/daterange_helptexts.php:120
852
  msgid "number of days"
853
  msgstr ""
854
 
855
+ #: includes/daterange_helptexts.php:134
856
  msgid "Date range"
857
  msgstr "Kuupäevavahemik"
858
 
859
+ #: includes/daterange_helptexts.php:136
860
  msgid ""
861
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
862
+ "\t\t\tFor the start and end date any available date format can be used."
863
  msgstr ""
864
 
865
+ #: includes/daterange_helptexts.php:147
866
  msgid "This value defines a range without any limits."
867
  msgstr ""
868
 
869
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
870
+ #: includes/daterange_helptexts.php:171
871
  #, php-format
872
  msgid "The corresponding date_range format is: %1$s"
873
  msgstr ""
874
 
875
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
876
  msgid "Upcoming"
877
  msgstr "Tulemas"
878
 
879
+ #: includes/daterange_helptexts.php:158
880
  msgid "This value defines a range from the actual day to the future."
881
  msgstr ""
882
 
883
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
884
  msgid "Past"
885
  msgstr "Toimunud"
886
 
887
+ #: includes/daterange_helptexts.php:169
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
+ #: includes/event.php:157
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
895
+ #: includes/event.php:343 includes/event.php:345
896
+ #: includes/sc_event-list.php:330
897
  msgid "read more"
898
  msgstr ""
899
 
900
+ #: includes/events_post_type.php:83
901
  msgid "Events"
902
  msgstr "Sündmused"
903
 
904
+ #: includes/events_post_type.php:84
905
  msgid "Event"
906
  msgstr "Sündmus"
907
 
908
+ #: includes/events_post_type.php:85
909
  msgid "Add New"
910
  msgstr "Lisa uus"
911
 
912
+ #: includes/events_post_type.php:86
913
  msgid "Add New Event"
914
  msgstr "Lisa uus sündmus"
915
 
916
+ #: includes/events_post_type.php:87
917
  msgid "Edit Event"
918
  msgstr "Muuda sündmust"
919
 
920
+ #: includes/events_post_type.php:88
921
  msgid "New Event"
922
  msgstr "Uus sündmus"
923
 
924
+ #: includes/events_post_type.php:89
925
  msgid "View Event"
926
  msgstr "Vaata sündmust"
927
 
928
+ #: includes/events_post_type.php:90
929
  msgid "View Events"
930
  msgstr "Vaata sündmusi"
931
 
932
+ #: includes/events_post_type.php:91
933
  msgid "Search Events"
934
  msgstr "Otsi sündmusi"
935
 
936
+ #: includes/events_post_type.php:93
937
  msgid "No events found in Trash"
938
  msgstr "Prügikastist ei leitud ühtegi sündmust"
939
 
940
+ #: includes/events_post_type.php:95
941
  msgid "All Events"
942
  msgstr "Kõik sündmused"
943
 
944
+ #: includes/events_post_type.php:96
945
  msgid "Event Archives"
946
  msgstr "Sündmuste arhiiv"
947
 
948
+ #: includes/events_post_type.php:97
949
  msgid "Event Attributes"
950
  msgstr "Sündmuse atribuudid"
951
 
952
+ #: includes/events_post_type.php:98
953
  msgid "Insert into event"
954
  msgstr ""
955
 
956
+ #: includes/events_post_type.php:99
957
  msgid "Uploaded to this event"
958
  msgstr ""
959
 
960
+ #: includes/events_post_type.php:100
961
  msgid "Event List"
962
  msgstr "Sündmuse loend"
963
 
964
+ #: includes/events_post_type.php:101
965
  msgid "Filter events list"
966
  msgstr "Filtreeri sündmuste loendit"
967
 
968
+ #: includes/events_post_type.php:102
969
  msgid "Events list navigation"
970
  msgstr "Sündmuste loendi navigeerimine"
971
 
972
+ #: includes/events_post_type.php:103
973
  msgid "Events list"
974
  msgstr "Sündmuste loend"
975
 
976
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
977
  msgid "Reset"
978
  msgstr "Lähtesta"
979
 
980
+ #: includes/filterbar.php:329
981
  msgid "All"
982
  msgstr "Kõik"
983
 
984
+ #: includes/filterbar.php:332
985
  msgid "All Dates"
986
  msgstr "Kõik kuupäevad"
987
 
1421
  " switching page from here."
1422
  msgstr ""
1423
 
1424
+ #: includes/options.php:92
1425
  msgid "events"
1426
  msgstr ""
1427
 
1428
+ #: includes/options.php:96
1429
  msgid "Show content"
1430
  msgstr "Näita sisu"
1431
 
1432
+ #: includes/options.php:100
1433
  msgid "Hide content"
1434
  msgstr "Peida sisu"
1435
 
1436
+ #: includes/sc_event-list_helptexts.php:20
1437
  msgid "event-id"
1438
  msgstr ""
1439
 
1440
+ #: includes/sc_event-list_helptexts.php:23
1441
  #, php-format
1442
  msgid ""
1443
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1445
  "this event is shown."
1446
  msgstr ""
1447
 
1448
+ #: includes/sc_event-list_helptexts.php:29
1449
+ #: includes/sc_event-list_helptexts.php:57
1450
  msgid "year"
1451
  msgstr "aasta"
1452
 
1453
+ #: includes/sc_event-list_helptexts.php:31
1454
  msgid ""
1455
  "This attribute defines which events are initially shown. The default is to "
1456
  "show the upcoming events only."
1457
  msgstr ""
1458
 
1459
+ #: includes/sc_event-list_helptexts.php:33
1460
  #, php-format
1461
  msgid ""
1462
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1463
  "change the displayed event date range via the filterbar or url parameters."
1464
  msgstr ""
1465
 
1466
+ #: includes/sc_event-list_helptexts.php:39
1467
  msgid "category slug"
1468
  msgstr ""
1469
 
1470
+ #: includes/sc_event-list_helptexts.php:41
1471
  msgid ""
1472
  "This attribute defines the category of which events are initially shown. The"
1473
  " default is to show events of all categories."
1474
  msgstr ""
1475
 
1476
+ #: includes/sc_event-list_helptexts.php:42
1477
  msgid ""
1478
  "Provide a category slug to change this behavior. It is still possible to "
1479
  "change the displayed categories via the filterbar or url parameters."
1480
  msgstr ""
1481
 
1482
+ #: includes/sc_event-list_helptexts.php:48
1483
  msgid "This attribute defines the initial order of the events."
1484
  msgstr ""
1485
 
1486
+ #: includes/sc_event-list_helptexts.php:50
1487
+ #, php-format
1488
  msgid ""
1489
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1490
  "in the opposite direction (from new to old)."
1491
  msgstr ""
1492
 
1493
+ #: includes/sc_event-list_helptexts.php:60
1494
  #, php-format
1495
  msgid ""
1496
  "This attribute defines the dates and date ranges of which events are "
1497
  "displayed. The default is %1$s to show all events."
1498
  msgstr ""
1499
 
1500
+ #: includes/sc_event-list_helptexts.php:64
1501
  #, php-format
1502
  msgid ""
1503
  "Filtered events according to %1$s value are not available in the event list."
1504
  msgstr ""
1505
 
1506
+ #: includes/sc_event-list_helptexts.php:68
1507
  #, php-format
1508
  msgid ""
1509
  "You can find all available values with a description and examples in the "
1510
  "sections %1$s and %2$s below."
1511
  msgstr ""
1512
 
1513
+ #: includes/sc_event-list_helptexts.php:73
1514
  #, php-format
1515
  msgid "See %1$s description if you want to define complex filters."
1516
  msgstr ""
1517
 
1518
+ #: includes/sc_event-list_helptexts.php:79
1519
  msgid "category slugs"
1520
  msgstr ""
1521
 
1522
+ #: includes/sc_event-list_helptexts.php:82
1523
  msgid ""
1524
  "This attribute defines the category filter which filters the events to show."
1525
  " The default is $1$s or an empty string to show all events."
1526
  msgstr ""
1527
 
1528
+ #: includes/sc_event-list_helptexts.php:86
1529
  #, php-format
1530
  msgid ""
1531
  "Events with categories that doesn´t match %1$s are not shown in the event "
1532
  "list. They are also not available if a manual url parameter is added."
1533
  msgstr ""
1534
 
1535
+ #: includes/sc_event-list_helptexts.php:90
1536
  #, php-format
1537
  msgid ""
1538
  "The filter is specified via the given category slugs. See %1$s description "
1539
  "if you want to define complex filters."
1540
  msgstr ""
1541
 
1542
+ #: includes/sc_event-list_helptexts.php:96
1543
+ #: includes/sc_event-list_helptexts.php:242
1544
+ #: includes/sc_event-list_helptexts.php:276
1545
+ #: includes/sc_event-list_helptexts.php:318
1546
  msgid "number"
1547
  msgstr "number"
1548
 
1549
+ #: includes/sc_event-list_helptexts.php:99
1550
  #, php-format
1551
  msgid ""
1552
  "This attribute defines how many events should be displayed if upcoming "
1554
  "displayed."
1555
  msgstr ""
1556
 
1557
+ #: includes/sc_event-list_helptexts.php:102
1558
  msgid ""
1559
  "Please not that in the actual version there is no pagination of the events "
1560
  "available, so the event list can be very long."
1561
  msgstr ""
1562
 
1563
+ #: includes/sc_event-list_helptexts.php:108
1564
  msgid ""
1565
  "This attribute defines if the filterbar should be displayed. The filterbar "
1566
  "allows the users to specify filters for the listed events."
1567
  msgstr ""
1568
 
1569
+ #: includes/sc_event-list_helptexts.php:110
1570
  #, php-format
1571
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1572
  msgstr ""
1573
 
1574
+ #: includes/sc_event-list_helptexts.php:115
1575
  #, php-format
1576
  msgid ""
1577
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1578
  " in the single event view."
1579
  msgstr ""
1580
 
1581
+ #: includes/sc_event-list_helptexts.php:125
1582
  #, php-format
1583
  msgid ""
1584
  "This attribute specifies the available items in the filterbar. This options "
1585
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1586
  msgstr ""
1587
 
1588
+ #: includes/sc_event-list_helptexts.php:128
1589
  msgid ""
1590
  "Find below an overview of the available filterbar items and their options:"
1591
  msgstr ""
1592
 
1593
+ #: includes/sc_event-list_helptexts.php:132
1594
  msgid "filterbar item"
1595
  msgstr ""
1596
 
1597
+ #: includes/sc_event-list_helptexts.php:133
1598
+ #: includes/sc_event-list_helptexts.php:206
1599
  msgid "description"
1600
  msgstr "kirjeldus"
1601
 
1602
+ #: includes/sc_event-list_helptexts.php:134
1603
  msgid "item options"
1604
  msgstr ""
1605
 
1606
+ #: includes/sc_event-list_helptexts.php:135
1607
  msgid "option values"
1608
  msgstr ""
1609
 
1610
+ #: includes/sc_event-list_helptexts.php:136
1611
  msgid "default value"
1612
  msgstr "vaikeväärtus"
1613
 
1614
+ #: includes/sc_event-list_helptexts.php:137
1615
  msgid "option description"
1616
  msgstr ""
1617
 
1618
+ #: includes/sc_event-list_helptexts.php:141
1619
  msgid ""
1620
  "Show a list of all available years. Additional there are some special "
1621
  "entries available (see item options)."
1622
  msgstr ""
1623
 
1624
+ #: includes/sc_event-list_helptexts.php:145
1625
+ #: includes/sc_event-list_helptexts.php:156
1626
  msgid "Add an entry to show all events."
1627
  msgstr ""
1628
 
1629
+ #: includes/sc_event-list_helptexts.php:147
1630
+ #: includes/sc_event-list_helptexts.php:158
1631
  msgid "Add an entry to show all upcoming events."
1632
  msgstr ""
1633
 
1634
+ #: includes/sc_event-list_helptexts.php:148
1635
+ #: includes/sc_event-list_helptexts.php:159
1636
  msgid "Add an entry to show events in the past."
1637
  msgstr ""
1638
 
1639
+ #: includes/sc_event-list_helptexts.php:149
1640
  msgid "Set descending or ascending order of year entries."
1641
  msgstr ""
1642
 
1643
+ #: includes/sc_event-list_helptexts.php:152
1644
  msgid "Show a list of all available months."
1645
  msgstr ""
1646
 
1647
+ #: includes/sc_event-list_helptexts.php:160
1648
  msgid "Set descending or ascending order of month entries."
1649
  msgstr ""
1650
 
1651
+ #: includes/sc_event-list_helptexts.php:163
1652
  msgid "php date-formats"
1653
  msgstr ""
1654
 
1655
+ #: includes/sc_event-list_helptexts.php:165
1656
  msgid "Set the displayed date format of the month entries."
1657
  msgstr ""
1658
 
1659
+ #: includes/sc_event-list_helptexts.php:170
1660
  #, php-format
1661
  msgid ""
1662
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1664
  "order."
1665
  msgstr ""
1666
 
1667
+ #: includes/sc_event-list_helptexts.php:179
1668
  #, php-format
1669
  msgid ""
1670
  "Specifies the displayed values and their order. The items must be seperated "
1671
  "by %1$s."
1672
  msgstr ""
1673
 
1674
+ #: includes/sc_event-list_helptexts.php:185
1675
  msgid "Show a list of all available categories."
1676
  msgstr ""
1677
 
1678
+ #: includes/sc_event-list_helptexts.php:189
1679
  msgid "Add an entry to show events from all categories."
1680
  msgstr ""
1681
 
1682
+ #: includes/sc_event-list_helptexts.php:193
1683
  msgid "A link to reset the eventlist filter to standard."
1684
  msgstr ""
1685
 
1686
+ #: includes/sc_event-list_helptexts.php:195
1687
  msgid "any text"
1688
  msgstr ""
1689
 
1690
+ #: includes/sc_event-list_helptexts.php:197
1691
  msgid "Set the caption of the link."
1692
  msgstr ""
1693
 
1694
+ #: includes/sc_event-list_helptexts.php:201
1695
  msgid "Find below an overview of the available filterbar display options:"
1696
  msgstr ""
1697
 
1698
+ #: includes/sc_event-list_helptexts.php:205
1699
  msgid "display option"
1700
  msgstr ""
1701
 
1702
+ #: includes/sc_event-list_helptexts.php:207
1703
  msgid "available for"
1704
  msgstr ""
1705
 
1706
+ #: includes/sc_event-list_helptexts.php:211
1707
  #, php-format
1708
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1709
  msgstr ""
1710
 
1711
+ #: includes/sc_event-list_helptexts.php:216
1712
  msgid ""
1713
  "Shows a select box where an item can be choosen. After the selection of an "
1714
  "item the page is reloaded via javascript to show the filtered events."
1715
  msgstr ""
1716
 
1717
+ #: includes/sc_event-list_helptexts.php:219
1718
  msgid "Shows a simple link which can be clicked."
1719
  msgstr ""
1720
 
1721
+ #: includes/sc_event-list_helptexts.php:222
1722
  msgid "Find below some declaration examples with descriptions:"
1723
  msgstr ""
1724
 
1725
+ #: includes/sc_event-list_helptexts.php:225
1726
  #, php-format
1727
  msgid ""
1728
  "In this example you can see that the filterbar item and the used display "
1730
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1731
  msgstr ""
1732
 
1733
+ #: includes/sc_event-list_helptexts.php:231
1734
  #, php-format
1735
  msgid ""
1736
  "In this example you can see that filterbar options can be added in brackets "
1737
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1738
  msgstr ""
1739
 
1740
+ #: includes/sc_event-list_helptexts.php:232
1741
  msgid "option_name"
1742
  msgstr ""
1743
 
1744
+ #: includes/sc_event-list_helptexts.php:232
1745
  msgid "value"
1746
  msgstr ""
1747
 
1748
+ #: includes/sc_event-list_helptexts.php:236
1749
  #, php-format
1750
  msgid ""
1751
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1754
  "left-aligned and the reset link will be on the right side."
1755
  msgstr ""
1756
 
1757
+ #: includes/sc_event-list_helptexts.php:244
1758
+ #: includes/sc_event-list_helptexts.php:277
1759
  msgid ""
1760
  "This attribute specifies if the title should be truncated to the given "
1761
  "number of characters in the event list."
1762
  msgstr ""
1763
 
1764
+ #: includes/sc_event-list_helptexts.php:246
1765
+ #: includes/sc_event-list_helptexts.php:278
1766
  #, php-format
1767
  msgid ""
1768
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1769
  "is automatically truncated via css."
1770
  msgstr ""
1771
 
1772
+ #: includes/sc_event-list_helptexts.php:250
1773
+ #: includes/sc_event-list_helptexts.php:279
1774
+ #: includes/sc_event-list_helptexts.php:322
1775
  msgid "This attribute has no influence if only a single event is shown."
1776
  msgstr ""
1777
 
1778
+ #: includes/sc_event-list_helptexts.php:257
1779
  msgid ""
1780
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1781
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1782
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1786
  msgid ""
1787
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1788
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1789
+ "\t\t\t\t\tWith \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:286
1793
  msgid ""
1794
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1795
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1796
+ "\t\t\t\t\tWith \"event_list_only\" the categories are 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:297
1800
  msgid ""
1801
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1802
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1803
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1804
  msgstr ""
1805
 
1806
+ #: includes/sc_event-list_helptexts.php:308
1807
  msgid ""
1808
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1809
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1810
+ "\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"
1811
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1812
+ "\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)."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:320
1816
  msgid ""
1817
  "This attribute specifies if the content should be truncate to the given "
1818
  "number of characters in the event list."
1819
  msgstr ""
1820
 
1821
+ #: includes/sc_event-list_helptexts.php:321
1822
  #, php-format
1823
  msgid "With the standard value %1$s the full text is displayed."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:329
1827
  msgid ""
1828
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1829
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1830
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1831
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:341
1835
  msgid ""
1836
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1837
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1838
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1839
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1840
  msgstr ""
1841
 
1842
+ #: includes/sc_event-list_helptexts.php:353
1843
  msgid ""
1844
  "This attribute specifies if a rss feed link should be added.<br />\n"
1845
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1846
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1847
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1848
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1849
  msgstr ""
1850
 
1851
+ #: includes/sc_event-list_helptexts.php:366
1852
  msgid ""
1853
  "This attribute specifies if a ical feed link should be added.<br />\n"
1854
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1855
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1856
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1857
  msgstr ""
1858
 
1859
+ #: includes/sc_event-list_helptexts.php:378
1860
  msgid ""
1861
  "This attribute specifies the page or post url for event links.<br />\n"
1862
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1863
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list_helptexts.php:391
1867
  msgid ""
1868
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1869
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1870
  msgstr ""
1871
 
1872
+ #: includes/sc_event-list.php:184
1873
  msgid "Sorry, the requested event is not available!"
1874
  msgstr ""
1875
 
1876
+ #: includes/sc_event-list.php:193
1877
  msgid "Event Information:"
1878
  msgstr "Sündmuse info:"
1879
 
1880
+ #: includes/sc_event-list.php:437
1881
  msgid "Link to RSS feed"
1882
  msgstr ""
1883
 
1884
+ #: includes/sc_event-list.php:447
1885
  msgid "Link to iCal feed"
1886
  msgstr ""
1887
 
1914
  msgid "Truncate event title to"
1915
  msgstr "Kärbi sündmuse pealkiri"
1916
 
1917
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1918
+ #: includes/widget_helptexts.php:103
1919
  msgid "characters"
1920
  msgstr "tähemärgini"
1921
 
1922
+ #: includes/widget_helptexts.php:39
1923
  msgid ""
1924
  "This option defines the number of displayed characters for the event title."
1925
  msgstr ""
1926
 
1927
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1928
  #, php-format
1929
  msgid ""
1930
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1931
  "automatically truncate the text via css."
1932
  msgstr ""
1933
 
1934
+ #: includes/widget_helptexts.php:51
1935
  msgid "Show event starttime"
1936
  msgstr "Kuva sündmuse algusaeg"
1937
 
1938
+ #: includes/widget_helptexts.php:53
1939
  msgid "This option defines if the event start time will be displayed."
1940
  msgstr ""
1941
 
1942
+ #: includes/widget_helptexts.php:60
1943
  msgid "Show event location"
1944
  msgstr "Kuva sündmuse koht"
1945
 
1946
+ #: includes/widget_helptexts.php:62
1947
  msgid "This option defines if the event location will be displayed."
1948
  msgstr ""
1949
 
1950
+ #: includes/widget_helptexts.php:69
1951
  msgid "Truncate location to"
1952
  msgstr "Kärbi sündmuse koht"
1953
 
1954
+ #: includes/widget_helptexts.php:72
1955
  msgid ""
1956
  "If the event location is diplayed this option defines the number of "
1957
  "displayed characters."
1958
  msgstr ""
1959
 
1960
+ #: includes/widget_helptexts.php:84
1961
  msgid "Show event excerpt"
1962
  msgstr ""
1963
 
1964
+ #: includes/widget_helptexts.php:86
1965
  msgid "This option defines if the event excerpt will be displayed."
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:93
1969
  msgid "Show event content"
1970
  msgstr "Kuva sündmuse sisu"
1971
 
1972
+ #: includes/widget_helptexts.php:95
1973
  msgid "This option defines if the event content will be displayed."
1974
  msgstr ""
1975
 
1976
+ #: includes/widget_helptexts.php:102
1977
  msgid "Truncate content to"
1978
  msgstr "Kärbi sündmuse sisu"
1979
 
1980
+ #: includes/widget_helptexts.php:105
1981
  msgid ""
1982
  "If the event content are diplayed this option defines the number of diplayed"
1983
  " characters."
1984
  msgstr ""
1985
 
1986
+ #: includes/widget_helptexts.php:107
1987
  #, php-format
1988
  msgid "Set this value to %1$s to view the full text."
1989
  msgstr ""
1990
 
1991
+ #: includes/widget_helptexts.php:116
1992
  msgid "URL to the linked Event List page"
1993
  msgstr ""
1994
 
1995
+ #: includes/widget_helptexts.php:118
1996
  msgid ""
1997
  "This option defines the url to the linked Event List page. This option is "
1998
  "required if you want to use one of the options below."
1999
  msgstr ""
2000
 
2001
+ #: includes/widget_helptexts.php:125
2002
  msgid "Shortcode ID on linked page"
2003
  msgstr ""
2004
 
2005
+ #: includes/widget_helptexts.php:127
2006
  msgid ""
2007
  "This option defines the shortcode-id for the Event List on the linked page. "
2008
  "Normally the standard value 1 is correct, you only have to change it if you "
2009
  "use multiple event-list shortcodes on the linked page."
2010
  msgstr ""
2011
 
2012
+ #: includes/widget_helptexts.php:136
2013
  msgid ""
2014
  "With this option you can add a link to the single event page for every "
2015
  "displayed event. You have to specify the url to the page and the shortcode "
2016
  "id option if you want to use it."
2017
  msgstr ""
2018
 
2019
+ #: includes/widget_helptexts.php:145
2020
  msgid ""
2021
  "With this option you can add a link to the event-list page below the "
2022
  "diplayed events. You have to specify the url to page option if you want to "
2023
  "use it."
2024
  msgstr ""
2025
 
2026
+ #: includes/widget_helptexts.php:152
2027
  msgid "Caption for the link"
2028
  msgstr "Lingi pealkiri"
2029
 
2030
+ #: includes/widget_helptexts.php:154
2031
  msgid ""
2032
  "This option defines the text for the link to the Event List page if the "
2033
  "approriate option is selected."
2034
  msgstr ""
2035
 
2036
+ #: includes/widget.php:38
2037
  msgid "With this widget a list of upcoming events can be displayed."
2038
  msgstr ""
2039
 
2040
+ #: includes/widget.php:43
2041
  msgid "Upcoming events"
2042
  msgstr "Eesseisvad sündmused"
2043
 
2044
+ #: includes/widget.php:57
2045
  msgid "show events page"
2046
  msgstr "näita sündmuste lehte"
languages/event-list-fi_FI.mo CHANGED
Binary file
languages/event-list-fi_FI.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
14
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,117 +20,117 @@ msgstr ""
20
  "Language: fi_FI\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
- #: admin/admin.php:64
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:64
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
34
  msgid "Event List Settings"
35
  msgstr "Tapahtuma listan asetukset"
36
 
37
- #: admin/admin.php:116
38
  msgid "Settings"
39
  msgstr "Asetukset"
40
 
41
- #: admin/admin.php:120 admin/includes/admin-about.php:43
42
  msgid "About Event List"
43
  msgstr "Lisätietoa Tapahtumalistasta"
44
 
45
- #: admin/admin.php:120
46
  msgid "About"
47
  msgstr "Lisätietoa"
48
 
49
- #: admin/admin.php:144
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
57
  msgid "General"
58
  msgstr "Yleinen"
59
 
60
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
61
- #: admin/includes/admin-about.php:117
62
  msgid "Shortcode Attributes"
63
  msgstr ""
64
 
65
- #: admin/includes/admin-about.php:82
66
  msgid "Help and Instructions"
67
  msgstr "Apu ja ohjeet"
68
 
69
- #: admin/includes/admin-about.php:83
70
  #, php-format
71
  msgid "You can manage the events %1$shere%2$s"
72
  msgstr ""
73
 
74
- #: admin/includes/admin-about.php:84
75
  msgid "To show the events on your site you have 2 possibilities"
76
  msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi."
77
 
78
- #: admin/includes/admin-about.php:85
79
  #, php-format
80
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
81
  msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen."
82
 
83
- #: admin/includes/admin-about.php:86
84
  #, php-format
85
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
86
  msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi."
87
 
88
- #: admin/includes/admin-about.php:87
89
  msgid ""
90
  "The displayed events and their style can be modified with the available "
91
  "widget settings and the available attributes for the shortcode."
92
  msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa."
93
 
94
- #: admin/includes/admin-about.php:88
95
  #, php-format
96
  msgid ""
97
  "A list of all available shortcode attributes with their descriptions is "
98
  "available in the %1$s tab."
99
  msgstr ""
100
 
101
- #: admin/includes/admin-about.php:89
102
  msgid "The available widget options are described in their tooltip text."
103
  msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä."
104
 
105
- #: admin/includes/admin-about.php:90
106
  #, php-format
107
  msgid ""
108
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
113
  msgid "Add links to the single events"
114
  msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
115
 
116
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
117
  msgid "Add a link to the Event List page"
118
  msgstr "Lisää linkki Tapahtumalistan sivulle"
119
 
120
- #: admin/includes/admin-about.php:91
121
  msgid ""
122
  "This is required because the widget does not know in which page or post the "
123
  "shortcode was included."
124
  msgstr ""
125
 
126
- #: admin/includes/admin-about.php:92
127
  msgid ""
128
  "Additionally you have to insert the correct Shortcode id on the linked page."
129
  " This id describes which shortcode should be used on the given page or post "
130
  "if you have more than one."
131
  msgstr ""
132
 
133
- #: admin/includes/admin-about.php:93
134
  #, php-format
135
  msgid ""
136
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -138,592 +138,596 @@ msgid ""
138
  "link on your linked page or post."
139
  msgstr ""
140
 
141
- #: admin/includes/admin-about.php:94
142
  #, php-format
143
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
144
  msgstr ""
145
 
146
- #: admin/includes/admin-about.php:96
147
  #, php-format
148
  msgid ""
149
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
150
  "want."
151
  msgstr ""
152
 
153
- #: admin/includes/admin-about.php:96
154
  msgid "Settings page"
155
  msgstr "Asetukset-sivu"
156
 
157
- #: admin/includes/admin-about.php:103
158
  msgid "About the plugin author"
159
  msgstr ""
160
 
161
- #: admin/includes/admin-about.php:105
162
  #, php-format
163
  msgid ""
164
  "This plugin is developed by %1$s, you can find more information about the "
165
  "plugin on the %2$s."
166
  msgstr ""
167
 
168
- #: admin/includes/admin-about.php:105
169
  msgid "WordPress plugin site"
170
  msgstr ""
171
 
172
- #: admin/includes/admin-about.php:106
173
  #, php-format
174
  msgid "If you like the plugin please rate it on the %1$s."
175
  msgstr ""
176
 
177
- #: admin/includes/admin-about.php:106
178
  msgid "WordPress plugin review site"
179
  msgstr ""
180
 
181
- #: admin/includes/admin-about.php:107
182
  msgid ""
183
  "If you want to support the plugin I would be happy to get a small donation"
184
  msgstr ""
185
 
186
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
187
- #: admin/includes/admin-about.php:110
188
  #, php-format
189
  msgid "Donate with %1$s"
190
  msgstr ""
191
 
192
- #: admin/includes/admin-about.php:119
193
  msgid ""
194
  "You have the possibility to modify the output if you add some of the "
195
  "following attributes to the shortcode."
196
  msgstr ""
197
 
198
- #: admin/includes/admin-about.php:120
199
  #, php-format
200
  msgid ""
201
  "You can combine and add as much attributes as you want. E.g. the shortcode "
202
  "including the attributes %1$s and %2$s would looks like this:"
203
  msgstr ""
204
 
205
- #: admin/includes/admin-about.php:122
206
  msgid ""
207
  "Below you can find a list of all supported attributes with their "
208
  "descriptions and available options:"
209
  msgstr ""
210
 
211
- #: admin/includes/admin-about.php:137
212
  msgid "Attribute name"
213
  msgstr "Atribuutin nimi"
214
 
215
- #: admin/includes/admin-about.php:138
216
  msgid "Value options"
217
  msgstr "Arvon vaihtoehdot"
218
 
219
- #: admin/includes/admin-about.php:139
220
  msgid "Default value"
221
  msgstr "Oletus arvo"
222
 
223
- #: admin/includes/admin-about.php:140
224
  msgid "Description"
225
  msgstr "Kuvaus"
226
 
227
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
228
- #: includes/sc_event-list_helptexts.php:42
229
  msgid "Filter Syntax"
230
  msgstr ""
231
 
232
- #: admin/includes/admin-about.php:160
233
  msgid ""
234
  "For date and cat filters you can specify complex filters with the following "
235
  "syntax:"
236
  msgstr ""
237
 
238
- #: admin/includes/admin-about.php:161
239
  #, php-format
240
  msgid ""
241
  "You can use %1$s and %2$s connections to define complex filters. "
242
  "Additionally you can set brackets %3$s for nested queries."
243
  msgstr ""
244
 
245
- #: admin/includes/admin-about.php:161
246
  msgid "AND"
247
  msgstr "JA"
248
 
249
- #: admin/includes/admin-about.php:161
250
  msgid "OR"
251
  msgstr "TAI"
252
 
253
- #: admin/includes/admin-about.php:161
254
  msgid "or"
255
  msgstr "tai"
256
 
257
- #: admin/includes/admin-about.php:161
258
  msgid "and"
259
  msgstr "ja"
260
 
261
- #: admin/includes/admin-about.php:162
262
  msgid "Examples for cat filters:"
263
  msgstr ""
264
 
265
- #: admin/includes/admin-about.php:163
266
  #, php-format
267
  msgid "Show all events with category %1$s."
268
  msgstr ""
269
 
270
- #: admin/includes/admin-about.php:164
271
  #, php-format
272
  msgid "Show all events with category %1$s or %2$s."
273
  msgstr ""
274
 
275
- #: admin/includes/admin-about.php:165
276
  #, php-format
277
  msgid ""
278
  "Show all events with category %1$s and all events where category %2$s as "
279
  "well as %3$s is selected."
280
  msgstr ""
281
 
282
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
283
  msgid "Available Date Formats"
284
  msgstr "Käytettävissä olevat päivämäärän muotoilut"
285
 
286
- #: admin/includes/admin-about.php:172
287
  msgid "For date filters you can use the following date formats:"
288
  msgstr ""
289
 
290
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
291
  msgid "Available Date Range Formats"
292
  msgstr ""
293
 
294
- #: admin/includes/admin-about.php:182
295
  msgid "For date filters you can use the following daterange formats:"
296
  msgstr ""
297
 
298
- #: admin/includes/admin-about.php:195
299
  msgid "Value"
300
  msgstr "Arvo"
301
 
302
- #: admin/includes/admin-about.php:199
303
  msgid "Example"
304
  msgstr "Esimerkki"
305
 
306
- #: admin/includes/admin-categories.php:54
307
  msgid "Synchronize with post categories"
308
  msgstr ""
309
 
310
- #: admin/includes/admin-categories.php:63
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
  msgstr ""
314
 
315
- #: admin/includes/admin-categories.php:64
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
  msgstr ""
319
 
320
- #: admin/includes/admin-categories.php:65
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
  msgstr ""
324
 
325
- #: admin/includes/admin-categories.php:67
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
  msgstr ""
329
 
330
- #: admin/includes/admin-categories.php:68
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
  msgstr ""
334
 
335
- #: admin/includes/admin-categories.php:69
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
  msgstr ""
339
 
340
- #: admin/includes/admin-categories.php:72
341
  msgid "An Error occured during the category sync"
342
  msgstr ""
343
 
344
- #: admin/includes/admin-categories.php:75
345
  msgid "Category sync finished"
346
  msgstr ""
347
 
348
- #: admin/includes/admin-category-sync.php:54
349
  msgid "Error: You are not allowed to view this page!"
350
  msgstr ""
351
 
352
- #: admin/includes/admin-category-sync.php:70
353
  msgid "Affected Categories when switching to seperate Event Categories"
354
  msgstr ""
355
 
356
- #: admin/includes/admin-category-sync.php:71
357
  msgid "Switch option to seperate Event Categories"
358
  msgstr ""
359
 
360
- #: admin/includes/admin-category-sync.php:72
361
  msgid ""
362
  "If you proceed, all post categories will be copied and all events will be "
363
  "re-assigned to this new categories."
364
  msgstr ""
365
 
366
- #: admin/includes/admin-category-sync.php:73
367
  msgid ""
368
  "Afterwards the event categories are independent of the post categories."
369
  msgstr ""
370
 
371
- #: admin/includes/admin-category-sync.php:75
372
  msgid "Affected Categories when switching to use Post Categories for events"
373
  msgstr ""
374
 
375
- #: admin/includes/admin-category-sync.php:76
376
  msgid "Switch option to use Post Categories for events"
377
  msgstr ""
378
 
379
- #: admin/includes/admin-category-sync.php:77
380
  msgid ""
381
  "Take a detailed look at the affected categories above before you proceed! "
382
  "All seperate event categories will be deleted, this cannot be undone!"
383
  msgstr ""
384
 
385
- #: admin/includes/admin-category-sync.php:79
386
  msgid "Event Categories: Synchronise with Post Categories"
387
  msgstr ""
388
 
389
- #: admin/includes/admin-category-sync.php:80
390
  msgid "Start synchronisation"
391
  msgstr ""
392
 
393
- #: admin/includes/admin-category-sync.php:81
394
  msgid ""
395
  "If this option is enabled the above listed categories will be deleted and "
396
  "removed from the existing events!"
397
  msgstr ""
398
 
399
- #: admin/includes/admin-category-sync.php:96
400
  msgid "Categories to modify"
401
  msgstr ""
402
 
403
- #: admin/includes/admin-category-sync.php:97
404
  msgid "Categories to add"
405
  msgstr ""
406
 
407
- #: admin/includes/admin-category-sync.php:98
408
  msgid "Categories to delete (optional)"
409
  msgstr ""
410
 
411
- #: admin/includes/admin-category-sync.php:99
412
  msgid "Delete not available post categories"
413
  msgstr ""
414
 
415
- #: admin/includes/admin-category-sync.php:102
416
  msgid "Categories with differences"
417
  msgstr ""
418
 
419
- #: admin/includes/admin-category-sync.php:103
420
  msgid "Categories to add (optional)"
421
  msgstr ""
422
 
423
- #: admin/includes/admin-category-sync.php:104
424
  msgid "Add not available post categories"
425
  msgstr ""
426
 
427
- #: admin/includes/admin-category-sync.php:123
428
  msgid "none"
429
  msgstr ""
430
 
431
- #: admin/includes/admin-import.php:58
432
  msgid "Import Events"
433
  msgstr "Tuo tapahtumia"
434
 
435
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
436
- #: admin/includes/admin-import.php:220
437
  msgid "Step"
438
  msgstr "Vaihe"
439
 
440
- #: admin/includes/admin-import.php:79
441
  msgid "Set import file and options"
442
  msgstr ""
443
 
444
- #: admin/includes/admin-import.php:82
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
  msgstr ""
448
 
449
- #: admin/includes/admin-import.php:85
450
  msgid "Example file"
451
  msgstr "Esimerkki tiedosto"
452
 
453
- #: admin/includes/admin-import.php:86
454
  #, php-format
455
  msgid ""
456
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
457
  msgstr ""
458
 
459
- #: admin/includes/admin-import.php:87
460
  msgid "Note"
461
  msgstr ""
462
 
463
- #: admin/includes/admin-import.php:87
464
  msgid ""
465
  "Do not change the column header and separator line (first two lines), "
466
  "otherwise the import will fail!"
467
  msgstr ""
468
 
469
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
470
  msgid "Sorry, there has been an error."
471
  msgstr ""
472
 
473
- #: admin/includes/admin-import.php:96
474
  msgid "The file does not exist, please try again."
475
  msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
476
 
477
- #: admin/includes/admin-import.php:104
478
  msgid "The uploaded file does not have the required csv extension."
479
  msgstr ""
480
 
481
- #: admin/includes/admin-import.php:116
482
  msgid "Events review and additonal category selection"
483
  msgstr ""
484
 
485
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
486
  msgid "Error"
487
  msgstr ""
488
 
489
- #: admin/includes/admin-import.php:122
490
  msgid "This CSV file cannot be imported"
491
  msgstr ""
492
 
493
- #: admin/includes/admin-import.php:133
494
  msgid "None of the events in this CSV file can be imported"
495
  msgstr ""
496
 
497
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
498
  msgid "Warning"
499
  msgstr ""
500
 
501
- #: admin/includes/admin-import.php:138
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
505
  msgstr[0] ""
506
  msgstr[1] ""
507
 
508
- #: admin/includes/admin-import.php:150
509
  #, php-format
510
  msgid "CSV line %1$s"
511
  msgstr ""
512
 
513
- #: admin/includes/admin-import.php:160
514
  msgid "You can still import all other events listed below."
515
  msgstr ""
516
 
517
- #: admin/includes/admin-import.php:179
518
  msgid ""
519
  "The following category slugs are not available and will be removed from the "
520
  "imported events"
521
  msgstr ""
522
 
523
- #: admin/includes/admin-import.php:185
524
  msgid ""
525
  "If you want to keep these categories, please create these Categories first "
526
  "and do the import afterwards."
527
  msgstr ""
528
 
529
- #: admin/includes/admin-import.php:220
530
  msgid "Import result"
531
  msgstr ""
532
 
533
- #: admin/includes/admin-import.php:223
534
  #, php-format
535
  msgid "Import of %1$s events successful!"
536
  msgstr ""
537
 
538
- #: admin/includes/admin-import.php:224
539
  msgid "Go back to All Events"
540
  msgstr ""
541
 
542
- #: admin/includes/admin-import.php:227
543
  msgid "Errors during Import"
544
  msgstr ""
545
 
546
- #: admin/includes/admin-import.php:235
547
  msgid "Event from CSV-line"
548
  msgstr ""
549
 
550
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
551
  #: includes/widget_helptexts.php:9
552
  msgid "Title"
553
  msgstr "Otsikko"
554
 
555
- #: admin/includes/admin-import.php:248
556
  msgid "Start Date"
557
  msgstr "Alku päivämäärä"
558
 
559
- #: admin/includes/admin-import.php:249
560
  msgid "End Date"
561
  msgstr "Loppu päivämäärä"
562
 
563
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
564
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
565
  msgid "Time"
566
  msgstr "Aika"
567
 
568
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
569
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
570
  #: includes/options_helptexts.php:76
571
  msgid "Location"
572
  msgstr "Sijainti"
573
 
574
- #: admin/includes/admin-import.php:252
575
  msgid "Content"
576
  msgstr ""
577
 
578
- #: admin/includes/admin-import.php:253
579
  msgid "Category slugs"
580
  msgstr ""
581
 
582
- #: admin/includes/admin-import.php:297
583
  msgid "Header line is missing or not correct!"
584
  msgstr ""
585
 
586
- #: admin/includes/admin-import.php:298
587
  #, php-format
588
  msgid ""
589
  "Have a look at the %1$sexample file%2$s to see the correct header line "
590
  "format."
591
  msgstr ""
592
 
593
- #: admin/includes/admin-import.php:305
594
  #, php-format
595
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
596
  msgstr ""
597
 
598
- #: admin/includes/admin-import.php:334
599
  msgid "Empty event title found"
600
  msgstr ""
601
 
602
- #: admin/includes/admin-import.php:340
603
  msgid "Wrong date format for startdate"
604
  msgstr ""
605
 
606
- #: admin/includes/admin-import.php:348
607
  msgid "Wrong date format for enddate"
608
  msgstr ""
609
 
610
- #: admin/includes/admin-import.php:401
611
  msgid "Import events"
612
  msgstr "Tuo tapahtumia"
613
 
614
- #: admin/includes/admin-import.php:402
615
  msgid "Add additional categories"
616
  msgstr "Lisää kategorioita"
617
 
618
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
619
- msgid "Import"
620
- msgstr "Tuo"
621
-
622
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
623
  msgid "No events found"
624
  msgstr ""
625
 
626
- #: admin/includes/admin-import.php:473
627
  msgid "Saving of event failed!"
628
  msgstr ""
629
 
630
- #: admin/includes/admin-main.php:76
631
  msgid "Event Date"
632
  msgstr ""
633
 
634
- #: admin/includes/admin-main.php:80
635
  msgid "Author"
636
  msgstr "Kirjoittaja"
637
 
638
- #: admin/includes/admin-main.php:148
639
  #, php-format
640
  msgid "Add a copy of %1$s"
641
  msgstr ""
642
 
643
- #: admin/includes/admin-main.php:148
644
  msgid "Copy"
645
  msgstr ""
646
 
647
- #: admin/includes/admin-new.php:58
 
 
 
 
648
  msgid "Event data"
649
  msgstr ""
650
 
651
- #: admin/includes/admin-new.php:90
652
  msgid "Add Copy"
653
  msgstr ""
654
 
655
- #: admin/includes/admin-new.php:98
656
  msgid "Date"
657
  msgstr "Päiväys"
658
 
659
- #: admin/includes/admin-new.php:98
660
  msgid "required"
661
  msgstr "tarpeellinen"
662
 
663
- #: admin/includes/admin-new.php:101
664
  msgid "Multi-Day Event"
665
  msgstr "Monipäiväinen tapahtuma"
666
 
667
- #: admin/includes/admin-new.php:121
668
  msgid "Event Title"
669
  msgstr ""
670
 
671
- #: admin/includes/admin-new.php:137
672
  msgid "Event Content"
673
  msgstr ""
674
 
675
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
676
  msgid "Event updated."
677
  msgstr ""
678
 
679
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
680
  msgid "View event"
681
  msgstr ""
682
 
683
- #: admin/includes/admin-new.php:204
684
  #, php-format
685
  msgid "Event restored to revision from %1$s"
686
  msgstr ""
687
 
688
- #: admin/includes/admin-new.php:205
689
  msgid "Event published."
690
  msgstr ""
691
 
692
- #: admin/includes/admin-new.php:207
 
 
 
 
693
  msgid "Event submitted."
694
  msgstr ""
695
 
696
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
697
- #: admin/includes/admin-new.php:210
698
  msgid "Preview event"
699
  msgstr ""
700
 
701
- #: admin/includes/admin-new.php:208
702
  #, php-format
703
  msgid "Event scheduled for: %1$s>"
704
  msgstr ""
705
 
706
- #: admin/includes/admin-new.php:210
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:79
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:93
715
  msgid "Frontend Settings"
716
  msgstr ""
717
 
718
- #: admin/includes/admin-settings.php:94
719
  msgid "Admin Page Settings"
720
  msgstr "Hallinnointisivun asetukset"
721
 
722
- #: admin/includes/admin-settings.php:95
723
  msgid "Feed Settings"
724
  msgstr "Syöte asetukset"
725
 
726
- #: admin/includes/admin-settings.php:96
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
@@ -731,255 +735,255 @@ msgstr ""
731
  msgid "Year"
732
  msgstr "Vuosi"
733
 
734
- #: includes/daterange_helptexts.php:9
735
  msgid "A year can be specified in 4 digit format."
736
  msgstr "Vuosi määritellään 4-merkkisessä formaatissa."
737
 
738
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
739
- #: includes/daterange_helptexts.php:47
740
  #, php-format
741
  msgid ""
742
  "For a start date filter the first day of %1$s is used, in an end date the "
743
  "last day."
744
  msgstr ""
745
 
746
- #: includes/daterange_helptexts.php:10
747
  msgid "the resulting year"
748
  msgstr ""
749
 
750
- #: includes/daterange_helptexts.php:15
751
  msgid "Month"
752
  msgstr "Kuukausi"
753
 
754
- #: includes/daterange_helptexts.php:16
755
  msgid ""
756
  "A month can be specified with 4 digits for the year and 2 digits for the "
757
  "month, seperated by a hyphen (-)."
758
  msgstr ""
759
 
760
- #: includes/daterange_helptexts.php:17
761
  msgid "the resulting month"
762
  msgstr ""
763
 
764
- #: includes/daterange_helptexts.php:22
765
  msgid "Day"
766
  msgstr "Päivä"
767
 
768
- #: includes/daterange_helptexts.php:23
769
  msgid ""
770
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
771
  " month and 2 digets for the day, seperated by hyphens (-)."
772
  msgstr ""
773
 
774
- #: includes/daterange_helptexts.php:28
775
  msgid "Relative Year"
776
  msgstr ""
777
 
778
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
779
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
780
  #, php-format
781
  msgid "%1$s from now can be specified in the following notation: %2$s"
782
  msgstr ""
783
 
784
- #: includes/daterange_helptexts.php:29
785
  msgid "A relative year"
786
  msgstr ""
787
 
788
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
789
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
790
  #, php-format
791
  msgid ""
792
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
793
  "%3$s or %4$s attached (see also the example below)."
794
  msgstr ""
795
 
796
- #: includes/daterange_helptexts.php:30
797
  msgid "number of years"
798
  msgstr ""
799
 
800
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
801
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
802
  #, php-format
803
  msgid "Additionally the following values are available: %1$s"
804
  msgstr ""
805
 
806
- #: includes/daterange_helptexts.php:36
807
  msgid "Relative Month"
808
  msgstr ""
809
 
810
- #: includes/daterange_helptexts.php:37
811
  msgid "A relative month"
812
  msgstr ""
813
 
814
- #: includes/daterange_helptexts.php:38
815
  msgid "number of months"
816
  msgstr ""
817
 
818
- #: includes/daterange_helptexts.php:44
819
  msgid "Relative Week"
820
  msgstr ""
821
 
822
- #: includes/daterange_helptexts.php:45
823
  msgid "A relative week"
824
  msgstr ""
825
 
826
- #: includes/daterange_helptexts.php:46
827
  msgid "number of weeks"
828
  msgstr ""
829
 
830
- #: includes/daterange_helptexts.php:47
831
  msgid "the resulting week"
832
  msgstr ""
833
 
834
- #: includes/daterange_helptexts.php:48
835
  #, php-format
836
  msgid ""
837
  "The first day of the week is depending on the option %1$s which can be found"
838
  " and changed in %2$s."
839
  msgstr ""
840
 
841
- #: includes/daterange_helptexts.php:54
842
  msgid "Relative Day"
843
  msgstr ""
844
 
845
- #: includes/daterange_helptexts.php:55
846
  msgid "A relative day"
847
  msgstr ""
848
 
849
- #: includes/daterange_helptexts.php:56
850
  msgid "number of days"
851
  msgstr "päivien lukumäärä"
852
 
853
- #: includes/daterange_helptexts.php:64
854
  msgid "Date range"
855
  msgstr ""
856
 
857
- #: includes/daterange_helptexts.php:66
858
  msgid ""
859
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
860
- "\t For the start and end date any available date format can be used."
861
  msgstr ""
862
 
863
- #: includes/daterange_helptexts.php:75
864
  msgid "This value defines a range without any limits."
865
  msgstr ""
866
 
867
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
868
- #: includes/daterange_helptexts.php:90
869
  #, php-format
870
  msgid "The corresponding date_range format is: %1$s"
871
  msgstr ""
872
 
873
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
874
  msgid "Upcoming"
875
  msgstr "Tulevat"
876
 
877
- #: includes/daterange_helptexts.php:82
878
  msgid "This value defines a range from the actual day to the future."
879
  msgstr ""
880
 
881
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
882
  msgid "Past"
883
  msgstr "Menneet"
884
 
885
- #: includes/daterange_helptexts.php:89
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
- #: includes/event.php:124
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
893
- #: includes/event.php:299 includes/event.php:301
894
- #: includes/sc_event-list.php:298
895
  msgid "read more"
896
  msgstr ""
897
 
898
- #: includes/events_post_type.php:69
899
  msgid "Events"
900
  msgstr "Tapahtumat"
901
 
902
- #: includes/events_post_type.php:70
903
  msgid "Event"
904
  msgstr ""
905
 
906
- #: includes/events_post_type.php:71
907
  msgid "Add New"
908
  msgstr "Lisää uusi"
909
 
910
- #: includes/events_post_type.php:72
911
  msgid "Add New Event"
912
  msgstr "Lisää uusi tapahtuma"
913
 
914
- #: includes/events_post_type.php:73
915
  msgid "Edit Event"
916
  msgstr "Muokkaa tapahtumaa"
917
 
918
- #: includes/events_post_type.php:74
919
  msgid "New Event"
920
  msgstr ""
921
 
922
- #: includes/events_post_type.php:75
923
  msgid "View Event"
924
  msgstr ""
925
 
926
- #: includes/events_post_type.php:76
927
  msgid "View Events"
928
  msgstr ""
929
 
930
- #: includes/events_post_type.php:77
931
  msgid "Search Events"
932
  msgstr ""
933
 
934
- #: includes/events_post_type.php:79
935
  msgid "No events found in Trash"
936
  msgstr ""
937
 
938
- #: includes/events_post_type.php:81
939
  msgid "All Events"
940
  msgstr "Kaikki tapahtumat"
941
 
942
- #: includes/events_post_type.php:82
943
  msgid "Event Archives"
944
  msgstr ""
945
 
946
- #: includes/events_post_type.php:83
947
  msgid "Event Attributes"
948
  msgstr ""
949
 
950
- #: includes/events_post_type.php:84
951
  msgid "Insert into event"
952
  msgstr ""
953
 
954
- #: includes/events_post_type.php:85
955
  msgid "Uploaded to this event"
956
  msgstr ""
957
 
958
- #: includes/events_post_type.php:86
959
  msgid "Event List"
960
  msgstr "Tapahtuma lista"
961
 
962
- #: includes/events_post_type.php:87
963
  msgid "Filter events list"
964
  msgstr ""
965
 
966
- #: includes/events_post_type.php:88
967
  msgid "Events list navigation"
968
  msgstr ""
969
 
970
- #: includes/events_post_type.php:89
971
  msgid "Events list"
972
  msgstr ""
973
 
974
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
975
  msgid "Reset"
976
  msgstr ""
977
 
978
- #: includes/filterbar.php:296
979
  msgid "All"
980
  msgstr "Kaikki"
981
 
982
- #: includes/filterbar.php:298
983
  msgid "All Dates"
984
  msgstr ""
985
 
@@ -1419,23 +1423,23 @@ msgid ""
1419
  " switching page from here."
1420
  msgstr ""
1421
 
1422
- #: includes/options.php:73
1423
  msgid "events"
1424
  msgstr ""
1425
 
1426
- #: includes/options.php:77
1427
  msgid "Show content"
1428
  msgstr ""
1429
 
1430
- #: includes/options.php:81
1431
  msgid "Hide content"
1432
  msgstr ""
1433
 
1434
- #: includes/sc_event-list_helptexts.php:8
1435
  msgid "event-id"
1436
  msgstr ""
1437
 
1438
- #: includes/sc_event-list_helptexts.php:9
1439
  #, php-format
1440
  msgid ""
1441
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1443,107 +1447,108 @@ msgid ""
1443
  "this event is shown."
1444
  msgstr ""
1445
 
1446
- #: includes/sc_event-list_helptexts.php:13
1447
- #: includes/sc_event-list_helptexts.php:31
1448
  msgid "year"
1449
  msgstr "vuosi"
1450
 
1451
- #: includes/sc_event-list_helptexts.php:14
1452
  msgid ""
1453
  "This attribute defines which events are initially shown. The default is to "
1454
  "show the upcoming events only."
1455
  msgstr ""
1456
 
1457
- #: includes/sc_event-list_helptexts.php:15
1458
  #, php-format
1459
  msgid ""
1460
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1461
  "change the displayed event date range via the filterbar or url parameters."
1462
  msgstr ""
1463
 
1464
- #: includes/sc_event-list_helptexts.php:19
1465
  msgid "category slug"
1466
  msgstr ""
1467
 
1468
- #: includes/sc_event-list_helptexts.php:20
1469
  msgid ""
1470
  "This attribute defines the category of which events are initially shown. The"
1471
  " default is to show events of all categories."
1472
  msgstr ""
1473
 
1474
- #: includes/sc_event-list_helptexts.php:21
1475
  msgid ""
1476
  "Provide a category slug to change this behavior. It is still possible to "
1477
  "change the displayed categories via the filterbar or url parameters."
1478
  msgstr ""
1479
 
1480
- #: includes/sc_event-list_helptexts.php:26
1481
  msgid "This attribute defines the initial order of the events."
1482
  msgstr ""
1483
 
1484
- #: includes/sc_event-list_helptexts.php:27
 
1485
  msgid ""
1486
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1487
  "in the opposite direction (from new to old)."
1488
  msgstr ""
1489
 
1490
- #: includes/sc_event-list_helptexts.php:32
1491
  #, php-format
1492
  msgid ""
1493
  "This attribute defines the dates and date ranges of which events are "
1494
  "displayed. The default is %1$s to show all events."
1495
  msgstr ""
1496
 
1497
- #: includes/sc_event-list_helptexts.php:33
1498
  #, php-format
1499
  msgid ""
1500
  "Filtered events according to %1$s value are not available in the event list."
1501
  msgstr ""
1502
 
1503
- #: includes/sc_event-list_helptexts.php:34
1504
  #, php-format
1505
  msgid ""
1506
  "You can find all available values with a description and examples in the "
1507
  "sections %1$s and %2$s below."
1508
  msgstr ""
1509
 
1510
- #: includes/sc_event-list_helptexts.php:35
1511
  #, php-format
1512
  msgid "See %1$s description if you want to define complex filters."
1513
  msgstr ""
1514
 
1515
- #: includes/sc_event-list_helptexts.php:39
1516
  msgid "category slugs"
1517
  msgstr ""
1518
 
1519
- #: includes/sc_event-list_helptexts.php:40
1520
  msgid ""
1521
  "This attribute defines the category filter which filters the events to show."
1522
  " The default is $1$s or an empty string to show all events."
1523
  msgstr ""
1524
 
1525
- #: includes/sc_event-list_helptexts.php:41
1526
  #, php-format
1527
  msgid ""
1528
  "Events with categories that doesn´t match %1$s are not shown in the event "
1529
  "list. They are also not available if a manual url parameter is added."
1530
  msgstr ""
1531
 
1532
- #: includes/sc_event-list_helptexts.php:42
1533
  #, php-format
1534
  msgid ""
1535
  "The filter is specified via the given category slugs. See %1$s description "
1536
  "if you want to define complex filters."
1537
  msgstr ""
1538
 
1539
- #: includes/sc_event-list_helptexts.php:46
1540
- #: includes/sc_event-list_helptexts.php:111
1541
- #: includes/sc_event-list_helptexts.php:138
1542
- #: includes/sc_event-list_helptexts.php:177
1543
  msgid "number"
1544
  msgstr "numero"
1545
 
1546
- #: includes/sc_event-list_helptexts.php:47
1547
  #, php-format
1548
  msgid ""
1549
  "This attribute defines how many events should be displayed if upcoming "
@@ -1551,109 +1556,109 @@ msgid ""
1551
  "displayed."
1552
  msgstr ""
1553
 
1554
- #: includes/sc_event-list_helptexts.php:48
1555
  msgid ""
1556
  "Please not that in the actual version there is no pagination of the events "
1557
  "available, so the event list can be very long."
1558
  msgstr ""
1559
 
1560
- #: includes/sc_event-list_helptexts.php:53
1561
  msgid ""
1562
  "This attribute defines if the filterbar should be displayed. The filterbar "
1563
  "allows the users to specify filters for the listed events."
1564
  msgstr ""
1565
 
1566
- #: includes/sc_event-list_helptexts.php:54
1567
  #, php-format
1568
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1569
  msgstr ""
1570
 
1571
- #: includes/sc_event-list_helptexts.php:55
1572
  #, php-format
1573
  msgid ""
1574
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1575
  " in the single event view."
1576
  msgstr ""
1577
 
1578
- #: includes/sc_event-list_helptexts.php:60
1579
  #, php-format
1580
  msgid ""
1581
  "This attribute specifies the available items in the filterbar. This options "
1582
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1583
  msgstr ""
1584
 
1585
- #: includes/sc_event-list_helptexts.php:61
1586
  msgid ""
1587
  "Find below an overview of the available filterbar items and their options:"
1588
  msgstr ""
1589
 
1590
- #: includes/sc_event-list_helptexts.php:64
1591
  msgid "filterbar item"
1592
  msgstr ""
1593
 
1594
- #: includes/sc_event-list_helptexts.php:64
1595
- #: includes/sc_event-list_helptexts.php:96
1596
  msgid "description"
1597
  msgstr ""
1598
 
1599
- #: includes/sc_event-list_helptexts.php:64
1600
  msgid "item options"
1601
  msgstr ""
1602
 
1603
- #: includes/sc_event-list_helptexts.php:64
1604
  msgid "option values"
1605
  msgstr ""
1606
 
1607
- #: includes/sc_event-list_helptexts.php:64
1608
  msgid "default value"
1609
  msgstr ""
1610
 
1611
- #: includes/sc_event-list_helptexts.php:64
1612
  msgid "option description"
1613
  msgstr ""
1614
 
1615
- #: includes/sc_event-list_helptexts.php:67
1616
  msgid ""
1617
  "Show a list of all available years. Additional there are some special "
1618
  "entries available (see item options)."
1619
  msgstr ""
1620
 
1621
- #: includes/sc_event-list_helptexts.php:71
1622
- #: includes/sc_event-list_helptexts.php:82
1623
  msgid "Add an entry to show all events."
1624
  msgstr ""
1625
 
1626
- #: includes/sc_event-list_helptexts.php:73
1627
- #: includes/sc_event-list_helptexts.php:84
1628
  msgid "Add an entry to show all upcoming events."
1629
  msgstr ""
1630
 
1631
- #: includes/sc_event-list_helptexts.php:74
1632
- #: includes/sc_event-list_helptexts.php:85
1633
  msgid "Add an entry to show events in the past."
1634
  msgstr ""
1635
 
1636
- #: includes/sc_event-list_helptexts.php:75
1637
  msgid "Set descending or ascending order of year entries."
1638
  msgstr ""
1639
 
1640
- #: includes/sc_event-list_helptexts.php:78
1641
  msgid "Show a list of all available months."
1642
  msgstr ""
1643
 
1644
- #: includes/sc_event-list_helptexts.php:86
1645
  msgid "Set descending or ascending order of month entries."
1646
  msgstr ""
1647
 
1648
- #: includes/sc_event-list_helptexts.php:87
1649
  msgid "php date-formats"
1650
  msgstr ""
1651
 
1652
- #: includes/sc_event-list_helptexts.php:87
1653
  msgid "Set the displayed date format of the month entries."
1654
  msgstr ""
1655
 
1656
- #: includes/sc_event-list_helptexts.php:88
1657
  #, php-format
1658
  msgid ""
1659
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1661,65 +1666,65 @@ msgid ""
1661
  "order."
1662
  msgstr ""
1663
 
1664
- #: includes/sc_event-list_helptexts.php:88
1665
  #, php-format
1666
  msgid ""
1667
  "Specifies the displayed values and their order. The items must be seperated "
1668
  "by %1$s."
1669
  msgstr ""
1670
 
1671
- #: includes/sc_event-list_helptexts.php:89
1672
  msgid "Show a list of all available categories."
1673
  msgstr ""
1674
 
1675
- #: includes/sc_event-list_helptexts.php:89
1676
  msgid "Add an entry to show events from all categories."
1677
  msgstr ""
1678
 
1679
- #: includes/sc_event-list_helptexts.php:90
1680
  msgid "A link to reset the eventlist filter to standard."
1681
  msgstr ""
1682
 
1683
- #: includes/sc_event-list_helptexts.php:90
1684
  msgid "any text"
1685
  msgstr ""
1686
 
1687
- #: includes/sc_event-list_helptexts.php:90
1688
  msgid "Set the caption of the link."
1689
  msgstr ""
1690
 
1691
- #: includes/sc_event-list_helptexts.php:93
1692
  msgid "Find below an overview of the available filterbar display options:"
1693
  msgstr ""
1694
 
1695
- #: includes/sc_event-list_helptexts.php:96
1696
  msgid "display option"
1697
  msgstr ""
1698
 
1699
- #: includes/sc_event-list_helptexts.php:96
1700
  msgid "available for"
1701
  msgstr ""
1702
 
1703
- #: includes/sc_event-list_helptexts.php:97
1704
  #, php-format
1705
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1706
  msgstr ""
1707
 
1708
- #: includes/sc_event-list_helptexts.php:98
1709
  msgid ""
1710
  "Shows a select box where an item can be choosen. After the selection of an "
1711
  "item the page is reloaded via javascript to show the filtered events."
1712
  msgstr ""
1713
 
1714
- #: includes/sc_event-list_helptexts.php:99
1715
  msgid "Shows a simple link which can be clicked."
1716
  msgstr ""
1717
 
1718
- #: includes/sc_event-list_helptexts.php:102
1719
  msgid "Find below some declaration examples with descriptions:"
1720
  msgstr ""
1721
 
1722
- #: includes/sc_event-list_helptexts.php:104
1723
  #, php-format
1724
  msgid ""
1725
  "In this example you can see that the filterbar item and the used display "
@@ -1727,22 +1732,22 @@ msgid ""
1727
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1728
  msgstr ""
1729
 
1730
- #: includes/sc_event-list_helptexts.php:106
1731
  #, php-format
1732
  msgid ""
1733
  "In this example you can see that filterbar options can be added in brackets "
1734
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1735
  msgstr ""
1736
 
1737
- #: includes/sc_event-list_helptexts.php:106
1738
  msgid "option_name"
1739
  msgstr ""
1740
 
1741
- #: includes/sc_event-list_helptexts.php:106
1742
  msgid "value"
1743
  msgstr ""
1744
 
1745
- #: includes/sc_event-list_helptexts.php:107
1746
  #, php-format
1747
  msgid ""
1748
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1751,134 +1756,134 @@ msgid ""
1751
  "left-aligned and the reset link will be on the right side."
1752
  msgstr ""
1753
 
1754
- #: includes/sc_event-list_helptexts.php:112
1755
- #: includes/sc_event-list_helptexts.php:139
1756
  msgid ""
1757
  "This attribute specifies if the title should be truncated to the given "
1758
  "number of characters in the event list."
1759
  msgstr ""
1760
 
1761
- #: includes/sc_event-list_helptexts.php:113
1762
- #: includes/sc_event-list_helptexts.php:140
1763
  #, php-format
1764
  msgid ""
1765
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1766
  "is automatically truncated via css."
1767
  msgstr ""
1768
 
1769
- #: includes/sc_event-list_helptexts.php:114
1770
- #: includes/sc_event-list_helptexts.php:141
1771
- #: includes/sc_event-list_helptexts.php:180
1772
  msgid "This attribute has no influence if only a single event is shown."
1773
  msgstr ""
1774
 
1775
- #: includes/sc_event-list_helptexts.php:120
1776
  msgid ""
1777
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1778
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1779
- "\t With \"event_list_only\" the starttime 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:130
1783
  msgid ""
1784
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1785
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1786
- "\t With \"event_list_only\" the location 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:147
1790
  msgid ""
1791
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1792
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1793
- "\t With \"event_list_only\" the categories are 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:157
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:167
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:178
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 ""
1817
 
1818
- #: includes/sc_event-list_helptexts.php:179
1819
  #, php-format
1820
  msgid "With the standard value %1$s the full text is displayed."
1821
  msgstr ""
1822
 
1823
- #: includes/sc_event-list_helptexts.php:186
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:197
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"
1835
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
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:208
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"
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 />\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:220
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:231
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:243
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:154
1870
  msgid "Sorry, the requested event is not available!"
1871
  msgstr ""
1872
 
1873
- #: includes/sc_event-list.php:163
1874
  msgid "Event Information:"
1875
  msgstr "Tapahtuman tiedot:"
1876
 
1877
- #: includes/sc_event-list.php:405
1878
  msgid "Link to RSS feed"
1879
  msgstr ""
1880
 
1881
- #: includes/sc_event-list.php:414
1882
  msgid "Link to iCal feed"
1883
  msgstr ""
1884
 
@@ -1911,133 +1916,133 @@ msgstr ""
1911
  msgid "Truncate event title to"
1912
  msgstr "Tapahtuma otsikon lyhenne"
1913
 
1914
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1915
- #: includes/widget_helptexts.php:93
1916
  msgid "characters"
1917
  msgstr "merkkejä"
1918
 
1919
- #: includes/widget_helptexts.php:38
1920
  msgid ""
1921
  "This option defines the number of displayed characters for the event title."
1922
  msgstr ""
1923
 
1924
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1925
  #, php-format
1926
  msgid ""
1927
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1928
  "automatically truncate the text via css."
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:46
1932
  msgid "Show event starttime"
1933
  msgstr "Näytä tapahtuman alkamisajankohta"
1934
 
1935
- #: includes/widget_helptexts.php:48
1936
  msgid "This option defines if the event start time will be displayed."
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:55
1940
  msgid "Show event location"
1941
  msgstr "Näytä tapahtuman paikka"
1942
 
1943
- #: includes/widget_helptexts.php:57
1944
  msgid "This option defines if the event location will be displayed."
1945
  msgstr ""
1946
 
1947
- #: includes/widget_helptexts.php:64
1948
  msgid "Truncate location to"
1949
  msgstr "Sijainnin lyhenne"
1950
 
1951
- #: includes/widget_helptexts.php:66
1952
  msgid ""
1953
  "If the event location is diplayed this option defines the number of "
1954
  "displayed characters."
1955
  msgstr ""
1956
 
1957
- #: includes/widget_helptexts.php:74
1958
  msgid "Show event excerpt"
1959
  msgstr ""
1960
 
1961
- #: includes/widget_helptexts.php:76
1962
  msgid "This option defines if the event excerpt will be displayed."
1963
  msgstr ""
1964
 
1965
- #: includes/widget_helptexts.php:83
1966
  msgid "Show event content"
1967
  msgstr ""
1968
 
1969
- #: includes/widget_helptexts.php:85
1970
  msgid "This option defines if the event content will be displayed."
1971
  msgstr ""
1972
 
1973
- #: includes/widget_helptexts.php:92
1974
  msgid "Truncate content to"
1975
  msgstr ""
1976
 
1977
- #: includes/widget_helptexts.php:94
1978
  msgid ""
1979
  "If the event content are diplayed this option defines the number of diplayed"
1980
  " characters."
1981
  msgstr ""
1982
 
1983
- #: includes/widget_helptexts.php:95
1984
  #, php-format
1985
  msgid "Set this value to %1$s to view the full text."
1986
  msgstr ""
1987
 
1988
- #: includes/widget_helptexts.php:102
1989
  msgid "URL to the linked Event List page"
1990
  msgstr ""
1991
 
1992
- #: includes/widget_helptexts.php:104
1993
  msgid ""
1994
  "This option defines the url to the linked Event List page. This option is "
1995
  "required if you want to use one of the options below."
1996
  msgstr ""
1997
 
1998
- #: includes/widget_helptexts.php:111
1999
  msgid "Shortcode ID on linked page"
2000
  msgstr ""
2001
 
2002
- #: includes/widget_helptexts.php:113
2003
  msgid ""
2004
  "This option defines the shortcode-id for the Event List on the linked page. "
2005
  "Normally the standard value 1 is correct, you only have to change it if you "
2006
  "use multiple event-list shortcodes on the linked page."
2007
  msgstr ""
2008
 
2009
- #: includes/widget_helptexts.php:122
2010
  msgid ""
2011
  "With this option you can add a link to the single event page for every "
2012
  "displayed event. You have to specify the url to the page and the shortcode "
2013
  "id option if you want to use it."
2014
  msgstr ""
2015
 
2016
- #: includes/widget_helptexts.php:131
2017
  msgid ""
2018
  "With this option you can add a link to the event-list page below the "
2019
  "diplayed events. You have to specify the url to page option if you want to "
2020
  "use it."
2021
  msgstr ""
2022
 
2023
- #: includes/widget_helptexts.php:138
2024
  msgid "Caption for the link"
2025
  msgstr ""
2026
 
2027
- #: includes/widget_helptexts.php:140
2028
  msgid ""
2029
  "This option defines the text for the link to the Event List page if the "
2030
  "approriate option is selected."
2031
  msgstr ""
2032
 
2033
- #: includes/widget.php:21
2034
  msgid "With this widget a list of upcoming events can be displayed."
2035
  msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
2036
 
2037
- #: includes/widget.php:26
2038
  msgid "Upcoming events"
2039
  msgstr "Tulevat tapahtumat"
2040
 
2041
- #: includes/widget.php:40
2042
  msgid "show events page"
2043
  msgstr "näytä tapahtuma sivu"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
14
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: fi_FI\n"
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
 
23
+ #: admin/admin.php:90
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:90
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
34
  msgid "Event List Settings"
35
  msgstr "Tapahtuma listan asetukset"
36
 
37
+ #: admin/admin.php:142
38
  msgid "Settings"
39
  msgstr "Asetukset"
40
 
41
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
42
  msgid "About Event List"
43
  msgstr "Lisätietoa Tapahtumalistasta"
44
 
45
+ #: admin/admin.php:146
46
  msgid "About"
47
  msgstr "Lisätietoa"
48
 
49
+ #: admin/admin.php:170
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
57
  msgid "General"
58
  msgstr "Yleinen"
59
 
60
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
61
+ #: admin/includes/admin-about.php:137
62
  msgid "Shortcode Attributes"
63
  msgstr ""
64
 
65
+ #: admin/includes/admin-about.php:102
66
  msgid "Help and Instructions"
67
  msgstr "Apu ja ohjeet"
68
 
69
+ #: admin/includes/admin-about.php:103
70
  #, php-format
71
  msgid "You can manage the events %1$shere%2$s"
72
  msgstr ""
73
 
74
+ #: admin/includes/admin-about.php:104
75
  msgid "To show the events on your site you have 2 possibilities"
76
  msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi."
77
 
78
+ #: admin/includes/admin-about.php:105
79
  #, php-format
80
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
81
  msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen."
82
 
83
+ #: admin/includes/admin-about.php:106
84
  #, php-format
85
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
86
  msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi."
87
 
88
+ #: admin/includes/admin-about.php:107
89
  msgid ""
90
  "The displayed events and their style can be modified with the available "
91
  "widget settings and the available attributes for the shortcode."
92
  msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa."
93
 
94
+ #: admin/includes/admin-about.php:108
95
  #, php-format
96
  msgid ""
97
  "A list of all available shortcode attributes with their descriptions is "
98
  "available in the %1$s tab."
99
  msgstr ""
100
 
101
+ #: admin/includes/admin-about.php:109
102
  msgid "The available widget options are described in their tooltip text."
103
  msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä."
104
 
105
+ #: admin/includes/admin-about.php:110
106
  #, php-format
107
  msgid ""
108
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
113
  msgid "Add links to the single events"
114
  msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
115
 
116
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
117
  msgid "Add a link to the Event List page"
118
  msgstr "Lisää linkki Tapahtumalistan sivulle"
119
 
120
+ #: admin/includes/admin-about.php:111
121
  msgid ""
122
  "This is required because the widget does not know in which page or post the "
123
  "shortcode was included."
124
  msgstr ""
125
 
126
+ #: admin/includes/admin-about.php:112
127
  msgid ""
128
  "Additionally you have to insert the correct Shortcode id on the linked page."
129
  " This id describes which shortcode should be used on the given page or post "
130
  "if you have more than one."
131
  msgstr ""
132
 
133
+ #: admin/includes/admin-about.php:113
134
  #, php-format
135
  msgid ""
136
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
138
  "link on your linked page or post."
139
  msgstr ""
140
 
141
+ #: admin/includes/admin-about.php:114
142
  #, php-format
143
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
144
  msgstr ""
145
 
146
+ #: admin/includes/admin-about.php:116
147
  #, php-format
148
  msgid ""
149
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
150
  "want."
151
  msgstr ""
152
 
153
+ #: admin/includes/admin-about.php:116
154
  msgid "Settings page"
155
  msgstr "Asetukset-sivu"
156
 
157
+ #: admin/includes/admin-about.php:123
158
  msgid "About the plugin author"
159
  msgstr ""
160
 
161
+ #: admin/includes/admin-about.php:125
162
  #, php-format
163
  msgid ""
164
  "This plugin is developed by %1$s, you can find more information about the "
165
  "plugin on the %2$s."
166
  msgstr ""
167
 
168
+ #: admin/includes/admin-about.php:125
169
  msgid "WordPress plugin site"
170
  msgstr ""
171
 
172
+ #: admin/includes/admin-about.php:126
173
  #, php-format
174
  msgid "If you like the plugin please rate it on the %1$s."
175
  msgstr ""
176
 
177
+ #: admin/includes/admin-about.php:126
178
  msgid "WordPress plugin review site"
179
  msgstr ""
180
 
181
+ #: admin/includes/admin-about.php:127
182
  msgid ""
183
  "If you want to support the plugin I would be happy to get a small donation"
184
  msgstr ""
185
 
186
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
187
+ #: admin/includes/admin-about.php:130
188
  #, php-format
189
  msgid "Donate with %1$s"
190
  msgstr ""
191
 
192
+ #: admin/includes/admin-about.php:139
193
  msgid ""
194
  "You have the possibility to modify the output if you add some of the "
195
  "following attributes to the shortcode."
196
  msgstr ""
197
 
198
+ #: admin/includes/admin-about.php:140
199
  #, php-format
200
  msgid ""
201
  "You can combine and add as much attributes as you want. E.g. the shortcode "
202
  "including the attributes %1$s and %2$s would looks like this:"
203
  msgstr ""
204
 
205
+ #: admin/includes/admin-about.php:142
206
  msgid ""
207
  "Below you can find a list of all supported attributes with their "
208
  "descriptions and available options:"
209
  msgstr ""
210
 
211
+ #: admin/includes/admin-about.php:157
212
  msgid "Attribute name"
213
  msgstr "Atribuutin nimi"
214
 
215
+ #: admin/includes/admin-about.php:158
216
  msgid "Value options"
217
  msgstr "Arvon vaihtoehdot"
218
 
219
+ #: admin/includes/admin-about.php:159
220
  msgid "Default value"
221
  msgstr "Oletus arvo"
222
 
223
+ #: admin/includes/admin-about.php:160
224
  msgid "Description"
225
  msgstr "Kuvaus"
226
 
227
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
228
+ #: includes/sc_event-list_helptexts.php:91
229
  msgid "Filter Syntax"
230
  msgstr ""
231
 
232
+ #: admin/includes/admin-about.php:180
233
  msgid ""
234
  "For date and cat filters you can specify complex filters with the following "
235
  "syntax:"
236
  msgstr ""
237
 
238
+ #: admin/includes/admin-about.php:181
239
  #, php-format
240
  msgid ""
241
  "You can use %1$s and %2$s connections to define complex filters. "
242
  "Additionally you can set brackets %3$s for nested queries."
243
  msgstr ""
244
 
245
+ #: admin/includes/admin-about.php:181
246
  msgid "AND"
247
  msgstr "JA"
248
 
249
+ #: admin/includes/admin-about.php:181
250
  msgid "OR"
251
  msgstr "TAI"
252
 
253
+ #: admin/includes/admin-about.php:181
254
  msgid "or"
255
  msgstr "tai"
256
 
257
+ #: admin/includes/admin-about.php:181
258
  msgid "and"
259
  msgstr "ja"
260
 
261
+ #: admin/includes/admin-about.php:182
262
  msgid "Examples for cat filters:"
263
  msgstr ""
264
 
265
+ #: admin/includes/admin-about.php:183
266
  #, php-format
267
  msgid "Show all events with category %1$s."
268
  msgstr ""
269
 
270
+ #: admin/includes/admin-about.php:184
271
  #, php-format
272
  msgid "Show all events with category %1$s or %2$s."
273
  msgstr ""
274
 
275
+ #: admin/includes/admin-about.php:185
276
  #, php-format
277
  msgid ""
278
  "Show all events with category %1$s and all events where category %2$s as "
279
  "well as %3$s is selected."
280
  msgstr ""
281
 
282
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
283
  msgid "Available Date Formats"
284
  msgstr "Käytettävissä olevat päivämäärän muotoilut"
285
 
286
+ #: admin/includes/admin-about.php:192
287
  msgid "For date filters you can use the following date formats:"
288
  msgstr ""
289
 
290
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
291
  msgid "Available Date Range Formats"
292
  msgstr ""
293
 
294
+ #: admin/includes/admin-about.php:202
295
  msgid "For date filters you can use the following daterange formats:"
296
  msgstr ""
297
 
298
+ #: admin/includes/admin-about.php:215
299
  msgid "Value"
300
  msgstr "Arvo"
301
 
302
+ #: admin/includes/admin-about.php:219
303
  msgid "Example"
304
  msgstr "Esimerkki"
305
 
306
+ #: admin/includes/admin-categories.php:79
307
  msgid "Synchronize with post categories"
308
  msgstr ""
309
 
310
+ #: admin/includes/admin-categories.php:90
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
  msgstr ""
314
 
315
+ #: admin/includes/admin-categories.php:91
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
  msgstr ""
319
 
320
+ #: admin/includes/admin-categories.php:92
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
  msgstr ""
324
 
325
+ #: admin/includes/admin-categories.php:95
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
  msgstr ""
329
 
330
+ #: admin/includes/admin-categories.php:96
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
  msgstr ""
334
 
335
+ #: admin/includes/admin-categories.php:97
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
  msgstr ""
339
 
340
+ #: admin/includes/admin-categories.php:100
341
  msgid "An Error occured during the category sync"
342
  msgstr ""
343
 
344
+ #: admin/includes/admin-categories.php:103
345
  msgid "Category sync finished"
346
  msgstr ""
347
 
348
+ #: admin/includes/admin-category-sync.php:77
349
  msgid "Error: You are not allowed to view this page!"
350
  msgstr ""
351
 
352
+ #: admin/includes/admin-category-sync.php:93
353
  msgid "Affected Categories when switching to seperate Event Categories"
354
  msgstr ""
355
 
356
+ #: admin/includes/admin-category-sync.php:94
357
  msgid "Switch option to seperate Event Categories"
358
  msgstr ""
359
 
360
+ #: admin/includes/admin-category-sync.php:95
361
  msgid ""
362
  "If you proceed, all post categories will be copied and all events will be "
363
  "re-assigned to this new categories."
364
  msgstr ""
365
 
366
+ #: admin/includes/admin-category-sync.php:96
367
  msgid ""
368
  "Afterwards the event categories are independent of the post categories."
369
  msgstr ""
370
 
371
+ #: admin/includes/admin-category-sync.php:98
372
  msgid "Affected Categories when switching to use Post Categories for events"
373
  msgstr ""
374
 
375
+ #: admin/includes/admin-category-sync.php:99
376
  msgid "Switch option to use Post Categories for events"
377
  msgstr ""
378
 
379
+ #: admin/includes/admin-category-sync.php:100
380
  msgid ""
381
  "Take a detailed look at the affected categories above before you proceed! "
382
  "All seperate event categories will be deleted, this cannot be undone!"
383
  msgstr ""
384
 
385
+ #: admin/includes/admin-category-sync.php:103
386
  msgid "Event Categories: Synchronise with Post Categories"
387
  msgstr ""
388
 
389
+ #: admin/includes/admin-category-sync.php:104
390
  msgid "Start synchronisation"
391
  msgstr ""
392
 
393
+ #: admin/includes/admin-category-sync.php:105
394
  msgid ""
395
  "If this option is enabled the above listed categories will be deleted and "
396
  "removed from the existing events!"
397
  msgstr ""
398
 
399
+ #: admin/includes/admin-category-sync.php:120
400
  msgid "Categories to modify"
401
  msgstr ""
402
 
403
+ #: admin/includes/admin-category-sync.php:121
404
  msgid "Categories to add"
405
  msgstr ""
406
 
407
+ #: admin/includes/admin-category-sync.php:122
408
  msgid "Categories to delete (optional)"
409
  msgstr ""
410
 
411
+ #: admin/includes/admin-category-sync.php:123
412
  msgid "Delete not available post categories"
413
  msgstr ""
414
 
415
+ #: admin/includes/admin-category-sync.php:126
416
  msgid "Categories with differences"
417
  msgstr ""
418
 
419
+ #: admin/includes/admin-category-sync.php:127
420
  msgid "Categories to add (optional)"
421
  msgstr ""
422
 
423
+ #: admin/includes/admin-category-sync.php:128
424
  msgid "Add not available post categories"
425
  msgstr ""
426
 
427
+ #: admin/includes/admin-category-sync.php:147
428
  msgid "none"
429
  msgstr ""
430
 
431
+ #: admin/includes/admin-import.php:91
432
  msgid "Import Events"
433
  msgstr "Tuo tapahtumia"
434
 
435
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
436
+ #: admin/includes/admin-import.php:254
437
  msgid "Step"
438
  msgstr "Vaihe"
439
 
440
+ #: admin/includes/admin-import.php:110
441
  msgid "Set import file and options"
442
  msgstr ""
443
 
444
+ #: admin/includes/admin-import.php:113
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
  msgstr ""
448
 
449
+ #: admin/includes/admin-import.php:116
450
  msgid "Example file"
451
  msgstr "Esimerkki tiedosto"
452
 
453
+ #: admin/includes/admin-import.php:117
454
  #, php-format
455
  msgid ""
456
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
457
  msgstr ""
458
 
459
+ #: admin/includes/admin-import.php:118
460
  msgid "Note"
461
  msgstr ""
462
 
463
+ #: admin/includes/admin-import.php:118
464
  msgid ""
465
  "Do not change the column header and separator line (first two lines), "
466
  "otherwise the import will fail!"
467
  msgstr ""
468
 
469
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
470
  msgid "Sorry, there has been an error."
471
  msgstr ""
472
 
473
+ #: admin/includes/admin-import.php:129
474
  msgid "The file does not exist, please try again."
475
  msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
476
 
477
+ #: admin/includes/admin-import.php:138
478
  msgid "The uploaded file does not have the required csv extension."
479
  msgstr ""
480
 
481
+ #: admin/includes/admin-import.php:150
482
  msgid "Events review and additonal category selection"
483
  msgstr ""
484
 
485
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
486
  msgid "Error"
487
  msgstr ""
488
 
489
+ #: admin/includes/admin-import.php:156
490
  msgid "This CSV file cannot be imported"
491
  msgstr ""
492
 
493
+ #: admin/includes/admin-import.php:167
494
  msgid "None of the events in this CSV file can be imported"
495
  msgstr ""
496
 
497
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
498
  msgid "Warning"
499
  msgstr ""
500
 
501
+ #: admin/includes/admin-import.php:172
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
505
  msgstr[0] ""
506
  msgstr[1] ""
507
 
508
+ #: admin/includes/admin-import.php:184
509
  #, php-format
510
  msgid "CSV line %1$s"
511
  msgstr ""
512
 
513
+ #: admin/includes/admin-import.php:194
514
  msgid "You can still import all other events listed below."
515
  msgstr ""
516
 
517
+ #: admin/includes/admin-import.php:213
518
  msgid ""
519
  "The following category slugs are not available and will be removed from the "
520
  "imported events"
521
  msgstr ""
522
 
523
+ #: admin/includes/admin-import.php:219
524
  msgid ""
525
  "If you want to keep these categories, please create these Categories first "
526
  "and do the import afterwards."
527
  msgstr ""
528
 
529
+ #: admin/includes/admin-import.php:254
530
  msgid "Import result"
531
  msgstr ""
532
 
533
+ #: admin/includes/admin-import.php:257
534
  #, php-format
535
  msgid "Import of %1$s events successful!"
536
  msgstr ""
537
 
538
+ #: admin/includes/admin-import.php:258
539
  msgid "Go back to All Events"
540
  msgstr ""
541
 
542
+ #: admin/includes/admin-import.php:261
543
  msgid "Errors during Import"
544
  msgstr ""
545
 
546
+ #: admin/includes/admin-import.php:269
547
  msgid "Event from CSV-line"
548
  msgstr ""
549
 
550
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
551
  #: includes/widget_helptexts.php:9
552
  msgid "Title"
553
  msgstr "Otsikko"
554
 
555
+ #: admin/includes/admin-import.php:282
556
  msgid "Start Date"
557
  msgstr "Alku päivämäärä"
558
 
559
+ #: admin/includes/admin-import.php:283
560
  msgid "End Date"
561
  msgstr "Loppu päivämäärä"
562
 
563
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
564
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
565
  msgid "Time"
566
  msgstr "Aika"
567
 
568
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
569
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
570
  #: includes/options_helptexts.php:76
571
  msgid "Location"
572
  msgstr "Sijainti"
573
 
574
+ #: admin/includes/admin-import.php:286
575
  msgid "Content"
576
  msgstr ""
577
 
578
+ #: admin/includes/admin-import.php:287
579
  msgid "Category slugs"
580
  msgstr ""
581
 
582
+ #: admin/includes/admin-import.php:333
583
  msgid "Header line is missing or not correct!"
584
  msgstr ""
585
 
586
+ #: admin/includes/admin-import.php:334
587
  #, php-format
588
  msgid ""
589
  "Have a look at the %1$sexample file%2$s to see the correct header line "
590
  "format."
591
  msgstr ""
592
 
593
+ #: admin/includes/admin-import.php:341
594
  #, php-format
595
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
596
  msgstr ""
597
 
598
+ #: admin/includes/admin-import.php:371
599
  msgid "Empty event title found"
600
  msgstr ""
601
 
602
+ #: admin/includes/admin-import.php:377
603
  msgid "Wrong date format for startdate"
604
  msgstr ""
605
 
606
+ #: admin/includes/admin-import.php:385
607
  msgid "Wrong date format for enddate"
608
  msgstr ""
609
 
610
+ #: admin/includes/admin-import.php:439
611
  msgid "Import events"
612
  msgstr "Tuo tapahtumia"
613
 
614
+ #: admin/includes/admin-import.php:440
615
  msgid "Add additional categories"
616
  msgstr "Lisää kategorioita"
617
 
618
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
619
  msgid "No events found"
620
  msgstr ""
621
 
622
+ #: admin/includes/admin-import.php:518
623
  msgid "Saving of event failed!"
624
  msgstr ""
625
 
626
+ #: admin/includes/admin-main.php:108
627
  msgid "Event Date"
628
  msgstr ""
629
 
630
+ #: admin/includes/admin-main.php:113
631
  msgid "Author"
632
  msgstr "Kirjoittaja"
633
 
634
+ #: admin/includes/admin-main.php:182
635
  #, php-format
636
  msgid "Add a copy of %1$s"
637
  msgstr ""
638
 
639
+ #: admin/includes/admin-main.php:182
640
  msgid "Copy"
641
  msgstr ""
642
 
643
+ #: admin/includes/admin-main.php:268
644
+ msgid "Import"
645
+ msgstr "Tuo"
646
+
647
+ #: admin/includes/admin-new.php:83
648
  msgid "Event data"
649
  msgstr ""
650
 
651
+ #: admin/includes/admin-new.php:116
652
  msgid "Add Copy"
653
  msgstr ""
654
 
655
+ #: admin/includes/admin-new.php:124
656
  msgid "Date"
657
  msgstr "Päiväys"
658
 
659
+ #: admin/includes/admin-new.php:124
660
  msgid "required"
661
  msgstr "tarpeellinen"
662
 
663
+ #: admin/includes/admin-new.php:127
664
  msgid "Multi-Day Event"
665
  msgstr "Monipäiväinen tapahtuma"
666
 
667
+ #: admin/includes/admin-new.php:147
668
  msgid "Event Title"
669
  msgstr ""
670
 
671
+ #: admin/includes/admin-new.php:164
672
  msgid "Event Content"
673
  msgstr ""
674
 
675
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
676
  msgid "Event updated."
677
  msgstr ""
678
 
679
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
680
  msgid "View event"
681
  msgstr ""
682
 
683
+ #: admin/includes/admin-new.php:246
684
  #, php-format
685
  msgid "Event restored to revision from %1$s"
686
  msgstr ""
687
 
688
+ #: admin/includes/admin-new.php:247
689
  msgid "Event published."
690
  msgstr ""
691
 
692
+ #: admin/includes/admin-new.php:248
693
+ msgid "Event saved."
694
+ msgstr ""
695
+
696
+ #: admin/includes/admin-new.php:249
697
  msgid "Event submitted."
698
  msgstr ""
699
 
700
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
701
+ #: admin/includes/admin-new.php:253
702
  msgid "Preview event"
703
  msgstr ""
704
 
705
+ #: admin/includes/admin-new.php:251
706
  #, php-format
707
  msgid "Event scheduled for: %1$s>"
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-new.php:253
711
  msgid "Event draft updated."
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:97
715
  msgid "Go to Event Category switching page"
716
  msgstr ""
717
 
718
+ #: admin/includes/admin-settings.php:111
719
  msgid "Frontend Settings"
720
  msgstr ""
721
 
722
+ #: admin/includes/admin-settings.php:112
723
  msgid "Admin Page Settings"
724
  msgstr "Hallinnointisivun asetukset"
725
 
726
+ #: admin/includes/admin-settings.php:113
727
  msgid "Feed Settings"
728
  msgstr "Syöte asetukset"
729
 
730
+ #: admin/includes/admin-settings.php:114
731
  msgid "Category Taxonomy"
732
  msgstr ""
733
 
735
  msgid "Year"
736
  msgstr "Vuosi"
737
 
738
+ #: includes/daterange_helptexts.php:10
739
  msgid "A year can be specified in 4 digit format."
740
  msgstr "Vuosi määritellään 4-merkkisessä formaatissa."
741
 
742
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
743
+ #: includes/daterange_helptexts.php:95
744
  #, php-format
745
  msgid ""
746
  "For a start date filter the first day of %1$s is used, in an end date the "
747
  "last day."
748
  msgstr ""
749
 
750
+ #: includes/daterange_helptexts.php:13
751
  msgid "the resulting year"
752
  msgstr ""
753
 
754
+ #: includes/daterange_helptexts.php:19
755
  msgid "Month"
756
  msgstr "Kuukausi"
757
 
758
+ #: includes/daterange_helptexts.php:21
759
  msgid ""
760
  "A month can be specified with 4 digits for the year and 2 digits for the "
761
  "month, seperated by a hyphen (-)."
762
  msgstr ""
763
 
764
+ #: includes/daterange_helptexts.php:24
765
  msgid "the resulting month"
766
  msgstr ""
767
 
768
+ #: includes/daterange_helptexts.php:30
769
  msgid "Day"
770
  msgstr "Päivä"
771
 
772
+ #: includes/daterange_helptexts.php:31
773
  msgid ""
774
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
775
  " month and 2 digets for the day, seperated by hyphens (-)."
776
  msgstr ""
777
 
778
+ #: includes/daterange_helptexts.php:36
779
  msgid "Relative Year"
780
  msgstr ""
781
 
782
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
783
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
784
  #, php-format
785
  msgid "%1$s from now can be specified in the following notation: %2$s"
786
  msgstr ""
787
 
788
+ #: includes/daterange_helptexts.php:40
789
  msgid "A relative year"
790
  msgstr ""
791
 
792
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
793
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
794
  #, php-format
795
  msgid ""
796
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
797
  "%3$s or %4$s attached (see also the example below)."
798
  msgstr ""
799
 
800
+ #: includes/daterange_helptexts.php:46
801
  msgid "number of years"
802
  msgstr ""
803
 
804
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
805
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
806
  #, php-format
807
  msgid "Additionally the following values are available: %1$s"
808
  msgstr ""
809
 
810
+ #: includes/daterange_helptexts.php:58
811
  msgid "Relative Month"
812
  msgstr ""
813
 
814
+ #: includes/daterange_helptexts.php:62
815
  msgid "A relative month"
816
  msgstr ""
817
 
818
+ #: includes/daterange_helptexts.php:68
819
  msgid "number of months"
820
  msgstr ""
821
 
822
+ #: includes/daterange_helptexts.php:80
823
  msgid "Relative Week"
824
  msgstr ""
825
 
826
+ #: includes/daterange_helptexts.php:84
827
  msgid "A relative week"
828
  msgstr ""
829
 
830
+ #: includes/daterange_helptexts.php:90
831
  msgid "number of weeks"
832
  msgstr ""
833
 
834
+ #: includes/daterange_helptexts.php:96
835
  msgid "the resulting week"
836
  msgstr ""
837
 
838
+ #: includes/daterange_helptexts.php:99
839
  #, php-format
840
  msgid ""
841
  "The first day of the week is depending on the option %1$s which can be found"
842
  " and changed in %2$s."
843
  msgstr ""
844
 
845
+ #: includes/daterange_helptexts.php:110
846
  msgid "Relative Day"
847
  msgstr ""
848
 
849
+ #: includes/daterange_helptexts.php:114
850
  msgid "A relative day"
851
  msgstr ""
852
 
853
+ #: includes/daterange_helptexts.php:120
854
  msgid "number of days"
855
  msgstr "päivien lukumäärä"
856
 
857
+ #: includes/daterange_helptexts.php:134
858
  msgid "Date range"
859
  msgstr ""
860
 
861
+ #: includes/daterange_helptexts.php:136
862
  msgid ""
863
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
864
+ "\t\t\tFor the start and end date any available date format can be used."
865
  msgstr ""
866
 
867
+ #: includes/daterange_helptexts.php:147
868
  msgid "This value defines a range without any limits."
869
  msgstr ""
870
 
871
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
872
+ #: includes/daterange_helptexts.php:171
873
  #, php-format
874
  msgid "The corresponding date_range format is: %1$s"
875
  msgstr ""
876
 
877
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
878
  msgid "Upcoming"
879
  msgstr "Tulevat"
880
 
881
+ #: includes/daterange_helptexts.php:158
882
  msgid "This value defines a range from the actual day to the future."
883
  msgstr ""
884
 
885
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
886
  msgid "Past"
887
  msgstr "Menneet"
888
 
889
+ #: includes/daterange_helptexts.php:169
890
  msgid "This value defines a range from the past to the previous day."
891
  msgstr ""
892
 
893
+ #: includes/event.php:157
894
  msgid "No valid start date provided"
895
  msgstr ""
896
 
897
+ #: includes/event.php:343 includes/event.php:345
898
+ #: includes/sc_event-list.php:330
899
  msgid "read more"
900
  msgstr ""
901
 
902
+ #: includes/events_post_type.php:83
903
  msgid "Events"
904
  msgstr "Tapahtumat"
905
 
906
+ #: includes/events_post_type.php:84
907
  msgid "Event"
908
  msgstr ""
909
 
910
+ #: includes/events_post_type.php:85
911
  msgid "Add New"
912
  msgstr "Lisää uusi"
913
 
914
+ #: includes/events_post_type.php:86
915
  msgid "Add New Event"
916
  msgstr "Lisää uusi tapahtuma"
917
 
918
+ #: includes/events_post_type.php:87
919
  msgid "Edit Event"
920
  msgstr "Muokkaa tapahtumaa"
921
 
922
+ #: includes/events_post_type.php:88
923
  msgid "New Event"
924
  msgstr ""
925
 
926
+ #: includes/events_post_type.php:89
927
  msgid "View Event"
928
  msgstr ""
929
 
930
+ #: includes/events_post_type.php:90
931
  msgid "View Events"
932
  msgstr ""
933
 
934
+ #: includes/events_post_type.php:91
935
  msgid "Search Events"
936
  msgstr ""
937
 
938
+ #: includes/events_post_type.php:93
939
  msgid "No events found in Trash"
940
  msgstr ""
941
 
942
+ #: includes/events_post_type.php:95
943
  msgid "All Events"
944
  msgstr "Kaikki tapahtumat"
945
 
946
+ #: includes/events_post_type.php:96
947
  msgid "Event Archives"
948
  msgstr ""
949
 
950
+ #: includes/events_post_type.php:97
951
  msgid "Event Attributes"
952
  msgstr ""
953
 
954
+ #: includes/events_post_type.php:98
955
  msgid "Insert into event"
956
  msgstr ""
957
 
958
+ #: includes/events_post_type.php:99
959
  msgid "Uploaded to this event"
960
  msgstr ""
961
 
962
+ #: includes/events_post_type.php:100
963
  msgid "Event List"
964
  msgstr "Tapahtuma lista"
965
 
966
+ #: includes/events_post_type.php:101
967
  msgid "Filter events list"
968
  msgstr ""
969
 
970
+ #: includes/events_post_type.php:102
971
  msgid "Events list navigation"
972
  msgstr ""
973
 
974
+ #: includes/events_post_type.php:103
975
  msgid "Events list"
976
  msgstr ""
977
 
978
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
979
  msgid "Reset"
980
  msgstr ""
981
 
982
+ #: includes/filterbar.php:329
983
  msgid "All"
984
  msgstr "Kaikki"
985
 
986
+ #: includes/filterbar.php:332
987
  msgid "All Dates"
988
  msgstr ""
989
 
1423
  " switching page from here."
1424
  msgstr ""
1425
 
1426
+ #: includes/options.php:92
1427
  msgid "events"
1428
  msgstr ""
1429
 
1430
+ #: includes/options.php:96
1431
  msgid "Show content"
1432
  msgstr ""
1433
 
1434
+ #: includes/options.php:100
1435
  msgid "Hide content"
1436
  msgstr ""
1437
 
1438
+ #: includes/sc_event-list_helptexts.php:20
1439
  msgid "event-id"
1440
  msgstr ""
1441
 
1442
+ #: includes/sc_event-list_helptexts.php:23
1443
  #, php-format
1444
  msgid ""
1445
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1447
  "this event is shown."
1448
  msgstr ""
1449
 
1450
+ #: includes/sc_event-list_helptexts.php:29
1451
+ #: includes/sc_event-list_helptexts.php:57
1452
  msgid "year"
1453
  msgstr "vuosi"
1454
 
1455
+ #: includes/sc_event-list_helptexts.php:31
1456
  msgid ""
1457
  "This attribute defines which events are initially shown. The default is to "
1458
  "show the upcoming events only."
1459
  msgstr ""
1460
 
1461
+ #: includes/sc_event-list_helptexts.php:33
1462
  #, php-format
1463
  msgid ""
1464
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1465
  "change the displayed event date range via the filterbar or url parameters."
1466
  msgstr ""
1467
 
1468
+ #: includes/sc_event-list_helptexts.php:39
1469
  msgid "category slug"
1470
  msgstr ""
1471
 
1472
+ #: includes/sc_event-list_helptexts.php:41
1473
  msgid ""
1474
  "This attribute defines the category of which events are initially shown. The"
1475
  " default is to show events of all categories."
1476
  msgstr ""
1477
 
1478
+ #: includes/sc_event-list_helptexts.php:42
1479
  msgid ""
1480
  "Provide a category slug to change this behavior. It is still possible to "
1481
  "change the displayed categories via the filterbar or url parameters."
1482
  msgstr ""
1483
 
1484
+ #: includes/sc_event-list_helptexts.php:48
1485
  msgid "This attribute defines the initial order of the events."
1486
  msgstr ""
1487
 
1488
+ #: includes/sc_event-list_helptexts.php:50
1489
+ #, php-format
1490
  msgid ""
1491
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1492
  "in the opposite direction (from new to old)."
1493
  msgstr ""
1494
 
1495
+ #: includes/sc_event-list_helptexts.php:60
1496
  #, php-format
1497
  msgid ""
1498
  "This attribute defines the dates and date ranges of which events are "
1499
  "displayed. The default is %1$s to show all events."
1500
  msgstr ""
1501
 
1502
+ #: includes/sc_event-list_helptexts.php:64
1503
  #, php-format
1504
  msgid ""
1505
  "Filtered events according to %1$s value are not available in the event list."
1506
  msgstr ""
1507
 
1508
+ #: includes/sc_event-list_helptexts.php:68
1509
  #, php-format
1510
  msgid ""
1511
  "You can find all available values with a description and examples in the "
1512
  "sections %1$s and %2$s below."
1513
  msgstr ""
1514
 
1515
+ #: includes/sc_event-list_helptexts.php:73
1516
  #, php-format
1517
  msgid "See %1$s description if you want to define complex filters."
1518
  msgstr ""
1519
 
1520
+ #: includes/sc_event-list_helptexts.php:79
1521
  msgid "category slugs"
1522
  msgstr ""
1523
 
1524
+ #: includes/sc_event-list_helptexts.php:82
1525
  msgid ""
1526
  "This attribute defines the category filter which filters the events to show."
1527
  " The default is $1$s or an empty string to show all events."
1528
  msgstr ""
1529
 
1530
+ #: includes/sc_event-list_helptexts.php:86
1531
  #, php-format
1532
  msgid ""
1533
  "Events with categories that doesn´t match %1$s are not shown in the event "
1534
  "list. They are also not available if a manual url parameter is added."
1535
  msgstr ""
1536
 
1537
+ #: includes/sc_event-list_helptexts.php:90
1538
  #, php-format
1539
  msgid ""
1540
  "The filter is specified via the given category slugs. See %1$s description "
1541
  "if you want to define complex filters."
1542
  msgstr ""
1543
 
1544
+ #: includes/sc_event-list_helptexts.php:96
1545
+ #: includes/sc_event-list_helptexts.php:242
1546
+ #: includes/sc_event-list_helptexts.php:276
1547
+ #: includes/sc_event-list_helptexts.php:318
1548
  msgid "number"
1549
  msgstr "numero"
1550
 
1551
+ #: includes/sc_event-list_helptexts.php:99
1552
  #, php-format
1553
  msgid ""
1554
  "This attribute defines how many events should be displayed if upcoming "
1556
  "displayed."
1557
  msgstr ""
1558
 
1559
+ #: includes/sc_event-list_helptexts.php:102
1560
  msgid ""
1561
  "Please not that in the actual version there is no pagination of the events "
1562
  "available, so the event list can be very long."
1563
  msgstr ""
1564
 
1565
+ #: includes/sc_event-list_helptexts.php:108
1566
  msgid ""
1567
  "This attribute defines if the filterbar should be displayed. The filterbar "
1568
  "allows the users to specify filters for the listed events."
1569
  msgstr ""
1570
 
1571
+ #: includes/sc_event-list_helptexts.php:110
1572
  #, php-format
1573
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1574
  msgstr ""
1575
 
1576
+ #: includes/sc_event-list_helptexts.php:115
1577
  #, php-format
1578
  msgid ""
1579
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1580
  " in the single event view."
1581
  msgstr ""
1582
 
1583
+ #: includes/sc_event-list_helptexts.php:125
1584
  #, php-format
1585
  msgid ""
1586
  "This attribute specifies the available items in the filterbar. This options "
1587
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1588
  msgstr ""
1589
 
1590
+ #: includes/sc_event-list_helptexts.php:128
1591
  msgid ""
1592
  "Find below an overview of the available filterbar items and their options:"
1593
  msgstr ""
1594
 
1595
+ #: includes/sc_event-list_helptexts.php:132
1596
  msgid "filterbar item"
1597
  msgstr ""
1598
 
1599
+ #: includes/sc_event-list_helptexts.php:133
1600
+ #: includes/sc_event-list_helptexts.php:206
1601
  msgid "description"
1602
  msgstr ""
1603
 
1604
+ #: includes/sc_event-list_helptexts.php:134
1605
  msgid "item options"
1606
  msgstr ""
1607
 
1608
+ #: includes/sc_event-list_helptexts.php:135
1609
  msgid "option values"
1610
  msgstr ""
1611
 
1612
+ #: includes/sc_event-list_helptexts.php:136
1613
  msgid "default value"
1614
  msgstr ""
1615
 
1616
+ #: includes/sc_event-list_helptexts.php:137
1617
  msgid "option description"
1618
  msgstr ""
1619
 
1620
+ #: includes/sc_event-list_helptexts.php:141
1621
  msgid ""
1622
  "Show a list of all available years. Additional there are some special "
1623
  "entries available (see item options)."
1624
  msgstr ""
1625
 
1626
+ #: includes/sc_event-list_helptexts.php:145
1627
+ #: includes/sc_event-list_helptexts.php:156
1628
  msgid "Add an entry to show all events."
1629
  msgstr ""
1630
 
1631
+ #: includes/sc_event-list_helptexts.php:147
1632
+ #: includes/sc_event-list_helptexts.php:158
1633
  msgid "Add an entry to show all upcoming events."
1634
  msgstr ""
1635
 
1636
+ #: includes/sc_event-list_helptexts.php:148
1637
+ #: includes/sc_event-list_helptexts.php:159
1638
  msgid "Add an entry to show events in the past."
1639
  msgstr ""
1640
 
1641
+ #: includes/sc_event-list_helptexts.php:149
1642
  msgid "Set descending or ascending order of year entries."
1643
  msgstr ""
1644
 
1645
+ #: includes/sc_event-list_helptexts.php:152
1646
  msgid "Show a list of all available months."
1647
  msgstr ""
1648
 
1649
+ #: includes/sc_event-list_helptexts.php:160
1650
  msgid "Set descending or ascending order of month entries."
1651
  msgstr ""
1652
 
1653
+ #: includes/sc_event-list_helptexts.php:163
1654
  msgid "php date-formats"
1655
  msgstr ""
1656
 
1657
+ #: includes/sc_event-list_helptexts.php:165
1658
  msgid "Set the displayed date format of the month entries."
1659
  msgstr ""
1660
 
1661
+ #: includes/sc_event-list_helptexts.php:170
1662
  #, php-format
1663
  msgid ""
1664
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1666
  "order."
1667
  msgstr ""
1668
 
1669
+ #: includes/sc_event-list_helptexts.php:179
1670
  #, php-format
1671
  msgid ""
1672
  "Specifies the displayed values and their order. The items must be seperated "
1673
  "by %1$s."
1674
  msgstr ""
1675
 
1676
+ #: includes/sc_event-list_helptexts.php:185
1677
  msgid "Show a list of all available categories."
1678
  msgstr ""
1679
 
1680
+ #: includes/sc_event-list_helptexts.php:189
1681
  msgid "Add an entry to show events from all categories."
1682
  msgstr ""
1683
 
1684
+ #: includes/sc_event-list_helptexts.php:193
1685
  msgid "A link to reset the eventlist filter to standard."
1686
  msgstr ""
1687
 
1688
+ #: includes/sc_event-list_helptexts.php:195
1689
  msgid "any text"
1690
  msgstr ""
1691
 
1692
+ #: includes/sc_event-list_helptexts.php:197
1693
  msgid "Set the caption of the link."
1694
  msgstr ""
1695
 
1696
+ #: includes/sc_event-list_helptexts.php:201
1697
  msgid "Find below an overview of the available filterbar display options:"
1698
  msgstr ""
1699
 
1700
+ #: includes/sc_event-list_helptexts.php:205
1701
  msgid "display option"
1702
  msgstr ""
1703
 
1704
+ #: includes/sc_event-list_helptexts.php:207
1705
  msgid "available for"
1706
  msgstr ""
1707
 
1708
+ #: includes/sc_event-list_helptexts.php:211
1709
  #, php-format
1710
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1711
  msgstr ""
1712
 
1713
+ #: includes/sc_event-list_helptexts.php:216
1714
  msgid ""
1715
  "Shows a select box where an item can be choosen. After the selection of an "
1716
  "item the page is reloaded via javascript to show the filtered events."
1717
  msgstr ""
1718
 
1719
+ #: includes/sc_event-list_helptexts.php:219
1720
  msgid "Shows a simple link which can be clicked."
1721
  msgstr ""
1722
 
1723
+ #: includes/sc_event-list_helptexts.php:222
1724
  msgid "Find below some declaration examples with descriptions:"
1725
  msgstr ""
1726
 
1727
+ #: includes/sc_event-list_helptexts.php:225
1728
  #, php-format
1729
  msgid ""
1730
  "In this example you can see that the filterbar item and the used display "
1732
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1733
  msgstr ""
1734
 
1735
+ #: includes/sc_event-list_helptexts.php:231
1736
  #, php-format
1737
  msgid ""
1738
  "In this example you can see that filterbar options can be added in brackets "
1739
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1740
  msgstr ""
1741
 
1742
+ #: includes/sc_event-list_helptexts.php:232
1743
  msgid "option_name"
1744
  msgstr ""
1745
 
1746
+ #: includes/sc_event-list_helptexts.php:232
1747
  msgid "value"
1748
  msgstr ""
1749
 
1750
+ #: includes/sc_event-list_helptexts.php:236
1751
  #, php-format
1752
  msgid ""
1753
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1756
  "left-aligned and the reset link will be on the right side."
1757
  msgstr ""
1758
 
1759
+ #: includes/sc_event-list_helptexts.php:244
1760
+ #: includes/sc_event-list_helptexts.php:277
1761
  msgid ""
1762
  "This attribute specifies if the title should be truncated to the given "
1763
  "number of characters in the event list."
1764
  msgstr ""
1765
 
1766
+ #: includes/sc_event-list_helptexts.php:246
1767
+ #: includes/sc_event-list_helptexts.php:278
1768
  #, php-format
1769
  msgid ""
1770
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1771
  "is automatically truncated via css."
1772
  msgstr ""
1773
 
1774
+ #: includes/sc_event-list_helptexts.php:250
1775
+ #: includes/sc_event-list_helptexts.php:279
1776
+ #: includes/sc_event-list_helptexts.php:322
1777
  msgid "This attribute has no influence if only a single event is shown."
1778
  msgstr ""
1779
 
1780
+ #: includes/sc_event-list_helptexts.php:257
1781
  msgid ""
1782
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1783
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1784
+ "\t\t\t\t\tWith \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1785
  msgstr ""
1786
 
1787
+ #: includes/sc_event-list_helptexts.php:268
1788
  msgid ""
1789
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1790
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1791
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1795
  msgid ""
1796
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1797
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1798
+ "\t\t\t\t\tWith \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1799
  msgstr ""
1800
 
1801
+ #: includes/sc_event-list_helptexts.php:297
1802
  msgid ""
1803
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1804
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1805
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1806
  msgstr ""
1807
 
1808
+ #: includes/sc_event-list_helptexts.php:308
1809
  msgid ""
1810
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1811
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1812
+ "\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"
1813
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1814
+ "\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)."
1815
  msgstr ""
1816
 
1817
+ #: includes/sc_event-list_helptexts.php:320
1818
  msgid ""
1819
  "This attribute specifies if the content should be truncate to the given "
1820
  "number of characters in the event list."
1821
  msgstr ""
1822
 
1823
+ #: includes/sc_event-list_helptexts.php:321
1824
  #, php-format
1825
  msgid "With the standard value %1$s the full text is displayed."
1826
  msgstr ""
1827
 
1828
+ #: includes/sc_event-list_helptexts.php:329
1829
  msgid ""
1830
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1831
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1832
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1833
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1834
  msgstr ""
1835
 
1836
+ #: includes/sc_event-list_helptexts.php:341
1837
  msgid ""
1838
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1839
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1840
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1841
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1842
  msgstr ""
1843
 
1844
+ #: includes/sc_event-list_helptexts.php:353
1845
  msgid ""
1846
  "This attribute specifies if a rss feed link should be added.<br />\n"
1847
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1848
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1849
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1850
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1851
  msgstr ""
1852
 
1853
+ #: includes/sc_event-list_helptexts.php:366
1854
  msgid ""
1855
  "This attribute specifies if a ical feed link should be added.<br />\n"
1856
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1857
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1858
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1859
  msgstr ""
1860
 
1861
+ #: includes/sc_event-list_helptexts.php:378
1862
  msgid ""
1863
  "This attribute specifies the page or post url for event links.<br />\n"
1864
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1865
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1866
  msgstr ""
1867
 
1868
+ #: includes/sc_event-list_helptexts.php:391
1869
  msgid ""
1870
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1871
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1872
  msgstr ""
1873
 
1874
+ #: includes/sc_event-list.php:184
1875
  msgid "Sorry, the requested event is not available!"
1876
  msgstr ""
1877
 
1878
+ #: includes/sc_event-list.php:193
1879
  msgid "Event Information:"
1880
  msgstr "Tapahtuman tiedot:"
1881
 
1882
+ #: includes/sc_event-list.php:437
1883
  msgid "Link to RSS feed"
1884
  msgstr ""
1885
 
1886
+ #: includes/sc_event-list.php:447
1887
  msgid "Link to iCal feed"
1888
  msgstr ""
1889
 
1916
  msgid "Truncate event title to"
1917
  msgstr "Tapahtuma otsikon lyhenne"
1918
 
1919
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1920
+ #: includes/widget_helptexts.php:103
1921
  msgid "characters"
1922
  msgstr "merkkejä"
1923
 
1924
+ #: includes/widget_helptexts.php:39
1925
  msgid ""
1926
  "This option defines the number of displayed characters for the event title."
1927
  msgstr ""
1928
 
1929
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1930
  #, php-format
1931
  msgid ""
1932
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1933
  "automatically truncate the text via css."
1934
  msgstr ""
1935
 
1936
+ #: includes/widget_helptexts.php:51
1937
  msgid "Show event starttime"
1938
  msgstr "Näytä tapahtuman alkamisajankohta"
1939
 
1940
+ #: includes/widget_helptexts.php:53
1941
  msgid "This option defines if the event start time will be displayed."
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:60
1945
  msgid "Show event location"
1946
  msgstr "Näytä tapahtuman paikka"
1947
 
1948
+ #: includes/widget_helptexts.php:62
1949
  msgid "This option defines if the event location will be displayed."
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:69
1953
  msgid "Truncate location to"
1954
  msgstr "Sijainnin lyhenne"
1955
 
1956
+ #: includes/widget_helptexts.php:72
1957
  msgid ""
1958
  "If the event location is diplayed this option defines the number of "
1959
  "displayed characters."
1960
  msgstr ""
1961
 
1962
+ #: includes/widget_helptexts.php:84
1963
  msgid "Show event excerpt"
1964
  msgstr ""
1965
 
1966
+ #: includes/widget_helptexts.php:86
1967
  msgid "This option defines if the event excerpt will be displayed."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:93
1971
  msgid "Show event content"
1972
  msgstr ""
1973
 
1974
+ #: includes/widget_helptexts.php:95
1975
  msgid "This option defines if the event content will be displayed."
1976
  msgstr ""
1977
 
1978
+ #: includes/widget_helptexts.php:102
1979
  msgid "Truncate content to"
1980
  msgstr ""
1981
 
1982
+ #: includes/widget_helptexts.php:105
1983
  msgid ""
1984
  "If the event content are diplayed this option defines the number of diplayed"
1985
  " characters."
1986
  msgstr ""
1987
 
1988
+ #: includes/widget_helptexts.php:107
1989
  #, php-format
1990
  msgid "Set this value to %1$s to view the full text."
1991
  msgstr ""
1992
 
1993
+ #: includes/widget_helptexts.php:116
1994
  msgid "URL to the linked Event List page"
1995
  msgstr ""
1996
 
1997
+ #: includes/widget_helptexts.php:118
1998
  msgid ""
1999
  "This option defines the url to the linked Event List page. This option is "
2000
  "required if you want to use one of the options below."
2001
  msgstr ""
2002
 
2003
+ #: includes/widget_helptexts.php:125
2004
  msgid "Shortcode ID on linked page"
2005
  msgstr ""
2006
 
2007
+ #: includes/widget_helptexts.php:127
2008
  msgid ""
2009
  "This option defines the shortcode-id for the Event List on the linked page. "
2010
  "Normally the standard value 1 is correct, you only have to change it if you "
2011
  "use multiple event-list shortcodes on the linked page."
2012
  msgstr ""
2013
 
2014
+ #: includes/widget_helptexts.php:136
2015
  msgid ""
2016
  "With this option you can add a link to the single event page for every "
2017
  "displayed event. You have to specify the url to the page and the shortcode "
2018
  "id option if you want to use it."
2019
  msgstr ""
2020
 
2021
+ #: includes/widget_helptexts.php:145
2022
  msgid ""
2023
  "With this option you can add a link to the event-list page below the "
2024
  "diplayed events. You have to specify the url to page option if you want to "
2025
  "use it."
2026
  msgstr ""
2027
 
2028
+ #: includes/widget_helptexts.php:152
2029
  msgid "Caption for the link"
2030
  msgstr ""
2031
 
2032
+ #: includes/widget_helptexts.php:154
2033
  msgid ""
2034
  "This option defines the text for the link to the Event List page if the "
2035
  "approriate option is selected."
2036
  msgstr ""
2037
 
2038
+ #: includes/widget.php:38
2039
  msgid "With this widget a list of upcoming events can be displayed."
2040
  msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
2041
 
2042
+ #: includes/widget.php:43
2043
  msgid "Upcoming events"
2044
  msgstr "Tulevat tapahtumat"
2045
 
2046
+ #: includes/widget.php:57
2047
  msgid "show events page"
2048
  msgstr "näytä tapahtuma sivu"
languages/event-list-fr_FR.mo CHANGED
Binary file
languages/event-list-fr_FR.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
15
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
18
  "MIME-Version: 1.0\n"
@@ -21,117 +21,117 @@ msgstr ""
21
  "Language: fr_FR\n"
22
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
23
 
24
- #: admin/admin.php:64
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr "Erreurs lors de la mise à niveau de l'extension %1$s"
28
 
29
- #: admin/admin.php:64
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr "Mise à niveau de l'extension %1$s terminée"
33
 
34
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
35
  msgid "Event List Settings"
36
  msgstr "Préférences"
37
 
38
- #: admin/admin.php:116
39
  msgid "Settings"
40
  msgstr "Préférences"
41
 
42
- #: admin/admin.php:120 admin/includes/admin-about.php:43
43
  msgid "About Event List"
44
  msgstr "A propos de la liste d'évènement"
45
 
46
- #: admin/admin.php:120
47
  msgid "About"
48
  msgstr "A propos"
49
 
50
- #: admin/admin.php:144
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
54
  msgstr[0] "%s évènement"
55
  msgstr[1] "%s évènements"
56
 
57
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
58
  msgid "General"
59
  msgstr "Général"
60
 
61
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
62
- #: admin/includes/admin-about.php:117
63
  msgid "Shortcode Attributes"
64
  msgstr "Attributs du shortcode"
65
 
66
- #: admin/includes/admin-about.php:82
67
  msgid "Help and Instructions"
68
  msgstr "Aide et instructions"
69
 
70
- #: admin/includes/admin-about.php:83
71
  #, php-format
72
  msgid "You can manage the events %1$shere%2$s"
73
  msgstr "Vous pouvez gérer l'événement %1$sici%2$s"
74
 
75
- #: admin/includes/admin-about.php:84
76
  msgid "To show the events on your site you have 2 possibilities"
77
  msgstr "Pour voir les évènements sur votre site, vous avez 2 possibilités."
78
 
79
- #: admin/includes/admin-about.php:85
80
  #, php-format
81
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
82
  msgstr "Vous pouvez placer le <strong>shortcode</strong> %1$s sur n'importe quel page ou article."
83
 
84
- #: admin/includes/admin-about.php:86
85
  #, php-format
86
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
87
  msgstr "Vous pouvez ajouter le <strong>widget</strong> %1$s dans votre barre latérale."
88
 
89
- #: admin/includes/admin-about.php:87
90
  msgid ""
91
  "The displayed events and their style can be modified with the available "
92
  "widget settings and the available attributes for the shortcode."
93
  msgstr "L'évènement affiché et son style peut être modifié avec les paramètres du widget et attributs disponible pour le shortcode."
94
 
95
- #: admin/includes/admin-about.php:88
96
  #, php-format
97
  msgid ""
98
  "A list of all available shortcode attributes with their descriptions is "
99
  "available in the %1$s tab."
100
  msgstr "Une liste de tous les attributs de shortcode avec leurs description est disponible dans l'onglet%1$s"
101
 
102
- #: admin/includes/admin-about.php:89
103
  msgid "The available widget options are described in their tooltip text."
104
  msgstr "Les options disponibles du widget sont disponible dans leurs infobulles"
105
 
106
- #: admin/includes/admin-about.php:90
107
  #, php-format
108
  msgid ""
109
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
110
  " to insert an URL to the linked event-list page."
111
  msgstr "Si vous activer une des options sur les liens (%1$s ou %2$s) dans le widget, vous devez configurer l'URL vers la liste des événements"
112
 
113
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
114
  msgid "Add links to the single events"
115
  msgstr "Ajoute un lien vers le détail de l'évènement."
116
 
117
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
118
  msgid "Add a link to the Event List page"
119
  msgstr "Ajoute un liens vers la page des évènements."
120
 
121
- #: admin/includes/admin-about.php:91
122
  msgid ""
123
  "This is required because the widget does not know in which page or post the "
124
  "shortcode was included."
125
  msgstr ""
126
 
127
- #: admin/includes/admin-about.php:92
128
  msgid ""
129
  "Additionally you have to insert the correct Shortcode id on the linked page."
130
  " This id describes which shortcode should be used on the given page or post "
131
  "if you have more than one."
132
  msgstr ""
133
 
134
- #: admin/includes/admin-about.php:93
135
  #, php-format
136
  msgid ""
137
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -139,592 +139,596 @@ msgid ""
139
  "link on your linked page or post."
140
  msgstr ""
141
 
142
- #: admin/includes/admin-about.php:94
143
  #, php-format
144
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
145
  msgstr "L' id est disponible à la fin des paramètres de l'URL (ex %1$s)."
146
 
147
- #: admin/includes/admin-about.php:96
148
  #, php-format
149
  msgid ""
150
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
151
  "want."
152
  msgstr ""
153
 
154
- #: admin/includes/admin-about.php:96
155
  msgid "Settings page"
156
  msgstr "Page des paramètres"
157
 
158
- #: admin/includes/admin-about.php:103
159
  msgid "About the plugin author"
160
  msgstr "Au sujet de l'auteur du plugin"
161
 
162
- #: admin/includes/admin-about.php:105
163
  #, php-format
164
  msgid ""
165
  "This plugin is developed by %1$s, you can find more information about the "
166
  "plugin on the %2$s."
167
  msgstr "Ce plugin est développé par %1$s, plus d'informations au sujet du plugin sur %2$s "
168
 
169
- #: admin/includes/admin-about.php:105
170
  msgid "WordPress plugin site"
171
  msgstr ""
172
 
173
- #: admin/includes/admin-about.php:106
174
  #, php-format
175
  msgid "If you like the plugin please rate it on the %1$s."
176
  msgstr "Si vous aimez ce plugin, donnez-lui une note sur %1$s."
177
 
178
- #: admin/includes/admin-about.php:106
179
  msgid "WordPress plugin review site"
180
  msgstr ""
181
 
182
- #: admin/includes/admin-about.php:107
183
  msgid ""
184
  "If you want to support the plugin I would be happy to get a small donation"
185
  msgstr "Si vous voulez soutenir ce plugin, je serai ravi de recevoir un petit don !"
186
 
187
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
188
- #: admin/includes/admin-about.php:110
189
  #, php-format
190
  msgid "Donate with %1$s"
191
  msgstr "Faire un don avec %1$s"
192
 
193
- #: admin/includes/admin-about.php:119
194
  msgid ""
195
  "You have the possibility to modify the output if you add some of the "
196
  "following attributes to the shortcode."
197
  msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
198
 
199
- #: admin/includes/admin-about.php:120
200
  #, php-format
201
  msgid ""
202
  "You can combine and add as much attributes as you want. E.g. the shortcode "
203
  "including the attributes %1$s and %2$s would looks like this:"
204
  msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
205
 
206
- #: admin/includes/admin-about.php:122
207
  msgid ""
208
  "Below you can find a list of all supported attributes with their "
209
  "descriptions and available options:"
210
  msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
211
 
212
- #: admin/includes/admin-about.php:137
213
  msgid "Attribute name"
214
  msgstr "Nom de l'attribut"
215
 
216
- #: admin/includes/admin-about.php:138
217
  msgid "Value options"
218
  msgstr "Valeurs possibles"
219
 
220
- #: admin/includes/admin-about.php:139
221
  msgid "Default value"
222
  msgstr "Valeur par défaut"
223
 
224
- #: admin/includes/admin-about.php:140
225
  msgid "Description"
226
  msgstr "Description"
227
 
228
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
229
- #: includes/sc_event-list_helptexts.php:42
230
  msgid "Filter Syntax"
231
  msgstr "Syntaxe des filtres"
232
 
233
- #: admin/includes/admin-about.php:160
234
  msgid ""
235
  "For date and cat filters you can specify complex filters with the following "
236
  "syntax:"
237
  msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
238
 
239
- #: admin/includes/admin-about.php:161
240
  #, php-format
241
  msgid ""
242
  "You can use %1$s and %2$s connections to define complex filters. "
243
  "Additionally you can set brackets %3$s for nested queries."
244
  msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
245
 
246
- #: admin/includes/admin-about.php:161
247
  msgid "AND"
248
  msgstr "ET"
249
 
250
- #: admin/includes/admin-about.php:161
251
  msgid "OR"
252
  msgstr "OU"
253
 
254
- #: admin/includes/admin-about.php:161
255
  msgid "or"
256
  msgstr "ou"
257
 
258
- #: admin/includes/admin-about.php:161
259
  msgid "and"
260
  msgstr "et"
261
 
262
- #: admin/includes/admin-about.php:162
263
  msgid "Examples for cat filters:"
264
  msgstr "Exemple de filtre de catégorie :"
265
 
266
- #: admin/includes/admin-about.php:163
267
  #, php-format
268
  msgid "Show all events with category %1$s."
269
  msgstr "Voir tous les évènements de la catégorie %1$s."
270
 
271
- #: admin/includes/admin-about.php:164
272
  #, php-format
273
  msgid "Show all events with category %1$s or %2$s."
274
  msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
275
 
276
- #: admin/includes/admin-about.php:165
277
  #, php-format
278
  msgid ""
279
  "Show all events with category %1$s and all events where category %2$s as "
280
  "well as %3$s is selected."
281
  msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
282
 
283
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
284
  msgid "Available Date Formats"
285
  msgstr "Formats de date disponible"
286
 
287
- #: admin/includes/admin-about.php:172
288
  msgid "For date filters you can use the following date formats:"
289
  msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
290
 
291
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
292
  msgid "Available Date Range Formats"
293
  msgstr "Formats de d'intervalle de date disponible"
294
 
295
- #: admin/includes/admin-about.php:182
296
  msgid "For date filters you can use the following daterange formats:"
297
  msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
298
 
299
- #: admin/includes/admin-about.php:195
300
  msgid "Value"
301
  msgstr "Valeur"
302
 
303
- #: admin/includes/admin-about.php:199
304
  msgid "Example"
305
  msgstr "Exemple"
306
 
307
- #: admin/includes/admin-categories.php:54
308
  msgid "Synchronize with post categories"
309
  msgstr ""
310
 
311
- #: admin/includes/admin-categories.php:63
312
  #, php-format
313
  msgid "%1$s categories modified (%2$s)"
314
  msgstr "%1$s catégories modifiées (%2$s)"
315
 
316
- #: admin/includes/admin-categories.php:64
317
  #, php-format
318
  msgid "%1$s categories added (%2$s)"
319
  msgstr "%1$s catégories ajoutées (%2$s)"
320
 
321
- #: admin/includes/admin-categories.php:65
322
  #, php-format
323
  msgid "%1$s categories deleted (%2$s)"
324
  msgstr "%1$s catégories supprimées (%2$s)"
325
 
326
- #: admin/includes/admin-categories.php:67
327
  #, php-format
328
  msgid "%1$s categories not modified (%2$s)"
329
  msgstr "%1$s catégories non modifiées (%2$s)"
330
 
331
- #: admin/includes/admin-categories.php:68
332
  #, php-format
333
  msgid "%1$s categories not added (%2$s)"
334
  msgstr "%1$s catégories non ajoutées (%2$s)"
335
 
336
- #: admin/includes/admin-categories.php:69
337
  #, php-format
338
  msgid "%1$s categories not deleted (%2$s)"
339
  msgstr "%1$s catégories non supprimées (%2$s)"
340
 
341
- #: admin/includes/admin-categories.php:72
342
  msgid "An Error occured during the category sync"
343
  msgstr "Une erreur s'est produite lors de la synchronisation de catégorie"
344
 
345
- #: admin/includes/admin-categories.php:75
346
  msgid "Category sync finished"
347
  msgstr "Synchronisation de la catégorie terminée"
348
 
349
- #: admin/includes/admin-category-sync.php:54
350
  msgid "Error: You are not allowed to view this page!"
351
  msgstr "Erreur : vous n'êtes pas autorisé à consulter cette page !"
352
 
353
- #: admin/includes/admin-category-sync.php:70
354
  msgid "Affected Categories when switching to seperate Event Categories"
355
  msgstr ""
356
 
357
- #: admin/includes/admin-category-sync.php:71
358
  msgid "Switch option to seperate Event Categories"
359
  msgstr ""
360
 
361
- #: admin/includes/admin-category-sync.php:72
362
  msgid ""
363
  "If you proceed, all post categories will be copied and all events will be "
364
  "re-assigned to this new categories."
365
  msgstr ""
366
 
367
- #: admin/includes/admin-category-sync.php:73
368
  msgid ""
369
  "Afterwards the event categories are independent of the post categories."
370
  msgstr ""
371
 
372
- #: admin/includes/admin-category-sync.php:75
373
  msgid "Affected Categories when switching to use Post Categories for events"
374
  msgstr ""
375
 
376
- #: admin/includes/admin-category-sync.php:76
377
  msgid "Switch option to use Post Categories for events"
378
  msgstr ""
379
 
380
- #: admin/includes/admin-category-sync.php:77
381
  msgid ""
382
  "Take a detailed look at the affected categories above before you proceed! "
383
  "All seperate event categories will be deleted, this cannot be undone!"
384
  msgstr ""
385
 
386
- #: admin/includes/admin-category-sync.php:79
387
  msgid "Event Categories: Synchronise with Post Categories"
388
  msgstr ""
389
 
390
- #: admin/includes/admin-category-sync.php:80
391
  msgid "Start synchronisation"
392
  msgstr "Démarrer la synchronisation"
393
 
394
- #: admin/includes/admin-category-sync.php:81
395
  msgid ""
396
  "If this option is enabled the above listed categories will be deleted and "
397
  "removed from the existing events!"
398
  msgstr ""
399
 
400
- #: admin/includes/admin-category-sync.php:96
401
  msgid "Categories to modify"
402
  msgstr "Catégories à modifier"
403
 
404
- #: admin/includes/admin-category-sync.php:97
405
  msgid "Categories to add"
406
  msgstr "Catégories à ajouter"
407
 
408
- #: admin/includes/admin-category-sync.php:98
409
  msgid "Categories to delete (optional)"
410
  msgstr "Catégories à supprimer (facultatif)"
411
 
412
- #: admin/includes/admin-category-sync.php:99
413
  msgid "Delete not available post categories"
414
  msgstr ""
415
 
416
- #: admin/includes/admin-category-sync.php:102
417
  msgid "Categories with differences"
418
  msgstr ""
419
 
420
- #: admin/includes/admin-category-sync.php:103
421
  msgid "Categories to add (optional)"
422
  msgstr ""
423
 
424
- #: admin/includes/admin-category-sync.php:104
425
  msgid "Add not available post categories"
426
  msgstr ""
427
 
428
- #: admin/includes/admin-category-sync.php:123
429
  msgid "none"
430
  msgstr "aucun"
431
 
432
- #: admin/includes/admin-import.php:58
433
  msgid "Import Events"
434
  msgstr "Importer évènements."
435
 
436
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
437
- #: admin/includes/admin-import.php:220
438
  msgid "Step"
439
  msgstr "Etape"
440
 
441
- #: admin/includes/admin-import.php:79
442
  msgid "Set import file and options"
443
  msgstr "Sélection du fichier à importer et des options."
444
 
445
- #: admin/includes/admin-import.php:82
446
  #, php-format
447
  msgid "Proceed with Step %1$s"
448
  msgstr ""
449
 
450
- #: admin/includes/admin-import.php:85
451
  msgid "Example file"
452
  msgstr "Fichier d'exemple"
453
 
454
- #: admin/includes/admin-import.php:86
455
  #, php-format
456
  msgid ""
457
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
458
  msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
459
 
460
- #: admin/includes/admin-import.php:87
461
  msgid "Note"
462
  msgstr "Remarque"
463
 
464
- #: admin/includes/admin-import.php:87
465
  msgid ""
466
  "Do not change the column header and separator line (first two lines), "
467
  "otherwise the import will fail!"
468
  msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
469
 
470
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
471
  msgid "Sorry, there has been an error."
472
  msgstr "Désolé, il y a eu une erreur."
473
 
474
- #: admin/includes/admin-import.php:96
475
  msgid "The file does not exist, please try again."
476
  msgstr "Le fichier n'existe pas, essayez encore."
477
 
478
- #: admin/includes/admin-import.php:104
479
  msgid "The uploaded file does not have the required csv extension."
480
  msgstr ""
481
 
482
- #: admin/includes/admin-import.php:116
483
  msgid "Events review and additonal category selection"
484
  msgstr ""
485
 
486
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
487
  msgid "Error"
488
  msgstr "Erreur"
489
 
490
- #: admin/includes/admin-import.php:122
491
  msgid "This CSV file cannot be imported"
492
  msgstr "Ce fichier CSV ne peut pas être importé"
493
 
494
- #: admin/includes/admin-import.php:133
495
  msgid "None of the events in this CSV file can be imported"
496
  msgstr "Aucun évènement dans ce fichier CSV ne peut être importé"
497
 
498
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
499
  msgid "Warning"
500
  msgstr "Attention"
501
 
502
- #: admin/includes/admin-import.php:138
503
  #, php-format
504
  msgid "There is %1$s event which cannot be imported"
505
  msgid_plural "There are %1$s events which cannot be imported"
506
  msgstr[0] "%1$s évènement ne peut pas être importé"
507
  msgstr[1] "%1$s évènements ne peuvent pas être importés"
508
 
509
- #: admin/includes/admin-import.php:150
510
  #, php-format
511
  msgid "CSV line %1$s"
512
  msgstr "Ligne CSV %1$s"
513
 
514
- #: admin/includes/admin-import.php:160
515
  msgid "You can still import all other events listed below."
516
  msgstr "Vous pouvez toujours importer les évènements ci-dessous."
517
 
518
- #: admin/includes/admin-import.php:179
519
  msgid ""
520
  "The following category slugs are not available and will be removed from the "
521
  "imported events"
522
  msgstr ""
523
 
524
- #: admin/includes/admin-import.php:185
525
  msgid ""
526
  "If you want to keep these categories, please create these Categories first "
527
  "and do the import afterwards."
528
  msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
529
 
530
- #: admin/includes/admin-import.php:220
531
  msgid "Import result"
532
  msgstr "Résultat d'importation"
533
 
534
- #: admin/includes/admin-import.php:223
535
  #, php-format
536
  msgid "Import of %1$s events successful!"
537
  msgstr "Importation de %1$s évènements terminée !"
538
 
539
- #: admin/includes/admin-import.php:224
540
  msgid "Go back to All Events"
541
  msgstr "Retour à la liste des évènements"
542
 
543
- #: admin/includes/admin-import.php:227
544
  msgid "Errors during Import"
545
  msgstr "Erreurs lors de l'importation"
546
 
547
- #: admin/includes/admin-import.php:235
548
  msgid "Event from CSV-line"
549
  msgstr ""
550
 
551
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
552
  #: includes/widget_helptexts.php:9
553
  msgid "Title"
554
  msgstr "Titre"
555
 
556
- #: admin/includes/admin-import.php:248
557
  msgid "Start Date"
558
  msgstr "Date de début"
559
 
560
- #: admin/includes/admin-import.php:249
561
  msgid "End Date"
562
  msgstr "Date de fin"
563
 
564
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
565
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
566
  msgid "Time"
567
  msgstr "Heure"
568
 
569
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
570
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
571
  #: includes/options_helptexts.php:76
572
  msgid "Location"
573
  msgstr "Lieu"
574
 
575
- #: admin/includes/admin-import.php:252
576
  msgid "Content"
577
  msgstr "Contenu"
578
 
579
- #: admin/includes/admin-import.php:253
580
  msgid "Category slugs"
581
  msgstr ""
582
 
583
- #: admin/includes/admin-import.php:297
584
  msgid "Header line is missing or not correct!"
585
  msgstr "Ligne d'en-tête manquante ou invalide !"
586
 
587
- #: admin/includes/admin-import.php:298
588
  #, php-format
589
  msgid ""
590
  "Have a look at the %1$sexample file%2$s to see the correct header line "
591
  "format."
592
  msgstr ""
593
 
594
- #: admin/includes/admin-import.php:305
595
  #, php-format
596
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
597
  msgstr ""
598
 
599
- #: admin/includes/admin-import.php:334
600
  msgid "Empty event title found"
601
  msgstr ""
602
 
603
- #: admin/includes/admin-import.php:340
604
  msgid "Wrong date format for startdate"
605
  msgstr "Format de date incorrect pour la date de début"
606
 
607
- #: admin/includes/admin-import.php:348
608
  msgid "Wrong date format for enddate"
609
  msgstr "Format de date incorrect pour la date de fin"
610
 
611
- #: admin/includes/admin-import.php:401
612
  msgid "Import events"
613
  msgstr "Importer des événements"
614
 
615
- #: admin/includes/admin-import.php:402
616
  msgid "Add additional categories"
617
  msgstr "Ajouter plus de catégories"
618
 
619
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
620
- msgid "Import"
621
- msgstr "Importer"
622
-
623
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
624
  msgid "No events found"
625
  msgstr "Aucun évènement trouvé"
626
 
627
- #: admin/includes/admin-import.php:473
628
  msgid "Saving of event failed!"
629
  msgstr "Impossible d'enregistrer l'évènement !"
630
 
631
- #: admin/includes/admin-main.php:76
632
  msgid "Event Date"
633
  msgstr "Date de l'évènement"
634
 
635
- #: admin/includes/admin-main.php:80
636
  msgid "Author"
637
  msgstr "Auteur"
638
 
639
- #: admin/includes/admin-main.php:148
640
  #, php-format
641
  msgid "Add a copy of %1$s"
642
  msgstr "Ajouter une copie de %1$s"
643
 
644
- #: admin/includes/admin-main.php:148
645
  msgid "Copy"
646
  msgstr "Copier"
647
 
648
- #: admin/includes/admin-new.php:58
 
 
 
 
649
  msgid "Event data"
650
  msgstr ""
651
 
652
- #: admin/includes/admin-new.php:90
653
  msgid "Add Copy"
654
  msgstr "Ajouter une copie"
655
 
656
- #: admin/includes/admin-new.php:98
657
  msgid "Date"
658
  msgstr "Date"
659
 
660
- #: admin/includes/admin-new.php:98
661
  msgid "required"
662
  msgstr "Requis"
663
 
664
- #: admin/includes/admin-new.php:101
665
  msgid "Multi-Day Event"
666
  msgstr "Evènement sur plusieurs jours"
667
 
668
- #: admin/includes/admin-new.php:121
669
  msgid "Event Title"
670
  msgstr "Titre de l'évènement"
671
 
672
- #: admin/includes/admin-new.php:137
673
  msgid "Event Content"
674
  msgstr "Contenu de l'évènement"
675
 
676
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
677
  msgid "Event updated."
678
  msgstr "Évènement mis à jour."
679
 
680
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
681
  msgid "View event"
682
  msgstr "Voir l'évènement"
683
 
684
- #: admin/includes/admin-new.php:204
685
  #, php-format
686
  msgid "Event restored to revision from %1$s"
687
  msgstr ""
688
 
689
- #: admin/includes/admin-new.php:205
690
  msgid "Event published."
691
  msgstr "Évènement publié."
692
 
693
- #: admin/includes/admin-new.php:207
 
 
 
 
694
  msgid "Event submitted."
695
  msgstr "Évènement soumis."
696
 
697
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
698
- #: admin/includes/admin-new.php:210
699
  msgid "Preview event"
700
  msgstr "Prévisualiser l'évènement"
701
 
702
- #: admin/includes/admin-new.php:208
703
  #, php-format
704
  msgid "Event scheduled for: %1$s>"
705
  msgstr ""
706
 
707
- #: admin/includes/admin-new.php:210
708
  msgid "Event draft updated."
709
  msgstr "Brouillon de l'évènement mis à jour."
710
 
711
- #: admin/includes/admin-settings.php:79
712
  msgid "Go to Event Category switching page"
713
  msgstr ""
714
 
715
- #: admin/includes/admin-settings.php:93
716
  msgid "Frontend Settings"
717
  msgstr "Frontend Préférences"
718
 
719
- #: admin/includes/admin-settings.php:94
720
  msgid "Admin Page Settings"
721
  msgstr "Administration Préférences"
722
 
723
- #: admin/includes/admin-settings.php:95
724
  msgid "Feed Settings"
725
  msgstr "Flux RSS Préférences"
726
 
727
- #: admin/includes/admin-settings.php:96
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
@@ -732,255 +736,255 @@ msgstr ""
732
  msgid "Year"
733
  msgstr "Année"
734
 
735
- #: includes/daterange_helptexts.php:9
736
  msgid "A year can be specified in 4 digit format."
737
  msgstr "Une année peut être spécifié au format 4 chiffres."
738
 
739
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
740
- #: includes/daterange_helptexts.php:47
741
  #, php-format
742
  msgid ""
743
  "For a start date filter the first day of %1$s is used, in an end date the "
744
  "last day."
745
  msgstr "Pour un filtre de date de début, le premier jour de %1$s est utilisé, dans une date de fin, le dernier jours est utilisé."
746
 
747
- #: includes/daterange_helptexts.php:10
748
  msgid "the resulting year"
749
  msgstr "Année résultante"
750
 
751
- #: includes/daterange_helptexts.php:15
752
  msgid "Month"
753
  msgstr "Mois"
754
 
755
- #: includes/daterange_helptexts.php:16
756
  msgid ""
757
  "A month can be specified with 4 digits for the year and 2 digits for the "
758
  "month, seperated by a hyphen (-)."
759
  msgstr "Un mois peut être spécifié avec 4 chiffres pour l'année et 2 chiffres pour le mois, séparé par un tiret (-)."
760
 
761
- #: includes/daterange_helptexts.php:17
762
  msgid "the resulting month"
763
  msgstr "Mois résultant"
764
 
765
- #: includes/daterange_helptexts.php:22
766
  msgid "Day"
767
  msgstr "Jour"
768
 
769
- #: includes/daterange_helptexts.php:23
770
  msgid ""
771
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
772
  " month and 2 digets for the day, seperated by hyphens (-)."
773
  msgstr "Un jour peut être spécifié avec le format de 4 chiffres pour l'année, 2 chiffres pour le mois et 2 chiffres pour le jour, séparé par un tiret (-)."
774
 
775
- #: includes/daterange_helptexts.php:28
776
  msgid "Relative Year"
777
  msgstr "Année relative"
778
 
779
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
780
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
781
  #, php-format
782
  msgid "%1$s from now can be specified in the following notation: %2$s"
783
  msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s"
784
 
785
- #: includes/daterange_helptexts.php:29
786
  msgid "A relative year"
787
  msgstr "Une année relative"
788
 
789
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
790
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
791
  #, php-format
792
  msgid ""
793
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
794
  "%3$s or %4$s attached (see also the example below)."
795
  msgstr "Cela signifie que vous pouvez spécifier un %2$s positif ou négatif (%1$s) à partir de maintenant suffixé par %3$s ou %4$s (voir l'exemple ci-dessous)"
796
 
797
- #: includes/daterange_helptexts.php:30
798
  msgid "number of years"
799
  msgstr "nombre d'année"
800
 
801
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
802
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
803
  #, php-format
804
  msgid "Additionally the following values are available: %1$s"
805
  msgstr "De plus, les valeurs suivantes sont disponibles : %1$s"
806
 
807
- #: includes/daterange_helptexts.php:36
808
  msgid "Relative Month"
809
  msgstr "Mois relatif"
810
 
811
- #: includes/daterange_helptexts.php:37
812
  msgid "A relative month"
813
  msgstr "Un mois relatif"
814
 
815
- #: includes/daterange_helptexts.php:38
816
  msgid "number of months"
817
  msgstr "Nombre de mois"
818
 
819
- #: includes/daterange_helptexts.php:44
820
  msgid "Relative Week"
821
  msgstr "Semaine relative"
822
 
823
- #: includes/daterange_helptexts.php:45
824
  msgid "A relative week"
825
  msgstr "Une semaine relative"
826
 
827
- #: includes/daterange_helptexts.php:46
828
  msgid "number of weeks"
829
  msgstr "Nombre de semaines"
830
 
831
- #: includes/daterange_helptexts.php:47
832
  msgid "the resulting week"
833
  msgstr "Une semaine relative"
834
 
835
- #: includes/daterange_helptexts.php:48
836
  #, php-format
837
  msgid ""
838
  "The first day of the week is depending on the option %1$s which can be found"
839
  " and changed in %2$s."
840
  msgstr "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s"
841
 
842
- #: includes/daterange_helptexts.php:54
843
  msgid "Relative Day"
844
  msgstr "Jour relatif"
845
 
846
- #: includes/daterange_helptexts.php:55
847
  msgid "A relative day"
848
  msgstr "Un jour relatif"
849
 
850
- #: includes/daterange_helptexts.php:56
851
  msgid "number of days"
852
  msgstr "nombre de jours"
853
 
854
- #: includes/daterange_helptexts.php:64
855
  msgid "Date range"
856
  msgstr "Période"
857
 
858
- #: includes/daterange_helptexts.php:66
859
  msgid ""
860
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
861
- "\t For the start and end date any available date format can be used."
862
- msgstr "Une période peut être spécifié via une date de début et une date de fin séparé par un tilde (~).<br/>\n⇥ Pour la date de début et de fin, n'importe quel format de date peut être utilisé."
863
 
864
- #: includes/daterange_helptexts.php:75
865
  msgid "This value defines a range without any limits."
866
  msgstr "Cette valeur définie une période sans aucune limites"
867
 
868
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
869
- #: includes/daterange_helptexts.php:90
870
  #, php-format
871
  msgid "The corresponding date_range format is: %1$s"
872
  msgstr "Le période correspondant est : %1$s"
873
 
874
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
875
  msgid "Upcoming"
876
  msgstr "A venir"
877
 
878
- #: includes/daterange_helptexts.php:82
879
  msgid "This value defines a range from the actual day to the future."
880
  msgstr "Cette valeur définie une période à partir du jour actuel juste que dans le future."
881
 
882
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
883
  msgid "Past"
884
  msgstr "Passé"
885
 
886
- #: includes/daterange_helptexts.php:89
887
  msgid "This value defines a range from the past to the previous day."
888
  msgstr "Cette valeur définie une période antérieur à la date du jour."
889
 
890
- #: includes/event.php:124
891
  msgid "No valid start date provided"
892
  msgstr ""
893
 
894
- #: includes/event.php:299 includes/event.php:301
895
- #: includes/sc_event-list.php:298
896
  msgid "read more"
897
  msgstr ""
898
 
899
- #: includes/events_post_type.php:69
900
  msgid "Events"
901
  msgstr "Evénements"
902
 
903
- #: includes/events_post_type.php:70
904
  msgid "Event"
905
  msgstr "Évènement"
906
 
907
- #: includes/events_post_type.php:71
908
  msgid "Add New"
909
  msgstr "Ajouter"
910
 
911
- #: includes/events_post_type.php:72
912
  msgid "Add New Event"
913
  msgstr "Ajouter un nouvel évènement"
914
 
915
- #: includes/events_post_type.php:73
916
  msgid "Edit Event"
917
  msgstr "Modifier évènement"
918
 
919
- #: includes/events_post_type.php:74
920
  msgid "New Event"
921
  msgstr "Nouvel évènement"
922
 
923
- #: includes/events_post_type.php:75
924
  msgid "View Event"
925
  msgstr "Voir l'évènement"
926
 
927
- #: includes/events_post_type.php:76
928
  msgid "View Events"
929
  msgstr "Voir les évènements"
930
 
931
- #: includes/events_post_type.php:77
932
  msgid "Search Events"
933
  msgstr "Chercher des évènements"
934
 
935
- #: includes/events_post_type.php:79
936
  msgid "No events found in Trash"
937
  msgstr "Aucun évènement trouvé dans la corbeille"
938
 
939
- #: includes/events_post_type.php:81
940
  msgid "All Events"
941
  msgstr "Tous les évènements"
942
 
943
- #: includes/events_post_type.php:82
944
  msgid "Event Archives"
945
  msgstr "Archives d'évènements"
946
 
947
- #: includes/events_post_type.php:83
948
  msgid "Event Attributes"
949
  msgstr "Attributs de l'évènement"
950
 
951
- #: includes/events_post_type.php:84
952
  msgid "Insert into event"
953
  msgstr ""
954
 
955
- #: includes/events_post_type.php:85
956
  msgid "Uploaded to this event"
957
  msgstr "Téléchargé dans cet évènement"
958
 
959
- #: includes/events_post_type.php:86
960
  msgid "Event List"
961
  msgstr "Liste des événements"
962
 
963
- #: includes/events_post_type.php:87
964
  msgid "Filter events list"
965
  msgstr "Filtrer la liste des évènements"
966
 
967
- #: includes/events_post_type.php:88
968
  msgid "Events list navigation"
969
  msgstr ""
970
 
971
- #: includes/events_post_type.php:89
972
  msgid "Events list"
973
  msgstr "Liste des évènements"
974
 
975
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
976
  msgid "Reset"
977
  msgstr "Réinitialiser"
978
 
979
- #: includes/filterbar.php:296
980
  msgid "All"
981
  msgstr "Tous"
982
 
983
- #: includes/filterbar.php:298
984
  msgid "All Dates"
985
  msgstr "Toutes les dates"
986
 
@@ -1420,23 +1424,23 @@ msgid ""
1420
  " switching page from here."
1421
  msgstr ""
1422
 
1423
- #: includes/options.php:73
1424
  msgid "events"
1425
  msgstr "évènements"
1426
 
1427
- #: includes/options.php:77
1428
  msgid "Show content"
1429
  msgstr "Afficher le contenu"
1430
 
1431
- #: includes/options.php:81
1432
  msgid "Hide content"
1433
  msgstr "Masquer le contenu"
1434
 
1435
- #: includes/sc_event-list_helptexts.php:8
1436
  msgid "event-id"
1437
  msgstr "Id de l'événement"
1438
 
1439
- #: includes/sc_event-list_helptexts.php:9
1440
  #, php-format
1441
  msgid ""
1442
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1444,107 +1448,108 @@ msgid ""
1444
  "this event is shown."
1445
  msgstr ""
1446
 
1447
- #: includes/sc_event-list_helptexts.php:13
1448
- #: includes/sc_event-list_helptexts.php:31
1449
  msgid "year"
1450
  msgstr "année"
1451
 
1452
- #: includes/sc_event-list_helptexts.php:14
1453
  msgid ""
1454
  "This attribute defines which events are initially shown. The default is to "
1455
  "show the upcoming events only."
1456
  msgstr ""
1457
 
1458
- #: includes/sc_event-list_helptexts.php:15
1459
  #, php-format
1460
  msgid ""
1461
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1462
  "change the displayed event date range via the filterbar or url parameters."
1463
  msgstr ""
1464
 
1465
- #: includes/sc_event-list_helptexts.php:19
1466
  msgid "category slug"
1467
  msgstr ""
1468
 
1469
- #: includes/sc_event-list_helptexts.php:20
1470
  msgid ""
1471
  "This attribute defines the category of which events are initially shown. The"
1472
  " default is to show events of all categories."
1473
  msgstr ""
1474
 
1475
- #: includes/sc_event-list_helptexts.php:21
1476
  msgid ""
1477
  "Provide a category slug to change this behavior. It is still possible to "
1478
  "change the displayed categories via the filterbar or url parameters."
1479
  msgstr ""
1480
 
1481
- #: includes/sc_event-list_helptexts.php:26
1482
  msgid "This attribute defines the initial order of the events."
1483
  msgstr ""
1484
 
1485
- #: includes/sc_event-list_helptexts.php:27
 
1486
  msgid ""
1487
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1488
  "in the opposite direction (from new to old)."
1489
- msgstr "Avec %1$S (valeur par défaut) les évènements sont affichés du plus ancien au plus récent, avec %2$s ils sont affichés à l'inverse (des récents aux anciens)."
1490
 
1491
- #: includes/sc_event-list_helptexts.php:32
1492
  #, php-format
1493
  msgid ""
1494
  "This attribute defines the dates and date ranges of which events are "
1495
  "displayed. The default is %1$s to show all events."
1496
  msgstr ""
1497
 
1498
- #: includes/sc_event-list_helptexts.php:33
1499
  #, php-format
1500
  msgid ""
1501
  "Filtered events according to %1$s value are not available in the event list."
1502
  msgstr ""
1503
 
1504
- #: includes/sc_event-list_helptexts.php:34
1505
  #, php-format
1506
  msgid ""
1507
  "You can find all available values with a description and examples in the "
1508
  "sections %1$s and %2$s below."
1509
  msgstr ""
1510
 
1511
- #: includes/sc_event-list_helptexts.php:35
1512
  #, php-format
1513
  msgid "See %1$s description if you want to define complex filters."
1514
  msgstr ""
1515
 
1516
- #: includes/sc_event-list_helptexts.php:39
1517
  msgid "category slugs"
1518
  msgstr ""
1519
 
1520
- #: includes/sc_event-list_helptexts.php:40
1521
  msgid ""
1522
  "This attribute defines the category filter which filters the events to show."
1523
  " The default is $1$s or an empty string to show all events."
1524
  msgstr ""
1525
 
1526
- #: includes/sc_event-list_helptexts.php:41
1527
  #, php-format
1528
  msgid ""
1529
  "Events with categories that doesn´t match %1$s are not shown in the event "
1530
  "list. They are also not available if a manual url parameter is added."
1531
  msgstr ""
1532
 
1533
- #: includes/sc_event-list_helptexts.php:42
1534
  #, php-format
1535
  msgid ""
1536
  "The filter is specified via the given category slugs. See %1$s description "
1537
  "if you want to define complex filters."
1538
  msgstr ""
1539
 
1540
- #: includes/sc_event-list_helptexts.php:46
1541
- #: includes/sc_event-list_helptexts.php:111
1542
- #: includes/sc_event-list_helptexts.php:138
1543
- #: includes/sc_event-list_helptexts.php:177
1544
  msgid "number"
1545
  msgstr "nombre"
1546
 
1547
- #: includes/sc_event-list_helptexts.php:47
1548
  #, php-format
1549
  msgid ""
1550
  "This attribute defines how many events should be displayed if upcoming "
@@ -1552,109 +1557,109 @@ msgid ""
1552
  "displayed."
1553
  msgstr ""
1554
 
1555
- #: includes/sc_event-list_helptexts.php:48
1556
  msgid ""
1557
  "Please not that in the actual version there is no pagination of the events "
1558
  "available, so the event list can be very long."
1559
  msgstr ""
1560
 
1561
- #: includes/sc_event-list_helptexts.php:53
1562
  msgid ""
1563
  "This attribute defines if the filterbar should be displayed. The filterbar "
1564
  "allows the users to specify filters for the listed events."
1565
  msgstr ""
1566
 
1567
- #: includes/sc_event-list_helptexts.php:54
1568
  #, php-format
1569
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1570
  msgstr ""
1571
 
1572
- #: includes/sc_event-list_helptexts.php:55
1573
  #, php-format
1574
  msgid ""
1575
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1576
  " in the single event view."
1577
  msgstr ""
1578
 
1579
- #: includes/sc_event-list_helptexts.php:60
1580
  #, php-format
1581
  msgid ""
1582
  "This attribute specifies the available items in the filterbar. This options "
1583
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1584
  msgstr ""
1585
 
1586
- #: includes/sc_event-list_helptexts.php:61
1587
  msgid ""
1588
  "Find below an overview of the available filterbar items and their options:"
1589
  msgstr ""
1590
 
1591
- #: includes/sc_event-list_helptexts.php:64
1592
  msgid "filterbar item"
1593
  msgstr ""
1594
 
1595
- #: includes/sc_event-list_helptexts.php:64
1596
- #: includes/sc_event-list_helptexts.php:96
1597
  msgid "description"
1598
  msgstr "description"
1599
 
1600
- #: includes/sc_event-list_helptexts.php:64
1601
  msgid "item options"
1602
  msgstr ""
1603
 
1604
- #: includes/sc_event-list_helptexts.php:64
1605
  msgid "option values"
1606
  msgstr ""
1607
 
1608
- #: includes/sc_event-list_helptexts.php:64
1609
  msgid "default value"
1610
  msgstr "valeur par défaut"
1611
 
1612
- #: includes/sc_event-list_helptexts.php:64
1613
  msgid "option description"
1614
  msgstr ""
1615
 
1616
- #: includes/sc_event-list_helptexts.php:67
1617
  msgid ""
1618
  "Show a list of all available years. Additional there are some special "
1619
  "entries available (see item options)."
1620
  msgstr ""
1621
 
1622
- #: includes/sc_event-list_helptexts.php:71
1623
- #: includes/sc_event-list_helptexts.php:82
1624
  msgid "Add an entry to show all events."
1625
  msgstr ""
1626
 
1627
- #: includes/sc_event-list_helptexts.php:73
1628
- #: includes/sc_event-list_helptexts.php:84
1629
  msgid "Add an entry to show all upcoming events."
1630
  msgstr ""
1631
 
1632
- #: includes/sc_event-list_helptexts.php:74
1633
- #: includes/sc_event-list_helptexts.php:85
1634
  msgid "Add an entry to show events in the past."
1635
  msgstr ""
1636
 
1637
- #: includes/sc_event-list_helptexts.php:75
1638
  msgid "Set descending or ascending order of year entries."
1639
  msgstr ""
1640
 
1641
- #: includes/sc_event-list_helptexts.php:78
1642
  msgid "Show a list of all available months."
1643
  msgstr ""
1644
 
1645
- #: includes/sc_event-list_helptexts.php:86
1646
  msgid "Set descending or ascending order of month entries."
1647
  msgstr ""
1648
 
1649
- #: includes/sc_event-list_helptexts.php:87
1650
  msgid "php date-formats"
1651
  msgstr "Formats de date PHP"
1652
 
1653
- #: includes/sc_event-list_helptexts.php:87
1654
  msgid "Set the displayed date format of the month entries."
1655
  msgstr ""
1656
 
1657
- #: includes/sc_event-list_helptexts.php:88
1658
  #, php-format
1659
  msgid ""
1660
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1662,65 +1667,65 @@ msgid ""
1662
  "order."
1663
  msgstr "Avec cet élément, vous pouvez afficher les entrées spéciales %1$s, %2$s et %3$s. Vous pouvez les utiliser toutes ou seulement quelques unes et vous pouvez spécifier leur ordre."
1664
 
1665
- #: includes/sc_event-list_helptexts.php:88
1666
  #, php-format
1667
  msgid ""
1668
  "Specifies the displayed values and their order. The items must be seperated "
1669
  "by %1$s."
1670
  msgstr ""
1671
 
1672
- #: includes/sc_event-list_helptexts.php:89
1673
  msgid "Show a list of all available categories."
1674
  msgstr ""
1675
 
1676
- #: includes/sc_event-list_helptexts.php:89
1677
  msgid "Add an entry to show events from all categories."
1678
  msgstr ""
1679
 
1680
- #: includes/sc_event-list_helptexts.php:90
1681
  msgid "A link to reset the eventlist filter to standard."
1682
  msgstr ""
1683
 
1684
- #: includes/sc_event-list_helptexts.php:90
1685
  msgid "any text"
1686
  msgstr "texte quelconque"
1687
 
1688
- #: includes/sc_event-list_helptexts.php:90
1689
  msgid "Set the caption of the link."
1690
  msgstr ""
1691
 
1692
- #: includes/sc_event-list_helptexts.php:93
1693
  msgid "Find below an overview of the available filterbar display options:"
1694
  msgstr ""
1695
 
1696
- #: includes/sc_event-list_helptexts.php:96
1697
  msgid "display option"
1698
  msgstr ""
1699
 
1700
- #: includes/sc_event-list_helptexts.php:96
1701
  msgid "available for"
1702
  msgstr ""
1703
 
1704
- #: includes/sc_event-list_helptexts.php:97
1705
  #, php-format
1706
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1707
  msgstr ""
1708
 
1709
- #: includes/sc_event-list_helptexts.php:98
1710
  msgid ""
1711
  "Shows a select box where an item can be choosen. After the selection of an "
1712
  "item the page is reloaded via javascript to show the filtered events."
1713
  msgstr ""
1714
 
1715
- #: includes/sc_event-list_helptexts.php:99
1716
  msgid "Shows a simple link which can be clicked."
1717
  msgstr ""
1718
 
1719
- #: includes/sc_event-list_helptexts.php:102
1720
  msgid "Find below some declaration examples with descriptions:"
1721
  msgstr ""
1722
 
1723
- #: includes/sc_event-list_helptexts.php:104
1724
  #, php-format
1725
  msgid ""
1726
  "In this example you can see that the filterbar item and the used display "
@@ -1728,22 +1733,22 @@ msgid ""
1728
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1729
  msgstr ""
1730
 
1731
- #: includes/sc_event-list_helptexts.php:106
1732
  #, php-format
1733
  msgid ""
1734
  "In this example you can see that filterbar options can be added in brackets "
1735
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1736
  msgstr ""
1737
 
1738
- #: includes/sc_event-list_helptexts.php:106
1739
  msgid "option_name"
1740
  msgstr ""
1741
 
1742
- #: includes/sc_event-list_helptexts.php:106
1743
  msgid "value"
1744
  msgstr ""
1745
 
1746
- #: includes/sc_event-list_helptexts.php:107
1747
  #, php-format
1748
  msgid ""
1749
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1752,134 +1757,134 @@ msgid ""
1752
  "left-aligned and the reset link will be on the right side."
1753
  msgstr ""
1754
 
1755
- #: includes/sc_event-list_helptexts.php:112
1756
- #: includes/sc_event-list_helptexts.php:139
1757
  msgid ""
1758
  "This attribute specifies if the title should be truncated to the given "
1759
  "number of characters in the event list."
1760
  msgstr ""
1761
 
1762
- #: includes/sc_event-list_helptexts.php:113
1763
- #: includes/sc_event-list_helptexts.php:140
1764
  #, php-format
1765
  msgid ""
1766
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1767
  "is automatically truncated via css."
1768
  msgstr ""
1769
 
1770
- #: includes/sc_event-list_helptexts.php:114
1771
- #: includes/sc_event-list_helptexts.php:141
1772
- #: includes/sc_event-list_helptexts.php:180
1773
  msgid "This attribute has no influence if only a single event is shown."
1774
  msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
1775
 
1776
- #: includes/sc_event-list_helptexts.php:120
1777
  msgid ""
1778
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1779
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1780
- "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1781
- msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
1782
 
1783
- #: includes/sc_event-list_helptexts.php:130
1784
  msgid ""
1785
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1786
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1787
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1788
- msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
1789
 
1790
- #: includes/sc_event-list_helptexts.php:147
1791
  msgid ""
1792
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1793
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1794
- "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1795
- msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
1796
 
1797
- #: includes/sc_event-list_helptexts.php:157
1798
  msgid ""
1799
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1800
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1801
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1802
  msgstr ""
1803
 
1804
- #: includes/sc_event-list_helptexts.php:167
1805
  msgid ""
1806
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1807
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1808
- "\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"
1809
- "\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"
1810
- "\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)."
1811
  msgstr ""
1812
 
1813
- #: includes/sc_event-list_helptexts.php:178
1814
  msgid ""
1815
  "This attribute specifies if the content should be truncate to the given "
1816
  "number of characters in the event list."
1817
  msgstr ""
1818
 
1819
- #: includes/sc_event-list_helptexts.php:179
1820
  #, php-format
1821
  msgid "With the standard value %1$s the full text is displayed."
1822
  msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
1823
 
1824
- #: includes/sc_event-list_helptexts.php:186
1825
  msgid ""
1826
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1827
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1828
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1829
- "\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."
1830
  msgstr ""
1831
 
1832
- #: includes/sc_event-list_helptexts.php:197
1833
  msgid ""
1834
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1835
- "\t Choose \"false\" to never add and \"true\" to always add the link.<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.<br />\n"
1837
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1838
  msgstr ""
1839
 
1840
- #: includes/sc_event-list_helptexts.php:208
1841
  msgid ""
1842
  "This attribute specifies if a rss feed link should be added.<br />\n"
1843
- "\t You have to enable the 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 />\n"
1846
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1847
- 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."
1848
 
1849
- #: includes/sc_event-list_helptexts.php:220
1850
  msgid ""
1851
  "This attribute specifies if a ical feed link should be added.<br />\n"
1852
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1853
- "\t On that page you can also find some settings to modify the output.<br />\n"
1854
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1855
  msgstr ""
1856
 
1857
- #: includes/sc_event-list_helptexts.php:231
1858
  msgid ""
1859
  "This attribute specifies the page or post url for event links.<br />\n"
1860
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1861
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1862
- 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."
1863
 
1864
- #: includes/sc_event-list_helptexts.php:243
1865
  msgid ""
1866
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1867
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1868
- 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."
1869
 
1870
- #: includes/sc_event-list.php:154
1871
  msgid "Sorry, the requested event is not available!"
1872
  msgstr ""
1873
 
1874
- #: includes/sc_event-list.php:163
1875
  msgid "Event Information:"
1876
  msgstr "Information sur l'évènement"
1877
 
1878
- #: includes/sc_event-list.php:405
1879
  msgid "Link to RSS feed"
1880
  msgstr ""
1881
 
1882
- #: includes/sc_event-list.php:414
1883
  msgid "Link to iCal feed"
1884
  msgstr ""
1885
 
@@ -1912,133 +1917,133 @@ msgstr "Le nombre des prochains d'évènements à afficher."
1912
  msgid "Truncate event title to"
1913
  msgstr "Tronquer le titre à"
1914
 
1915
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1916
- #: includes/widget_helptexts.php:93
1917
  msgid "characters"
1918
  msgstr "caractères"
1919
 
1920
- #: includes/widget_helptexts.php:38
1921
  msgid ""
1922
  "This option defines the number of displayed characters for the event title."
1923
  msgstr "Cette option définit le nombre de caractères à afficher pour le titre d'événement."
1924
 
1925
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1926
  #, php-format
1927
  msgid ""
1928
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1929
  "automatically truncate the text via css."
1930
  msgstr "Mettez cette valeur à %1$s pour voir tout le texte, ou mettez l'option à %2$s pour tronquer le texte automatiquement grâce au CSS"
1931
 
1932
- #: includes/widget_helptexts.php:46
1933
  msgid "Show event starttime"
1934
  msgstr "Afficher l'horaire de début de l'évènement"
1935
 
1936
- #: includes/widget_helptexts.php:48
1937
  msgid "This option defines if the event start time will be displayed."
1938
  msgstr "Cette option définie si l’horaire de début doit être affiché."
1939
 
1940
- #: includes/widget_helptexts.php:55
1941
  msgid "Show event location"
1942
  msgstr "Afficher la localisation de l'évènement"
1943
 
1944
- #: includes/widget_helptexts.php:57
1945
  msgid "This option defines if the event location will be displayed."
1946
  msgstr "Cette option définie si la localisation de l'évènement doit être affiché."
1947
 
1948
- #: includes/widget_helptexts.php:64
1949
  msgid "Truncate location to"
1950
  msgstr "Tronquer la localisation à"
1951
 
1952
- #: includes/widget_helptexts.php:66
1953
  msgid ""
1954
  "If the event location is diplayed this option defines the number of "
1955
  "displayed characters."
1956
  msgstr ""
1957
 
1958
- #: includes/widget_helptexts.php:74
1959
  msgid "Show event excerpt"
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:76
1963
  msgid "This option defines if the event excerpt will be displayed."
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:83
1967
  msgid "Show event content"
1968
  msgstr "Afficher le contenu de l'évènement"
1969
 
1970
- #: includes/widget_helptexts.php:85
1971
  msgid "This option defines if the event content will be displayed."
1972
  msgstr ""
1973
 
1974
- #: includes/widget_helptexts.php:92
1975
  msgid "Truncate content to"
1976
  msgstr ""
1977
 
1978
- #: includes/widget_helptexts.php:94
1979
  msgid ""
1980
  "If the event content are diplayed this option defines the number of diplayed"
1981
  " characters."
1982
  msgstr ""
1983
 
1984
- #: includes/widget_helptexts.php:95
1985
  #, php-format
1986
  msgid "Set this value to %1$s to view the full text."
1987
  msgstr "Mettre cette valeur à %1$s pour voir le texte dans son intégralité."
1988
 
1989
- #: includes/widget_helptexts.php:102
1990
  msgid "URL to the linked Event List page"
1991
  msgstr "URL vers la page d'évènement"
1992
 
1993
- #: includes/widget_helptexts.php:104
1994
  msgid ""
1995
  "This option defines the url to the linked Event List page. This option is "
1996
  "required if you want to use one of the options below."
1997
  msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
1998
 
1999
- #: includes/widget_helptexts.php:111
2000
  msgid "Shortcode ID on linked page"
2001
  msgstr "Identifiant du shortcode sur la page lié"
2002
 
2003
- #: includes/widget_helptexts.php:113
2004
  msgid ""
2005
  "This option defines the shortcode-id for the Event List on the linked page. "
2006
  "Normally the standard value 1 is correct, you only have to change it if you "
2007
  "use multiple event-list shortcodes on the linked page."
2008
  msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
2009
 
2010
- #: includes/widget_helptexts.php:122
2011
  msgid ""
2012
  "With this option you can add a link to the single event page for every "
2013
  "displayed event. You have to specify the url to the page and the shortcode "
2014
  "id option if you want to use it."
2015
  msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
2016
 
2017
- #: includes/widget_helptexts.php:131
2018
  msgid ""
2019
  "With this option you can add a link to the event-list page below the "
2020
  "diplayed events. You have to specify the url to page option if you want to "
2021
  "use it."
2022
  msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
2023
 
2024
- #: includes/widget_helptexts.php:138
2025
  msgid "Caption for the link"
2026
  msgstr "Texte du lien."
2027
 
2028
- #: includes/widget_helptexts.php:140
2029
  msgid ""
2030
  "This option defines the text for the link to the Event List page if the "
2031
  "approriate option is selected."
2032
  msgstr "Cette option définie le texte du lien vers la liste des évènements si l'option est activé."
2033
 
2034
- #: includes/widget.php:21
2035
  msgid "With this widget a list of upcoming events can be displayed."
2036
  msgstr "Avec ce widget une liste des prochains évènements peut être affichées."
2037
 
2038
- #: includes/widget.php:26
2039
  msgid "Upcoming events"
2040
  msgstr "Prochains évènements"
2041
 
2042
- #: includes/widget.php:40
2043
  msgid "show events page"
2044
  msgstr "Voir tous les évènements"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
15
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: fr_FR\n"
22
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
23
 
24
+ #: admin/admin.php:90
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr "Erreurs lors de la mise à niveau de l'extension %1$s"
28
 
29
+ #: admin/admin.php:90
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr "Mise à niveau de l'extension %1$s terminée"
33
 
34
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
35
  msgid "Event List Settings"
36
  msgstr "Préférences"
37
 
38
+ #: admin/admin.php:142
39
  msgid "Settings"
40
  msgstr "Préférences"
41
 
42
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
43
  msgid "About Event List"
44
  msgstr "A propos de la liste d'évènement"
45
 
46
+ #: admin/admin.php:146
47
  msgid "About"
48
  msgstr "A propos"
49
 
50
+ #: admin/admin.php:170
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
54
  msgstr[0] "%s évènement"
55
  msgstr[1] "%s évènements"
56
 
57
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
58
  msgid "General"
59
  msgstr "Général"
60
 
61
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
62
+ #: admin/includes/admin-about.php:137
63
  msgid "Shortcode Attributes"
64
  msgstr "Attributs du shortcode"
65
 
66
+ #: admin/includes/admin-about.php:102
67
  msgid "Help and Instructions"
68
  msgstr "Aide et instructions"
69
 
70
+ #: admin/includes/admin-about.php:103
71
  #, php-format
72
  msgid "You can manage the events %1$shere%2$s"
73
  msgstr "Vous pouvez gérer l'événement %1$sici%2$s"
74
 
75
+ #: admin/includes/admin-about.php:104
76
  msgid "To show the events on your site you have 2 possibilities"
77
  msgstr "Pour voir les évènements sur votre site, vous avez 2 possibilités."
78
 
79
+ #: admin/includes/admin-about.php:105
80
  #, php-format
81
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
82
  msgstr "Vous pouvez placer le <strong>shortcode</strong> %1$s sur n'importe quel page ou article."
83
 
84
+ #: admin/includes/admin-about.php:106
85
  #, php-format
86
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
87
  msgstr "Vous pouvez ajouter le <strong>widget</strong> %1$s dans votre barre latérale."
88
 
89
+ #: admin/includes/admin-about.php:107
90
  msgid ""
91
  "The displayed events and their style can be modified with the available "
92
  "widget settings and the available attributes for the shortcode."
93
  msgstr "L'évènement affiché et son style peut être modifié avec les paramètres du widget et attributs disponible pour le shortcode."
94
 
95
+ #: admin/includes/admin-about.php:108
96
  #, php-format
97
  msgid ""
98
  "A list of all available shortcode attributes with their descriptions is "
99
  "available in the %1$s tab."
100
  msgstr "Une liste de tous les attributs de shortcode avec leurs description est disponible dans l'onglet%1$s"
101
 
102
+ #: admin/includes/admin-about.php:109
103
  msgid "The available widget options are described in their tooltip text."
104
  msgstr "Les options disponibles du widget sont disponible dans leurs infobulles"
105
 
106
+ #: admin/includes/admin-about.php:110
107
  #, php-format
108
  msgid ""
109
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
110
  " to insert an URL to the linked event-list page."
111
  msgstr "Si vous activer une des options sur les liens (%1$s ou %2$s) dans le widget, vous devez configurer l'URL vers la liste des événements"
112
 
113
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
114
  msgid "Add links to the single events"
115
  msgstr "Ajoute un lien vers le détail de l'évènement."
116
 
117
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
118
  msgid "Add a link to the Event List page"
119
  msgstr "Ajoute un liens vers la page des évènements."
120
 
121
+ #: admin/includes/admin-about.php:111
122
  msgid ""
123
  "This is required because the widget does not know in which page or post the "
124
  "shortcode was included."
125
  msgstr ""
126
 
127
+ #: admin/includes/admin-about.php:112
128
  msgid ""
129
  "Additionally you have to insert the correct Shortcode id on the linked page."
130
  " This id describes which shortcode should be used on the given page or post "
131
  "if you have more than one."
132
  msgstr ""
133
 
134
+ #: admin/includes/admin-about.php:113
135
  #, php-format
136
  msgid ""
137
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
139
  "link on your linked page or post."
140
  msgstr ""
141
 
142
+ #: admin/includes/admin-about.php:114
143
  #, php-format
144
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
145
  msgstr "L' id est disponible à la fin des paramètres de l'URL (ex %1$s)."
146
 
147
+ #: admin/includes/admin-about.php:116
148
  #, php-format
149
  msgid ""
150
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
151
  "want."
152
  msgstr ""
153
 
154
+ #: admin/includes/admin-about.php:116
155
  msgid "Settings page"
156
  msgstr "Page des paramètres"
157
 
158
+ #: admin/includes/admin-about.php:123
159
  msgid "About the plugin author"
160
  msgstr "Au sujet de l'auteur du plugin"
161
 
162
+ #: admin/includes/admin-about.php:125
163
  #, php-format
164
  msgid ""
165
  "This plugin is developed by %1$s, you can find more information about the "
166
  "plugin on the %2$s."
167
  msgstr "Ce plugin est développé par %1$s, plus d'informations au sujet du plugin sur %2$s "
168
 
169
+ #: admin/includes/admin-about.php:125
170
  msgid "WordPress plugin site"
171
  msgstr ""
172
 
173
+ #: admin/includes/admin-about.php:126
174
  #, php-format
175
  msgid "If you like the plugin please rate it on the %1$s."
176
  msgstr "Si vous aimez ce plugin, donnez-lui une note sur %1$s."
177
 
178
+ #: admin/includes/admin-about.php:126
179
  msgid "WordPress plugin review site"
180
  msgstr ""
181
 
182
+ #: admin/includes/admin-about.php:127
183
  msgid ""
184
  "If you want to support the plugin I would be happy to get a small donation"
185
  msgstr "Si vous voulez soutenir ce plugin, je serai ravi de recevoir un petit don !"
186
 
187
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
188
+ #: admin/includes/admin-about.php:130
189
  #, php-format
190
  msgid "Donate with %1$s"
191
  msgstr "Faire un don avec %1$s"
192
 
193
+ #: admin/includes/admin-about.php:139
194
  msgid ""
195
  "You have the possibility to modify the output if you add some of the "
196
  "following attributes to the shortcode."
197
  msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
198
 
199
+ #: admin/includes/admin-about.php:140
200
  #, php-format
201
  msgid ""
202
  "You can combine and add as much attributes as you want. E.g. the shortcode "
203
  "including the attributes %1$s and %2$s would looks like this:"
204
  msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
205
 
206
+ #: admin/includes/admin-about.php:142
207
  msgid ""
208
  "Below you can find a list of all supported attributes with their "
209
  "descriptions and available options:"
210
  msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
211
 
212
+ #: admin/includes/admin-about.php:157
213
  msgid "Attribute name"
214
  msgstr "Nom de l'attribut"
215
 
216
+ #: admin/includes/admin-about.php:158
217
  msgid "Value options"
218
  msgstr "Valeurs possibles"
219
 
220
+ #: admin/includes/admin-about.php:159
221
  msgid "Default value"
222
  msgstr "Valeur par défaut"
223
 
224
+ #: admin/includes/admin-about.php:160
225
  msgid "Description"
226
  msgstr "Description"
227
 
228
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
229
+ #: includes/sc_event-list_helptexts.php:91
230
  msgid "Filter Syntax"
231
  msgstr "Syntaxe des filtres"
232
 
233
+ #: admin/includes/admin-about.php:180
234
  msgid ""
235
  "For date and cat filters you can specify complex filters with the following "
236
  "syntax:"
237
  msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
238
 
239
+ #: admin/includes/admin-about.php:181
240
  #, php-format
241
  msgid ""
242
  "You can use %1$s and %2$s connections to define complex filters. "
243
  "Additionally you can set brackets %3$s for nested queries."
244
  msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
245
 
246
+ #: admin/includes/admin-about.php:181
247
  msgid "AND"
248
  msgstr "ET"
249
 
250
+ #: admin/includes/admin-about.php:181
251
  msgid "OR"
252
  msgstr "OU"
253
 
254
+ #: admin/includes/admin-about.php:181
255
  msgid "or"
256
  msgstr "ou"
257
 
258
+ #: admin/includes/admin-about.php:181
259
  msgid "and"
260
  msgstr "et"
261
 
262
+ #: admin/includes/admin-about.php:182
263
  msgid "Examples for cat filters:"
264
  msgstr "Exemple de filtre de catégorie :"
265
 
266
+ #: admin/includes/admin-about.php:183
267
  #, php-format
268
  msgid "Show all events with category %1$s."
269
  msgstr "Voir tous les évènements de la catégorie %1$s."
270
 
271
+ #: admin/includes/admin-about.php:184
272
  #, php-format
273
  msgid "Show all events with category %1$s or %2$s."
274
  msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
275
 
276
+ #: admin/includes/admin-about.php:185
277
  #, php-format
278
  msgid ""
279
  "Show all events with category %1$s and all events where category %2$s as "
280
  "well as %3$s is selected."
281
  msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
282
 
283
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
284
  msgid "Available Date Formats"
285
  msgstr "Formats de date disponible"
286
 
287
+ #: admin/includes/admin-about.php:192
288
  msgid "For date filters you can use the following date formats:"
289
  msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
290
 
291
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
292
  msgid "Available Date Range Formats"
293
  msgstr "Formats de d'intervalle de date disponible"
294
 
295
+ #: admin/includes/admin-about.php:202
296
  msgid "For date filters you can use the following daterange formats:"
297
  msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
298
 
299
+ #: admin/includes/admin-about.php:215
300
  msgid "Value"
301
  msgstr "Valeur"
302
 
303
+ #: admin/includes/admin-about.php:219
304
  msgid "Example"
305
  msgstr "Exemple"
306
 
307
+ #: admin/includes/admin-categories.php:79
308
  msgid "Synchronize with post categories"
309
  msgstr ""
310
 
311
+ #: admin/includes/admin-categories.php:90
312
  #, php-format
313
  msgid "%1$s categories modified (%2$s)"
314
  msgstr "%1$s catégories modifiées (%2$s)"
315
 
316
+ #: admin/includes/admin-categories.php:91
317
  #, php-format
318
  msgid "%1$s categories added (%2$s)"
319
  msgstr "%1$s catégories ajoutées (%2$s)"
320
 
321
+ #: admin/includes/admin-categories.php:92
322
  #, php-format
323
  msgid "%1$s categories deleted (%2$s)"
324
  msgstr "%1$s catégories supprimées (%2$s)"
325
 
326
+ #: admin/includes/admin-categories.php:95
327
  #, php-format
328
  msgid "%1$s categories not modified (%2$s)"
329
  msgstr "%1$s catégories non modifiées (%2$s)"
330
 
331
+ #: admin/includes/admin-categories.php:96
332
  #, php-format
333
  msgid "%1$s categories not added (%2$s)"
334
  msgstr "%1$s catégories non ajoutées (%2$s)"
335
 
336
+ #: admin/includes/admin-categories.php:97
337
  #, php-format
338
  msgid "%1$s categories not deleted (%2$s)"
339
  msgstr "%1$s catégories non supprimées (%2$s)"
340
 
341
+ #: admin/includes/admin-categories.php:100
342
  msgid "An Error occured during the category sync"
343
  msgstr "Une erreur s'est produite lors de la synchronisation de catégorie"
344
 
345
+ #: admin/includes/admin-categories.php:103
346
  msgid "Category sync finished"
347
  msgstr "Synchronisation de la catégorie terminée"
348
 
349
+ #: admin/includes/admin-category-sync.php:77
350
  msgid "Error: You are not allowed to view this page!"
351
  msgstr "Erreur : vous n'êtes pas autorisé à consulter cette page !"
352
 
353
+ #: admin/includes/admin-category-sync.php:93
354
  msgid "Affected Categories when switching to seperate Event Categories"
355
  msgstr ""
356
 
357
+ #: admin/includes/admin-category-sync.php:94
358
  msgid "Switch option to seperate Event Categories"
359
  msgstr ""
360
 
361
+ #: admin/includes/admin-category-sync.php:95
362
  msgid ""
363
  "If you proceed, all post categories will be copied and all events will be "
364
  "re-assigned to this new categories."
365
  msgstr ""
366
 
367
+ #: admin/includes/admin-category-sync.php:96
368
  msgid ""
369
  "Afterwards the event categories are independent of the post categories."
370
  msgstr ""
371
 
372
+ #: admin/includes/admin-category-sync.php:98
373
  msgid "Affected Categories when switching to use Post Categories for events"
374
  msgstr ""
375
 
376
+ #: admin/includes/admin-category-sync.php:99
377
  msgid "Switch option to use Post Categories for events"
378
  msgstr ""
379
 
380
+ #: admin/includes/admin-category-sync.php:100
381
  msgid ""
382
  "Take a detailed look at the affected categories above before you proceed! "
383
  "All seperate event categories will be deleted, this cannot be undone!"
384
  msgstr ""
385
 
386
+ #: admin/includes/admin-category-sync.php:103
387
  msgid "Event Categories: Synchronise with Post Categories"
388
  msgstr ""
389
 
390
+ #: admin/includes/admin-category-sync.php:104
391
  msgid "Start synchronisation"
392
  msgstr "Démarrer la synchronisation"
393
 
394
+ #: admin/includes/admin-category-sync.php:105
395
  msgid ""
396
  "If this option is enabled the above listed categories will be deleted and "
397
  "removed from the existing events!"
398
  msgstr ""
399
 
400
+ #: admin/includes/admin-category-sync.php:120
401
  msgid "Categories to modify"
402
  msgstr "Catégories à modifier"
403
 
404
+ #: admin/includes/admin-category-sync.php:121
405
  msgid "Categories to add"
406
  msgstr "Catégories à ajouter"
407
 
408
+ #: admin/includes/admin-category-sync.php:122
409
  msgid "Categories to delete (optional)"
410
  msgstr "Catégories à supprimer (facultatif)"
411
 
412
+ #: admin/includes/admin-category-sync.php:123
413
  msgid "Delete not available post categories"
414
  msgstr ""
415
 
416
+ #: admin/includes/admin-category-sync.php:126
417
  msgid "Categories with differences"
418
  msgstr ""
419
 
420
+ #: admin/includes/admin-category-sync.php:127
421
  msgid "Categories to add (optional)"
422
  msgstr ""
423
 
424
+ #: admin/includes/admin-category-sync.php:128
425
  msgid "Add not available post categories"
426
  msgstr ""
427
 
428
+ #: admin/includes/admin-category-sync.php:147
429
  msgid "none"
430
  msgstr "aucun"
431
 
432
+ #: admin/includes/admin-import.php:91
433
  msgid "Import Events"
434
  msgstr "Importer évènements."
435
 
436
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
437
+ #: admin/includes/admin-import.php:254
438
  msgid "Step"
439
  msgstr "Etape"
440
 
441
+ #: admin/includes/admin-import.php:110
442
  msgid "Set import file and options"
443
  msgstr "Sélection du fichier à importer et des options."
444
 
445
+ #: admin/includes/admin-import.php:113
446
  #, php-format
447
  msgid "Proceed with Step %1$s"
448
  msgstr ""
449
 
450
+ #: admin/includes/admin-import.php:116
451
  msgid "Example file"
452
  msgstr "Fichier d'exemple"
453
 
454
+ #: admin/includes/admin-import.php:117
455
  #, php-format
456
  msgid ""
457
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
458
  msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
459
 
460
+ #: admin/includes/admin-import.php:118
461
  msgid "Note"
462
  msgstr "Remarque"
463
 
464
+ #: admin/includes/admin-import.php:118
465
  msgid ""
466
  "Do not change the column header and separator line (first two lines), "
467
  "otherwise the import will fail!"
468
  msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
469
 
470
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
471
  msgid "Sorry, there has been an error."
472
  msgstr "Désolé, il y a eu une erreur."
473
 
474
+ #: admin/includes/admin-import.php:129
475
  msgid "The file does not exist, please try again."
476
  msgstr "Le fichier n'existe pas, essayez encore."
477
 
478
+ #: admin/includes/admin-import.php:138
479
  msgid "The uploaded file does not have the required csv extension."
480
  msgstr ""
481
 
482
+ #: admin/includes/admin-import.php:150
483
  msgid "Events review and additonal category selection"
484
  msgstr ""
485
 
486
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
487
  msgid "Error"
488
  msgstr "Erreur"
489
 
490
+ #: admin/includes/admin-import.php:156
491
  msgid "This CSV file cannot be imported"
492
  msgstr "Ce fichier CSV ne peut pas être importé"
493
 
494
+ #: admin/includes/admin-import.php:167
495
  msgid "None of the events in this CSV file can be imported"
496
  msgstr "Aucun évènement dans ce fichier CSV ne peut être importé"
497
 
498
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
499
  msgid "Warning"
500
  msgstr "Attention"
501
 
502
+ #: admin/includes/admin-import.php:172
503
  #, php-format
504
  msgid "There is %1$s event which cannot be imported"
505
  msgid_plural "There are %1$s events which cannot be imported"
506
  msgstr[0] "%1$s évènement ne peut pas être importé"
507
  msgstr[1] "%1$s évènements ne peuvent pas être importés"
508
 
509
+ #: admin/includes/admin-import.php:184
510
  #, php-format
511
  msgid "CSV line %1$s"
512
  msgstr "Ligne CSV %1$s"
513
 
514
+ #: admin/includes/admin-import.php:194
515
  msgid "You can still import all other events listed below."
516
  msgstr "Vous pouvez toujours importer les évènements ci-dessous."
517
 
518
+ #: admin/includes/admin-import.php:213
519
  msgid ""
520
  "The following category slugs are not available and will be removed from the "
521
  "imported events"
522
  msgstr ""
523
 
524
+ #: admin/includes/admin-import.php:219
525
  msgid ""
526
  "If you want to keep these categories, please create these Categories first "
527
  "and do the import afterwards."
528
  msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
529
 
530
+ #: admin/includes/admin-import.php:254
531
  msgid "Import result"
532
  msgstr "Résultat d'importation"
533
 
534
+ #: admin/includes/admin-import.php:257
535
  #, php-format
536
  msgid "Import of %1$s events successful!"
537
  msgstr "Importation de %1$s évènements terminée !"
538
 
539
+ #: admin/includes/admin-import.php:258
540
  msgid "Go back to All Events"
541
  msgstr "Retour à la liste des évènements"
542
 
543
+ #: admin/includes/admin-import.php:261
544
  msgid "Errors during Import"
545
  msgstr "Erreurs lors de l'importation"
546
 
547
+ #: admin/includes/admin-import.php:269
548
  msgid "Event from CSV-line"
549
  msgstr ""
550
 
551
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
552
  #: includes/widget_helptexts.php:9
553
  msgid "Title"
554
  msgstr "Titre"
555
 
556
+ #: admin/includes/admin-import.php:282
557
  msgid "Start Date"
558
  msgstr "Date de début"
559
 
560
+ #: admin/includes/admin-import.php:283
561
  msgid "End Date"
562
  msgstr "Date de fin"
563
 
564
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
565
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
566
  msgid "Time"
567
  msgstr "Heure"
568
 
569
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
570
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
571
  #: includes/options_helptexts.php:76
572
  msgid "Location"
573
  msgstr "Lieu"
574
 
575
+ #: admin/includes/admin-import.php:286
576
  msgid "Content"
577
  msgstr "Contenu"
578
 
579
+ #: admin/includes/admin-import.php:287
580
  msgid "Category slugs"
581
  msgstr ""
582
 
583
+ #: admin/includes/admin-import.php:333
584
  msgid "Header line is missing or not correct!"
585
  msgstr "Ligne d'en-tête manquante ou invalide !"
586
 
587
+ #: admin/includes/admin-import.php:334
588
  #, php-format
589
  msgid ""
590
  "Have a look at the %1$sexample file%2$s to see the correct header line "
591
  "format."
592
  msgstr ""
593
 
594
+ #: admin/includes/admin-import.php:341
595
  #, php-format
596
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
597
  msgstr ""
598
 
599
+ #: admin/includes/admin-import.php:371
600
  msgid "Empty event title found"
601
  msgstr ""
602
 
603
+ #: admin/includes/admin-import.php:377
604
  msgid "Wrong date format for startdate"
605
  msgstr "Format de date incorrect pour la date de début"
606
 
607
+ #: admin/includes/admin-import.php:385
608
  msgid "Wrong date format for enddate"
609
  msgstr "Format de date incorrect pour la date de fin"
610
 
611
+ #: admin/includes/admin-import.php:439
612
  msgid "Import events"
613
  msgstr "Importer des événements"
614
 
615
+ #: admin/includes/admin-import.php:440
616
  msgid "Add additional categories"
617
  msgstr "Ajouter plus de catégories"
618
 
619
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
620
  msgid "No events found"
621
  msgstr "Aucun évènement trouvé"
622
 
623
+ #: admin/includes/admin-import.php:518
624
  msgid "Saving of event failed!"
625
  msgstr "Impossible d'enregistrer l'évènement !"
626
 
627
+ #: admin/includes/admin-main.php:108
628
  msgid "Event Date"
629
  msgstr "Date de l'évènement"
630
 
631
+ #: admin/includes/admin-main.php:113
632
  msgid "Author"
633
  msgstr "Auteur"
634
 
635
+ #: admin/includes/admin-main.php:182
636
  #, php-format
637
  msgid "Add a copy of %1$s"
638
  msgstr "Ajouter une copie de %1$s"
639
 
640
+ #: admin/includes/admin-main.php:182
641
  msgid "Copy"
642
  msgstr "Copier"
643
 
644
+ #: admin/includes/admin-main.php:268
645
+ msgid "Import"
646
+ msgstr "Importer"
647
+
648
+ #: admin/includes/admin-new.php:83
649
  msgid "Event data"
650
  msgstr ""
651
 
652
+ #: admin/includes/admin-new.php:116
653
  msgid "Add Copy"
654
  msgstr "Ajouter une copie"
655
 
656
+ #: admin/includes/admin-new.php:124
657
  msgid "Date"
658
  msgstr "Date"
659
 
660
+ #: admin/includes/admin-new.php:124
661
  msgid "required"
662
  msgstr "Requis"
663
 
664
+ #: admin/includes/admin-new.php:127
665
  msgid "Multi-Day Event"
666
  msgstr "Evènement sur plusieurs jours"
667
 
668
+ #: admin/includes/admin-new.php:147
669
  msgid "Event Title"
670
  msgstr "Titre de l'évènement"
671
 
672
+ #: admin/includes/admin-new.php:164
673
  msgid "Event Content"
674
  msgstr "Contenu de l'évènement"
675
 
676
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
677
  msgid "Event updated."
678
  msgstr "Évènement mis à jour."
679
 
680
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
681
  msgid "View event"
682
  msgstr "Voir l'évènement"
683
 
684
+ #: admin/includes/admin-new.php:246
685
  #, php-format
686
  msgid "Event restored to revision from %1$s"
687
  msgstr ""
688
 
689
+ #: admin/includes/admin-new.php:247
690
  msgid "Event published."
691
  msgstr "Évènement publié."
692
 
693
+ #: admin/includes/admin-new.php:248
694
+ msgid "Event saved."
695
+ msgstr ""
696
+
697
+ #: admin/includes/admin-new.php:249
698
  msgid "Event submitted."
699
  msgstr "Évènement soumis."
700
 
701
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
702
+ #: admin/includes/admin-new.php:253
703
  msgid "Preview event"
704
  msgstr "Prévisualiser l'évènement"
705
 
706
+ #: admin/includes/admin-new.php:251
707
  #, php-format
708
  msgid "Event scheduled for: %1$s>"
709
  msgstr ""
710
 
711
+ #: admin/includes/admin-new.php:253
712
  msgid "Event draft updated."
713
  msgstr "Brouillon de l'évènement mis à jour."
714
 
715
+ #: admin/includes/admin-settings.php:97
716
  msgid "Go to Event Category switching page"
717
  msgstr ""
718
 
719
+ #: admin/includes/admin-settings.php:111
720
  msgid "Frontend Settings"
721
  msgstr "Frontend Préférences"
722
 
723
+ #: admin/includes/admin-settings.php:112
724
  msgid "Admin Page Settings"
725
  msgstr "Administration Préférences"
726
 
727
+ #: admin/includes/admin-settings.php:113
728
  msgid "Feed Settings"
729
  msgstr "Flux RSS Préférences"
730
 
731
+ #: admin/includes/admin-settings.php:114
732
  msgid "Category Taxonomy"
733
  msgstr ""
734
 
736
  msgid "Year"
737
  msgstr "Année"
738
 
739
+ #: includes/daterange_helptexts.php:10
740
  msgid "A year can be specified in 4 digit format."
741
  msgstr "Une année peut être spécifié au format 4 chiffres."
742
 
743
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
744
+ #: includes/daterange_helptexts.php:95
745
  #, php-format
746
  msgid ""
747
  "For a start date filter the first day of %1$s is used, in an end date the "
748
  "last day."
749
  msgstr "Pour un filtre de date de début, le premier jour de %1$s est utilisé, dans une date de fin, le dernier jours est utilisé."
750
 
751
+ #: includes/daterange_helptexts.php:13
752
  msgid "the resulting year"
753
  msgstr "Année résultante"
754
 
755
+ #: includes/daterange_helptexts.php:19
756
  msgid "Month"
757
  msgstr "Mois"
758
 
759
+ #: includes/daterange_helptexts.php:21
760
  msgid ""
761
  "A month can be specified with 4 digits for the year and 2 digits for the "
762
  "month, seperated by a hyphen (-)."
763
  msgstr "Un mois peut être spécifié avec 4 chiffres pour l'année et 2 chiffres pour le mois, séparé par un tiret (-)."
764
 
765
+ #: includes/daterange_helptexts.php:24
766
  msgid "the resulting month"
767
  msgstr "Mois résultant"
768
 
769
+ #: includes/daterange_helptexts.php:30
770
  msgid "Day"
771
  msgstr "Jour"
772
 
773
+ #: includes/daterange_helptexts.php:31
774
  msgid ""
775
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
776
  " month and 2 digets for the day, seperated by hyphens (-)."
777
  msgstr "Un jour peut être spécifié avec le format de 4 chiffres pour l'année, 2 chiffres pour le mois et 2 chiffres pour le jour, séparé par un tiret (-)."
778
 
779
+ #: includes/daterange_helptexts.php:36
780
  msgid "Relative Year"
781
  msgstr "Année relative"
782
 
783
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
784
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
785
  #, php-format
786
  msgid "%1$s from now can be specified in the following notation: %2$s"
787
  msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s"
788
 
789
+ #: includes/daterange_helptexts.php:40
790
  msgid "A relative year"
791
  msgstr "Une année relative"
792
 
793
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
794
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
795
  #, php-format
796
  msgid ""
797
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
798
  "%3$s or %4$s attached (see also the example below)."
799
  msgstr "Cela signifie que vous pouvez spécifier un %2$s positif ou négatif (%1$s) à partir de maintenant suffixé par %3$s ou %4$s (voir l'exemple ci-dessous)"
800
 
801
+ #: includes/daterange_helptexts.php:46
802
  msgid "number of years"
803
  msgstr "nombre d'année"
804
 
805
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
806
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
807
  #, php-format
808
  msgid "Additionally the following values are available: %1$s"
809
  msgstr "De plus, les valeurs suivantes sont disponibles : %1$s"
810
 
811
+ #: includes/daterange_helptexts.php:58
812
  msgid "Relative Month"
813
  msgstr "Mois relatif"
814
 
815
+ #: includes/daterange_helptexts.php:62
816
  msgid "A relative month"
817
  msgstr "Un mois relatif"
818
 
819
+ #: includes/daterange_helptexts.php:68
820
  msgid "number of months"
821
  msgstr "Nombre de mois"
822
 
823
+ #: includes/daterange_helptexts.php:80
824
  msgid "Relative Week"
825
  msgstr "Semaine relative"
826
 
827
+ #: includes/daterange_helptexts.php:84
828
  msgid "A relative week"
829
  msgstr "Une semaine relative"
830
 
831
+ #: includes/daterange_helptexts.php:90
832
  msgid "number of weeks"
833
  msgstr "Nombre de semaines"
834
 
835
+ #: includes/daterange_helptexts.php:96
836
  msgid "the resulting week"
837
  msgstr "Une semaine relative"
838
 
839
+ #: includes/daterange_helptexts.php:99
840
  #, php-format
841
  msgid ""
842
  "The first day of the week is depending on the option %1$s which can be found"
843
  " and changed in %2$s."
844
  msgstr "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s"
845
 
846
+ #: includes/daterange_helptexts.php:110
847
  msgid "Relative Day"
848
  msgstr "Jour relatif"
849
 
850
+ #: includes/daterange_helptexts.php:114
851
  msgid "A relative day"
852
  msgstr "Un jour relatif"
853
 
854
+ #: includes/daterange_helptexts.php:120
855
  msgid "number of days"
856
  msgstr "nombre de jours"
857
 
858
+ #: includes/daterange_helptexts.php:134
859
  msgid "Date range"
860
  msgstr "Période"
861
 
862
+ #: includes/daterange_helptexts.php:136
863
  msgid ""
864
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
865
+ "\t\t\tFor the start and end date any available date format can be used."
866
+ msgstr ""
867
 
868
+ #: includes/daterange_helptexts.php:147
869
  msgid "This value defines a range without any limits."
870
  msgstr "Cette valeur définie une période sans aucune limites"
871
 
872
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
873
+ #: includes/daterange_helptexts.php:171
874
  #, php-format
875
  msgid "The corresponding date_range format is: %1$s"
876
  msgstr "Le période correspondant est : %1$s"
877
 
878
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
879
  msgid "Upcoming"
880
  msgstr "A venir"
881
 
882
+ #: includes/daterange_helptexts.php:158
883
  msgid "This value defines a range from the actual day to the future."
884
  msgstr "Cette valeur définie une période à partir du jour actuel juste que dans le future."
885
 
886
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
887
  msgid "Past"
888
  msgstr "Passé"
889
 
890
+ #: includes/daterange_helptexts.php:169
891
  msgid "This value defines a range from the past to the previous day."
892
  msgstr "Cette valeur définie une période antérieur à la date du jour."
893
 
894
+ #: includes/event.php:157
895
  msgid "No valid start date provided"
896
  msgstr ""
897
 
898
+ #: includes/event.php:343 includes/event.php:345
899
+ #: includes/sc_event-list.php:330
900
  msgid "read more"
901
  msgstr ""
902
 
903
+ #: includes/events_post_type.php:83
904
  msgid "Events"
905
  msgstr "Evénements"
906
 
907
+ #: includes/events_post_type.php:84
908
  msgid "Event"
909
  msgstr "Évènement"
910
 
911
+ #: includes/events_post_type.php:85
912
  msgid "Add New"
913
  msgstr "Ajouter"
914
 
915
+ #: includes/events_post_type.php:86
916
  msgid "Add New Event"
917
  msgstr "Ajouter un nouvel évènement"
918
 
919
+ #: includes/events_post_type.php:87
920
  msgid "Edit Event"
921
  msgstr "Modifier évènement"
922
 
923
+ #: includes/events_post_type.php:88
924
  msgid "New Event"
925
  msgstr "Nouvel évènement"
926
 
927
+ #: includes/events_post_type.php:89
928
  msgid "View Event"
929
  msgstr "Voir l'évènement"
930
 
931
+ #: includes/events_post_type.php:90
932
  msgid "View Events"
933
  msgstr "Voir les évènements"
934
 
935
+ #: includes/events_post_type.php:91
936
  msgid "Search Events"
937
  msgstr "Chercher des évènements"
938
 
939
+ #: includes/events_post_type.php:93
940
  msgid "No events found in Trash"
941
  msgstr "Aucun évènement trouvé dans la corbeille"
942
 
943
+ #: includes/events_post_type.php:95
944
  msgid "All Events"
945
  msgstr "Tous les évènements"
946
 
947
+ #: includes/events_post_type.php:96
948
  msgid "Event Archives"
949
  msgstr "Archives d'évènements"
950
 
951
+ #: includes/events_post_type.php:97
952
  msgid "Event Attributes"
953
  msgstr "Attributs de l'évènement"
954
 
955
+ #: includes/events_post_type.php:98
956
  msgid "Insert into event"
957
  msgstr ""
958
 
959
+ #: includes/events_post_type.php:99
960
  msgid "Uploaded to this event"
961
  msgstr "Téléchargé dans cet évènement"
962
 
963
+ #: includes/events_post_type.php:100
964
  msgid "Event List"
965
  msgstr "Liste des événements"
966
 
967
+ #: includes/events_post_type.php:101
968
  msgid "Filter events list"
969
  msgstr "Filtrer la liste des évènements"
970
 
971
+ #: includes/events_post_type.php:102
972
  msgid "Events list navigation"
973
  msgstr ""
974
 
975
+ #: includes/events_post_type.php:103
976
  msgid "Events list"
977
  msgstr "Liste des évènements"
978
 
979
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
980
  msgid "Reset"
981
  msgstr "Réinitialiser"
982
 
983
+ #: includes/filterbar.php:329
984
  msgid "All"
985
  msgstr "Tous"
986
 
987
+ #: includes/filterbar.php:332
988
  msgid "All Dates"
989
  msgstr "Toutes les dates"
990
 
1424
  " switching page from here."
1425
  msgstr ""
1426
 
1427
+ #: includes/options.php:92
1428
  msgid "events"
1429
  msgstr "évènements"
1430
 
1431
+ #: includes/options.php:96
1432
  msgid "Show content"
1433
  msgstr "Afficher le contenu"
1434
 
1435
+ #: includes/options.php:100
1436
  msgid "Hide content"
1437
  msgstr "Masquer le contenu"
1438
 
1439
+ #: includes/sc_event-list_helptexts.php:20
1440
  msgid "event-id"
1441
  msgstr "Id de l'événement"
1442
 
1443
+ #: includes/sc_event-list_helptexts.php:23
1444
  #, php-format
1445
  msgid ""
1446
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1448
  "this event is shown."
1449
  msgstr ""
1450
 
1451
+ #: includes/sc_event-list_helptexts.php:29
1452
+ #: includes/sc_event-list_helptexts.php:57
1453
  msgid "year"
1454
  msgstr "année"
1455
 
1456
+ #: includes/sc_event-list_helptexts.php:31
1457
  msgid ""
1458
  "This attribute defines which events are initially shown. The default is to "
1459
  "show the upcoming events only."
1460
  msgstr ""
1461
 
1462
+ #: includes/sc_event-list_helptexts.php:33
1463
  #, php-format
1464
  msgid ""
1465
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1466
  "change the displayed event date range via the filterbar or url parameters."
1467
  msgstr ""
1468
 
1469
+ #: includes/sc_event-list_helptexts.php:39
1470
  msgid "category slug"
1471
  msgstr ""
1472
 
1473
+ #: includes/sc_event-list_helptexts.php:41
1474
  msgid ""
1475
  "This attribute defines the category of which events are initially shown. The"
1476
  " default is to show events of all categories."
1477
  msgstr ""
1478
 
1479
+ #: includes/sc_event-list_helptexts.php:42
1480
  msgid ""
1481
  "Provide a category slug to change this behavior. It is still possible to "
1482
  "change the displayed categories via the filterbar or url parameters."
1483
  msgstr ""
1484
 
1485
+ #: includes/sc_event-list_helptexts.php:48
1486
  msgid "This attribute defines the initial order of the events."
1487
  msgstr ""
1488
 
1489
+ #: includes/sc_event-list_helptexts.php:50
1490
+ #, php-format
1491
  msgid ""
1492
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1493
  "in the opposite direction (from new to old)."
1494
+ msgstr ""
1495
 
1496
+ #: includes/sc_event-list_helptexts.php:60
1497
  #, php-format
1498
  msgid ""
1499
  "This attribute defines the dates and date ranges of which events are "
1500
  "displayed. The default is %1$s to show all events."
1501
  msgstr ""
1502
 
1503
+ #: includes/sc_event-list_helptexts.php:64
1504
  #, php-format
1505
  msgid ""
1506
  "Filtered events according to %1$s value are not available in the event list."
1507
  msgstr ""
1508
 
1509
+ #: includes/sc_event-list_helptexts.php:68
1510
  #, php-format
1511
  msgid ""
1512
  "You can find all available values with a description and examples in the "
1513
  "sections %1$s and %2$s below."
1514
  msgstr ""
1515
 
1516
+ #: includes/sc_event-list_helptexts.php:73
1517
  #, php-format
1518
  msgid "See %1$s description if you want to define complex filters."
1519
  msgstr ""
1520
 
1521
+ #: includes/sc_event-list_helptexts.php:79
1522
  msgid "category slugs"
1523
  msgstr ""
1524
 
1525
+ #: includes/sc_event-list_helptexts.php:82
1526
  msgid ""
1527
  "This attribute defines the category filter which filters the events to show."
1528
  " The default is $1$s or an empty string to show all events."
1529
  msgstr ""
1530
 
1531
+ #: includes/sc_event-list_helptexts.php:86
1532
  #, php-format
1533
  msgid ""
1534
  "Events with categories that doesn´t match %1$s are not shown in the event "
1535
  "list. They are also not available if a manual url parameter is added."
1536
  msgstr ""
1537
 
1538
+ #: includes/sc_event-list_helptexts.php:90
1539
  #, php-format
1540
  msgid ""
1541
  "The filter is specified via the given category slugs. See %1$s description "
1542
  "if you want to define complex filters."
1543
  msgstr ""
1544
 
1545
+ #: includes/sc_event-list_helptexts.php:96
1546
+ #: includes/sc_event-list_helptexts.php:242
1547
+ #: includes/sc_event-list_helptexts.php:276
1548
+ #: includes/sc_event-list_helptexts.php:318
1549
  msgid "number"
1550
  msgstr "nombre"
1551
 
1552
+ #: includes/sc_event-list_helptexts.php:99
1553
  #, php-format
1554
  msgid ""
1555
  "This attribute defines how many events should be displayed if upcoming "
1557
  "displayed."
1558
  msgstr ""
1559
 
1560
+ #: includes/sc_event-list_helptexts.php:102
1561
  msgid ""
1562
  "Please not that in the actual version there is no pagination of the events "
1563
  "available, so the event list can be very long."
1564
  msgstr ""
1565
 
1566
+ #: includes/sc_event-list_helptexts.php:108
1567
  msgid ""
1568
  "This attribute defines if the filterbar should be displayed. The filterbar "
1569
  "allows the users to specify filters for the listed events."
1570
  msgstr ""
1571
 
1572
+ #: includes/sc_event-list_helptexts.php:110
1573
  #, php-format
1574
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1575
  msgstr ""
1576
 
1577
+ #: includes/sc_event-list_helptexts.php:115
1578
  #, php-format
1579
  msgid ""
1580
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1581
  " in the single event view."
1582
  msgstr ""
1583
 
1584
+ #: includes/sc_event-list_helptexts.php:125
1585
  #, php-format
1586
  msgid ""
1587
  "This attribute specifies the available items in the filterbar. This options "
1588
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1589
  msgstr ""
1590
 
1591
+ #: includes/sc_event-list_helptexts.php:128
1592
  msgid ""
1593
  "Find below an overview of the available filterbar items and their options:"
1594
  msgstr ""
1595
 
1596
+ #: includes/sc_event-list_helptexts.php:132
1597
  msgid "filterbar item"
1598
  msgstr ""
1599
 
1600
+ #: includes/sc_event-list_helptexts.php:133
1601
+ #: includes/sc_event-list_helptexts.php:206
1602
  msgid "description"
1603
  msgstr "description"
1604
 
1605
+ #: includes/sc_event-list_helptexts.php:134
1606
  msgid "item options"
1607
  msgstr ""
1608
 
1609
+ #: includes/sc_event-list_helptexts.php:135
1610
  msgid "option values"
1611
  msgstr ""
1612
 
1613
+ #: includes/sc_event-list_helptexts.php:136
1614
  msgid "default value"
1615
  msgstr "valeur par défaut"
1616
 
1617
+ #: includes/sc_event-list_helptexts.php:137
1618
  msgid "option description"
1619
  msgstr ""
1620
 
1621
+ #: includes/sc_event-list_helptexts.php:141
1622
  msgid ""
1623
  "Show a list of all available years. Additional there are some special "
1624
  "entries available (see item options)."
1625
  msgstr ""
1626
 
1627
+ #: includes/sc_event-list_helptexts.php:145
1628
+ #: includes/sc_event-list_helptexts.php:156
1629
  msgid "Add an entry to show all events."
1630
  msgstr ""
1631
 
1632
+ #: includes/sc_event-list_helptexts.php:147
1633
+ #: includes/sc_event-list_helptexts.php:158
1634
  msgid "Add an entry to show all upcoming events."
1635
  msgstr ""
1636
 
1637
+ #: includes/sc_event-list_helptexts.php:148
1638
+ #: includes/sc_event-list_helptexts.php:159
1639
  msgid "Add an entry to show events in the past."
1640
  msgstr ""
1641
 
1642
+ #: includes/sc_event-list_helptexts.php:149
1643
  msgid "Set descending or ascending order of year entries."
1644
  msgstr ""
1645
 
1646
+ #: includes/sc_event-list_helptexts.php:152
1647
  msgid "Show a list of all available months."
1648
  msgstr ""
1649
 
1650
+ #: includes/sc_event-list_helptexts.php:160
1651
  msgid "Set descending or ascending order of month entries."
1652
  msgstr ""
1653
 
1654
+ #: includes/sc_event-list_helptexts.php:163
1655
  msgid "php date-formats"
1656
  msgstr "Formats de date PHP"
1657
 
1658
+ #: includes/sc_event-list_helptexts.php:165
1659
  msgid "Set the displayed date format of the month entries."
1660
  msgstr ""
1661
 
1662
+ #: includes/sc_event-list_helptexts.php:170
1663
  #, php-format
1664
  msgid ""
1665
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1667
  "order."
1668
  msgstr "Avec cet élément, vous pouvez afficher les entrées spéciales %1$s, %2$s et %3$s. Vous pouvez les utiliser toutes ou seulement quelques unes et vous pouvez spécifier leur ordre."
1669
 
1670
+ #: includes/sc_event-list_helptexts.php:179
1671
  #, php-format
1672
  msgid ""
1673
  "Specifies the displayed values and their order. The items must be seperated "
1674
  "by %1$s."
1675
  msgstr ""
1676
 
1677
+ #: includes/sc_event-list_helptexts.php:185
1678
  msgid "Show a list of all available categories."
1679
  msgstr ""
1680
 
1681
+ #: includes/sc_event-list_helptexts.php:189
1682
  msgid "Add an entry to show events from all categories."
1683
  msgstr ""
1684
 
1685
+ #: includes/sc_event-list_helptexts.php:193
1686
  msgid "A link to reset the eventlist filter to standard."
1687
  msgstr ""
1688
 
1689
+ #: includes/sc_event-list_helptexts.php:195
1690
  msgid "any text"
1691
  msgstr "texte quelconque"
1692
 
1693
+ #: includes/sc_event-list_helptexts.php:197
1694
  msgid "Set the caption of the link."
1695
  msgstr ""
1696
 
1697
+ #: includes/sc_event-list_helptexts.php:201
1698
  msgid "Find below an overview of the available filterbar display options:"
1699
  msgstr ""
1700
 
1701
+ #: includes/sc_event-list_helptexts.php:205
1702
  msgid "display option"
1703
  msgstr ""
1704
 
1705
+ #: includes/sc_event-list_helptexts.php:207
1706
  msgid "available for"
1707
  msgstr ""
1708
 
1709
+ #: includes/sc_event-list_helptexts.php:211
1710
  #, php-format
1711
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1712
  msgstr ""
1713
 
1714
+ #: includes/sc_event-list_helptexts.php:216
1715
  msgid ""
1716
  "Shows a select box where an item can be choosen. After the selection of an "
1717
  "item the page is reloaded via javascript to show the filtered events."
1718
  msgstr ""
1719
 
1720
+ #: includes/sc_event-list_helptexts.php:219
1721
  msgid "Shows a simple link which can be clicked."
1722
  msgstr ""
1723
 
1724
+ #: includes/sc_event-list_helptexts.php:222
1725
  msgid "Find below some declaration examples with descriptions:"
1726
  msgstr ""
1727
 
1728
+ #: includes/sc_event-list_helptexts.php:225
1729
  #, php-format
1730
  msgid ""
1731
  "In this example you can see that the filterbar item and the used display "
1733
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1734
  msgstr ""
1735
 
1736
+ #: includes/sc_event-list_helptexts.php:231
1737
  #, php-format
1738
  msgid ""
1739
  "In this example you can see that filterbar options can be added in brackets "
1740
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1741
  msgstr ""
1742
 
1743
+ #: includes/sc_event-list_helptexts.php:232
1744
  msgid "option_name"
1745
  msgstr ""
1746
 
1747
+ #: includes/sc_event-list_helptexts.php:232
1748
  msgid "value"
1749
  msgstr ""
1750
 
1751
+ #: includes/sc_event-list_helptexts.php:236
1752
  #, php-format
1753
  msgid ""
1754
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1757
  "left-aligned and the reset link will be on the right side."
1758
  msgstr ""
1759
 
1760
+ #: includes/sc_event-list_helptexts.php:244
1761
+ #: includes/sc_event-list_helptexts.php:277
1762
  msgid ""
1763
  "This attribute specifies if the title should be truncated to the given "
1764
  "number of characters in the event list."
1765
  msgstr ""
1766
 
1767
+ #: includes/sc_event-list_helptexts.php:246
1768
+ #: includes/sc_event-list_helptexts.php:278
1769
  #, php-format
1770
  msgid ""
1771
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1772
  "is automatically truncated via css."
1773
  msgstr ""
1774
 
1775
+ #: includes/sc_event-list_helptexts.php:250
1776
+ #: includes/sc_event-list_helptexts.php:279
1777
+ #: includes/sc_event-list_helptexts.php:322
1778
  msgid "This attribute has no influence if only a single event is shown."
1779
  msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
1780
 
1781
+ #: includes/sc_event-list_helptexts.php:257
1782
  msgid ""
1783
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1784
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1785
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1789
  msgid ""
1790
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1791
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1792
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1796
  msgid ""
1797
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1798
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1799
+ "\t\t\t\t\tWith \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1800
+ msgstr ""
1801
 
1802
+ #: includes/sc_event-list_helptexts.php:297
1803
  msgid ""
1804
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1805
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1806
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:308
1810
  msgid ""
1811
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1812
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1813
+ "\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"
1814
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1815
+ "\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)."
1816
  msgstr ""
1817
 
1818
+ #: includes/sc_event-list_helptexts.php:320
1819
  msgid ""
1820
  "This attribute specifies if the content should be truncate to the given "
1821
  "number of characters in the event list."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:321
1825
  #, php-format
1826
  msgid "With the standard value %1$s the full text is displayed."
1827
  msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:329
1830
  msgid ""
1831
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1832
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1833
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1834
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1835
  msgstr ""
1836
 
1837
+ #: includes/sc_event-list_helptexts.php:341
1838
  msgid ""
1839
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1840
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1841
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1842
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1843
  msgstr ""
1844
 
1845
+ #: includes/sc_event-list_helptexts.php:353
1846
  msgid ""
1847
  "This attribute specifies if a rss feed link should be added.<br />\n"
1848
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1849
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1850
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1851
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1852
+ msgstr ""
1853
 
1854
+ #: includes/sc_event-list_helptexts.php:366
1855
  msgid ""
1856
  "This attribute specifies if a ical feed link should be added.<br />\n"
1857
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1858
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1859
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1860
  msgstr ""
1861
 
1862
+ #: includes/sc_event-list_helptexts.php:378
1863
  msgid ""
1864
  "This attribute specifies the page or post url for event links.<br />\n"
1865
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1866
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1867
+ msgstr ""
1868
 
1869
+ #: includes/sc_event-list_helptexts.php:391
1870
  msgid ""
1871
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1872
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1873
+ msgstr ""
1874
 
1875
+ #: includes/sc_event-list.php:184
1876
  msgid "Sorry, the requested event is not available!"
1877
  msgstr ""
1878
 
1879
+ #: includes/sc_event-list.php:193
1880
  msgid "Event Information:"
1881
  msgstr "Information sur l'évènement"
1882
 
1883
+ #: includes/sc_event-list.php:437
1884
  msgid "Link to RSS feed"
1885
  msgstr ""
1886
 
1887
+ #: includes/sc_event-list.php:447
1888
  msgid "Link to iCal feed"
1889
  msgstr ""
1890
 
1917
  msgid "Truncate event title to"
1918
  msgstr "Tronquer le titre à"
1919
 
1920
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1921
+ #: includes/widget_helptexts.php:103
1922
  msgid "characters"
1923
  msgstr "caractères"
1924
 
1925
+ #: includes/widget_helptexts.php:39
1926
  msgid ""
1927
  "This option defines the number of displayed characters for the event title."
1928
  msgstr "Cette option définit le nombre de caractères à afficher pour le titre d'événement."
1929
 
1930
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1931
  #, php-format
1932
  msgid ""
1933
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1934
  "automatically truncate the text via css."
1935
  msgstr "Mettez cette valeur à %1$s pour voir tout le texte, ou mettez l'option à %2$s pour tronquer le texte automatiquement grâce au CSS"
1936
 
1937
+ #: includes/widget_helptexts.php:51
1938
  msgid "Show event starttime"
1939
  msgstr "Afficher l'horaire de début de l'évènement"
1940
 
1941
+ #: includes/widget_helptexts.php:53
1942
  msgid "This option defines if the event start time will be displayed."
1943
  msgstr "Cette option définie si l’horaire de début doit être affiché."
1944
 
1945
+ #: includes/widget_helptexts.php:60
1946
  msgid "Show event location"
1947
  msgstr "Afficher la localisation de l'évènement"
1948
 
1949
+ #: includes/widget_helptexts.php:62
1950
  msgid "This option defines if the event location will be displayed."
1951
  msgstr "Cette option définie si la localisation de l'évènement doit être affiché."
1952
 
1953
+ #: includes/widget_helptexts.php:69
1954
  msgid "Truncate location to"
1955
  msgstr "Tronquer la localisation à"
1956
 
1957
+ #: includes/widget_helptexts.php:72
1958
  msgid ""
1959
  "If the event location is diplayed this option defines the number of "
1960
  "displayed characters."
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:84
1964
  msgid "Show event excerpt"
1965
  msgstr ""
1966
 
1967
+ #: includes/widget_helptexts.php:86
1968
  msgid "This option defines if the event excerpt will be displayed."
1969
  msgstr ""
1970
 
1971
+ #: includes/widget_helptexts.php:93
1972
  msgid "Show event content"
1973
  msgstr "Afficher le contenu de l'évènement"
1974
 
1975
+ #: includes/widget_helptexts.php:95
1976
  msgid "This option defines if the event content will be displayed."
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:102
1980
  msgid "Truncate content to"
1981
  msgstr ""
1982
 
1983
+ #: includes/widget_helptexts.php:105
1984
  msgid ""
1985
  "If the event content are diplayed this option defines the number of diplayed"
1986
  " characters."
1987
  msgstr ""
1988
 
1989
+ #: includes/widget_helptexts.php:107
1990
  #, php-format
1991
  msgid "Set this value to %1$s to view the full text."
1992
  msgstr "Mettre cette valeur à %1$s pour voir le texte dans son intégralité."
1993
 
1994
+ #: includes/widget_helptexts.php:116
1995
  msgid "URL to the linked Event List page"
1996
  msgstr "URL vers la page d'évènement"
1997
 
1998
+ #: includes/widget_helptexts.php:118
1999
  msgid ""
2000
  "This option defines the url to the linked Event List page. This option is "
2001
  "required if you want to use one of the options below."
2002
  msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
2003
 
2004
+ #: includes/widget_helptexts.php:125
2005
  msgid "Shortcode ID on linked page"
2006
  msgstr "Identifiant du shortcode sur la page lié"
2007
 
2008
+ #: includes/widget_helptexts.php:127
2009
  msgid ""
2010
  "This option defines the shortcode-id for the Event List on the linked page. "
2011
  "Normally the standard value 1 is correct, you only have to change it if you "
2012
  "use multiple event-list shortcodes on the linked page."
2013
  msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
2014
 
2015
+ #: includes/widget_helptexts.php:136
2016
  msgid ""
2017
  "With this option you can add a link to the single event page for every "
2018
  "displayed event. You have to specify the url to the page and the shortcode "
2019
  "id option if you want to use it."
2020
  msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
2021
 
2022
+ #: includes/widget_helptexts.php:145
2023
  msgid ""
2024
  "With this option you can add a link to the event-list page below the "
2025
  "diplayed events. You have to specify the url to page option if you want to "
2026
  "use it."
2027
  msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
2028
 
2029
+ #: includes/widget_helptexts.php:152
2030
  msgid "Caption for the link"
2031
  msgstr "Texte du lien."
2032
 
2033
+ #: includes/widget_helptexts.php:154
2034
  msgid ""
2035
  "This option defines the text for the link to the Event List page if the "
2036
  "approriate option is selected."
2037
  msgstr "Cette option définie le texte du lien vers la liste des évènements si l'option est activé."
2038
 
2039
+ #: includes/widget.php:38
2040
  msgid "With this widget a list of upcoming events can be displayed."
2041
  msgstr "Avec ce widget une liste des prochains évènements peut être affichées."
2042
 
2043
+ #: includes/widget.php:43
2044
  msgid "Upcoming events"
2045
  msgstr "Prochains évènements"
2046
 
2047
+ #: includes/widget.php:57
2048
  msgid "show events page"
2049
  msgstr "Voir tous les évènements"
languages/event-list-id_ID.mo CHANGED
Binary file
languages/event-list-id_ID.po CHANGED
@@ -1,15 +1,15 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
- # Mohammad Rizki <mohammadrizki.md@gmail.com>, 2017
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
12
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,116 +18,116 @@ msgstr ""
18
  "Language: id_ID\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
- #: admin/admin.php:64
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
- msgstr ""
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
- msgstr ""
30
 
31
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
32
  msgid "Event List Settings"
33
  msgstr "Pengaturan Daftar Acara"
34
 
35
- #: admin/admin.php:116
36
  msgid "Settings"
37
  msgstr "Pengaturan"
38
 
39
- #: admin/admin.php:120 admin/includes/admin-about.php:43
40
  msgid "About Event List"
41
  msgstr "Tentang Daftar Acara"
42
 
43
- #: admin/admin.php:120
44
  msgid "About"
45
  msgstr "Tentang"
46
 
47
- #: admin/admin.php:144
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
- msgstr[0] ""
52
 
53
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
54
  msgid "General"
55
  msgstr "Umum"
56
 
57
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
58
- #: admin/includes/admin-about.php:117
59
  msgid "Shortcode Attributes"
60
  msgstr "Atribut Kode Singkat"
61
 
62
- #: admin/includes/admin-about.php:82
63
  msgid "Help and Instructions"
64
  msgstr "Bantuan dan Petunjuk"
65
 
66
- #: admin/includes/admin-about.php:83
67
  #, php-format
68
  msgid "You can manage the events %1$shere%2$s"
69
  msgstr "Anda dapat mengelola acara %1$sdi sini%2$s"
70
 
71
- #: admin/includes/admin-about.php:84
72
  msgid "To show the events on your site you have 2 possibilities"
73
  msgstr "Anda memiliki 2 pilihan dalam menampilkan acara di situs Anda"
74
 
75
- #: admin/includes/admin-about.php:85
76
  #, php-format
77
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
78
  msgstr "Anda dapat menempatkan <strong>kode singkat</strong> %1$s di halaman atau post manapun"
79
 
80
- #: admin/includes/admin-about.php:86
81
  #, php-format
82
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
83
  msgstr "Anda dapat menambahkan <strong>widget</strong> %1$s di bilah samping Anda"
84
 
85
- #: admin/includes/admin-about.php:87
86
  msgid ""
87
  "The displayed events and their style can be modified with the available "
88
  "widget settings and the available attributes for the shortcode."
89
  msgstr "Acara yang ditampilkan dan gayanya dapat dimodifikasi dengan pengaturan widget dan atribut kode singkat."
90
 
91
- #: admin/includes/admin-about.php:88
92
  #, php-format
93
  msgid ""
94
  "A list of all available shortcode attributes with their descriptions is "
95
  "available in the %1$s tab."
96
  msgstr "Daftar semua atribut kode singkat yang tersedia beserta deskripsinya dapat dilihat di tab %1$s. "
97
 
98
- #: admin/includes/admin-about.php:89
99
  msgid "The available widget options are described in their tooltip text."
100
  msgstr "Penjelasan pilihan widget ditampilkan di teks tooltip."
101
 
102
- #: admin/includes/admin-about.php:90
103
  #, php-format
104
  msgid ""
105
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
106
  " to insert an URL to the linked event-list page."
107
  msgstr "Jika Anda mengaktifkan pilihan tautan (%1$s atau %2$s) dalam widget, Anda harus menyisipkan URL ke halaman tautan daftar acara"
108
 
109
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
110
  msgid "Add links to the single events"
111
  msgstr "Tambah tautan ke satu acara"
112
 
113
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
114
  msgid "Add a link to the Event List page"
115
  msgstr "Tambah tautan ke laman Daftar Acara"
116
 
117
- #: admin/includes/admin-about.php:91
118
  msgid ""
119
  "This is required because the widget does not know in which page or post the "
120
  "shortcode was included."
121
  msgstr "Hal ini diperlukan karena widget tidak tahu di halaman atau post mana kode singkat dimasukkan."
122
 
123
- #: admin/includes/admin-about.php:92
124
  msgid ""
125
  "Additionally you have to insert the correct Shortcode id on the linked page."
126
  " This id describes which shortcode should be used on the given page or post "
127
  "if you have more than one."
128
  msgstr ""
129
 
130
- #: admin/includes/admin-about.php:93
131
  #, php-format
132
  msgid ""
133
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -135,591 +135,595 @@ msgid ""
135
  "link on your linked page or post."
136
  msgstr ""
137
 
138
- #: admin/includes/admin-about.php:94
139
  #, php-format
140
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
141
  msgstr ""
142
 
143
- #: admin/includes/admin-about.php:96
144
  #, php-format
145
  msgid ""
146
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
147
  "want."
148
  msgstr ""
149
 
150
- #: admin/includes/admin-about.php:96
151
  msgid "Settings page"
152
- msgstr ""
153
 
154
- #: admin/includes/admin-about.php:103
155
  msgid "About the plugin author"
156
  msgstr ""
157
 
158
- #: admin/includes/admin-about.php:105
159
  #, php-format
160
  msgid ""
161
  "This plugin is developed by %1$s, you can find more information about the "
162
  "plugin on the %2$s."
163
  msgstr ""
164
 
165
- #: admin/includes/admin-about.php:105
166
  msgid "WordPress plugin site"
167
- msgstr ""
168
 
169
- #: admin/includes/admin-about.php:106
170
  #, php-format
171
  msgid "If you like the plugin please rate it on the %1$s."
172
  msgstr ""
173
 
174
- #: admin/includes/admin-about.php:106
175
  msgid "WordPress plugin review site"
176
  msgstr ""
177
 
178
- #: admin/includes/admin-about.php:107
179
  msgid ""
180
  "If you want to support the plugin I would be happy to get a small donation"
181
  msgstr ""
182
 
183
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
184
- #: admin/includes/admin-about.php:110
185
  #, php-format
186
  msgid "Donate with %1$s"
187
  msgstr ""
188
 
189
- #: admin/includes/admin-about.php:119
190
  msgid ""
191
  "You have the possibility to modify the output if you add some of the "
192
  "following attributes to the shortcode."
193
  msgstr ""
194
 
195
- #: admin/includes/admin-about.php:120
196
  #, php-format
197
  msgid ""
198
  "You can combine and add as much attributes as you want. E.g. the shortcode "
199
  "including the attributes %1$s and %2$s would looks like this:"
200
  msgstr ""
201
 
202
- #: admin/includes/admin-about.php:122
203
  msgid ""
204
  "Below you can find a list of all supported attributes with their "
205
  "descriptions and available options:"
206
  msgstr ""
207
 
208
- #: admin/includes/admin-about.php:137
209
  msgid "Attribute name"
210
  msgstr ""
211
 
212
- #: admin/includes/admin-about.php:138
213
  msgid "Value options"
214
  msgstr ""
215
 
216
- #: admin/includes/admin-about.php:139
217
  msgid "Default value"
218
  msgstr ""
219
 
220
- #: admin/includes/admin-about.php:140
221
  msgid "Description"
222
  msgstr ""
223
 
224
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
225
- #: includes/sc_event-list_helptexts.php:42
226
  msgid "Filter Syntax"
227
  msgstr ""
228
 
229
- #: admin/includes/admin-about.php:160
230
  msgid ""
231
  "For date and cat filters you can specify complex filters with the following "
232
  "syntax:"
233
  msgstr ""
234
 
235
- #: admin/includes/admin-about.php:161
236
  #, php-format
237
  msgid ""
238
  "You can use %1$s and %2$s connections to define complex filters. "
239
  "Additionally you can set brackets %3$s for nested queries."
240
  msgstr ""
241
 
242
- #: admin/includes/admin-about.php:161
243
  msgid "AND"
244
  msgstr ""
245
 
246
- #: admin/includes/admin-about.php:161
247
  msgid "OR"
248
  msgstr ""
249
 
250
- #: admin/includes/admin-about.php:161
251
  msgid "or"
252
  msgstr ""
253
 
254
- #: admin/includes/admin-about.php:161
255
  msgid "and"
256
  msgstr ""
257
 
258
- #: admin/includes/admin-about.php:162
259
  msgid "Examples for cat filters:"
260
  msgstr ""
261
 
262
- #: admin/includes/admin-about.php:163
263
  #, php-format
264
  msgid "Show all events with category %1$s."
265
  msgstr ""
266
 
267
- #: admin/includes/admin-about.php:164
268
  #, php-format
269
  msgid "Show all events with category %1$s or %2$s."
270
  msgstr ""
271
 
272
- #: admin/includes/admin-about.php:165
273
  #, php-format
274
  msgid ""
275
  "Show all events with category %1$s and all events where category %2$s as "
276
  "well as %3$s is selected."
277
  msgstr ""
278
 
279
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
280
  msgid "Available Date Formats"
281
  msgstr ""
282
 
283
- #: admin/includes/admin-about.php:172
284
  msgid "For date filters you can use the following date formats:"
285
  msgstr ""
286
 
287
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
288
  msgid "Available Date Range Formats"
289
  msgstr ""
290
 
291
- #: admin/includes/admin-about.php:182
292
  msgid "For date filters you can use the following daterange formats:"
293
  msgstr ""
294
 
295
- #: admin/includes/admin-about.php:195
296
  msgid "Value"
297
  msgstr ""
298
 
299
- #: admin/includes/admin-about.php:199
300
  msgid "Example"
301
  msgstr ""
302
 
303
- #: admin/includes/admin-categories.php:54
304
  msgid "Synchronize with post categories"
305
  msgstr ""
306
 
307
- #: admin/includes/admin-categories.php:63
308
  #, php-format
309
  msgid "%1$s categories modified (%2$s)"
310
  msgstr ""
311
 
312
- #: admin/includes/admin-categories.php:64
313
  #, php-format
314
  msgid "%1$s categories added (%2$s)"
315
  msgstr ""
316
 
317
- #: admin/includes/admin-categories.php:65
318
  #, php-format
319
  msgid "%1$s categories deleted (%2$s)"
320
  msgstr ""
321
 
322
- #: admin/includes/admin-categories.php:67
323
  #, php-format
324
  msgid "%1$s categories not modified (%2$s)"
325
  msgstr ""
326
 
327
- #: admin/includes/admin-categories.php:68
328
  #, php-format
329
  msgid "%1$s categories not added (%2$s)"
330
  msgstr ""
331
 
332
- #: admin/includes/admin-categories.php:69
333
  #, php-format
334
  msgid "%1$s categories not deleted (%2$s)"
335
  msgstr ""
336
 
337
- #: admin/includes/admin-categories.php:72
338
  msgid "An Error occured during the category sync"
339
  msgstr ""
340
 
341
- #: admin/includes/admin-categories.php:75
342
  msgid "Category sync finished"
343
  msgstr ""
344
 
345
- #: admin/includes/admin-category-sync.php:54
346
  msgid "Error: You are not allowed to view this page!"
347
  msgstr ""
348
 
349
- #: admin/includes/admin-category-sync.php:70
350
  msgid "Affected Categories when switching to seperate Event Categories"
351
  msgstr ""
352
 
353
- #: admin/includes/admin-category-sync.php:71
354
  msgid "Switch option to seperate Event Categories"
355
  msgstr ""
356
 
357
- #: admin/includes/admin-category-sync.php:72
358
  msgid ""
359
  "If you proceed, all post categories will be copied and all events will be "
360
  "re-assigned to this new categories."
361
  msgstr ""
362
 
363
- #: admin/includes/admin-category-sync.php:73
364
  msgid ""
365
  "Afterwards the event categories are independent of the post categories."
366
  msgstr ""
367
 
368
- #: admin/includes/admin-category-sync.php:75
369
  msgid "Affected Categories when switching to use Post Categories for events"
370
  msgstr ""
371
 
372
- #: admin/includes/admin-category-sync.php:76
373
  msgid "Switch option to use Post Categories for events"
374
  msgstr ""
375
 
376
- #: admin/includes/admin-category-sync.php:77
377
  msgid ""
378
  "Take a detailed look at the affected categories above before you proceed! "
379
  "All seperate event categories will be deleted, this cannot be undone!"
380
  msgstr ""
381
 
382
- #: admin/includes/admin-category-sync.php:79
383
  msgid "Event Categories: Synchronise with Post Categories"
384
  msgstr ""
385
 
386
- #: admin/includes/admin-category-sync.php:80
387
  msgid "Start synchronisation"
388
  msgstr ""
389
 
390
- #: admin/includes/admin-category-sync.php:81
391
  msgid ""
392
  "If this option is enabled the above listed categories will be deleted and "
393
  "removed from the existing events!"
394
  msgstr ""
395
 
396
- #: admin/includes/admin-category-sync.php:96
397
  msgid "Categories to modify"
398
  msgstr ""
399
 
400
- #: admin/includes/admin-category-sync.php:97
401
  msgid "Categories to add"
402
  msgstr ""
403
 
404
- #: admin/includes/admin-category-sync.php:98
405
  msgid "Categories to delete (optional)"
406
  msgstr ""
407
 
408
- #: admin/includes/admin-category-sync.php:99
409
  msgid "Delete not available post categories"
410
  msgstr ""
411
 
412
- #: admin/includes/admin-category-sync.php:102
413
  msgid "Categories with differences"
414
  msgstr ""
415
 
416
- #: admin/includes/admin-category-sync.php:103
417
  msgid "Categories to add (optional)"
418
  msgstr ""
419
 
420
- #: admin/includes/admin-category-sync.php:104
421
  msgid "Add not available post categories"
422
  msgstr ""
423
 
424
- #: admin/includes/admin-category-sync.php:123
425
  msgid "none"
426
  msgstr ""
427
 
428
- #: admin/includes/admin-import.php:58
429
  msgid "Import Events"
430
  msgstr ""
431
 
432
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
433
- #: admin/includes/admin-import.php:220
434
  msgid "Step"
435
  msgstr ""
436
 
437
- #: admin/includes/admin-import.php:79
438
  msgid "Set import file and options"
439
  msgstr ""
440
 
441
- #: admin/includes/admin-import.php:82
442
  #, php-format
443
  msgid "Proceed with Step %1$s"
444
  msgstr ""
445
 
446
- #: admin/includes/admin-import.php:85
447
  msgid "Example file"
448
  msgstr ""
449
 
450
- #: admin/includes/admin-import.php:86
451
  #, php-format
452
  msgid ""
453
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
454
  msgstr ""
455
 
456
- #: admin/includes/admin-import.php:87
457
  msgid "Note"
458
  msgstr ""
459
 
460
- #: admin/includes/admin-import.php:87
461
  msgid ""
462
  "Do not change the column header and separator line (first two lines), "
463
  "otherwise the import will fail!"
464
  msgstr ""
465
 
466
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
467
  msgid "Sorry, there has been an error."
468
  msgstr ""
469
 
470
- #: admin/includes/admin-import.php:96
471
  msgid "The file does not exist, please try again."
472
  msgstr ""
473
 
474
- #: admin/includes/admin-import.php:104
475
  msgid "The uploaded file does not have the required csv extension."
476
  msgstr ""
477
 
478
- #: admin/includes/admin-import.php:116
479
  msgid "Events review and additonal category selection"
480
  msgstr ""
481
 
482
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
483
  msgid "Error"
484
  msgstr ""
485
 
486
- #: admin/includes/admin-import.php:122
487
  msgid "This CSV file cannot be imported"
488
  msgstr ""
489
 
490
- #: admin/includes/admin-import.php:133
491
  msgid "None of the events in this CSV file can be imported"
492
  msgstr ""
493
 
494
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
495
  msgid "Warning"
496
  msgstr ""
497
 
498
- #: admin/includes/admin-import.php:138
499
  #, php-format
500
  msgid "There is %1$s event which cannot be imported"
501
  msgid_plural "There are %1$s events which cannot be imported"
502
  msgstr[0] ""
503
 
504
- #: admin/includes/admin-import.php:150
505
  #, php-format
506
  msgid "CSV line %1$s"
507
  msgstr ""
508
 
509
- #: admin/includes/admin-import.php:160
510
  msgid "You can still import all other events listed below."
511
  msgstr ""
512
 
513
- #: admin/includes/admin-import.php:179
514
  msgid ""
515
  "The following category slugs are not available and will be removed from the "
516
  "imported events"
517
  msgstr ""
518
 
519
- #: admin/includes/admin-import.php:185
520
  msgid ""
521
  "If you want to keep these categories, please create these Categories first "
522
  "and do the import afterwards."
523
  msgstr ""
524
 
525
- #: admin/includes/admin-import.php:220
526
  msgid "Import result"
527
  msgstr ""
528
 
529
- #: admin/includes/admin-import.php:223
530
  #, php-format
531
  msgid "Import of %1$s events successful!"
532
  msgstr ""
533
 
534
- #: admin/includes/admin-import.php:224
535
  msgid "Go back to All Events"
536
  msgstr ""
537
 
538
- #: admin/includes/admin-import.php:227
539
  msgid "Errors during Import"
540
  msgstr ""
541
 
542
- #: admin/includes/admin-import.php:235
543
  msgid "Event from CSV-line"
544
  msgstr ""
545
 
546
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
547
  #: includes/widget_helptexts.php:9
548
  msgid "Title"
549
  msgstr ""
550
 
551
- #: admin/includes/admin-import.php:248
552
  msgid "Start Date"
553
  msgstr ""
554
 
555
- #: admin/includes/admin-import.php:249
556
  msgid "End Date"
557
  msgstr ""
558
 
559
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
560
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
561
  msgid "Time"
562
  msgstr ""
563
 
564
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
565
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
566
  #: includes/options_helptexts.php:76
567
  msgid "Location"
568
  msgstr ""
569
 
570
- #: admin/includes/admin-import.php:252
571
  msgid "Content"
572
  msgstr ""
573
 
574
- #: admin/includes/admin-import.php:253
575
  msgid "Category slugs"
576
  msgstr ""
577
 
578
- #: admin/includes/admin-import.php:297
579
  msgid "Header line is missing or not correct!"
580
  msgstr ""
581
 
582
- #: admin/includes/admin-import.php:298
583
  #, php-format
584
  msgid ""
585
  "Have a look at the %1$sexample file%2$s to see the correct header line "
586
  "format."
587
  msgstr ""
588
 
589
- #: admin/includes/admin-import.php:305
590
  #, php-format
591
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
592
  msgstr ""
593
 
594
- #: admin/includes/admin-import.php:334
595
  msgid "Empty event title found"
596
  msgstr ""
597
 
598
- #: admin/includes/admin-import.php:340
599
  msgid "Wrong date format for startdate"
600
  msgstr ""
601
 
602
- #: admin/includes/admin-import.php:348
603
  msgid "Wrong date format for enddate"
604
  msgstr ""
605
 
606
- #: admin/includes/admin-import.php:401
607
  msgid "Import events"
608
  msgstr ""
609
 
610
- #: admin/includes/admin-import.php:402
611
  msgid "Add additional categories"
612
  msgstr ""
613
 
614
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
615
- msgid "Import"
616
- msgstr ""
617
-
618
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
619
  msgid "No events found"
620
  msgstr ""
621
 
622
- #: admin/includes/admin-import.php:473
623
  msgid "Saving of event failed!"
624
  msgstr ""
625
 
626
- #: admin/includes/admin-main.php:76
627
  msgid "Event Date"
628
  msgstr ""
629
 
630
- #: admin/includes/admin-main.php:80
631
  msgid "Author"
632
  msgstr ""
633
 
634
- #: admin/includes/admin-main.php:148
635
  #, php-format
636
  msgid "Add a copy of %1$s"
637
  msgstr ""
638
 
639
- #: admin/includes/admin-main.php:148
640
  msgid "Copy"
641
  msgstr ""
642
 
643
- #: admin/includes/admin-new.php:58
 
 
 
 
644
  msgid "Event data"
645
  msgstr ""
646
 
647
- #: admin/includes/admin-new.php:90
648
  msgid "Add Copy"
649
  msgstr ""
650
 
651
- #: admin/includes/admin-new.php:98
652
  msgid "Date"
653
  msgstr ""
654
 
655
- #: admin/includes/admin-new.php:98
656
  msgid "required"
657
  msgstr ""
658
 
659
- #: admin/includes/admin-new.php:101
660
  msgid "Multi-Day Event"
661
  msgstr ""
662
 
663
- #: admin/includes/admin-new.php:121
664
  msgid "Event Title"
665
  msgstr ""
666
 
667
- #: admin/includes/admin-new.php:137
668
  msgid "Event Content"
669
  msgstr ""
670
 
671
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
672
  msgid "Event updated."
673
  msgstr ""
674
 
675
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
676
  msgid "View event"
677
  msgstr ""
678
 
679
- #: admin/includes/admin-new.php:204
680
  #, php-format
681
  msgid "Event restored to revision from %1$s"
682
  msgstr ""
683
 
684
- #: admin/includes/admin-new.php:205
685
  msgid "Event published."
686
  msgstr ""
687
 
688
- #: admin/includes/admin-new.php:207
 
 
 
 
689
  msgid "Event submitted."
690
  msgstr ""
691
 
692
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
693
- #: admin/includes/admin-new.php:210
694
  msgid "Preview event"
695
  msgstr ""
696
 
697
- #: admin/includes/admin-new.php:208
698
  #, php-format
699
  msgid "Event scheduled for: %1$s>"
700
  msgstr ""
701
 
702
- #: admin/includes/admin-new.php:210
703
  msgid "Event draft updated."
704
  msgstr ""
705
 
706
- #: admin/includes/admin-settings.php:79
707
  msgid "Go to Event Category switching page"
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:93
711
  msgid "Frontend Settings"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:94
715
  msgid "Admin Page Settings"
716
  msgstr ""
717
 
718
- #: admin/includes/admin-settings.php:95
719
  msgid "Feed Settings"
720
  msgstr ""
721
 
722
- #: admin/includes/admin-settings.php:96
723
  msgid "Category Taxonomy"
724
  msgstr ""
725
 
@@ -727,255 +731,255 @@ msgstr ""
727
  msgid "Year"
728
  msgstr ""
729
 
730
- #: includes/daterange_helptexts.php:9
731
  msgid "A year can be specified in 4 digit format."
732
  msgstr ""
733
 
734
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
735
- #: includes/daterange_helptexts.php:47
736
  #, php-format
737
  msgid ""
738
  "For a start date filter the first day of %1$s is used, in an end date the "
739
  "last day."
740
  msgstr ""
741
 
742
- #: includes/daterange_helptexts.php:10
743
  msgid "the resulting year"
744
  msgstr ""
745
 
746
- #: includes/daterange_helptexts.php:15
747
  msgid "Month"
748
  msgstr ""
749
 
750
- #: includes/daterange_helptexts.php:16
751
  msgid ""
752
  "A month can be specified with 4 digits for the year and 2 digits for the "
753
  "month, seperated by a hyphen (-)."
754
  msgstr ""
755
 
756
- #: includes/daterange_helptexts.php:17
757
  msgid "the resulting month"
758
  msgstr ""
759
 
760
- #: includes/daterange_helptexts.php:22
761
  msgid "Day"
762
  msgstr ""
763
 
764
- #: includes/daterange_helptexts.php:23
765
  msgid ""
766
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
767
  " month and 2 digets for the day, seperated by hyphens (-)."
768
  msgstr ""
769
 
770
- #: includes/daterange_helptexts.php:28
771
  msgid "Relative Year"
772
  msgstr ""
773
 
774
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
775
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
776
  #, php-format
777
  msgid "%1$s from now can be specified in the following notation: %2$s"
778
  msgstr ""
779
 
780
- #: includes/daterange_helptexts.php:29
781
  msgid "A relative year"
782
  msgstr ""
783
 
784
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
785
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
786
  #, php-format
787
  msgid ""
788
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
789
  "%3$s or %4$s attached (see also the example below)."
790
  msgstr ""
791
 
792
- #: includes/daterange_helptexts.php:30
793
  msgid "number of years"
794
  msgstr ""
795
 
796
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
797
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
798
  #, php-format
799
  msgid "Additionally the following values are available: %1$s"
800
  msgstr ""
801
 
802
- #: includes/daterange_helptexts.php:36
803
  msgid "Relative Month"
804
  msgstr ""
805
 
806
- #: includes/daterange_helptexts.php:37
807
  msgid "A relative month"
808
  msgstr ""
809
 
810
- #: includes/daterange_helptexts.php:38
811
  msgid "number of months"
812
  msgstr ""
813
 
814
- #: includes/daterange_helptexts.php:44
815
  msgid "Relative Week"
816
  msgstr ""
817
 
818
- #: includes/daterange_helptexts.php:45
819
  msgid "A relative week"
820
  msgstr ""
821
 
822
- #: includes/daterange_helptexts.php:46
823
  msgid "number of weeks"
824
  msgstr ""
825
 
826
- #: includes/daterange_helptexts.php:47
827
  msgid "the resulting week"
828
  msgstr ""
829
 
830
- #: includes/daterange_helptexts.php:48
831
  #, php-format
832
  msgid ""
833
  "The first day of the week is depending on the option %1$s which can be found"
834
  " and changed in %2$s."
835
  msgstr ""
836
 
837
- #: includes/daterange_helptexts.php:54
838
  msgid "Relative Day"
839
  msgstr ""
840
 
841
- #: includes/daterange_helptexts.php:55
842
  msgid "A relative day"
843
  msgstr ""
844
 
845
- #: includes/daterange_helptexts.php:56
846
  msgid "number of days"
847
  msgstr ""
848
 
849
- #: includes/daterange_helptexts.php:64
850
  msgid "Date range"
851
  msgstr ""
852
 
853
- #: includes/daterange_helptexts.php:66
854
  msgid ""
855
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
856
- "\t For the start and end date any available date format can be used."
857
  msgstr ""
858
 
859
- #: includes/daterange_helptexts.php:75
860
  msgid "This value defines a range without any limits."
861
  msgstr ""
862
 
863
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
864
- #: includes/daterange_helptexts.php:90
865
  #, php-format
866
  msgid "The corresponding date_range format is: %1$s"
867
  msgstr ""
868
 
869
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
870
  msgid "Upcoming"
871
  msgstr ""
872
 
873
- #: includes/daterange_helptexts.php:82
874
  msgid "This value defines a range from the actual day to the future."
875
  msgstr ""
876
 
877
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
878
  msgid "Past"
879
  msgstr ""
880
 
881
- #: includes/daterange_helptexts.php:89
882
  msgid "This value defines a range from the past to the previous day."
883
  msgstr ""
884
 
885
- #: includes/event.php:124
886
  msgid "No valid start date provided"
887
  msgstr ""
888
 
889
- #: includes/event.php:299 includes/event.php:301
890
- #: includes/sc_event-list.php:298
891
  msgid "read more"
892
  msgstr ""
893
 
894
- #: includes/events_post_type.php:69
895
  msgid "Events"
896
  msgstr "Acara"
897
 
898
- #: includes/events_post_type.php:70
899
  msgid "Event"
900
  msgstr ""
901
 
902
- #: includes/events_post_type.php:71
903
  msgid "Add New"
904
  msgstr "Tambah Baru"
905
 
906
- #: includes/events_post_type.php:72
907
  msgid "Add New Event"
908
  msgstr "Tambah Acara Baru"
909
 
910
- #: includes/events_post_type.php:73
911
  msgid "Edit Event"
912
  msgstr ""
913
 
914
- #: includes/events_post_type.php:74
915
  msgid "New Event"
916
  msgstr ""
917
 
918
- #: includes/events_post_type.php:75
919
  msgid "View Event"
920
  msgstr ""
921
 
922
- #: includes/events_post_type.php:76
923
  msgid "View Events"
924
  msgstr ""
925
 
926
- #: includes/events_post_type.php:77
927
  msgid "Search Events"
928
  msgstr ""
929
 
930
- #: includes/events_post_type.php:79
931
  msgid "No events found in Trash"
932
  msgstr ""
933
 
934
- #: includes/events_post_type.php:81
935
  msgid "All Events"
936
  msgstr "Semua Acara"
937
 
938
- #: includes/events_post_type.php:82
939
  msgid "Event Archives"
940
  msgstr ""
941
 
942
- #: includes/events_post_type.php:83
943
  msgid "Event Attributes"
944
  msgstr ""
945
 
946
- #: includes/events_post_type.php:84
947
  msgid "Insert into event"
948
  msgstr ""
949
 
950
- #: includes/events_post_type.php:85
951
  msgid "Uploaded to this event"
952
  msgstr ""
953
 
954
- #: includes/events_post_type.php:86
955
  msgid "Event List"
956
  msgstr "Daftar Acara"
957
 
958
- #: includes/events_post_type.php:87
959
  msgid "Filter events list"
960
  msgstr ""
961
 
962
- #: includes/events_post_type.php:88
963
  msgid "Events list navigation"
964
  msgstr ""
965
 
966
- #: includes/events_post_type.php:89
967
  msgid "Events list"
968
  msgstr ""
969
 
970
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
971
  msgid "Reset"
972
  msgstr ""
973
 
974
- #: includes/filterbar.php:296
975
  msgid "All"
976
  msgstr ""
977
 
978
- #: includes/filterbar.php:298
979
  msgid "All Dates"
980
  msgstr ""
981
 
@@ -1415,23 +1419,23 @@ msgid ""
1415
  " switching page from here."
1416
  msgstr ""
1417
 
1418
- #: includes/options.php:73
1419
  msgid "events"
1420
  msgstr ""
1421
 
1422
- #: includes/options.php:77
1423
  msgid "Show content"
1424
  msgstr ""
1425
 
1426
- #: includes/options.php:81
1427
  msgid "Hide content"
1428
  msgstr ""
1429
 
1430
- #: includes/sc_event-list_helptexts.php:8
1431
  msgid "event-id"
1432
  msgstr ""
1433
 
1434
- #: includes/sc_event-list_helptexts.php:9
1435
  #, php-format
1436
  msgid ""
1437
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1439,107 +1443,108 @@ msgid ""
1439
  "this event is shown."
1440
  msgstr ""
1441
 
1442
- #: includes/sc_event-list_helptexts.php:13
1443
- #: includes/sc_event-list_helptexts.php:31
1444
  msgid "year"
1445
  msgstr ""
1446
 
1447
- #: includes/sc_event-list_helptexts.php:14
1448
  msgid ""
1449
  "This attribute defines which events are initially shown. The default is to "
1450
  "show the upcoming events only."
1451
  msgstr ""
1452
 
1453
- #: includes/sc_event-list_helptexts.php:15
1454
  #, php-format
1455
  msgid ""
1456
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1457
  "change the displayed event date range via the filterbar or url parameters."
1458
  msgstr ""
1459
 
1460
- #: includes/sc_event-list_helptexts.php:19
1461
  msgid "category slug"
1462
  msgstr ""
1463
 
1464
- #: includes/sc_event-list_helptexts.php:20
1465
  msgid ""
1466
  "This attribute defines the category of which events are initially shown. The"
1467
  " default is to show events of all categories."
1468
  msgstr ""
1469
 
1470
- #: includes/sc_event-list_helptexts.php:21
1471
  msgid ""
1472
  "Provide a category slug to change this behavior. It is still possible to "
1473
  "change the displayed categories via the filterbar or url parameters."
1474
  msgstr ""
1475
 
1476
- #: includes/sc_event-list_helptexts.php:26
1477
  msgid "This attribute defines the initial order of the events."
1478
  msgstr ""
1479
 
1480
- #: includes/sc_event-list_helptexts.php:27
 
1481
  msgid ""
1482
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1483
  "in the opposite direction (from new to old)."
1484
  msgstr ""
1485
 
1486
- #: includes/sc_event-list_helptexts.php:32
1487
  #, php-format
1488
  msgid ""
1489
  "This attribute defines the dates and date ranges of which events are "
1490
  "displayed. The default is %1$s to show all events."
1491
  msgstr ""
1492
 
1493
- #: includes/sc_event-list_helptexts.php:33
1494
  #, php-format
1495
  msgid ""
1496
  "Filtered events according to %1$s value are not available in the event list."
1497
  msgstr ""
1498
 
1499
- #: includes/sc_event-list_helptexts.php:34
1500
  #, php-format
1501
  msgid ""
1502
  "You can find all available values with a description and examples in the "
1503
  "sections %1$s and %2$s below."
1504
  msgstr ""
1505
 
1506
- #: includes/sc_event-list_helptexts.php:35
1507
  #, php-format
1508
  msgid "See %1$s description if you want to define complex filters."
1509
  msgstr ""
1510
 
1511
- #: includes/sc_event-list_helptexts.php:39
1512
  msgid "category slugs"
1513
  msgstr ""
1514
 
1515
- #: includes/sc_event-list_helptexts.php:40
1516
  msgid ""
1517
  "This attribute defines the category filter which filters the events to show."
1518
  " The default is $1$s or an empty string to show all events."
1519
  msgstr ""
1520
 
1521
- #: includes/sc_event-list_helptexts.php:41
1522
  #, php-format
1523
  msgid ""
1524
  "Events with categories that doesn´t match %1$s are not shown in the event "
1525
  "list. They are also not available if a manual url parameter is added."
1526
  msgstr ""
1527
 
1528
- #: includes/sc_event-list_helptexts.php:42
1529
  #, php-format
1530
  msgid ""
1531
  "The filter is specified via the given category slugs. See %1$s description "
1532
  "if you want to define complex filters."
1533
  msgstr ""
1534
 
1535
- #: includes/sc_event-list_helptexts.php:46
1536
- #: includes/sc_event-list_helptexts.php:111
1537
- #: includes/sc_event-list_helptexts.php:138
1538
- #: includes/sc_event-list_helptexts.php:177
1539
  msgid "number"
1540
  msgstr ""
1541
 
1542
- #: includes/sc_event-list_helptexts.php:47
1543
  #, php-format
1544
  msgid ""
1545
  "This attribute defines how many events should be displayed if upcoming "
@@ -1547,109 +1552,109 @@ msgid ""
1547
  "displayed."
1548
  msgstr ""
1549
 
1550
- #: includes/sc_event-list_helptexts.php:48
1551
  msgid ""
1552
  "Please not that in the actual version there is no pagination of the events "
1553
  "available, so the event list can be very long."
1554
  msgstr ""
1555
 
1556
- #: includes/sc_event-list_helptexts.php:53
1557
  msgid ""
1558
  "This attribute defines if the filterbar should be displayed. The filterbar "
1559
  "allows the users to specify filters for the listed events."
1560
  msgstr ""
1561
 
1562
- #: includes/sc_event-list_helptexts.php:54
1563
  #, php-format
1564
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1565
  msgstr ""
1566
 
1567
- #: includes/sc_event-list_helptexts.php:55
1568
  #, php-format
1569
  msgid ""
1570
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1571
  " in the single event view."
1572
  msgstr ""
1573
 
1574
- #: includes/sc_event-list_helptexts.php:60
1575
  #, php-format
1576
  msgid ""
1577
  "This attribute specifies the available items in the filterbar. This options "
1578
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1579
  msgstr ""
1580
 
1581
- #: includes/sc_event-list_helptexts.php:61
1582
  msgid ""
1583
  "Find below an overview of the available filterbar items and their options:"
1584
  msgstr ""
1585
 
1586
- #: includes/sc_event-list_helptexts.php:64
1587
  msgid "filterbar item"
1588
  msgstr ""
1589
 
1590
- #: includes/sc_event-list_helptexts.php:64
1591
- #: includes/sc_event-list_helptexts.php:96
1592
  msgid "description"
1593
  msgstr ""
1594
 
1595
- #: includes/sc_event-list_helptexts.php:64
1596
  msgid "item options"
1597
  msgstr ""
1598
 
1599
- #: includes/sc_event-list_helptexts.php:64
1600
  msgid "option values"
1601
  msgstr ""
1602
 
1603
- #: includes/sc_event-list_helptexts.php:64
1604
  msgid "default value"
1605
  msgstr ""
1606
 
1607
- #: includes/sc_event-list_helptexts.php:64
1608
  msgid "option description"
1609
  msgstr ""
1610
 
1611
- #: includes/sc_event-list_helptexts.php:67
1612
  msgid ""
1613
  "Show a list of all available years. Additional there are some special "
1614
  "entries available (see item options)."
1615
  msgstr ""
1616
 
1617
- #: includes/sc_event-list_helptexts.php:71
1618
- #: includes/sc_event-list_helptexts.php:82
1619
  msgid "Add an entry to show all events."
1620
  msgstr ""
1621
 
1622
- #: includes/sc_event-list_helptexts.php:73
1623
- #: includes/sc_event-list_helptexts.php:84
1624
  msgid "Add an entry to show all upcoming events."
1625
  msgstr ""
1626
 
1627
- #: includes/sc_event-list_helptexts.php:74
1628
- #: includes/sc_event-list_helptexts.php:85
1629
  msgid "Add an entry to show events in the past."
1630
  msgstr ""
1631
 
1632
- #: includes/sc_event-list_helptexts.php:75
1633
  msgid "Set descending or ascending order of year entries."
1634
  msgstr ""
1635
 
1636
- #: includes/sc_event-list_helptexts.php:78
1637
  msgid "Show a list of all available months."
1638
  msgstr ""
1639
 
1640
- #: includes/sc_event-list_helptexts.php:86
1641
  msgid "Set descending or ascending order of month entries."
1642
  msgstr ""
1643
 
1644
- #: includes/sc_event-list_helptexts.php:87
1645
  msgid "php date-formats"
1646
  msgstr ""
1647
 
1648
- #: includes/sc_event-list_helptexts.php:87
1649
  msgid "Set the displayed date format of the month entries."
1650
  msgstr ""
1651
 
1652
- #: includes/sc_event-list_helptexts.php:88
1653
  #, php-format
1654
  msgid ""
1655
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1657,65 +1662,65 @@ msgid ""
1657
  "order."
1658
  msgstr ""
1659
 
1660
- #: includes/sc_event-list_helptexts.php:88
1661
  #, php-format
1662
  msgid ""
1663
  "Specifies the displayed values and their order. The items must be seperated "
1664
  "by %1$s."
1665
  msgstr ""
1666
 
1667
- #: includes/sc_event-list_helptexts.php:89
1668
  msgid "Show a list of all available categories."
1669
  msgstr ""
1670
 
1671
- #: includes/sc_event-list_helptexts.php:89
1672
  msgid "Add an entry to show events from all categories."
1673
  msgstr ""
1674
 
1675
- #: includes/sc_event-list_helptexts.php:90
1676
  msgid "A link to reset the eventlist filter to standard."
1677
  msgstr ""
1678
 
1679
- #: includes/sc_event-list_helptexts.php:90
1680
  msgid "any text"
1681
  msgstr ""
1682
 
1683
- #: includes/sc_event-list_helptexts.php:90
1684
  msgid "Set the caption of the link."
1685
  msgstr ""
1686
 
1687
- #: includes/sc_event-list_helptexts.php:93
1688
  msgid "Find below an overview of the available filterbar display options:"
1689
  msgstr ""
1690
 
1691
- #: includes/sc_event-list_helptexts.php:96
1692
  msgid "display option"
1693
  msgstr ""
1694
 
1695
- #: includes/sc_event-list_helptexts.php:96
1696
  msgid "available for"
1697
  msgstr ""
1698
 
1699
- #: includes/sc_event-list_helptexts.php:97
1700
  #, php-format
1701
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1702
  msgstr ""
1703
 
1704
- #: includes/sc_event-list_helptexts.php:98
1705
  msgid ""
1706
  "Shows a select box where an item can be choosen. After the selection of an "
1707
  "item the page is reloaded via javascript to show the filtered events."
1708
  msgstr ""
1709
 
1710
- #: includes/sc_event-list_helptexts.php:99
1711
  msgid "Shows a simple link which can be clicked."
1712
  msgstr ""
1713
 
1714
- #: includes/sc_event-list_helptexts.php:102
1715
  msgid "Find below some declaration examples with descriptions:"
1716
  msgstr ""
1717
 
1718
- #: includes/sc_event-list_helptexts.php:104
1719
  #, php-format
1720
  msgid ""
1721
  "In this example you can see that the filterbar item and the used display "
@@ -1723,22 +1728,22 @@ msgid ""
1723
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1724
  msgstr ""
1725
 
1726
- #: includes/sc_event-list_helptexts.php:106
1727
  #, php-format
1728
  msgid ""
1729
  "In this example you can see that filterbar options can be added in brackets "
1730
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1731
  msgstr ""
1732
 
1733
- #: includes/sc_event-list_helptexts.php:106
1734
  msgid "option_name"
1735
  msgstr ""
1736
 
1737
- #: includes/sc_event-list_helptexts.php:106
1738
  msgid "value"
1739
  msgstr ""
1740
 
1741
- #: includes/sc_event-list_helptexts.php:107
1742
  #, php-format
1743
  msgid ""
1744
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1747,134 +1752,134 @@ msgid ""
1747
  "left-aligned and the reset link will be on the right side."
1748
  msgstr ""
1749
 
1750
- #: includes/sc_event-list_helptexts.php:112
1751
- #: includes/sc_event-list_helptexts.php:139
1752
  msgid ""
1753
  "This attribute specifies if the title should be truncated to the given "
1754
  "number of characters in the event list."
1755
  msgstr ""
1756
 
1757
- #: includes/sc_event-list_helptexts.php:113
1758
- #: includes/sc_event-list_helptexts.php:140
1759
  #, php-format
1760
  msgid ""
1761
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1762
  "is automatically truncated via css."
1763
  msgstr ""
1764
 
1765
- #: includes/sc_event-list_helptexts.php:114
1766
- #: includes/sc_event-list_helptexts.php:141
1767
- #: includes/sc_event-list_helptexts.php:180
1768
  msgid "This attribute has no influence if only a single event is shown."
1769
  msgstr ""
1770
 
1771
- #: includes/sc_event-list_helptexts.php:120
1772
  msgid ""
1773
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1774
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1775
- "\t With \"event_list_only\" the starttime 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:130
1779
  msgid ""
1780
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1781
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1782
- "\t With \"event_list_only\" the location 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:147
1786
  msgid ""
1787
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1788
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1789
- "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1790
  msgstr ""
1791
 
1792
- #: includes/sc_event-list_helptexts.php:157
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:167
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:178
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:179
1815
  #, php-format
1816
  msgid "With the standard value %1$s the full text is displayed."
1817
  msgstr ""
1818
 
1819
- #: includes/sc_event-list_helptexts.php:186
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:197
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"
1831
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
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:208
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"
1839
- "\t On that page you can also find some settings to modify the output.<br />\n"
1840
- "\t Choose \"false\" to never add and \"true\" to always add the link.<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 ""
1843
 
1844
- #: includes/sc_event-list_helptexts.php:220
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:231
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 ""
1858
 
1859
- #: includes/sc_event-list_helptexts.php:243
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:154
1866
  msgid "Sorry, the requested event is not available!"
1867
  msgstr ""
1868
 
1869
- #: includes/sc_event-list.php:163
1870
  msgid "Event Information:"
1871
  msgstr ""
1872
 
1873
- #: includes/sc_event-list.php:405
1874
  msgid "Link to RSS feed"
1875
  msgstr ""
1876
 
1877
- #: includes/sc_event-list.php:414
1878
  msgid "Link to iCal feed"
1879
  msgstr ""
1880
 
@@ -1907,133 +1912,133 @@ msgstr ""
1907
  msgid "Truncate event title to"
1908
  msgstr ""
1909
 
1910
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1911
- #: includes/widget_helptexts.php:93
1912
  msgid "characters"
1913
  msgstr ""
1914
 
1915
- #: includes/widget_helptexts.php:38
1916
  msgid ""
1917
  "This option defines the number of displayed characters for the event title."
1918
  msgstr ""
1919
 
1920
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1921
  #, php-format
1922
  msgid ""
1923
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1924
  "automatically truncate the text via css."
1925
  msgstr ""
1926
 
1927
- #: includes/widget_helptexts.php:46
1928
  msgid "Show event starttime"
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:48
1932
  msgid "This option defines if the event start time will be displayed."
1933
  msgstr ""
1934
 
1935
- #: includes/widget_helptexts.php:55
1936
  msgid "Show event location"
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:57
1940
  msgid "This option defines if the event location will be displayed."
1941
  msgstr ""
1942
 
1943
- #: includes/widget_helptexts.php:64
1944
  msgid "Truncate location to"
1945
  msgstr ""
1946
 
1947
- #: includes/widget_helptexts.php:66
1948
  msgid ""
1949
  "If the event location is diplayed this option defines the number of "
1950
  "displayed characters."
1951
  msgstr ""
1952
 
1953
- #: includes/widget_helptexts.php:74
1954
  msgid "Show event excerpt"
1955
  msgstr ""
1956
 
1957
- #: includes/widget_helptexts.php:76
1958
  msgid "This option defines if the event excerpt will be displayed."
1959
  msgstr ""
1960
 
1961
- #: includes/widget_helptexts.php:83
1962
  msgid "Show event content"
1963
  msgstr ""
1964
 
1965
- #: includes/widget_helptexts.php:85
1966
  msgid "This option defines if the event content will be displayed."
1967
  msgstr ""
1968
 
1969
- #: includes/widget_helptexts.php:92
1970
  msgid "Truncate content to"
1971
  msgstr ""
1972
 
1973
- #: includes/widget_helptexts.php:94
1974
  msgid ""
1975
  "If the event content are diplayed this option defines the number of diplayed"
1976
  " characters."
1977
  msgstr ""
1978
 
1979
- #: includes/widget_helptexts.php:95
1980
  #, php-format
1981
  msgid "Set this value to %1$s to view the full text."
1982
  msgstr ""
1983
 
1984
- #: includes/widget_helptexts.php:102
1985
  msgid "URL to the linked Event List page"
1986
  msgstr ""
1987
 
1988
- #: includes/widget_helptexts.php:104
1989
  msgid ""
1990
  "This option defines the url to the linked Event List page. This option is "
1991
  "required if you want to use one of the options below."
1992
  msgstr ""
1993
 
1994
- #: includes/widget_helptexts.php:111
1995
  msgid "Shortcode ID on linked page"
1996
  msgstr ""
1997
 
1998
- #: includes/widget_helptexts.php:113
1999
  msgid ""
2000
  "This option defines the shortcode-id for the Event List on the linked page. "
2001
  "Normally the standard value 1 is correct, you only have to change it if you "
2002
  "use multiple event-list shortcodes on the linked page."
2003
  msgstr ""
2004
 
2005
- #: includes/widget_helptexts.php:122
2006
  msgid ""
2007
  "With this option you can add a link to the single event page for every "
2008
  "displayed event. You have to specify the url to the page and the shortcode "
2009
  "id option if you want to use it."
2010
  msgstr ""
2011
 
2012
- #: includes/widget_helptexts.php:131
2013
  msgid ""
2014
  "With this option you can add a link to the event-list page below the "
2015
  "diplayed events. You have to specify the url to page option if you want to "
2016
  "use it."
2017
  msgstr ""
2018
 
2019
- #: includes/widget_helptexts.php:138
2020
  msgid "Caption for the link"
2021
  msgstr ""
2022
 
2023
- #: includes/widget_helptexts.php:140
2024
  msgid ""
2025
  "This option defines the text for the link to the Event List page if the "
2026
  "approriate option is selected."
2027
  msgstr ""
2028
 
2029
- #: includes/widget.php:21
2030
  msgid "With this widget a list of upcoming events can be displayed."
2031
  msgstr ""
2032
 
2033
- #: includes/widget.php:26
2034
  msgid "Upcoming events"
2035
  msgstr ""
2036
 
2037
- #: includes/widget.php:40
2038
  msgid "show events page"
2039
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
6
+ # Mohammad Rizki, 2017,2021
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
12
+ "PO-Revision-Date: 2022-02-19 17:25+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: id_ID\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
 
21
+ #: admin/admin.php:90
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
+ msgstr "Kesalahan saat menatar plugin %1$s"
25
 
26
+ #: admin/admin.php:90
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
+ msgstr "Penataran plugin %1$s berhasil "
30
 
31
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
32
  msgid "Event List Settings"
33
  msgstr "Pengaturan Daftar Acara"
34
 
35
+ #: admin/admin.php:142
36
  msgid "Settings"
37
  msgstr "Pengaturan"
38
 
39
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
40
  msgid "About Event List"
41
  msgstr "Tentang Daftar Acara"
42
 
43
+ #: admin/admin.php:146
44
  msgid "About"
45
  msgstr "Tentang"
46
 
47
+ #: admin/admin.php:170
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
+ msgstr[0] "%s Acara"
52
 
53
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
54
  msgid "General"
55
  msgstr "Umum"
56
 
57
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
58
+ #: admin/includes/admin-about.php:137
59
  msgid "Shortcode Attributes"
60
  msgstr "Atribut Kode Singkat"
61
 
62
+ #: admin/includes/admin-about.php:102
63
  msgid "Help and Instructions"
64
  msgstr "Bantuan dan Petunjuk"
65
 
66
+ #: admin/includes/admin-about.php:103
67
  #, php-format
68
  msgid "You can manage the events %1$shere%2$s"
69
  msgstr "Anda dapat mengelola acara %1$sdi sini%2$s"
70
 
71
+ #: admin/includes/admin-about.php:104
72
  msgid "To show the events on your site you have 2 possibilities"
73
  msgstr "Anda memiliki 2 pilihan dalam menampilkan acara di situs Anda"
74
 
75
+ #: admin/includes/admin-about.php:105
76
  #, php-format
77
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
78
  msgstr "Anda dapat menempatkan <strong>kode singkat</strong> %1$s di halaman atau post manapun"
79
 
80
+ #: admin/includes/admin-about.php:106
81
  #, php-format
82
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
83
  msgstr "Anda dapat menambahkan <strong>widget</strong> %1$s di bilah samping Anda"
84
 
85
+ #: admin/includes/admin-about.php:107
86
  msgid ""
87
  "The displayed events and their style can be modified with the available "
88
  "widget settings and the available attributes for the shortcode."
89
  msgstr "Acara yang ditampilkan dan gayanya dapat dimodifikasi dengan pengaturan widget dan atribut kode singkat."
90
 
91
+ #: admin/includes/admin-about.php:108
92
  #, php-format
93
  msgid ""
94
  "A list of all available shortcode attributes with their descriptions is "
95
  "available in the %1$s tab."
96
  msgstr "Daftar semua atribut kode singkat yang tersedia beserta deskripsinya dapat dilihat di tab %1$s. "
97
 
98
+ #: admin/includes/admin-about.php:109
99
  msgid "The available widget options are described in their tooltip text."
100
  msgstr "Penjelasan pilihan widget ditampilkan di teks tooltip."
101
 
102
+ #: admin/includes/admin-about.php:110
103
  #, php-format
104
  msgid ""
105
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
106
  " to insert an URL to the linked event-list page."
107
  msgstr "Jika Anda mengaktifkan pilihan tautan (%1$s atau %2$s) dalam widget, Anda harus menyisipkan URL ke halaman tautan daftar acara"
108
 
109
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
110
  msgid "Add links to the single events"
111
  msgstr "Tambah tautan ke satu acara"
112
 
113
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
114
  msgid "Add a link to the Event List page"
115
  msgstr "Tambah tautan ke laman Daftar Acara"
116
 
117
+ #: admin/includes/admin-about.php:111
118
  msgid ""
119
  "This is required because the widget does not know in which page or post the "
120
  "shortcode was included."
121
  msgstr "Hal ini diperlukan karena widget tidak tahu di halaman atau post mana kode singkat dimasukkan."
122
 
123
+ #: admin/includes/admin-about.php:112
124
  msgid ""
125
  "Additionally you have to insert the correct Shortcode id on the linked page."
126
  " This id describes which shortcode should be used on the given page or post "
127
  "if you have more than one."
128
  msgstr ""
129
 
130
+ #: admin/includes/admin-about.php:113
131
  #, php-format
132
  msgid ""
133
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
135
  "link on your linked page or post."
136
  msgstr ""
137
 
138
+ #: admin/includes/admin-about.php:114
139
  #, php-format
140
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
141
  msgstr ""
142
 
143
+ #: admin/includes/admin-about.php:116
144
  #, php-format
145
  msgid ""
146
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
147
  "want."
148
  msgstr ""
149
 
150
+ #: admin/includes/admin-about.php:116
151
  msgid "Settings page"
152
+ msgstr "Halaman pengaturan"
153
 
154
+ #: admin/includes/admin-about.php:123
155
  msgid "About the plugin author"
156
  msgstr ""
157
 
158
+ #: admin/includes/admin-about.php:125
159
  #, php-format
160
  msgid ""
161
  "This plugin is developed by %1$s, you can find more information about the "
162
  "plugin on the %2$s."
163
  msgstr ""
164
 
165
+ #: admin/includes/admin-about.php:125
166
  msgid "WordPress plugin site"
167
+ msgstr "Situs plugin WordPress"
168
 
169
+ #: admin/includes/admin-about.php:126
170
  #, php-format
171
  msgid "If you like the plugin please rate it on the %1$s."
172
  msgstr ""
173
 
174
+ #: admin/includes/admin-about.php:126
175
  msgid "WordPress plugin review site"
176
  msgstr ""
177
 
178
+ #: admin/includes/admin-about.php:127
179
  msgid ""
180
  "If you want to support the plugin I would be happy to get a small donation"
181
  msgstr ""
182
 
183
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
184
+ #: admin/includes/admin-about.php:130
185
  #, php-format
186
  msgid "Donate with %1$s"
187
  msgstr ""
188
 
189
+ #: admin/includes/admin-about.php:139
190
  msgid ""
191
  "You have the possibility to modify the output if you add some of the "
192
  "following attributes to the shortcode."
193
  msgstr ""
194
 
195
+ #: admin/includes/admin-about.php:140
196
  #, php-format
197
  msgid ""
198
  "You can combine and add as much attributes as you want. E.g. the shortcode "
199
  "including the attributes %1$s and %2$s would looks like this:"
200
  msgstr ""
201
 
202
+ #: admin/includes/admin-about.php:142
203
  msgid ""
204
  "Below you can find a list of all supported attributes with their "
205
  "descriptions and available options:"
206
  msgstr ""
207
 
208
+ #: admin/includes/admin-about.php:157
209
  msgid "Attribute name"
210
  msgstr ""
211
 
212
+ #: admin/includes/admin-about.php:158
213
  msgid "Value options"
214
  msgstr ""
215
 
216
+ #: admin/includes/admin-about.php:159
217
  msgid "Default value"
218
  msgstr ""
219
 
220
+ #: admin/includes/admin-about.php:160
221
  msgid "Description"
222
  msgstr ""
223
 
224
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
225
+ #: includes/sc_event-list_helptexts.php:91
226
  msgid "Filter Syntax"
227
  msgstr ""
228
 
229
+ #: admin/includes/admin-about.php:180
230
  msgid ""
231
  "For date and cat filters you can specify complex filters with the following "
232
  "syntax:"
233
  msgstr ""
234
 
235
+ #: admin/includes/admin-about.php:181
236
  #, php-format
237
  msgid ""
238
  "You can use %1$s and %2$s connections to define complex filters. "
239
  "Additionally you can set brackets %3$s for nested queries."
240
  msgstr ""
241
 
242
+ #: admin/includes/admin-about.php:181
243
  msgid "AND"
244
  msgstr ""
245
 
246
+ #: admin/includes/admin-about.php:181
247
  msgid "OR"
248
  msgstr ""
249
 
250
+ #: admin/includes/admin-about.php:181
251
  msgid "or"
252
  msgstr ""
253
 
254
+ #: admin/includes/admin-about.php:181
255
  msgid "and"
256
  msgstr ""
257
 
258
+ #: admin/includes/admin-about.php:182
259
  msgid "Examples for cat filters:"
260
  msgstr ""
261
 
262
+ #: admin/includes/admin-about.php:183
263
  #, php-format
264
  msgid "Show all events with category %1$s."
265
  msgstr ""
266
 
267
+ #: admin/includes/admin-about.php:184
268
  #, php-format
269
  msgid "Show all events with category %1$s or %2$s."
270
  msgstr ""
271
 
272
+ #: admin/includes/admin-about.php:185
273
  #, php-format
274
  msgid ""
275
  "Show all events with category %1$s and all events where category %2$s as "
276
  "well as %3$s is selected."
277
  msgstr ""
278
 
279
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
280
  msgid "Available Date Formats"
281
  msgstr ""
282
 
283
+ #: admin/includes/admin-about.php:192
284
  msgid "For date filters you can use the following date formats:"
285
  msgstr ""
286
 
287
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
288
  msgid "Available Date Range Formats"
289
  msgstr ""
290
 
291
+ #: admin/includes/admin-about.php:202
292
  msgid "For date filters you can use the following daterange formats:"
293
  msgstr ""
294
 
295
+ #: admin/includes/admin-about.php:215
296
  msgid "Value"
297
  msgstr ""
298
 
299
+ #: admin/includes/admin-about.php:219
300
  msgid "Example"
301
  msgstr ""
302
 
303
+ #: admin/includes/admin-categories.php:79
304
  msgid "Synchronize with post categories"
305
  msgstr ""
306
 
307
+ #: admin/includes/admin-categories.php:90
308
  #, php-format
309
  msgid "%1$s categories modified (%2$s)"
310
  msgstr ""
311
 
312
+ #: admin/includes/admin-categories.php:91
313
  #, php-format
314
  msgid "%1$s categories added (%2$s)"
315
  msgstr ""
316
 
317
+ #: admin/includes/admin-categories.php:92
318
  #, php-format
319
  msgid "%1$s categories deleted (%2$s)"
320
  msgstr ""
321
 
322
+ #: admin/includes/admin-categories.php:95
323
  #, php-format
324
  msgid "%1$s categories not modified (%2$s)"
325
  msgstr ""
326
 
327
+ #: admin/includes/admin-categories.php:96
328
  #, php-format
329
  msgid "%1$s categories not added (%2$s)"
330
  msgstr ""
331
 
332
+ #: admin/includes/admin-categories.php:97
333
  #, php-format
334
  msgid "%1$s categories not deleted (%2$s)"
335
  msgstr ""
336
 
337
+ #: admin/includes/admin-categories.php:100
338
  msgid "An Error occured during the category sync"
339
  msgstr ""
340
 
341
+ #: admin/includes/admin-categories.php:103
342
  msgid "Category sync finished"
343
  msgstr ""
344
 
345
+ #: admin/includes/admin-category-sync.php:77
346
  msgid "Error: You are not allowed to view this page!"
347
  msgstr ""
348
 
349
+ #: admin/includes/admin-category-sync.php:93
350
  msgid "Affected Categories when switching to seperate Event Categories"
351
  msgstr ""
352
 
353
+ #: admin/includes/admin-category-sync.php:94
354
  msgid "Switch option to seperate Event Categories"
355
  msgstr ""
356
 
357
+ #: admin/includes/admin-category-sync.php:95
358
  msgid ""
359
  "If you proceed, all post categories will be copied and all events will be "
360
  "re-assigned to this new categories."
361
  msgstr ""
362
 
363
+ #: admin/includes/admin-category-sync.php:96
364
  msgid ""
365
  "Afterwards the event categories are independent of the post categories."
366
  msgstr ""
367
 
368
+ #: admin/includes/admin-category-sync.php:98
369
  msgid "Affected Categories when switching to use Post Categories for events"
370
  msgstr ""
371
 
372
+ #: admin/includes/admin-category-sync.php:99
373
  msgid "Switch option to use Post Categories for events"
374
  msgstr ""
375
 
376
+ #: admin/includes/admin-category-sync.php:100
377
  msgid ""
378
  "Take a detailed look at the affected categories above before you proceed! "
379
  "All seperate event categories will be deleted, this cannot be undone!"
380
  msgstr ""
381
 
382
+ #: admin/includes/admin-category-sync.php:103
383
  msgid "Event Categories: Synchronise with Post Categories"
384
  msgstr ""
385
 
386
+ #: admin/includes/admin-category-sync.php:104
387
  msgid "Start synchronisation"
388
  msgstr ""
389
 
390
+ #: admin/includes/admin-category-sync.php:105
391
  msgid ""
392
  "If this option is enabled the above listed categories will be deleted and "
393
  "removed from the existing events!"
394
  msgstr ""
395
 
396
+ #: admin/includes/admin-category-sync.php:120
397
  msgid "Categories to modify"
398
  msgstr ""
399
 
400
+ #: admin/includes/admin-category-sync.php:121
401
  msgid "Categories to add"
402
  msgstr ""
403
 
404
+ #: admin/includes/admin-category-sync.php:122
405
  msgid "Categories to delete (optional)"
406
  msgstr ""
407
 
408
+ #: admin/includes/admin-category-sync.php:123
409
  msgid "Delete not available post categories"
410
  msgstr ""
411
 
412
+ #: admin/includes/admin-category-sync.php:126
413
  msgid "Categories with differences"
414
  msgstr ""
415
 
416
+ #: admin/includes/admin-category-sync.php:127
417
  msgid "Categories to add (optional)"
418
  msgstr ""
419
 
420
+ #: admin/includes/admin-category-sync.php:128
421
  msgid "Add not available post categories"
422
  msgstr ""
423
 
424
+ #: admin/includes/admin-category-sync.php:147
425
  msgid "none"
426
  msgstr ""
427
 
428
+ #: admin/includes/admin-import.php:91
429
  msgid "Import Events"
430
  msgstr ""
431
 
432
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
433
+ #: admin/includes/admin-import.php:254
434
  msgid "Step"
435
  msgstr ""
436
 
437
+ #: admin/includes/admin-import.php:110
438
  msgid "Set import file and options"
439
  msgstr ""
440
 
441
+ #: admin/includes/admin-import.php:113
442
  #, php-format
443
  msgid "Proceed with Step %1$s"
444
  msgstr ""
445
 
446
+ #: admin/includes/admin-import.php:116
447
  msgid "Example file"
448
  msgstr ""
449
 
450
+ #: admin/includes/admin-import.php:117
451
  #, php-format
452
  msgid ""
453
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
454
  msgstr ""
455
 
456
+ #: admin/includes/admin-import.php:118
457
  msgid "Note"
458
  msgstr ""
459
 
460
+ #: admin/includes/admin-import.php:118
461
  msgid ""
462
  "Do not change the column header and separator line (first two lines), "
463
  "otherwise the import will fail!"
464
  msgstr ""
465
 
466
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
467
  msgid "Sorry, there has been an error."
468
  msgstr ""
469
 
470
+ #: admin/includes/admin-import.php:129
471
  msgid "The file does not exist, please try again."
472
  msgstr ""
473
 
474
+ #: admin/includes/admin-import.php:138
475
  msgid "The uploaded file does not have the required csv extension."
476
  msgstr ""
477
 
478
+ #: admin/includes/admin-import.php:150
479
  msgid "Events review and additonal category selection"
480
  msgstr ""
481
 
482
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
483
  msgid "Error"
484
  msgstr ""
485
 
486
+ #: admin/includes/admin-import.php:156
487
  msgid "This CSV file cannot be imported"
488
  msgstr ""
489
 
490
+ #: admin/includes/admin-import.php:167
491
  msgid "None of the events in this CSV file can be imported"
492
  msgstr ""
493
 
494
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
495
  msgid "Warning"
496
  msgstr ""
497
 
498
+ #: admin/includes/admin-import.php:172
499
  #, php-format
500
  msgid "There is %1$s event which cannot be imported"
501
  msgid_plural "There are %1$s events which cannot be imported"
502
  msgstr[0] ""
503
 
504
+ #: admin/includes/admin-import.php:184
505
  #, php-format
506
  msgid "CSV line %1$s"
507
  msgstr ""
508
 
509
+ #: admin/includes/admin-import.php:194
510
  msgid "You can still import all other events listed below."
511
  msgstr ""
512
 
513
+ #: admin/includes/admin-import.php:213
514
  msgid ""
515
  "The following category slugs are not available and will be removed from the "
516
  "imported events"
517
  msgstr ""
518
 
519
+ #: admin/includes/admin-import.php:219
520
  msgid ""
521
  "If you want to keep these categories, please create these Categories first "
522
  "and do the import afterwards."
523
  msgstr ""
524
 
525
+ #: admin/includes/admin-import.php:254
526
  msgid "Import result"
527
  msgstr ""
528
 
529
+ #: admin/includes/admin-import.php:257
530
  #, php-format
531
  msgid "Import of %1$s events successful!"
532
  msgstr ""
533
 
534
+ #: admin/includes/admin-import.php:258
535
  msgid "Go back to All Events"
536
  msgstr ""
537
 
538
+ #: admin/includes/admin-import.php:261
539
  msgid "Errors during Import"
540
  msgstr ""
541
 
542
+ #: admin/includes/admin-import.php:269
543
  msgid "Event from CSV-line"
544
  msgstr ""
545
 
546
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
547
  #: includes/widget_helptexts.php:9
548
  msgid "Title"
549
  msgstr ""
550
 
551
+ #: admin/includes/admin-import.php:282
552
  msgid "Start Date"
553
  msgstr ""
554
 
555
+ #: admin/includes/admin-import.php:283
556
  msgid "End Date"
557
  msgstr ""
558
 
559
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
560
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
561
  msgid "Time"
562
  msgstr ""
563
 
564
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
565
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
566
  #: includes/options_helptexts.php:76
567
  msgid "Location"
568
  msgstr ""
569
 
570
+ #: admin/includes/admin-import.php:286
571
  msgid "Content"
572
  msgstr ""
573
 
574
+ #: admin/includes/admin-import.php:287
575
  msgid "Category slugs"
576
  msgstr ""
577
 
578
+ #: admin/includes/admin-import.php:333
579
  msgid "Header line is missing or not correct!"
580
  msgstr ""
581
 
582
+ #: admin/includes/admin-import.php:334
583
  #, php-format
584
  msgid ""
585
  "Have a look at the %1$sexample file%2$s to see the correct header line "
586
  "format."
587
  msgstr ""
588
 
589
+ #: admin/includes/admin-import.php:341
590
  #, php-format
591
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
592
  msgstr ""
593
 
594
+ #: admin/includes/admin-import.php:371
595
  msgid "Empty event title found"
596
  msgstr ""
597
 
598
+ #: admin/includes/admin-import.php:377
599
  msgid "Wrong date format for startdate"
600
  msgstr ""
601
 
602
+ #: admin/includes/admin-import.php:385
603
  msgid "Wrong date format for enddate"
604
  msgstr ""
605
 
606
+ #: admin/includes/admin-import.php:439
607
  msgid "Import events"
608
  msgstr ""
609
 
610
+ #: admin/includes/admin-import.php:440
611
  msgid "Add additional categories"
612
  msgstr ""
613
 
614
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
615
  msgid "No events found"
616
  msgstr ""
617
 
618
+ #: admin/includes/admin-import.php:518
619
  msgid "Saving of event failed!"
620
  msgstr ""
621
 
622
+ #: admin/includes/admin-main.php:108
623
  msgid "Event Date"
624
  msgstr ""
625
 
626
+ #: admin/includes/admin-main.php:113
627
  msgid "Author"
628
  msgstr ""
629
 
630
+ #: admin/includes/admin-main.php:182
631
  #, php-format
632
  msgid "Add a copy of %1$s"
633
  msgstr ""
634
 
635
+ #: admin/includes/admin-main.php:182
636
  msgid "Copy"
637
  msgstr ""
638
 
639
+ #: admin/includes/admin-main.php:268
640
+ msgid "Import"
641
+ msgstr ""
642
+
643
+ #: admin/includes/admin-new.php:83
644
  msgid "Event data"
645
  msgstr ""
646
 
647
+ #: admin/includes/admin-new.php:116
648
  msgid "Add Copy"
649
  msgstr ""
650
 
651
+ #: admin/includes/admin-new.php:124
652
  msgid "Date"
653
  msgstr ""
654
 
655
+ #: admin/includes/admin-new.php:124
656
  msgid "required"
657
  msgstr ""
658
 
659
+ #: admin/includes/admin-new.php:127
660
  msgid "Multi-Day Event"
661
  msgstr ""
662
 
663
+ #: admin/includes/admin-new.php:147
664
  msgid "Event Title"
665
  msgstr ""
666
 
667
+ #: admin/includes/admin-new.php:164
668
  msgid "Event Content"
669
  msgstr ""
670
 
671
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
672
  msgid "Event updated."
673
  msgstr ""
674
 
675
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
676
  msgid "View event"
677
  msgstr ""
678
 
679
+ #: admin/includes/admin-new.php:246
680
  #, php-format
681
  msgid "Event restored to revision from %1$s"
682
  msgstr ""
683
 
684
+ #: admin/includes/admin-new.php:247
685
  msgid "Event published."
686
  msgstr ""
687
 
688
+ #: admin/includes/admin-new.php:248
689
+ msgid "Event saved."
690
+ msgstr ""
691
+
692
+ #: admin/includes/admin-new.php:249
693
  msgid "Event submitted."
694
  msgstr ""
695
 
696
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
697
+ #: admin/includes/admin-new.php:253
698
  msgid "Preview event"
699
  msgstr ""
700
 
701
+ #: admin/includes/admin-new.php:251
702
  #, php-format
703
  msgid "Event scheduled for: %1$s>"
704
  msgstr ""
705
 
706
+ #: admin/includes/admin-new.php:253
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-settings.php:97
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:111
715
  msgid "Frontend Settings"
716
  msgstr ""
717
 
718
+ #: admin/includes/admin-settings.php:112
719
  msgid "Admin Page Settings"
720
  msgstr ""
721
 
722
+ #: admin/includes/admin-settings.php:113
723
  msgid "Feed Settings"
724
  msgstr ""
725
 
726
+ #: admin/includes/admin-settings.php:114
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
731
  msgid "Year"
732
  msgstr ""
733
 
734
+ #: includes/daterange_helptexts.php:10
735
  msgid "A year can be specified in 4 digit format."
736
  msgstr ""
737
 
738
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
739
+ #: includes/daterange_helptexts.php:95
740
  #, php-format
741
  msgid ""
742
  "For a start date filter the first day of %1$s is used, in an end date the "
743
  "last day."
744
  msgstr ""
745
 
746
+ #: includes/daterange_helptexts.php:13
747
  msgid "the resulting year"
748
  msgstr ""
749
 
750
+ #: includes/daterange_helptexts.php:19
751
  msgid "Month"
752
  msgstr ""
753
 
754
+ #: includes/daterange_helptexts.php:21
755
  msgid ""
756
  "A month can be specified with 4 digits for the year and 2 digits for the "
757
  "month, seperated by a hyphen (-)."
758
  msgstr ""
759
 
760
+ #: includes/daterange_helptexts.php:24
761
  msgid "the resulting month"
762
  msgstr ""
763
 
764
+ #: includes/daterange_helptexts.php:30
765
  msgid "Day"
766
  msgstr ""
767
 
768
+ #: includes/daterange_helptexts.php:31
769
  msgid ""
770
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
771
  " month and 2 digets for the day, seperated by hyphens (-)."
772
  msgstr ""
773
 
774
+ #: includes/daterange_helptexts.php:36
775
  msgid "Relative Year"
776
  msgstr ""
777
 
778
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
779
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
780
  #, php-format
781
  msgid "%1$s from now can be specified in the following notation: %2$s"
782
  msgstr ""
783
 
784
+ #: includes/daterange_helptexts.php:40
785
  msgid "A relative year"
786
  msgstr ""
787
 
788
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
789
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
790
  #, php-format
791
  msgid ""
792
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
793
  "%3$s or %4$s attached (see also the example below)."
794
  msgstr ""
795
 
796
+ #: includes/daterange_helptexts.php:46
797
  msgid "number of years"
798
  msgstr ""
799
 
800
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
801
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
802
  #, php-format
803
  msgid "Additionally the following values are available: %1$s"
804
  msgstr ""
805
 
806
+ #: includes/daterange_helptexts.php:58
807
  msgid "Relative Month"
808
  msgstr ""
809
 
810
+ #: includes/daterange_helptexts.php:62
811
  msgid "A relative month"
812
  msgstr ""
813
 
814
+ #: includes/daterange_helptexts.php:68
815
  msgid "number of months"
816
  msgstr ""
817
 
818
+ #: includes/daterange_helptexts.php:80
819
  msgid "Relative Week"
820
  msgstr ""
821
 
822
+ #: includes/daterange_helptexts.php:84
823
  msgid "A relative week"
824
  msgstr ""
825
 
826
+ #: includes/daterange_helptexts.php:90
827
  msgid "number of weeks"
828
  msgstr ""
829
 
830
+ #: includes/daterange_helptexts.php:96
831
  msgid "the resulting week"
832
  msgstr ""
833
 
834
+ #: includes/daterange_helptexts.php:99
835
  #, php-format
836
  msgid ""
837
  "The first day of the week is depending on the option %1$s which can be found"
838
  " and changed in %2$s."
839
  msgstr ""
840
 
841
+ #: includes/daterange_helptexts.php:110
842
  msgid "Relative Day"
843
  msgstr ""
844
 
845
+ #: includes/daterange_helptexts.php:114
846
  msgid "A relative day"
847
  msgstr ""
848
 
849
+ #: includes/daterange_helptexts.php:120
850
  msgid "number of days"
851
  msgstr ""
852
 
853
+ #: includes/daterange_helptexts.php:134
854
  msgid "Date range"
855
  msgstr ""
856
 
857
+ #: includes/daterange_helptexts.php:136
858
  msgid ""
859
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
860
+ "\t\t\tFor the start and end date any available date format can be used."
861
  msgstr ""
862
 
863
+ #: includes/daterange_helptexts.php:147
864
  msgid "This value defines a range without any limits."
865
  msgstr ""
866
 
867
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
868
+ #: includes/daterange_helptexts.php:171
869
  #, php-format
870
  msgid "The corresponding date_range format is: %1$s"
871
  msgstr ""
872
 
873
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
874
  msgid "Upcoming"
875
  msgstr ""
876
 
877
+ #: includes/daterange_helptexts.php:158
878
  msgid "This value defines a range from the actual day to the future."
879
  msgstr ""
880
 
881
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
882
  msgid "Past"
883
  msgstr ""
884
 
885
+ #: includes/daterange_helptexts.php:169
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
+ #: includes/event.php:157
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
893
+ #: includes/event.php:343 includes/event.php:345
894
+ #: includes/sc_event-list.php:330
895
  msgid "read more"
896
  msgstr ""
897
 
898
+ #: includes/events_post_type.php:83
899
  msgid "Events"
900
  msgstr "Acara"
901
 
902
+ #: includes/events_post_type.php:84
903
  msgid "Event"
904
  msgstr ""
905
 
906
+ #: includes/events_post_type.php:85
907
  msgid "Add New"
908
  msgstr "Tambah Baru"
909
 
910
+ #: includes/events_post_type.php:86
911
  msgid "Add New Event"
912
  msgstr "Tambah Acara Baru"
913
 
914
+ #: includes/events_post_type.php:87
915
  msgid "Edit Event"
916
  msgstr ""
917
 
918
+ #: includes/events_post_type.php:88
919
  msgid "New Event"
920
  msgstr ""
921
 
922
+ #: includes/events_post_type.php:89
923
  msgid "View Event"
924
  msgstr ""
925
 
926
+ #: includes/events_post_type.php:90
927
  msgid "View Events"
928
  msgstr ""
929
 
930
+ #: includes/events_post_type.php:91
931
  msgid "Search Events"
932
  msgstr ""
933
 
934
+ #: includes/events_post_type.php:93
935
  msgid "No events found in Trash"
936
  msgstr ""
937
 
938
+ #: includes/events_post_type.php:95
939
  msgid "All Events"
940
  msgstr "Semua Acara"
941
 
942
+ #: includes/events_post_type.php:96
943
  msgid "Event Archives"
944
  msgstr ""
945
 
946
+ #: includes/events_post_type.php:97
947
  msgid "Event Attributes"
948
  msgstr ""
949
 
950
+ #: includes/events_post_type.php:98
951
  msgid "Insert into event"
952
  msgstr ""
953
 
954
+ #: includes/events_post_type.php:99
955
  msgid "Uploaded to this event"
956
  msgstr ""
957
 
958
+ #: includes/events_post_type.php:100
959
  msgid "Event List"
960
  msgstr "Daftar Acara"
961
 
962
+ #: includes/events_post_type.php:101
963
  msgid "Filter events list"
964
  msgstr ""
965
 
966
+ #: includes/events_post_type.php:102
967
  msgid "Events list navigation"
968
  msgstr ""
969
 
970
+ #: includes/events_post_type.php:103
971
  msgid "Events list"
972
  msgstr ""
973
 
974
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
975
  msgid "Reset"
976
  msgstr ""
977
 
978
+ #: includes/filterbar.php:329
979
  msgid "All"
980
  msgstr ""
981
 
982
+ #: includes/filterbar.php:332
983
  msgid "All Dates"
984
  msgstr ""
985
 
1419
  " switching page from here."
1420
  msgstr ""
1421
 
1422
+ #: includes/options.php:92
1423
  msgid "events"
1424
  msgstr ""
1425
 
1426
+ #: includes/options.php:96
1427
  msgid "Show content"
1428
  msgstr ""
1429
 
1430
+ #: includes/options.php:100
1431
  msgid "Hide content"
1432
  msgstr ""
1433
 
1434
+ #: includes/sc_event-list_helptexts.php:20
1435
  msgid "event-id"
1436
  msgstr ""
1437
 
1438
+ #: includes/sc_event-list_helptexts.php:23
1439
  #, php-format
1440
  msgid ""
1441
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1443
  "this event is shown."
1444
  msgstr ""
1445
 
1446
+ #: includes/sc_event-list_helptexts.php:29
1447
+ #: includes/sc_event-list_helptexts.php:57
1448
  msgid "year"
1449
  msgstr ""
1450
 
1451
+ #: includes/sc_event-list_helptexts.php:31
1452
  msgid ""
1453
  "This attribute defines which events are initially shown. The default is to "
1454
  "show the upcoming events only."
1455
  msgstr ""
1456
 
1457
+ #: includes/sc_event-list_helptexts.php:33
1458
  #, php-format
1459
  msgid ""
1460
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1461
  "change the displayed event date range via the filterbar or url parameters."
1462
  msgstr ""
1463
 
1464
+ #: includes/sc_event-list_helptexts.php:39
1465
  msgid "category slug"
1466
  msgstr ""
1467
 
1468
+ #: includes/sc_event-list_helptexts.php:41
1469
  msgid ""
1470
  "This attribute defines the category of which events are initially shown. The"
1471
  " default is to show events of all categories."
1472
  msgstr ""
1473
 
1474
+ #: includes/sc_event-list_helptexts.php:42
1475
  msgid ""
1476
  "Provide a category slug to change this behavior. It is still possible to "
1477
  "change the displayed categories via the filterbar or url parameters."
1478
  msgstr ""
1479
 
1480
+ #: includes/sc_event-list_helptexts.php:48
1481
  msgid "This attribute defines the initial order of the events."
1482
  msgstr ""
1483
 
1484
+ #: includes/sc_event-list_helptexts.php:50
1485
+ #, php-format
1486
  msgid ""
1487
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1488
  "in the opposite direction (from new to old)."
1489
  msgstr ""
1490
 
1491
+ #: includes/sc_event-list_helptexts.php:60
1492
  #, php-format
1493
  msgid ""
1494
  "This attribute defines the dates and date ranges of which events are "
1495
  "displayed. The default is %1$s to show all events."
1496
  msgstr ""
1497
 
1498
+ #: includes/sc_event-list_helptexts.php:64
1499
  #, php-format
1500
  msgid ""
1501
  "Filtered events according to %1$s value are not available in the event list."
1502
  msgstr ""
1503
 
1504
+ #: includes/sc_event-list_helptexts.php:68
1505
  #, php-format
1506
  msgid ""
1507
  "You can find all available values with a description and examples in the "
1508
  "sections %1$s and %2$s below."
1509
  msgstr ""
1510
 
1511
+ #: includes/sc_event-list_helptexts.php:73
1512
  #, php-format
1513
  msgid "See %1$s description if you want to define complex filters."
1514
  msgstr ""
1515
 
1516
+ #: includes/sc_event-list_helptexts.php:79
1517
  msgid "category slugs"
1518
  msgstr ""
1519
 
1520
+ #: includes/sc_event-list_helptexts.php:82
1521
  msgid ""
1522
  "This attribute defines the category filter which filters the events to show."
1523
  " The default is $1$s or an empty string to show all events."
1524
  msgstr ""
1525
 
1526
+ #: includes/sc_event-list_helptexts.php:86
1527
  #, php-format
1528
  msgid ""
1529
  "Events with categories that doesn´t match %1$s are not shown in the event "
1530
  "list. They are also not available if a manual url parameter is added."
1531
  msgstr ""
1532
 
1533
+ #: includes/sc_event-list_helptexts.php:90
1534
  #, php-format
1535
  msgid ""
1536
  "The filter is specified via the given category slugs. See %1$s description "
1537
  "if you want to define complex filters."
1538
  msgstr ""
1539
 
1540
+ #: includes/sc_event-list_helptexts.php:96
1541
+ #: includes/sc_event-list_helptexts.php:242
1542
+ #: includes/sc_event-list_helptexts.php:276
1543
+ #: includes/sc_event-list_helptexts.php:318
1544
  msgid "number"
1545
  msgstr ""
1546
 
1547
+ #: includes/sc_event-list_helptexts.php:99
1548
  #, php-format
1549
  msgid ""
1550
  "This attribute defines how many events should be displayed if upcoming "
1552
  "displayed."
1553
  msgstr ""
1554
 
1555
+ #: includes/sc_event-list_helptexts.php:102
1556
  msgid ""
1557
  "Please not that in the actual version there is no pagination of the events "
1558
  "available, so the event list can be very long."
1559
  msgstr ""
1560
 
1561
+ #: includes/sc_event-list_helptexts.php:108
1562
  msgid ""
1563
  "This attribute defines if the filterbar should be displayed. The filterbar "
1564
  "allows the users to specify filters for the listed events."
1565
  msgstr ""
1566
 
1567
+ #: includes/sc_event-list_helptexts.php:110
1568
  #, php-format
1569
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1570
  msgstr ""
1571
 
1572
+ #: includes/sc_event-list_helptexts.php:115
1573
  #, php-format
1574
  msgid ""
1575
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1576
  " in the single event view."
1577
  msgstr ""
1578
 
1579
+ #: includes/sc_event-list_helptexts.php:125
1580
  #, php-format
1581
  msgid ""
1582
  "This attribute specifies the available items in the filterbar. This options "
1583
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1584
  msgstr ""
1585
 
1586
+ #: includes/sc_event-list_helptexts.php:128
1587
  msgid ""
1588
  "Find below an overview of the available filterbar items and their options:"
1589
  msgstr ""
1590
 
1591
+ #: includes/sc_event-list_helptexts.php:132
1592
  msgid "filterbar item"
1593
  msgstr ""
1594
 
1595
+ #: includes/sc_event-list_helptexts.php:133
1596
+ #: includes/sc_event-list_helptexts.php:206
1597
  msgid "description"
1598
  msgstr ""
1599
 
1600
+ #: includes/sc_event-list_helptexts.php:134
1601
  msgid "item options"
1602
  msgstr ""
1603
 
1604
+ #: includes/sc_event-list_helptexts.php:135
1605
  msgid "option values"
1606
  msgstr ""
1607
 
1608
+ #: includes/sc_event-list_helptexts.php:136
1609
  msgid "default value"
1610
  msgstr ""
1611
 
1612
+ #: includes/sc_event-list_helptexts.php:137
1613
  msgid "option description"
1614
  msgstr ""
1615
 
1616
+ #: includes/sc_event-list_helptexts.php:141
1617
  msgid ""
1618
  "Show a list of all available years. Additional there are some special "
1619
  "entries available (see item options)."
1620
  msgstr ""
1621
 
1622
+ #: includes/sc_event-list_helptexts.php:145
1623
+ #: includes/sc_event-list_helptexts.php:156
1624
  msgid "Add an entry to show all events."
1625
  msgstr ""
1626
 
1627
+ #: includes/sc_event-list_helptexts.php:147
1628
+ #: includes/sc_event-list_helptexts.php:158
1629
  msgid "Add an entry to show all upcoming events."
1630
  msgstr ""
1631
 
1632
+ #: includes/sc_event-list_helptexts.php:148
1633
+ #: includes/sc_event-list_helptexts.php:159
1634
  msgid "Add an entry to show events in the past."
1635
  msgstr ""
1636
 
1637
+ #: includes/sc_event-list_helptexts.php:149
1638
  msgid "Set descending or ascending order of year entries."
1639
  msgstr ""
1640
 
1641
+ #: includes/sc_event-list_helptexts.php:152
1642
  msgid "Show a list of all available months."
1643
  msgstr ""
1644
 
1645
+ #: includes/sc_event-list_helptexts.php:160
1646
  msgid "Set descending or ascending order of month entries."
1647
  msgstr ""
1648
 
1649
+ #: includes/sc_event-list_helptexts.php:163
1650
  msgid "php date-formats"
1651
  msgstr ""
1652
 
1653
+ #: includes/sc_event-list_helptexts.php:165
1654
  msgid "Set the displayed date format of the month entries."
1655
  msgstr ""
1656
 
1657
+ #: includes/sc_event-list_helptexts.php:170
1658
  #, php-format
1659
  msgid ""
1660
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1662
  "order."
1663
  msgstr ""
1664
 
1665
+ #: includes/sc_event-list_helptexts.php:179
1666
  #, php-format
1667
  msgid ""
1668
  "Specifies the displayed values and their order. The items must be seperated "
1669
  "by %1$s."
1670
  msgstr ""
1671
 
1672
+ #: includes/sc_event-list_helptexts.php:185
1673
  msgid "Show a list of all available categories."
1674
  msgstr ""
1675
 
1676
+ #: includes/sc_event-list_helptexts.php:189
1677
  msgid "Add an entry to show events from all categories."
1678
  msgstr ""
1679
 
1680
+ #: includes/sc_event-list_helptexts.php:193
1681
  msgid "A link to reset the eventlist filter to standard."
1682
  msgstr ""
1683
 
1684
+ #: includes/sc_event-list_helptexts.php:195
1685
  msgid "any text"
1686
  msgstr ""
1687
 
1688
+ #: includes/sc_event-list_helptexts.php:197
1689
  msgid "Set the caption of the link."
1690
  msgstr ""
1691
 
1692
+ #: includes/sc_event-list_helptexts.php:201
1693
  msgid "Find below an overview of the available filterbar display options:"
1694
  msgstr ""
1695
 
1696
+ #: includes/sc_event-list_helptexts.php:205
1697
  msgid "display option"
1698
  msgstr ""
1699
 
1700
+ #: includes/sc_event-list_helptexts.php:207
1701
  msgid "available for"
1702
  msgstr ""
1703
 
1704
+ #: includes/sc_event-list_helptexts.php:211
1705
  #, php-format
1706
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1707
  msgstr ""
1708
 
1709
+ #: includes/sc_event-list_helptexts.php:216
1710
  msgid ""
1711
  "Shows a select box where an item can be choosen. After the selection of an "
1712
  "item the page is reloaded via javascript to show the filtered events."
1713
  msgstr ""
1714
 
1715
+ #: includes/sc_event-list_helptexts.php:219
1716
  msgid "Shows a simple link which can be clicked."
1717
  msgstr ""
1718
 
1719
+ #: includes/sc_event-list_helptexts.php:222
1720
  msgid "Find below some declaration examples with descriptions:"
1721
  msgstr ""
1722
 
1723
+ #: includes/sc_event-list_helptexts.php:225
1724
  #, php-format
1725
  msgid ""
1726
  "In this example you can see that the filterbar item and the used display "
1728
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1729
  msgstr ""
1730
 
1731
+ #: includes/sc_event-list_helptexts.php:231
1732
  #, php-format
1733
  msgid ""
1734
  "In this example you can see that filterbar options can be added in brackets "
1735
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1736
  msgstr ""
1737
 
1738
+ #: includes/sc_event-list_helptexts.php:232
1739
  msgid "option_name"
1740
  msgstr ""
1741
 
1742
+ #: includes/sc_event-list_helptexts.php:232
1743
  msgid "value"
1744
  msgstr ""
1745
 
1746
+ #: includes/sc_event-list_helptexts.php:236
1747
  #, php-format
1748
  msgid ""
1749
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1752
  "left-aligned and the reset link will be on the right side."
1753
  msgstr ""
1754
 
1755
+ #: includes/sc_event-list_helptexts.php:244
1756
+ #: includes/sc_event-list_helptexts.php:277
1757
  msgid ""
1758
  "This attribute specifies if the title should be truncated to the given "
1759
  "number of characters in the event list."
1760
  msgstr ""
1761
 
1762
+ #: includes/sc_event-list_helptexts.php:246
1763
+ #: includes/sc_event-list_helptexts.php:278
1764
  #, php-format
1765
  msgid ""
1766
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1767
  "is automatically truncated via css."
1768
  msgstr ""
1769
 
1770
+ #: includes/sc_event-list_helptexts.php:250
1771
+ #: includes/sc_event-list_helptexts.php:279
1772
+ #: includes/sc_event-list_helptexts.php:322
1773
  msgid "This attribute has no influence if only a single event is shown."
1774
  msgstr ""
1775
 
1776
+ #: includes/sc_event-list_helptexts.php:257
1777
  msgid ""
1778
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1779
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1780
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1784
  msgid ""
1785
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1786
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1787
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1791
  msgid ""
1792
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1793
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1794
+ "\t\t\t\t\tWith \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1795
  msgstr ""
1796
 
1797
+ #: includes/sc_event-list_helptexts.php:297
1798
  msgid ""
1799
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1800
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1801
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1802
  msgstr ""
1803
 
1804
+ #: includes/sc_event-list_helptexts.php:308
1805
  msgid ""
1806
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1807
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1808
+ "\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"
1809
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1810
+ "\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)."
1811
  msgstr ""
1812
 
1813
+ #: includes/sc_event-list_helptexts.php:320
1814
  msgid ""
1815
  "This attribute specifies if the content should be truncate to the given "
1816
  "number of characters in the event list."
1817
  msgstr ""
1818
 
1819
+ #: includes/sc_event-list_helptexts.php:321
1820
  #, php-format
1821
  msgid "With the standard value %1$s the full text is displayed."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:329
1825
  msgid ""
1826
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1827
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1828
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1829
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1830
  msgstr ""
1831
 
1832
+ #: includes/sc_event-list_helptexts.php:341
1833
  msgid ""
1834
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1835
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1836
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1837
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1838
  msgstr ""
1839
 
1840
+ #: includes/sc_event-list_helptexts.php:353
1841
  msgid ""
1842
  "This attribute specifies if a rss feed link should be added.<br />\n"
1843
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1844
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1845
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1846
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1847
  msgstr ""
1848
 
1849
+ #: includes/sc_event-list_helptexts.php:366
1850
  msgid ""
1851
  "This attribute specifies if a ical feed link should be added.<br />\n"
1852
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1853
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1854
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1855
  msgstr ""
1856
 
1857
+ #: includes/sc_event-list_helptexts.php:378
1858
  msgid ""
1859
  "This attribute specifies the page or post url for event links.<br />\n"
1860
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1861
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1862
  msgstr ""
1863
 
1864
+ #: includes/sc_event-list_helptexts.php:391
1865
  msgid ""
1866
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1867
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1868
  msgstr ""
1869
 
1870
+ #: includes/sc_event-list.php:184
1871
  msgid "Sorry, the requested event is not available!"
1872
  msgstr ""
1873
 
1874
+ #: includes/sc_event-list.php:193
1875
  msgid "Event Information:"
1876
  msgstr ""
1877
 
1878
+ #: includes/sc_event-list.php:437
1879
  msgid "Link to RSS feed"
1880
  msgstr ""
1881
 
1882
+ #: includes/sc_event-list.php:447
1883
  msgid "Link to iCal feed"
1884
  msgstr ""
1885
 
1912
  msgid "Truncate event title to"
1913
  msgstr ""
1914
 
1915
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1916
+ #: includes/widget_helptexts.php:103
1917
  msgid "characters"
1918
  msgstr ""
1919
 
1920
+ #: includes/widget_helptexts.php:39
1921
  msgid ""
1922
  "This option defines the number of displayed characters for the event title."
1923
  msgstr ""
1924
 
1925
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1926
  #, php-format
1927
  msgid ""
1928
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1929
  "automatically truncate the text via css."
1930
  msgstr ""
1931
 
1932
+ #: includes/widget_helptexts.php:51
1933
  msgid "Show event starttime"
1934
  msgstr ""
1935
 
1936
+ #: includes/widget_helptexts.php:53
1937
  msgid "This option defines if the event start time will be displayed."
1938
  msgstr ""
1939
 
1940
+ #: includes/widget_helptexts.php:60
1941
  msgid "Show event location"
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:62
1945
  msgid "This option defines if the event location will be displayed."
1946
  msgstr ""
1947
 
1948
+ #: includes/widget_helptexts.php:69
1949
  msgid "Truncate location to"
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:72
1953
  msgid ""
1954
  "If the event location is diplayed this option defines the number of "
1955
  "displayed characters."
1956
  msgstr ""
1957
 
1958
+ #: includes/widget_helptexts.php:84
1959
  msgid "Show event excerpt"
1960
  msgstr ""
1961
 
1962
+ #: includes/widget_helptexts.php:86
1963
  msgid "This option defines if the event excerpt will be displayed."
1964
  msgstr ""
1965
 
1966
+ #: includes/widget_helptexts.php:93
1967
  msgid "Show event content"
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:95
1971
  msgid "This option defines if the event content will be displayed."
1972
  msgstr ""
1973
 
1974
+ #: includes/widget_helptexts.php:102
1975
  msgid "Truncate content to"
1976
  msgstr ""
1977
 
1978
+ #: includes/widget_helptexts.php:105
1979
  msgid ""
1980
  "If the event content are diplayed this option defines the number of diplayed"
1981
  " characters."
1982
  msgstr ""
1983
 
1984
+ #: includes/widget_helptexts.php:107
1985
  #, php-format
1986
  msgid "Set this value to %1$s to view the full text."
1987
  msgstr ""
1988
 
1989
+ #: includes/widget_helptexts.php:116
1990
  msgid "URL to the linked Event List page"
1991
  msgstr ""
1992
 
1993
+ #: includes/widget_helptexts.php:118
1994
  msgid ""
1995
  "This option defines the url to the linked Event List page. This option is "
1996
  "required if you want to use one of the options below."
1997
  msgstr ""
1998
 
1999
+ #: includes/widget_helptexts.php:125
2000
  msgid "Shortcode ID on linked page"
2001
  msgstr ""
2002
 
2003
+ #: includes/widget_helptexts.php:127
2004
  msgid ""
2005
  "This option defines the shortcode-id for the Event List on the linked page. "
2006
  "Normally the standard value 1 is correct, you only have to change it if you "
2007
  "use multiple event-list shortcodes on the linked page."
2008
  msgstr ""
2009
 
2010
+ #: includes/widget_helptexts.php:136
2011
  msgid ""
2012
  "With this option you can add a link to the single event page for every "
2013
  "displayed event. You have to specify the url to the page and the shortcode "
2014
  "id option if you want to use it."
2015
  msgstr ""
2016
 
2017
+ #: includes/widget_helptexts.php:145
2018
  msgid ""
2019
  "With this option you can add a link to the event-list page below the "
2020
  "diplayed events. You have to specify the url to page option if you want to "
2021
  "use it."
2022
  msgstr ""
2023
 
2024
+ #: includes/widget_helptexts.php:152
2025
  msgid "Caption for the link"
2026
  msgstr ""
2027
 
2028
+ #: includes/widget_helptexts.php:154
2029
  msgid ""
2030
  "This option defines the text for the link to the Event List page if the "
2031
  "approriate option is selected."
2032
  msgstr ""
2033
 
2034
+ #: includes/widget.php:38
2035
  msgid "With this widget a list of upcoming events can be displayed."
2036
  msgstr ""
2037
 
2038
+ #: includes/widget.php:43
2039
  msgid "Upcoming events"
2040
  msgstr ""
2041
 
2042
+ #: includes/widget.php:57
2043
  msgid "show events page"
2044
  msgstr ""
languages/event-list-it_IT.mo CHANGED
Binary file
languages/event-list-it_IT.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
12
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,117 +18,117 @@ msgstr ""
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: admin/admin.php:64
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
32
  msgid "Event List Settings"
33
  msgstr "Impostazioni Eventi Lista"
34
 
35
- #: admin/admin.php:116
36
  msgid "Settings"
37
  msgstr "Impostazioni"
38
 
39
- #: admin/admin.php:120 admin/includes/admin-about.php:43
40
  msgid "About Event List"
41
  msgstr "Informazioni su Lista Eventi"
42
 
43
- #: admin/admin.php:120
44
  msgid "About"
45
  msgstr "Informazioni su"
46
 
47
- #: admin/admin.php:144
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
55
  msgid "General"
56
  msgstr "Generico"
57
 
58
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
59
- #: admin/includes/admin-about.php:117
60
  msgid "Shortcode Attributes"
61
  msgstr "Attributi dello Shortcode"
62
 
63
- #: admin/includes/admin-about.php:82
64
  msgid "Help and Instructions"
65
  msgstr "Aiuto e Istruzioni"
66
 
67
- #: admin/includes/admin-about.php:83
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
- #: admin/includes/admin-about.php:84
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità"
75
 
76
- #: admin/includes/admin-about.php:85
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo"
80
 
81
- #: admin/includes/admin-about.php:86
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar"
85
 
86
- #: admin/includes/admin-about.php:87
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode"
91
 
92
- #: admin/includes/admin-about.php:88
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
- #: admin/includes/admin-about.php:89
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text"
102
 
103
- #: admin/includes/admin-about.php:90
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
111
  msgid "Add links to the single events"
112
  msgstr "Aggiungi link ai singoli eventi"
113
 
114
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
115
  msgid "Add a link to the Event List page"
116
  msgstr "Aggiungi un link alla pagina Elenco eventi"
117
 
118
- #: admin/includes/admin-about.php:91
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
- #: admin/includes/admin-about.php:92
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
- #: admin/includes/admin-about.php:93
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -136,592 +136,596 @@ msgid ""
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
- #: admin/includes/admin-about.php:94
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
- #: admin/includes/admin-about.php:96
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
- #: admin/includes/admin-about.php:96
152
  msgid "Settings page"
153
  msgstr ""
154
 
155
- #: admin/includes/admin-about.php:103
156
  msgid "About the plugin author"
157
  msgstr ""
158
 
159
- #: admin/includes/admin-about.php:105
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
- #: admin/includes/admin-about.php:105
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
- #: admin/includes/admin-about.php:106
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
- #: admin/includes/admin-about.php:106
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
- #: admin/includes/admin-about.php:107
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
185
- #: admin/includes/admin-about.php:110
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
- #: admin/includes/admin-about.php:119
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
195
 
196
- #: admin/includes/admin-about.php:120
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
202
 
203
- #: admin/includes/admin-about.php:122
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
208
 
209
- #: admin/includes/admin-about.php:137
210
  msgid "Attribute name"
211
  msgstr "Nome attributo"
212
 
213
- #: admin/includes/admin-about.php:138
214
  msgid "Value options"
215
  msgstr "Valore opzioni"
216
 
217
- #: admin/includes/admin-about.php:139
218
  msgid "Default value"
219
  msgstr "Valore di default"
220
 
221
- #: admin/includes/admin-about.php:140
222
  msgid "Description"
223
  msgstr "Descrizione"
224
 
225
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
226
- #: includes/sc_event-list_helptexts.php:42
227
  msgid "Filter Syntax"
228
  msgstr "Sintassi del filtro"
229
 
230
- #: admin/includes/admin-about.php:160
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr ""
235
 
236
- #: admin/includes/admin-about.php:161
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr ""
242
 
243
- #: admin/includes/admin-about.php:161
244
  msgid "AND"
245
  msgstr "E"
246
 
247
- #: admin/includes/admin-about.php:161
248
  msgid "OR"
249
  msgstr "O"
250
 
251
- #: admin/includes/admin-about.php:161
252
  msgid "or"
253
  msgstr "o"
254
 
255
- #: admin/includes/admin-about.php:161
256
  msgid "and"
257
  msgstr "e"
258
 
259
- #: admin/includes/admin-about.php:162
260
  msgid "Examples for cat filters:"
261
  msgstr "Esempio per il filtro di categorie:"
262
 
263
- #: admin/includes/admin-about.php:163
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr "Mostra tutti gli eventi aventi categoria %1$s."
267
 
268
- #: admin/includes/admin-about.php:164
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
272
 
273
- #: admin/includes/admin-about.php:165
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
279
 
280
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
281
  msgid "Available Date Formats"
282
  msgstr "Formati data disponibili"
283
 
284
- #: admin/includes/admin-about.php:172
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
287
 
288
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
289
  msgid "Available Date Range Formats"
290
  msgstr "Formati intervallo date disponibili"
291
 
292
- #: admin/includes/admin-about.php:182
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
295
 
296
- #: admin/includes/admin-about.php:195
297
  msgid "Value"
298
  msgstr "Valore"
299
 
300
- #: admin/includes/admin-about.php:199
301
  msgid "Example"
302
  msgstr "Esempio"
303
 
304
- #: admin/includes/admin-categories.php:54
305
  msgid "Synchronize with post categories"
306
  msgstr ""
307
 
308
- #: admin/includes/admin-categories.php:63
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
- #: admin/includes/admin-categories.php:64
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
- #: admin/includes/admin-categories.php:65
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
- #: admin/includes/admin-categories.php:67
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
- #: admin/includes/admin-categories.php:68
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
- #: admin/includes/admin-categories.php:69
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
- #: admin/includes/admin-categories.php:72
339
  msgid "An Error occured during the category sync"
340
  msgstr ""
341
 
342
- #: admin/includes/admin-categories.php:75
343
  msgid "Category sync finished"
344
  msgstr ""
345
 
346
- #: admin/includes/admin-category-sync.php:54
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr ""
349
 
350
- #: admin/includes/admin-category-sync.php:70
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
- #: admin/includes/admin-category-sync.php:71
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
- #: admin/includes/admin-category-sync.php:72
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
- #: admin/includes/admin-category-sync.php:73
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
- #: admin/includes/admin-category-sync.php:75
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
- #: admin/includes/admin-category-sync.php:76
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
- #: admin/includes/admin-category-sync.php:77
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
- #: admin/includes/admin-category-sync.php:79
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr ""
386
 
387
- #: admin/includes/admin-category-sync.php:80
388
  msgid "Start synchronisation"
389
  msgstr ""
390
 
391
- #: admin/includes/admin-category-sync.php:81
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
- #: admin/includes/admin-category-sync.php:96
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
- #: admin/includes/admin-category-sync.php:97
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
- #: admin/includes/admin-category-sync.php:98
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
- #: admin/includes/admin-category-sync.php:99
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
- #: admin/includes/admin-category-sync.php:102
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
- #: admin/includes/admin-category-sync.php:103
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
- #: admin/includes/admin-category-sync.php:104
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
- #: admin/includes/admin-category-sync.php:123
426
  msgid "none"
427
  msgstr ""
428
 
429
- #: admin/includes/admin-import.php:58
430
  msgid "Import Events"
431
  msgstr "Importazione Eventi"
432
 
433
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
434
- #: admin/includes/admin-import.php:220
435
  msgid "Step"
436
  msgstr "Passo"
437
 
438
- #: admin/includes/admin-import.php:79
439
  msgid "Set import file and options"
440
  msgstr "Insieme dei file e delle opzioni di importazione"
441
 
442
- #: admin/includes/admin-import.php:82
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
- #: admin/includes/admin-import.php:85
448
  msgid "Example file"
449
  msgstr "File di esempio"
450
 
451
- #: admin/includes/admin-import.php:86
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
456
 
457
- #: admin/includes/admin-import.php:87
458
  msgid "Note"
459
  msgstr "Nota"
460
 
461
- #: admin/includes/admin-import.php:87
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
466
 
467
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
468
  msgid "Sorry, there has been an error."
469
  msgstr "Siamo spiacenti, si è verificato un errore."
470
 
471
- #: admin/includes/admin-import.php:96
472
  msgid "The file does not exist, please try again."
473
  msgstr "Il file non esiste, riprova."
474
 
475
- #: admin/includes/admin-import.php:104
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
- #: admin/includes/admin-import.php:116
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
484
  msgid "Error"
485
  msgstr ""
486
 
487
- #: admin/includes/admin-import.php:122
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
- #: admin/includes/admin-import.php:133
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
496
  msgid "Warning"
497
  msgstr ""
498
 
499
- #: admin/includes/admin-import.php:138
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
- #: admin/includes/admin-import.php:150
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
- #: admin/includes/admin-import.php:160
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
- #: admin/includes/admin-import.php:179
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
- #: admin/includes/admin-import.php:185
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
- #: admin/includes/admin-import.php:220
528
  msgid "Import result"
529
  msgstr ""
530
 
531
- #: admin/includes/admin-import.php:223
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
- #: admin/includes/admin-import.php:224
537
  msgid "Go back to All Events"
538
  msgstr "Torna a Tutti gli Eventi"
539
 
540
- #: admin/includes/admin-import.php:227
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
- #: admin/includes/admin-import.php:235
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Titolo"
552
 
553
- #: admin/includes/admin-import.php:248
554
  msgid "Start Date"
555
  msgstr "Data di inizio"
556
 
557
- #: admin/includes/admin-import.php:249
558
  msgid "End Date"
559
  msgstr "Data di fine"
560
 
561
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr "Ora"
565
 
566
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
567
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr "Ubicazione"
571
 
572
- #: admin/includes/admin-import.php:252
573
  msgid "Content"
574
  msgstr ""
575
 
576
- #: admin/includes/admin-import.php:253
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
- #: admin/includes/admin-import.php:297
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
- #: admin/includes/admin-import.php:298
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
- #: admin/includes/admin-import.php:305
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
- #: admin/includes/admin-import.php:334
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
- #: admin/includes/admin-import.php:340
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
- #: admin/includes/admin-import.php:348
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
- #: admin/includes/admin-import.php:401
609
  msgid "Import events"
610
  msgstr ""
611
 
612
- #: admin/includes/admin-import.php:402
613
  msgid "Add additional categories"
614
  msgstr ""
615
 
616
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
617
- msgid "Import"
618
- msgstr "Importazione"
619
-
620
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
621
  msgid "No events found"
622
  msgstr ""
623
 
624
- #: admin/includes/admin-import.php:473
625
  msgid "Saving of event failed!"
626
  msgstr ""
627
 
628
- #: admin/includes/admin-main.php:76
629
  msgid "Event Date"
630
  msgstr ""
631
 
632
- #: admin/includes/admin-main.php:80
633
  msgid "Author"
634
  msgstr "Autore"
635
 
636
- #: admin/includes/admin-main.php:148
637
  #, php-format
638
  msgid "Add a copy of %1$s"
639
  msgstr ""
640
 
641
- #: admin/includes/admin-main.php:148
642
  msgid "Copy"
643
  msgstr ""
644
 
645
- #: admin/includes/admin-new.php:58
 
 
 
 
646
  msgid "Event data"
647
  msgstr ""
648
 
649
- #: admin/includes/admin-new.php:90
650
  msgid "Add Copy"
651
  msgstr ""
652
 
653
- #: admin/includes/admin-new.php:98
654
  msgid "Date"
655
  msgstr "Data"
656
 
657
- #: admin/includes/admin-new.php:98
658
  msgid "required"
659
  msgstr "richiesto"
660
 
661
- #: admin/includes/admin-new.php:101
662
  msgid "Multi-Day Event"
663
  msgstr "Evento multi giornaliero"
664
 
665
- #: admin/includes/admin-new.php:121
666
  msgid "Event Title"
667
  msgstr ""
668
 
669
- #: admin/includes/admin-new.php:137
670
  msgid "Event Content"
671
  msgstr ""
672
 
673
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
674
  msgid "Event updated."
675
  msgstr ""
676
 
677
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
678
  msgid "View event"
679
  msgstr ""
680
 
681
- #: admin/includes/admin-new.php:204
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
- #: admin/includes/admin-new.php:205
687
  msgid "Event published."
688
  msgstr ""
689
 
690
- #: admin/includes/admin-new.php:207
 
 
 
 
691
  msgid "Event submitted."
692
  msgstr ""
693
 
694
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
695
- #: admin/includes/admin-new.php:210
696
  msgid "Preview event"
697
  msgstr ""
698
 
699
- #: admin/includes/admin-new.php:208
700
  #, php-format
701
  msgid "Event scheduled for: %1$s>"
702
  msgstr ""
703
 
704
- #: admin/includes/admin-new.php:210
705
  msgid "Event draft updated."
706
  msgstr ""
707
 
708
- #: admin/includes/admin-settings.php:79
709
  msgid "Go to Event Category switching page"
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:93
713
  msgid "Frontend Settings"
714
  msgstr "Impostazioni interfaccia grafica"
715
 
716
- #: admin/includes/admin-settings.php:94
717
  msgid "Admin Page Settings"
718
  msgstr "Impostazioni di amministrazione"
719
 
720
- #: admin/includes/admin-settings.php:95
721
  msgid "Feed Settings"
722
  msgstr "Impostazioni Feed"
723
 
724
- #: admin/includes/admin-settings.php:96
725
  msgid "Category Taxonomy"
726
  msgstr ""
727
 
@@ -729,255 +733,255 @@ msgstr ""
729
  msgid "Year"
730
  msgstr "Anno"
731
 
732
- #: includes/daterange_helptexts.php:9
733
  msgid "A year can be specified in 4 digit format."
734
  msgstr "Un anno può essere specificato in un formato a 4 cifre."
735
 
736
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
737
- #: includes/daterange_helptexts.php:47
738
  #, php-format
739
  msgid ""
740
  "For a start date filter the first day of %1$s is used, in an end date the "
741
  "last day."
742
  msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
743
 
744
- #: includes/daterange_helptexts.php:10
745
  msgid "the resulting year"
746
  msgstr "L' anno risultante"
747
 
748
- #: includes/daterange_helptexts.php:15
749
  msgid "Month"
750
  msgstr "Mese"
751
 
752
- #: includes/daterange_helptexts.php:16
753
  msgid ""
754
  "A month can be specified with 4 digits for the year and 2 digits for the "
755
  "month, seperated by a hyphen (-)."
756
  msgstr ""
757
 
758
- #: includes/daterange_helptexts.php:17
759
  msgid "the resulting month"
760
  msgstr "Il mese risultante"
761
 
762
- #: includes/daterange_helptexts.php:22
763
  msgid "Day"
764
  msgstr "Giorno"
765
 
766
- #: includes/daterange_helptexts.php:23
767
  msgid ""
768
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
769
  " month and 2 digets for the day, seperated by hyphens (-)."
770
  msgstr "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
771
 
772
- #: includes/daterange_helptexts.php:28
773
  msgid "Relative Year"
774
  msgstr "Anno relativo"
775
 
776
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
777
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
778
  #, php-format
779
  msgid "%1$s from now can be specified in the following notation: %2$s"
780
  msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
781
 
782
- #: includes/daterange_helptexts.php:29
783
  msgid "A relative year"
784
  msgstr "Un anno relativo"
785
 
786
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
787
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
788
  #, php-format
789
  msgid ""
790
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
791
  "%3$s or %4$s attached (see also the example below)."
792
  msgstr ""
793
 
794
- #: includes/daterange_helptexts.php:30
795
  msgid "number of years"
796
  msgstr "Numero di anni"
797
 
798
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
799
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
800
  #, php-format
801
  msgid "Additionally the following values are available: %1$s"
802
  msgstr "Inoltre sono disponibili i seguenti valori: %1$s"
803
 
804
- #: includes/daterange_helptexts.php:36
805
  msgid "Relative Month"
806
  msgstr "Mese relativo"
807
 
808
- #: includes/daterange_helptexts.php:37
809
  msgid "A relative month"
810
  msgstr "Un mese relativo"
811
 
812
- #: includes/daterange_helptexts.php:38
813
  msgid "number of months"
814
  msgstr "Numero di mesi"
815
 
816
- #: includes/daterange_helptexts.php:44
817
  msgid "Relative Week"
818
  msgstr "Settimana relativa"
819
 
820
- #: includes/daterange_helptexts.php:45
821
  msgid "A relative week"
822
  msgstr "Una settimana relativa"
823
 
824
- #: includes/daterange_helptexts.php:46
825
  msgid "number of weeks"
826
  msgstr "numero di settimane"
827
 
828
- #: includes/daterange_helptexts.php:47
829
  msgid "the resulting week"
830
  msgstr "La settimana risultante"
831
 
832
- #: includes/daterange_helptexts.php:48
833
  #, php-format
834
  msgid ""
835
  "The first day of the week is depending on the option %1$s which can be found"
836
  " and changed in %2$s."
837
  msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
838
 
839
- #: includes/daterange_helptexts.php:54
840
  msgid "Relative Day"
841
  msgstr "Giorno relativo"
842
 
843
- #: includes/daterange_helptexts.php:55
844
  msgid "A relative day"
845
  msgstr "Un giorno relativo"
846
 
847
- #: includes/daterange_helptexts.php:56
848
  msgid "number of days"
849
  msgstr "Numero di giorni"
850
 
851
- #: includes/daterange_helptexts.php:64
852
  msgid "Date range"
853
  msgstr "Intervallo date"
854
 
855
- #: includes/daterange_helptexts.php:66
856
  msgid ""
857
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
858
- "\t For the start and end date any available date format can be used."
859
  msgstr ""
860
 
861
- #: includes/daterange_helptexts.php:75
862
  msgid "This value defines a range without any limits."
863
  msgstr ""
864
 
865
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
866
- #: includes/daterange_helptexts.php:90
867
  #, php-format
868
  msgid "The corresponding date_range format is: %1$s"
869
  msgstr "Il corrispondente formato intervallo date è: %1$s"
870
 
871
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
872
  msgid "Upcoming"
873
  msgstr "Prossimi"
874
 
875
- #: includes/daterange_helptexts.php:82
876
  msgid "This value defines a range from the actual day to the future."
877
  msgstr ""
878
 
879
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
880
  msgid "Past"
881
  msgstr "Passati"
882
 
883
- #: includes/daterange_helptexts.php:89
884
  msgid "This value defines a range from the past to the previous day."
885
  msgstr ""
886
 
887
- #: includes/event.php:124
888
  msgid "No valid start date provided"
889
  msgstr ""
890
 
891
- #: includes/event.php:299 includes/event.php:301
892
- #: includes/sc_event-list.php:298
893
  msgid "read more"
894
  msgstr ""
895
 
896
- #: includes/events_post_type.php:69
897
  msgid "Events"
898
  msgstr "Eventi"
899
 
900
- #: includes/events_post_type.php:70
901
  msgid "Event"
902
  msgstr ""
903
 
904
- #: includes/events_post_type.php:71
905
  msgid "Add New"
906
  msgstr "Aggiungi nuovo"
907
 
908
- #: includes/events_post_type.php:72
909
  msgid "Add New Event"
910
  msgstr "Aggiungi un nuovo evento"
911
 
912
- #: includes/events_post_type.php:73
913
  msgid "Edit Event"
914
  msgstr "Modifica Evento"
915
 
916
- #: includes/events_post_type.php:74
917
  msgid "New Event"
918
  msgstr ""
919
 
920
- #: includes/events_post_type.php:75
921
  msgid "View Event"
922
  msgstr ""
923
 
924
- #: includes/events_post_type.php:76
925
  msgid "View Events"
926
  msgstr ""
927
 
928
- #: includes/events_post_type.php:77
929
  msgid "Search Events"
930
  msgstr ""
931
 
932
- #: includes/events_post_type.php:79
933
  msgid "No events found in Trash"
934
  msgstr ""
935
 
936
- #: includes/events_post_type.php:81
937
  msgid "All Events"
938
  msgstr "Tutti gli eventi"
939
 
940
- #: includes/events_post_type.php:82
941
  msgid "Event Archives"
942
  msgstr ""
943
 
944
- #: includes/events_post_type.php:83
945
  msgid "Event Attributes"
946
  msgstr ""
947
 
948
- #: includes/events_post_type.php:84
949
  msgid "Insert into event"
950
  msgstr ""
951
 
952
- #: includes/events_post_type.php:85
953
  msgid "Uploaded to this event"
954
  msgstr ""
955
 
956
- #: includes/events_post_type.php:86
957
  msgid "Event List"
958
  msgstr "Lista Eventi"
959
 
960
- #: includes/events_post_type.php:87
961
  msgid "Filter events list"
962
  msgstr ""
963
 
964
- #: includes/events_post_type.php:88
965
  msgid "Events list navigation"
966
  msgstr ""
967
 
968
- #: includes/events_post_type.php:89
969
  msgid "Events list"
970
  msgstr ""
971
 
972
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
973
  msgid "Reset"
974
  msgstr ""
975
 
976
- #: includes/filterbar.php:296
977
  msgid "All"
978
  msgstr "Tutti"
979
 
980
- #: includes/filterbar.php:298
981
  msgid "All Dates"
982
  msgstr ""
983
 
@@ -1417,23 +1421,23 @@ msgid ""
1417
  " switching page from here."
1418
  msgstr ""
1419
 
1420
- #: includes/options.php:73
1421
  msgid "events"
1422
  msgstr ""
1423
 
1424
- #: includes/options.php:77
1425
  msgid "Show content"
1426
  msgstr ""
1427
 
1428
- #: includes/options.php:81
1429
  msgid "Hide content"
1430
  msgstr ""
1431
 
1432
- #: includes/sc_event-list_helptexts.php:8
1433
  msgid "event-id"
1434
  msgstr ""
1435
 
1436
- #: includes/sc_event-list_helptexts.php:9
1437
  #, php-format
1438
  msgid ""
1439
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1441,107 +1445,108 @@ msgid ""
1441
  "this event is shown."
1442
  msgstr ""
1443
 
1444
- #: includes/sc_event-list_helptexts.php:13
1445
- #: includes/sc_event-list_helptexts.php:31
1446
  msgid "year"
1447
  msgstr ""
1448
 
1449
- #: includes/sc_event-list_helptexts.php:14
1450
  msgid ""
1451
  "This attribute defines which events are initially shown. The default is to "
1452
  "show the upcoming events only."
1453
  msgstr ""
1454
 
1455
- #: includes/sc_event-list_helptexts.php:15
1456
  #, php-format
1457
  msgid ""
1458
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1459
  "change the displayed event date range via the filterbar or url parameters."
1460
  msgstr ""
1461
 
1462
- #: includes/sc_event-list_helptexts.php:19
1463
  msgid "category slug"
1464
  msgstr ""
1465
 
1466
- #: includes/sc_event-list_helptexts.php:20
1467
  msgid ""
1468
  "This attribute defines the category of which events are initially shown. The"
1469
  " default is to show events of all categories."
1470
  msgstr ""
1471
 
1472
- #: includes/sc_event-list_helptexts.php:21
1473
  msgid ""
1474
  "Provide a category slug to change this behavior. It is still possible to "
1475
  "change the displayed categories via the filterbar or url parameters."
1476
  msgstr ""
1477
 
1478
- #: includes/sc_event-list_helptexts.php:26
1479
  msgid "This attribute defines the initial order of the events."
1480
  msgstr ""
1481
 
1482
- #: includes/sc_event-list_helptexts.php:27
 
1483
  msgid ""
1484
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1485
  "in the opposite direction (from new to old)."
1486
  msgstr ""
1487
 
1488
- #: includes/sc_event-list_helptexts.php:32
1489
  #, php-format
1490
  msgid ""
1491
  "This attribute defines the dates and date ranges of which events are "
1492
  "displayed. The default is %1$s to show all events."
1493
  msgstr ""
1494
 
1495
- #: includes/sc_event-list_helptexts.php:33
1496
  #, php-format
1497
  msgid ""
1498
  "Filtered events according to %1$s value are not available in the event list."
1499
  msgstr ""
1500
 
1501
- #: includes/sc_event-list_helptexts.php:34
1502
  #, php-format
1503
  msgid ""
1504
  "You can find all available values with a description and examples in the "
1505
  "sections %1$s and %2$s below."
1506
  msgstr ""
1507
 
1508
- #: includes/sc_event-list_helptexts.php:35
1509
  #, php-format
1510
  msgid "See %1$s description if you want to define complex filters."
1511
  msgstr ""
1512
 
1513
- #: includes/sc_event-list_helptexts.php:39
1514
  msgid "category slugs"
1515
  msgstr ""
1516
 
1517
- #: includes/sc_event-list_helptexts.php:40
1518
  msgid ""
1519
  "This attribute defines the category filter which filters the events to show."
1520
  " The default is $1$s or an empty string to show all events."
1521
  msgstr ""
1522
 
1523
- #: includes/sc_event-list_helptexts.php:41
1524
  #, php-format
1525
  msgid ""
1526
  "Events with categories that doesn´t match %1$s are not shown in the event "
1527
  "list. They are also not available if a manual url parameter is added."
1528
  msgstr ""
1529
 
1530
- #: includes/sc_event-list_helptexts.php:42
1531
  #, php-format
1532
  msgid ""
1533
  "The filter is specified via the given category slugs. See %1$s description "
1534
  "if you want to define complex filters."
1535
  msgstr ""
1536
 
1537
- #: includes/sc_event-list_helptexts.php:46
1538
- #: includes/sc_event-list_helptexts.php:111
1539
- #: includes/sc_event-list_helptexts.php:138
1540
- #: includes/sc_event-list_helptexts.php:177
1541
  msgid "number"
1542
  msgstr ""
1543
 
1544
- #: includes/sc_event-list_helptexts.php:47
1545
  #, php-format
1546
  msgid ""
1547
  "This attribute defines how many events should be displayed if upcoming "
@@ -1549,109 +1554,109 @@ msgid ""
1549
  "displayed."
1550
  msgstr ""
1551
 
1552
- #: includes/sc_event-list_helptexts.php:48
1553
  msgid ""
1554
  "Please not that in the actual version there is no pagination of the events "
1555
  "available, so the event list can be very long."
1556
  msgstr ""
1557
 
1558
- #: includes/sc_event-list_helptexts.php:53
1559
  msgid ""
1560
  "This attribute defines if the filterbar should be displayed. The filterbar "
1561
  "allows the users to specify filters for the listed events."
1562
  msgstr ""
1563
 
1564
- #: includes/sc_event-list_helptexts.php:54
1565
  #, php-format
1566
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1567
  msgstr ""
1568
 
1569
- #: includes/sc_event-list_helptexts.php:55
1570
  #, php-format
1571
  msgid ""
1572
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1573
  " in the single event view."
1574
  msgstr ""
1575
 
1576
- #: includes/sc_event-list_helptexts.php:60
1577
  #, php-format
1578
  msgid ""
1579
  "This attribute specifies the available items in the filterbar. This options "
1580
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1581
  msgstr ""
1582
 
1583
- #: includes/sc_event-list_helptexts.php:61
1584
  msgid ""
1585
  "Find below an overview of the available filterbar items and their options:"
1586
  msgstr ""
1587
 
1588
- #: includes/sc_event-list_helptexts.php:64
1589
  msgid "filterbar item"
1590
  msgstr ""
1591
 
1592
- #: includes/sc_event-list_helptexts.php:64
1593
- #: includes/sc_event-list_helptexts.php:96
1594
  msgid "description"
1595
  msgstr ""
1596
 
1597
- #: includes/sc_event-list_helptexts.php:64
1598
  msgid "item options"
1599
  msgstr ""
1600
 
1601
- #: includes/sc_event-list_helptexts.php:64
1602
  msgid "option values"
1603
  msgstr ""
1604
 
1605
- #: includes/sc_event-list_helptexts.php:64
1606
  msgid "default value"
1607
  msgstr ""
1608
 
1609
- #: includes/sc_event-list_helptexts.php:64
1610
  msgid "option description"
1611
  msgstr ""
1612
 
1613
- #: includes/sc_event-list_helptexts.php:67
1614
  msgid ""
1615
  "Show a list of all available years. Additional there are some special "
1616
  "entries available (see item options)."
1617
  msgstr ""
1618
 
1619
- #: includes/sc_event-list_helptexts.php:71
1620
- #: includes/sc_event-list_helptexts.php:82
1621
  msgid "Add an entry to show all events."
1622
  msgstr ""
1623
 
1624
- #: includes/sc_event-list_helptexts.php:73
1625
- #: includes/sc_event-list_helptexts.php:84
1626
  msgid "Add an entry to show all upcoming events."
1627
  msgstr ""
1628
 
1629
- #: includes/sc_event-list_helptexts.php:74
1630
- #: includes/sc_event-list_helptexts.php:85
1631
  msgid "Add an entry to show events in the past."
1632
  msgstr ""
1633
 
1634
- #: includes/sc_event-list_helptexts.php:75
1635
  msgid "Set descending or ascending order of year entries."
1636
  msgstr ""
1637
 
1638
- #: includes/sc_event-list_helptexts.php:78
1639
  msgid "Show a list of all available months."
1640
  msgstr ""
1641
 
1642
- #: includes/sc_event-list_helptexts.php:86
1643
  msgid "Set descending or ascending order of month entries."
1644
  msgstr ""
1645
 
1646
- #: includes/sc_event-list_helptexts.php:87
1647
  msgid "php date-formats"
1648
  msgstr ""
1649
 
1650
- #: includes/sc_event-list_helptexts.php:87
1651
  msgid "Set the displayed date format of the month entries."
1652
  msgstr ""
1653
 
1654
- #: includes/sc_event-list_helptexts.php:88
1655
  #, php-format
1656
  msgid ""
1657
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1659,65 +1664,65 @@ msgid ""
1659
  "order."
1660
  msgstr ""
1661
 
1662
- #: includes/sc_event-list_helptexts.php:88
1663
  #, php-format
1664
  msgid ""
1665
  "Specifies the displayed values and their order. The items must be seperated "
1666
  "by %1$s."
1667
  msgstr ""
1668
 
1669
- #: includes/sc_event-list_helptexts.php:89
1670
  msgid "Show a list of all available categories."
1671
  msgstr ""
1672
 
1673
- #: includes/sc_event-list_helptexts.php:89
1674
  msgid "Add an entry to show events from all categories."
1675
  msgstr ""
1676
 
1677
- #: includes/sc_event-list_helptexts.php:90
1678
  msgid "A link to reset the eventlist filter to standard."
1679
  msgstr ""
1680
 
1681
- #: includes/sc_event-list_helptexts.php:90
1682
  msgid "any text"
1683
  msgstr ""
1684
 
1685
- #: includes/sc_event-list_helptexts.php:90
1686
  msgid "Set the caption of the link."
1687
  msgstr ""
1688
 
1689
- #: includes/sc_event-list_helptexts.php:93
1690
  msgid "Find below an overview of the available filterbar display options:"
1691
  msgstr ""
1692
 
1693
- #: includes/sc_event-list_helptexts.php:96
1694
  msgid "display option"
1695
  msgstr ""
1696
 
1697
- #: includes/sc_event-list_helptexts.php:96
1698
  msgid "available for"
1699
  msgstr ""
1700
 
1701
- #: includes/sc_event-list_helptexts.php:97
1702
  #, php-format
1703
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1704
  msgstr ""
1705
 
1706
- #: includes/sc_event-list_helptexts.php:98
1707
  msgid ""
1708
  "Shows a select box where an item can be choosen. After the selection of an "
1709
  "item the page is reloaded via javascript to show the filtered events."
1710
  msgstr ""
1711
 
1712
- #: includes/sc_event-list_helptexts.php:99
1713
  msgid "Shows a simple link which can be clicked."
1714
  msgstr ""
1715
 
1716
- #: includes/sc_event-list_helptexts.php:102
1717
  msgid "Find below some declaration examples with descriptions:"
1718
  msgstr ""
1719
 
1720
- #: includes/sc_event-list_helptexts.php:104
1721
  #, php-format
1722
  msgid ""
1723
  "In this example you can see that the filterbar item and the used display "
@@ -1725,22 +1730,22 @@ msgid ""
1725
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1726
  msgstr ""
1727
 
1728
- #: includes/sc_event-list_helptexts.php:106
1729
  #, php-format
1730
  msgid ""
1731
  "In this example you can see that filterbar options can be added in brackets "
1732
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1733
  msgstr ""
1734
 
1735
- #: includes/sc_event-list_helptexts.php:106
1736
  msgid "option_name"
1737
  msgstr ""
1738
 
1739
- #: includes/sc_event-list_helptexts.php:106
1740
  msgid "value"
1741
  msgstr ""
1742
 
1743
- #: includes/sc_event-list_helptexts.php:107
1744
  #, php-format
1745
  msgid ""
1746
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1749,134 +1754,134 @@ msgid ""
1749
  "left-aligned and the reset link will be on the right side."
1750
  msgstr ""
1751
 
1752
- #: includes/sc_event-list_helptexts.php:112
1753
- #: includes/sc_event-list_helptexts.php:139
1754
  msgid ""
1755
  "This attribute specifies if the title should be truncated to the given "
1756
  "number of characters in the event list."
1757
  msgstr ""
1758
 
1759
- #: includes/sc_event-list_helptexts.php:113
1760
- #: includes/sc_event-list_helptexts.php:140
1761
  #, php-format
1762
  msgid ""
1763
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1764
  "is automatically truncated via css."
1765
  msgstr ""
1766
 
1767
- #: includes/sc_event-list_helptexts.php:114
1768
- #: includes/sc_event-list_helptexts.php:141
1769
- #: includes/sc_event-list_helptexts.php:180
1770
  msgid "This attribute has no influence if only a single event is shown."
1771
  msgstr ""
1772
 
1773
- #: includes/sc_event-list_helptexts.php:120
1774
  msgid ""
1775
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1776
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1777
- "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1778
  msgstr ""
1779
 
1780
- #: includes/sc_event-list_helptexts.php:130
1781
  msgid ""
1782
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1783
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1784
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1785
  msgstr ""
1786
 
1787
- #: includes/sc_event-list_helptexts.php:147
1788
  msgid ""
1789
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1790
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1791
- "\t With \"event_list_only\" the categories are 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:157
1795
  msgid ""
1796
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1797
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1798
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1799
  msgstr ""
1800
 
1801
- #: includes/sc_event-list_helptexts.php:167
1802
  msgid ""
1803
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1804
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1805
- "\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"
1806
- "\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"
1807
- "\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)."
1808
  msgstr ""
1809
 
1810
- #: includes/sc_event-list_helptexts.php:178
1811
  msgid ""
1812
  "This attribute specifies if the content should be truncate to the given "
1813
  "number of characters in the event list."
1814
  msgstr ""
1815
 
1816
- #: includes/sc_event-list_helptexts.php:179
1817
  #, php-format
1818
  msgid "With the standard value %1$s the full text is displayed."
1819
  msgstr ""
1820
 
1821
- #: includes/sc_event-list_helptexts.php:186
1822
  msgid ""
1823
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1824
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1825
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1826
- "\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."
1827
  msgstr ""
1828
 
1829
- #: includes/sc_event-list_helptexts.php:197
1830
  msgid ""
1831
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1832
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1833
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1834
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1835
  msgstr ""
1836
 
1837
- #: includes/sc_event-list_helptexts.php:208
1838
  msgid ""
1839
  "This attribute specifies if a rss feed link should be added.<br />\n"
1840
- "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1841
- "\t On that page you can also find some settings to modify the output.<br />\n"
1842
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
1843
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1844
  msgstr ""
1845
 
1846
- #: includes/sc_event-list_helptexts.php:220
1847
  msgid ""
1848
  "This attribute specifies if a ical feed link should be added.<br />\n"
1849
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1850
- "\t On that page you can also find some settings to modify the output.<br />\n"
1851
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1852
  msgstr ""
1853
 
1854
- #: includes/sc_event-list_helptexts.php:231
1855
  msgid ""
1856
  "This attribute specifies the page or post url for event links.<br />\n"
1857
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1858
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1859
  msgstr ""
1860
 
1861
- #: includes/sc_event-list_helptexts.php:243
1862
  msgid ""
1863
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1864
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1865
  msgstr ""
1866
 
1867
- #: includes/sc_event-list.php:154
1868
  msgid "Sorry, the requested event is not available!"
1869
  msgstr ""
1870
 
1871
- #: includes/sc_event-list.php:163
1872
  msgid "Event Information:"
1873
  msgstr "Informazioni Evento"
1874
 
1875
- #: includes/sc_event-list.php:405
1876
  msgid "Link to RSS feed"
1877
  msgstr ""
1878
 
1879
- #: includes/sc_event-list.php:414
1880
  msgid "Link to iCal feed"
1881
  msgstr ""
1882
 
@@ -1909,133 +1914,133 @@ msgstr "Il numero degli eventi prossimi da visualizzare"
1909
  msgid "Truncate event title to"
1910
  msgstr "Tronca il titolo dell'evento al"
1911
 
1912
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1913
- #: includes/widget_helptexts.php:93
1914
  msgid "characters"
1915
  msgstr "caratteri"
1916
 
1917
- #: includes/widget_helptexts.php:38
1918
  msgid ""
1919
  "This option defines the number of displayed characters for the event title."
1920
  msgstr ""
1921
 
1922
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1923
  #, php-format
1924
  msgid ""
1925
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1926
  "automatically truncate the text via css."
1927
  msgstr ""
1928
 
1929
- #: includes/widget_helptexts.php:46
1930
  msgid "Show event starttime"
1931
  msgstr "Mostra l'ora di inizio dell'evento"
1932
 
1933
- #: includes/widget_helptexts.php:48
1934
  msgid "This option defines if the event start time will be displayed."
1935
  msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
1936
 
1937
- #: includes/widget_helptexts.php:55
1938
  msgid "Show event location"
1939
  msgstr "Mostra ubicazione evento"
1940
 
1941
- #: includes/widget_helptexts.php:57
1942
  msgid "This option defines if the event location will be displayed."
1943
  msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
1944
 
1945
- #: includes/widget_helptexts.php:64
1946
  msgid "Truncate location to"
1947
  msgstr "Tronca ubicazione al"
1948
 
1949
- #: includes/widget_helptexts.php:66
1950
  msgid ""
1951
  "If the event location is diplayed this option defines the number of "
1952
  "displayed characters."
1953
  msgstr ""
1954
 
1955
- #: includes/widget_helptexts.php:74
1956
  msgid "Show event excerpt"
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:76
1960
  msgid "This option defines if the event excerpt will be displayed."
1961
  msgstr ""
1962
 
1963
- #: includes/widget_helptexts.php:83
1964
  msgid "Show event content"
1965
  msgstr ""
1966
 
1967
- #: includes/widget_helptexts.php:85
1968
  msgid "This option defines if the event content will be displayed."
1969
  msgstr ""
1970
 
1971
- #: includes/widget_helptexts.php:92
1972
  msgid "Truncate content to"
1973
  msgstr ""
1974
 
1975
- #: includes/widget_helptexts.php:94
1976
  msgid ""
1977
  "If the event content are diplayed this option defines the number of diplayed"
1978
  " characters."
1979
  msgstr ""
1980
 
1981
- #: includes/widget_helptexts.php:95
1982
  #, php-format
1983
  msgid "Set this value to %1$s to view the full text."
1984
  msgstr ""
1985
 
1986
- #: includes/widget_helptexts.php:102
1987
  msgid "URL to the linked Event List page"
1988
  msgstr ""
1989
 
1990
- #: includes/widget_helptexts.php:104
1991
  msgid ""
1992
  "This option defines the url to the linked Event List page. This option is "
1993
  "required if you want to use one of the options below."
1994
  msgstr ""
1995
 
1996
- #: includes/widget_helptexts.php:111
1997
  msgid "Shortcode ID on linked page"
1998
  msgstr ""
1999
 
2000
- #: includes/widget_helptexts.php:113
2001
  msgid ""
2002
  "This option defines the shortcode-id for the Event List on the linked page. "
2003
  "Normally the standard value 1 is correct, you only have to change it if you "
2004
  "use multiple event-list shortcodes on the linked page."
2005
  msgstr ""
2006
 
2007
- #: includes/widget_helptexts.php:122
2008
  msgid ""
2009
  "With this option you can add a link to the single event page for every "
2010
  "displayed event. You have to specify the url to the page and the shortcode "
2011
  "id option if you want to use it."
2012
  msgstr ""
2013
 
2014
- #: includes/widget_helptexts.php:131
2015
  msgid ""
2016
  "With this option you can add a link to the event-list page below the "
2017
  "diplayed events. You have to specify the url to page option if you want to "
2018
  "use it."
2019
  msgstr ""
2020
 
2021
- #: includes/widget_helptexts.php:138
2022
  msgid "Caption for the link"
2023
  msgstr "Didascalia per il link"
2024
 
2025
- #: includes/widget_helptexts.php:140
2026
  msgid ""
2027
  "This option defines the text for the link to the Event List page if the "
2028
  "approriate option is selected."
2029
  msgstr ""
2030
 
2031
- #: includes/widget.php:21
2032
  msgid "With this widget a list of upcoming events can be displayed."
2033
  msgstr "Con questo widget può essere mostrata una lista di eventi"
2034
 
2035
- #: includes/widget.php:26
2036
  msgid "Upcoming events"
2037
  msgstr "Prossimi eventi"
2038
 
2039
- #: includes/widget.php:40
2040
  msgid "show events page"
2041
  msgstr "mostra pagina eventi"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
12
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: it_IT\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: admin/admin.php:90
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:90
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
32
  msgid "Event List Settings"
33
  msgstr "Impostazioni Eventi Lista"
34
 
35
+ #: admin/admin.php:142
36
  msgid "Settings"
37
  msgstr "Impostazioni"
38
 
39
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
40
  msgid "About Event List"
41
  msgstr "Informazioni su Lista Eventi"
42
 
43
+ #: admin/admin.php:146
44
  msgid "About"
45
  msgstr "Informazioni su"
46
 
47
+ #: admin/admin.php:170
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
51
  msgstr[0] ""
52
  msgstr[1] ""
53
 
54
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
55
  msgid "General"
56
  msgstr "Generico"
57
 
58
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
59
+ #: admin/includes/admin-about.php:137
60
  msgid "Shortcode Attributes"
61
  msgstr "Attributi dello Shortcode"
62
 
63
+ #: admin/includes/admin-about.php:102
64
  msgid "Help and Instructions"
65
  msgstr "Aiuto e Istruzioni"
66
 
67
+ #: admin/includes/admin-about.php:103
68
  #, php-format
69
  msgid "You can manage the events %1$shere%2$s"
70
  msgstr ""
71
 
72
+ #: admin/includes/admin-about.php:104
73
  msgid "To show the events on your site you have 2 possibilities"
74
  msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità"
75
 
76
+ #: admin/includes/admin-about.php:105
77
  #, php-format
78
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
79
  msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo"
80
 
81
+ #: admin/includes/admin-about.php:106
82
  #, php-format
83
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
84
  msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar"
85
 
86
+ #: admin/includes/admin-about.php:107
87
  msgid ""
88
  "The displayed events and their style can be modified with the available "
89
  "widget settings and the available attributes for the shortcode."
90
  msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode"
91
 
92
+ #: admin/includes/admin-about.php:108
93
  #, php-format
94
  msgid ""
95
  "A list of all available shortcode attributes with their descriptions is "
96
  "available in the %1$s tab."
97
  msgstr ""
98
 
99
+ #: admin/includes/admin-about.php:109
100
  msgid "The available widget options are described in their tooltip text."
101
  msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text"
102
 
103
+ #: admin/includes/admin-about.php:110
104
  #, php-format
105
  msgid ""
106
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
107
  " to insert an URL to the linked event-list page."
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
111
  msgid "Add links to the single events"
112
  msgstr "Aggiungi link ai singoli eventi"
113
 
114
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
115
  msgid "Add a link to the Event List page"
116
  msgstr "Aggiungi un link alla pagina Elenco eventi"
117
 
118
+ #: admin/includes/admin-about.php:111
119
  msgid ""
120
  "This is required because the widget does not know in which page or post the "
121
  "shortcode was included."
122
  msgstr ""
123
 
124
+ #: admin/includes/admin-about.php:112
125
  msgid ""
126
  "Additionally you have to insert the correct Shortcode id on the linked page."
127
  " This id describes which shortcode should be used on the given page or post "
128
  "if you have more than one."
129
  msgstr ""
130
 
131
+ #: admin/includes/admin-about.php:113
132
  #, php-format
133
  msgid ""
134
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
136
  "link on your linked page or post."
137
  msgstr ""
138
 
139
+ #: admin/includes/admin-about.php:114
140
  #, php-format
141
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
142
  msgstr ""
143
 
144
+ #: admin/includes/admin-about.php:116
145
  #, php-format
146
  msgid ""
147
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
148
  "want."
149
  msgstr ""
150
 
151
+ #: admin/includes/admin-about.php:116
152
  msgid "Settings page"
153
  msgstr ""
154
 
155
+ #: admin/includes/admin-about.php:123
156
  msgid "About the plugin author"
157
  msgstr ""
158
 
159
+ #: admin/includes/admin-about.php:125
160
  #, php-format
161
  msgid ""
162
  "This plugin is developed by %1$s, you can find more information about the "
163
  "plugin on the %2$s."
164
  msgstr ""
165
 
166
+ #: admin/includes/admin-about.php:125
167
  msgid "WordPress plugin site"
168
  msgstr ""
169
 
170
+ #: admin/includes/admin-about.php:126
171
  #, php-format
172
  msgid "If you like the plugin please rate it on the %1$s."
173
  msgstr ""
174
 
175
+ #: admin/includes/admin-about.php:126
176
  msgid "WordPress plugin review site"
177
  msgstr ""
178
 
179
+ #: admin/includes/admin-about.php:127
180
  msgid ""
181
  "If you want to support the plugin I would be happy to get a small donation"
182
  msgstr ""
183
 
184
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
185
+ #: admin/includes/admin-about.php:130
186
  #, php-format
187
  msgid "Donate with %1$s"
188
  msgstr ""
189
 
190
+ #: admin/includes/admin-about.php:139
191
  msgid ""
192
  "You have the possibility to modify the output if you add some of the "
193
  "following attributes to the shortcode."
194
  msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
195
 
196
+ #: admin/includes/admin-about.php:140
197
  #, php-format
198
  msgid ""
199
  "You can combine and add as much attributes as you want. E.g. the shortcode "
200
  "including the attributes %1$s and %2$s would looks like this:"
201
  msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
202
 
203
+ #: admin/includes/admin-about.php:142
204
  msgid ""
205
  "Below you can find a list of all supported attributes with their "
206
  "descriptions and available options:"
207
  msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
208
 
209
+ #: admin/includes/admin-about.php:157
210
  msgid "Attribute name"
211
  msgstr "Nome attributo"
212
 
213
+ #: admin/includes/admin-about.php:158
214
  msgid "Value options"
215
  msgstr "Valore opzioni"
216
 
217
+ #: admin/includes/admin-about.php:159
218
  msgid "Default value"
219
  msgstr "Valore di default"
220
 
221
+ #: admin/includes/admin-about.php:160
222
  msgid "Description"
223
  msgstr "Descrizione"
224
 
225
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
226
+ #: includes/sc_event-list_helptexts.php:91
227
  msgid "Filter Syntax"
228
  msgstr "Sintassi del filtro"
229
 
230
+ #: admin/includes/admin-about.php:180
231
  msgid ""
232
  "For date and cat filters you can specify complex filters with the following "
233
  "syntax:"
234
  msgstr ""
235
 
236
+ #: admin/includes/admin-about.php:181
237
  #, php-format
238
  msgid ""
239
  "You can use %1$s and %2$s connections to define complex filters. "
240
  "Additionally you can set brackets %3$s for nested queries."
241
  msgstr ""
242
 
243
+ #: admin/includes/admin-about.php:181
244
  msgid "AND"
245
  msgstr "E"
246
 
247
+ #: admin/includes/admin-about.php:181
248
  msgid "OR"
249
  msgstr "O"
250
 
251
+ #: admin/includes/admin-about.php:181
252
  msgid "or"
253
  msgstr "o"
254
 
255
+ #: admin/includes/admin-about.php:181
256
  msgid "and"
257
  msgstr "e"
258
 
259
+ #: admin/includes/admin-about.php:182
260
  msgid "Examples for cat filters:"
261
  msgstr "Esempio per il filtro di categorie:"
262
 
263
+ #: admin/includes/admin-about.php:183
264
  #, php-format
265
  msgid "Show all events with category %1$s."
266
  msgstr "Mostra tutti gli eventi aventi categoria %1$s."
267
 
268
+ #: admin/includes/admin-about.php:184
269
  #, php-format
270
  msgid "Show all events with category %1$s or %2$s."
271
  msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
272
 
273
+ #: admin/includes/admin-about.php:185
274
  #, php-format
275
  msgid ""
276
  "Show all events with category %1$s and all events where category %2$s as "
277
  "well as %3$s is selected."
278
  msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
279
 
280
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
281
  msgid "Available Date Formats"
282
  msgstr "Formati data disponibili"
283
 
284
+ #: admin/includes/admin-about.php:192
285
  msgid "For date filters you can use the following date formats:"
286
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
287
 
288
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
289
  msgid "Available Date Range Formats"
290
  msgstr "Formati intervallo date disponibili"
291
 
292
+ #: admin/includes/admin-about.php:202
293
  msgid "For date filters you can use the following daterange formats:"
294
  msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
295
 
296
+ #: admin/includes/admin-about.php:215
297
  msgid "Value"
298
  msgstr "Valore"
299
 
300
+ #: admin/includes/admin-about.php:219
301
  msgid "Example"
302
  msgstr "Esempio"
303
 
304
+ #: admin/includes/admin-categories.php:79
305
  msgid "Synchronize with post categories"
306
  msgstr ""
307
 
308
+ #: admin/includes/admin-categories.php:90
309
  #, php-format
310
  msgid "%1$s categories modified (%2$s)"
311
  msgstr ""
312
 
313
+ #: admin/includes/admin-categories.php:91
314
  #, php-format
315
  msgid "%1$s categories added (%2$s)"
316
  msgstr ""
317
 
318
+ #: admin/includes/admin-categories.php:92
319
  #, php-format
320
  msgid "%1$s categories deleted (%2$s)"
321
  msgstr ""
322
 
323
+ #: admin/includes/admin-categories.php:95
324
  #, php-format
325
  msgid "%1$s categories not modified (%2$s)"
326
  msgstr ""
327
 
328
+ #: admin/includes/admin-categories.php:96
329
  #, php-format
330
  msgid "%1$s categories not added (%2$s)"
331
  msgstr ""
332
 
333
+ #: admin/includes/admin-categories.php:97
334
  #, php-format
335
  msgid "%1$s categories not deleted (%2$s)"
336
  msgstr ""
337
 
338
+ #: admin/includes/admin-categories.php:100
339
  msgid "An Error occured during the category sync"
340
  msgstr ""
341
 
342
+ #: admin/includes/admin-categories.php:103
343
  msgid "Category sync finished"
344
  msgstr ""
345
 
346
+ #: admin/includes/admin-category-sync.php:77
347
  msgid "Error: You are not allowed to view this page!"
348
  msgstr ""
349
 
350
+ #: admin/includes/admin-category-sync.php:93
351
  msgid "Affected Categories when switching to seperate Event Categories"
352
  msgstr ""
353
 
354
+ #: admin/includes/admin-category-sync.php:94
355
  msgid "Switch option to seperate Event Categories"
356
  msgstr ""
357
 
358
+ #: admin/includes/admin-category-sync.php:95
359
  msgid ""
360
  "If you proceed, all post categories will be copied and all events will be "
361
  "re-assigned to this new categories."
362
  msgstr ""
363
 
364
+ #: admin/includes/admin-category-sync.php:96
365
  msgid ""
366
  "Afterwards the event categories are independent of the post categories."
367
  msgstr ""
368
 
369
+ #: admin/includes/admin-category-sync.php:98
370
  msgid "Affected Categories when switching to use Post Categories for events"
371
  msgstr ""
372
 
373
+ #: admin/includes/admin-category-sync.php:99
374
  msgid "Switch option to use Post Categories for events"
375
  msgstr ""
376
 
377
+ #: admin/includes/admin-category-sync.php:100
378
  msgid ""
379
  "Take a detailed look at the affected categories above before you proceed! "
380
  "All seperate event categories will be deleted, this cannot be undone!"
381
  msgstr ""
382
 
383
+ #: admin/includes/admin-category-sync.php:103
384
  msgid "Event Categories: Synchronise with Post Categories"
385
  msgstr ""
386
 
387
+ #: admin/includes/admin-category-sync.php:104
388
  msgid "Start synchronisation"
389
  msgstr ""
390
 
391
+ #: admin/includes/admin-category-sync.php:105
392
  msgid ""
393
  "If this option is enabled the above listed categories will be deleted and "
394
  "removed from the existing events!"
395
  msgstr ""
396
 
397
+ #: admin/includes/admin-category-sync.php:120
398
  msgid "Categories to modify"
399
  msgstr ""
400
 
401
+ #: admin/includes/admin-category-sync.php:121
402
  msgid "Categories to add"
403
  msgstr ""
404
 
405
+ #: admin/includes/admin-category-sync.php:122
406
  msgid "Categories to delete (optional)"
407
  msgstr ""
408
 
409
+ #: admin/includes/admin-category-sync.php:123
410
  msgid "Delete not available post categories"
411
  msgstr ""
412
 
413
+ #: admin/includes/admin-category-sync.php:126
414
  msgid "Categories with differences"
415
  msgstr ""
416
 
417
+ #: admin/includes/admin-category-sync.php:127
418
  msgid "Categories to add (optional)"
419
  msgstr ""
420
 
421
+ #: admin/includes/admin-category-sync.php:128
422
  msgid "Add not available post categories"
423
  msgstr ""
424
 
425
+ #: admin/includes/admin-category-sync.php:147
426
  msgid "none"
427
  msgstr ""
428
 
429
+ #: admin/includes/admin-import.php:91
430
  msgid "Import Events"
431
  msgstr "Importazione Eventi"
432
 
433
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
434
+ #: admin/includes/admin-import.php:254
435
  msgid "Step"
436
  msgstr "Passo"
437
 
438
+ #: admin/includes/admin-import.php:110
439
  msgid "Set import file and options"
440
  msgstr "Insieme dei file e delle opzioni di importazione"
441
 
442
+ #: admin/includes/admin-import.php:113
443
  #, php-format
444
  msgid "Proceed with Step %1$s"
445
  msgstr ""
446
 
447
+ #: admin/includes/admin-import.php:116
448
  msgid "Example file"
449
  msgstr "File di esempio"
450
 
451
+ #: admin/includes/admin-import.php:117
452
  #, php-format
453
  msgid ""
454
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
455
  msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
456
 
457
+ #: admin/includes/admin-import.php:118
458
  msgid "Note"
459
  msgstr "Nota"
460
 
461
+ #: admin/includes/admin-import.php:118
462
  msgid ""
463
  "Do not change the column header and separator line (first two lines), "
464
  "otherwise the import will fail!"
465
  msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
466
 
467
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
468
  msgid "Sorry, there has been an error."
469
  msgstr "Siamo spiacenti, si è verificato un errore."
470
 
471
+ #: admin/includes/admin-import.php:129
472
  msgid "The file does not exist, please try again."
473
  msgstr "Il file non esiste, riprova."
474
 
475
+ #: admin/includes/admin-import.php:138
476
  msgid "The uploaded file does not have the required csv extension."
477
  msgstr ""
478
 
479
+ #: admin/includes/admin-import.php:150
480
  msgid "Events review and additonal category selection"
481
  msgstr ""
482
 
483
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
484
  msgid "Error"
485
  msgstr ""
486
 
487
+ #: admin/includes/admin-import.php:156
488
  msgid "This CSV file cannot be imported"
489
  msgstr ""
490
 
491
+ #: admin/includes/admin-import.php:167
492
  msgid "None of the events in this CSV file can be imported"
493
  msgstr ""
494
 
495
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
496
  msgid "Warning"
497
  msgstr ""
498
 
499
+ #: admin/includes/admin-import.php:172
500
  #, php-format
501
  msgid "There is %1$s event which cannot be imported"
502
  msgid_plural "There are %1$s events which cannot be imported"
503
  msgstr[0] ""
504
  msgstr[1] ""
505
 
506
+ #: admin/includes/admin-import.php:184
507
  #, php-format
508
  msgid "CSV line %1$s"
509
  msgstr ""
510
 
511
+ #: admin/includes/admin-import.php:194
512
  msgid "You can still import all other events listed below."
513
  msgstr ""
514
 
515
+ #: admin/includes/admin-import.php:213
516
  msgid ""
517
  "The following category slugs are not available and will be removed from the "
518
  "imported events"
519
  msgstr ""
520
 
521
+ #: admin/includes/admin-import.php:219
522
  msgid ""
523
  "If you want to keep these categories, please create these Categories first "
524
  "and do the import afterwards."
525
  msgstr ""
526
 
527
+ #: admin/includes/admin-import.php:254
528
  msgid "Import result"
529
  msgstr ""
530
 
531
+ #: admin/includes/admin-import.php:257
532
  #, php-format
533
  msgid "Import of %1$s events successful!"
534
  msgstr ""
535
 
536
+ #: admin/includes/admin-import.php:258
537
  msgid "Go back to All Events"
538
  msgstr "Torna a Tutti gli Eventi"
539
 
540
+ #: admin/includes/admin-import.php:261
541
  msgid "Errors during Import"
542
  msgstr ""
543
 
544
+ #: admin/includes/admin-import.php:269
545
  msgid "Event from CSV-line"
546
  msgstr ""
547
 
548
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
549
  #: includes/widget_helptexts.php:9
550
  msgid "Title"
551
  msgstr "Titolo"
552
 
553
+ #: admin/includes/admin-import.php:282
554
  msgid "Start Date"
555
  msgstr "Data di inizio"
556
 
557
+ #: admin/includes/admin-import.php:283
558
  msgid "End Date"
559
  msgstr "Data di fine"
560
 
561
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
562
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
563
  msgid "Time"
564
  msgstr "Ora"
565
 
566
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
567
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
568
  #: includes/options_helptexts.php:76
569
  msgid "Location"
570
  msgstr "Ubicazione"
571
 
572
+ #: admin/includes/admin-import.php:286
573
  msgid "Content"
574
  msgstr ""
575
 
576
+ #: admin/includes/admin-import.php:287
577
  msgid "Category slugs"
578
  msgstr ""
579
 
580
+ #: admin/includes/admin-import.php:333
581
  msgid "Header line is missing or not correct!"
582
  msgstr ""
583
 
584
+ #: admin/includes/admin-import.php:334
585
  #, php-format
586
  msgid ""
587
  "Have a look at the %1$sexample file%2$s to see the correct header line "
588
  "format."
589
  msgstr ""
590
 
591
+ #: admin/includes/admin-import.php:341
592
  #, php-format
593
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
594
  msgstr ""
595
 
596
+ #: admin/includes/admin-import.php:371
597
  msgid "Empty event title found"
598
  msgstr ""
599
 
600
+ #: admin/includes/admin-import.php:377
601
  msgid "Wrong date format for startdate"
602
  msgstr ""
603
 
604
+ #: admin/includes/admin-import.php:385
605
  msgid "Wrong date format for enddate"
606
  msgstr ""
607
 
608
+ #: admin/includes/admin-import.php:439
609
  msgid "Import events"
610
  msgstr ""
611
 
612
+ #: admin/includes/admin-import.php:440
613
  msgid "Add additional categories"
614
  msgstr ""
615
 
616
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
617
  msgid "No events found"
618
  msgstr ""
619
 
620
+ #: admin/includes/admin-import.php:518
621
  msgid "Saving of event failed!"
622
  msgstr ""
623
 
624
+ #: admin/includes/admin-main.php:108
625
  msgid "Event Date"
626
  msgstr ""
627
 
628
+ #: admin/includes/admin-main.php:113
629
  msgid "Author"
630
  msgstr "Autore"
631
 
632
+ #: admin/includes/admin-main.php:182
633
  #, php-format
634
  msgid "Add a copy of %1$s"
635
  msgstr ""
636
 
637
+ #: admin/includes/admin-main.php:182
638
  msgid "Copy"
639
  msgstr ""
640
 
641
+ #: admin/includes/admin-main.php:268
642
+ msgid "Import"
643
+ msgstr "Importazione"
644
+
645
+ #: admin/includes/admin-new.php:83
646
  msgid "Event data"
647
  msgstr ""
648
 
649
+ #: admin/includes/admin-new.php:116
650
  msgid "Add Copy"
651
  msgstr ""
652
 
653
+ #: admin/includes/admin-new.php:124
654
  msgid "Date"
655
  msgstr "Data"
656
 
657
+ #: admin/includes/admin-new.php:124
658
  msgid "required"
659
  msgstr "richiesto"
660
 
661
+ #: admin/includes/admin-new.php:127
662
  msgid "Multi-Day Event"
663
  msgstr "Evento multi giornaliero"
664
 
665
+ #: admin/includes/admin-new.php:147
666
  msgid "Event Title"
667
  msgstr ""
668
 
669
+ #: admin/includes/admin-new.php:164
670
  msgid "Event Content"
671
  msgstr ""
672
 
673
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
674
  msgid "Event updated."
675
  msgstr ""
676
 
677
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
678
  msgid "View event"
679
  msgstr ""
680
 
681
+ #: admin/includes/admin-new.php:246
682
  #, php-format
683
  msgid "Event restored to revision from %1$s"
684
  msgstr ""
685
 
686
+ #: admin/includes/admin-new.php:247
687
  msgid "Event published."
688
  msgstr ""
689
 
690
+ #: admin/includes/admin-new.php:248
691
+ msgid "Event saved."
692
+ msgstr ""
693
+
694
+ #: admin/includes/admin-new.php:249
695
  msgid "Event submitted."
696
  msgstr ""
697
 
698
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
699
+ #: admin/includes/admin-new.php:253
700
  msgid "Preview event"
701
  msgstr ""
702
 
703
+ #: admin/includes/admin-new.php:251
704
  #, php-format
705
  msgid "Event scheduled for: %1$s>"
706
  msgstr ""
707
 
708
+ #: admin/includes/admin-new.php:253
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-settings.php:97
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:111
717
  msgid "Frontend Settings"
718
  msgstr "Impostazioni interfaccia grafica"
719
 
720
+ #: admin/includes/admin-settings.php:112
721
  msgid "Admin Page Settings"
722
  msgstr "Impostazioni di amministrazione"
723
 
724
+ #: admin/includes/admin-settings.php:113
725
  msgid "Feed Settings"
726
  msgstr "Impostazioni Feed"
727
 
728
+ #: admin/includes/admin-settings.php:114
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
733
  msgid "Year"
734
  msgstr "Anno"
735
 
736
+ #: includes/daterange_helptexts.php:10
737
  msgid "A year can be specified in 4 digit format."
738
  msgstr "Un anno può essere specificato in un formato a 4 cifre."
739
 
740
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
741
+ #: includes/daterange_helptexts.php:95
742
  #, php-format
743
  msgid ""
744
  "For a start date filter the first day of %1$s is used, in an end date the "
745
  "last day."
746
  msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
747
 
748
+ #: includes/daterange_helptexts.php:13
749
  msgid "the resulting year"
750
  msgstr "L' anno risultante"
751
 
752
+ #: includes/daterange_helptexts.php:19
753
  msgid "Month"
754
  msgstr "Mese"
755
 
756
+ #: includes/daterange_helptexts.php:21
757
  msgid ""
758
  "A month can be specified with 4 digits for the year and 2 digits for the "
759
  "month, seperated by a hyphen (-)."
760
  msgstr ""
761
 
762
+ #: includes/daterange_helptexts.php:24
763
  msgid "the resulting month"
764
  msgstr "Il mese risultante"
765
 
766
+ #: includes/daterange_helptexts.php:30
767
  msgid "Day"
768
  msgstr "Giorno"
769
 
770
+ #: includes/daterange_helptexts.php:31
771
  msgid ""
772
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
773
  " month and 2 digets for the day, seperated by hyphens (-)."
774
  msgstr "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
775
 
776
+ #: includes/daterange_helptexts.php:36
777
  msgid "Relative Year"
778
  msgstr "Anno relativo"
779
 
780
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
781
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
782
  #, php-format
783
  msgid "%1$s from now can be specified in the following notation: %2$s"
784
  msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
785
 
786
+ #: includes/daterange_helptexts.php:40
787
  msgid "A relative year"
788
  msgstr "Un anno relativo"
789
 
790
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
791
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
792
  #, php-format
793
  msgid ""
794
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
795
  "%3$s or %4$s attached (see also the example below)."
796
  msgstr ""
797
 
798
+ #: includes/daterange_helptexts.php:46
799
  msgid "number of years"
800
  msgstr "Numero di anni"
801
 
802
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
803
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
804
  #, php-format
805
  msgid "Additionally the following values are available: %1$s"
806
  msgstr "Inoltre sono disponibili i seguenti valori: %1$s"
807
 
808
+ #: includes/daterange_helptexts.php:58
809
  msgid "Relative Month"
810
  msgstr "Mese relativo"
811
 
812
+ #: includes/daterange_helptexts.php:62
813
  msgid "A relative month"
814
  msgstr "Un mese relativo"
815
 
816
+ #: includes/daterange_helptexts.php:68
817
  msgid "number of months"
818
  msgstr "Numero di mesi"
819
 
820
+ #: includes/daterange_helptexts.php:80
821
  msgid "Relative Week"
822
  msgstr "Settimana relativa"
823
 
824
+ #: includes/daterange_helptexts.php:84
825
  msgid "A relative week"
826
  msgstr "Una settimana relativa"
827
 
828
+ #: includes/daterange_helptexts.php:90
829
  msgid "number of weeks"
830
  msgstr "numero di settimane"
831
 
832
+ #: includes/daterange_helptexts.php:96
833
  msgid "the resulting week"
834
  msgstr "La settimana risultante"
835
 
836
+ #: includes/daterange_helptexts.php:99
837
  #, php-format
838
  msgid ""
839
  "The first day of the week is depending on the option %1$s which can be found"
840
  " and changed in %2$s."
841
  msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
842
 
843
+ #: includes/daterange_helptexts.php:110
844
  msgid "Relative Day"
845
  msgstr "Giorno relativo"
846
 
847
+ #: includes/daterange_helptexts.php:114
848
  msgid "A relative day"
849
  msgstr "Un giorno relativo"
850
 
851
+ #: includes/daterange_helptexts.php:120
852
  msgid "number of days"
853
  msgstr "Numero di giorni"
854
 
855
+ #: includes/daterange_helptexts.php:134
856
  msgid "Date range"
857
  msgstr "Intervallo date"
858
 
859
+ #: includes/daterange_helptexts.php:136
860
  msgid ""
861
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
862
+ "\t\t\tFor the start and end date any available date format can be used."
863
  msgstr ""
864
 
865
+ #: includes/daterange_helptexts.php:147
866
  msgid "This value defines a range without any limits."
867
  msgstr ""
868
 
869
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
870
+ #: includes/daterange_helptexts.php:171
871
  #, php-format
872
  msgid "The corresponding date_range format is: %1$s"
873
  msgstr "Il corrispondente formato intervallo date è: %1$s"
874
 
875
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
876
  msgid "Upcoming"
877
  msgstr "Prossimi"
878
 
879
+ #: includes/daterange_helptexts.php:158
880
  msgid "This value defines a range from the actual day to the future."
881
  msgstr ""
882
 
883
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
884
  msgid "Past"
885
  msgstr "Passati"
886
 
887
+ #: includes/daterange_helptexts.php:169
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
+ #: includes/event.php:157
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
895
+ #: includes/event.php:343 includes/event.php:345
896
+ #: includes/sc_event-list.php:330
897
  msgid "read more"
898
  msgstr ""
899
 
900
+ #: includes/events_post_type.php:83
901
  msgid "Events"
902
  msgstr "Eventi"
903
 
904
+ #: includes/events_post_type.php:84
905
  msgid "Event"
906
  msgstr ""
907
 
908
+ #: includes/events_post_type.php:85
909
  msgid "Add New"
910
  msgstr "Aggiungi nuovo"
911
 
912
+ #: includes/events_post_type.php:86
913
  msgid "Add New Event"
914
  msgstr "Aggiungi un nuovo evento"
915
 
916
+ #: includes/events_post_type.php:87
917
  msgid "Edit Event"
918
  msgstr "Modifica Evento"
919
 
920
+ #: includes/events_post_type.php:88
921
  msgid "New Event"
922
  msgstr ""
923
 
924
+ #: includes/events_post_type.php:89
925
  msgid "View Event"
926
  msgstr ""
927
 
928
+ #: includes/events_post_type.php:90
929
  msgid "View Events"
930
  msgstr ""
931
 
932
+ #: includes/events_post_type.php:91
933
  msgid "Search Events"
934
  msgstr ""
935
 
936
+ #: includes/events_post_type.php:93
937
  msgid "No events found in Trash"
938
  msgstr ""
939
 
940
+ #: includes/events_post_type.php:95
941
  msgid "All Events"
942
  msgstr "Tutti gli eventi"
943
 
944
+ #: includes/events_post_type.php:96
945
  msgid "Event Archives"
946
  msgstr ""
947
 
948
+ #: includes/events_post_type.php:97
949
  msgid "Event Attributes"
950
  msgstr ""
951
 
952
+ #: includes/events_post_type.php:98
953
  msgid "Insert into event"
954
  msgstr ""
955
 
956
+ #: includes/events_post_type.php:99
957
  msgid "Uploaded to this event"
958
  msgstr ""
959
 
960
+ #: includes/events_post_type.php:100
961
  msgid "Event List"
962
  msgstr "Lista Eventi"
963
 
964
+ #: includes/events_post_type.php:101
965
  msgid "Filter events list"
966
  msgstr ""
967
 
968
+ #: includes/events_post_type.php:102
969
  msgid "Events list navigation"
970
  msgstr ""
971
 
972
+ #: includes/events_post_type.php:103
973
  msgid "Events list"
974
  msgstr ""
975
 
976
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
977
  msgid "Reset"
978
  msgstr ""
979
 
980
+ #: includes/filterbar.php:329
981
  msgid "All"
982
  msgstr "Tutti"
983
 
984
+ #: includes/filterbar.php:332
985
  msgid "All Dates"
986
  msgstr ""
987
 
1421
  " switching page from here."
1422
  msgstr ""
1423
 
1424
+ #: includes/options.php:92
1425
  msgid "events"
1426
  msgstr ""
1427
 
1428
+ #: includes/options.php:96
1429
  msgid "Show content"
1430
  msgstr ""
1431
 
1432
+ #: includes/options.php:100
1433
  msgid "Hide content"
1434
  msgstr ""
1435
 
1436
+ #: includes/sc_event-list_helptexts.php:20
1437
  msgid "event-id"
1438
  msgstr ""
1439
 
1440
+ #: includes/sc_event-list_helptexts.php:23
1441
  #, php-format
1442
  msgid ""
1443
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1445
  "this event is shown."
1446
  msgstr ""
1447
 
1448
+ #: includes/sc_event-list_helptexts.php:29
1449
+ #: includes/sc_event-list_helptexts.php:57
1450
  msgid "year"
1451
  msgstr ""
1452
 
1453
+ #: includes/sc_event-list_helptexts.php:31
1454
  msgid ""
1455
  "This attribute defines which events are initially shown. The default is to "
1456
  "show the upcoming events only."
1457
  msgstr ""
1458
 
1459
+ #: includes/sc_event-list_helptexts.php:33
1460
  #, php-format
1461
  msgid ""
1462
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1463
  "change the displayed event date range via the filterbar or url parameters."
1464
  msgstr ""
1465
 
1466
+ #: includes/sc_event-list_helptexts.php:39
1467
  msgid "category slug"
1468
  msgstr ""
1469
 
1470
+ #: includes/sc_event-list_helptexts.php:41
1471
  msgid ""
1472
  "This attribute defines the category of which events are initially shown. The"
1473
  " default is to show events of all categories."
1474
  msgstr ""
1475
 
1476
+ #: includes/sc_event-list_helptexts.php:42
1477
  msgid ""
1478
  "Provide a category slug to change this behavior. It is still possible to "
1479
  "change the displayed categories via the filterbar or url parameters."
1480
  msgstr ""
1481
 
1482
+ #: includes/sc_event-list_helptexts.php:48
1483
  msgid "This attribute defines the initial order of the events."
1484
  msgstr ""
1485
 
1486
+ #: includes/sc_event-list_helptexts.php:50
1487
+ #, php-format
1488
  msgid ""
1489
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1490
  "in the opposite direction (from new to old)."
1491
  msgstr ""
1492
 
1493
+ #: includes/sc_event-list_helptexts.php:60
1494
  #, php-format
1495
  msgid ""
1496
  "This attribute defines the dates and date ranges of which events are "
1497
  "displayed. The default is %1$s to show all events."
1498
  msgstr ""
1499
 
1500
+ #: includes/sc_event-list_helptexts.php:64
1501
  #, php-format
1502
  msgid ""
1503
  "Filtered events according to %1$s value are not available in the event list."
1504
  msgstr ""
1505
 
1506
+ #: includes/sc_event-list_helptexts.php:68
1507
  #, php-format
1508
  msgid ""
1509
  "You can find all available values with a description and examples in the "
1510
  "sections %1$s and %2$s below."
1511
  msgstr ""
1512
 
1513
+ #: includes/sc_event-list_helptexts.php:73
1514
  #, php-format
1515
  msgid "See %1$s description if you want to define complex filters."
1516
  msgstr ""
1517
 
1518
+ #: includes/sc_event-list_helptexts.php:79
1519
  msgid "category slugs"
1520
  msgstr ""
1521
 
1522
+ #: includes/sc_event-list_helptexts.php:82
1523
  msgid ""
1524
  "This attribute defines the category filter which filters the events to show."
1525
  " The default is $1$s or an empty string to show all events."
1526
  msgstr ""
1527
 
1528
+ #: includes/sc_event-list_helptexts.php:86
1529
  #, php-format
1530
  msgid ""
1531
  "Events with categories that doesn´t match %1$s are not shown in the event "
1532
  "list. They are also not available if a manual url parameter is added."
1533
  msgstr ""
1534
 
1535
+ #: includes/sc_event-list_helptexts.php:90
1536
  #, php-format
1537
  msgid ""
1538
  "The filter is specified via the given category slugs. See %1$s description "
1539
  "if you want to define complex filters."
1540
  msgstr ""
1541
 
1542
+ #: includes/sc_event-list_helptexts.php:96
1543
+ #: includes/sc_event-list_helptexts.php:242
1544
+ #: includes/sc_event-list_helptexts.php:276
1545
+ #: includes/sc_event-list_helptexts.php:318
1546
  msgid "number"
1547
  msgstr ""
1548
 
1549
+ #: includes/sc_event-list_helptexts.php:99
1550
  #, php-format
1551
  msgid ""
1552
  "This attribute defines how many events should be displayed if upcoming "
1554
  "displayed."
1555
  msgstr ""
1556
 
1557
+ #: includes/sc_event-list_helptexts.php:102
1558
  msgid ""
1559
  "Please not that in the actual version there is no pagination of the events "
1560
  "available, so the event list can be very long."
1561
  msgstr ""
1562
 
1563
+ #: includes/sc_event-list_helptexts.php:108
1564
  msgid ""
1565
  "This attribute defines if the filterbar should be displayed. The filterbar "
1566
  "allows the users to specify filters for the listed events."
1567
  msgstr ""
1568
 
1569
+ #: includes/sc_event-list_helptexts.php:110
1570
  #, php-format
1571
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1572
  msgstr ""
1573
 
1574
+ #: includes/sc_event-list_helptexts.php:115
1575
  #, php-format
1576
  msgid ""
1577
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1578
  " in the single event view."
1579
  msgstr ""
1580
 
1581
+ #: includes/sc_event-list_helptexts.php:125
1582
  #, php-format
1583
  msgid ""
1584
  "This attribute specifies the available items in the filterbar. This options "
1585
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1586
  msgstr ""
1587
 
1588
+ #: includes/sc_event-list_helptexts.php:128
1589
  msgid ""
1590
  "Find below an overview of the available filterbar items and their options:"
1591
  msgstr ""
1592
 
1593
+ #: includes/sc_event-list_helptexts.php:132
1594
  msgid "filterbar item"
1595
  msgstr ""
1596
 
1597
+ #: includes/sc_event-list_helptexts.php:133
1598
+ #: includes/sc_event-list_helptexts.php:206
1599
  msgid "description"
1600
  msgstr ""
1601
 
1602
+ #: includes/sc_event-list_helptexts.php:134
1603
  msgid "item options"
1604
  msgstr ""
1605
 
1606
+ #: includes/sc_event-list_helptexts.php:135
1607
  msgid "option values"
1608
  msgstr ""
1609
 
1610
+ #: includes/sc_event-list_helptexts.php:136
1611
  msgid "default value"
1612
  msgstr ""
1613
 
1614
+ #: includes/sc_event-list_helptexts.php:137
1615
  msgid "option description"
1616
  msgstr ""
1617
 
1618
+ #: includes/sc_event-list_helptexts.php:141
1619
  msgid ""
1620
  "Show a list of all available years. Additional there are some special "
1621
  "entries available (see item options)."
1622
  msgstr ""
1623
 
1624
+ #: includes/sc_event-list_helptexts.php:145
1625
+ #: includes/sc_event-list_helptexts.php:156
1626
  msgid "Add an entry to show all events."
1627
  msgstr ""
1628
 
1629
+ #: includes/sc_event-list_helptexts.php:147
1630
+ #: includes/sc_event-list_helptexts.php:158
1631
  msgid "Add an entry to show all upcoming events."
1632
  msgstr ""
1633
 
1634
+ #: includes/sc_event-list_helptexts.php:148
1635
+ #: includes/sc_event-list_helptexts.php:159
1636
  msgid "Add an entry to show events in the past."
1637
  msgstr ""
1638
 
1639
+ #: includes/sc_event-list_helptexts.php:149
1640
  msgid "Set descending or ascending order of year entries."
1641
  msgstr ""
1642
 
1643
+ #: includes/sc_event-list_helptexts.php:152
1644
  msgid "Show a list of all available months."
1645
  msgstr ""
1646
 
1647
+ #: includes/sc_event-list_helptexts.php:160
1648
  msgid "Set descending or ascending order of month entries."
1649
  msgstr ""
1650
 
1651
+ #: includes/sc_event-list_helptexts.php:163
1652
  msgid "php date-formats"
1653
  msgstr ""
1654
 
1655
+ #: includes/sc_event-list_helptexts.php:165
1656
  msgid "Set the displayed date format of the month entries."
1657
  msgstr ""
1658
 
1659
+ #: includes/sc_event-list_helptexts.php:170
1660
  #, php-format
1661
  msgid ""
1662
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1664
  "order."
1665
  msgstr ""
1666
 
1667
+ #: includes/sc_event-list_helptexts.php:179
1668
  #, php-format
1669
  msgid ""
1670
  "Specifies the displayed values and their order. The items must be seperated "
1671
  "by %1$s."
1672
  msgstr ""
1673
 
1674
+ #: includes/sc_event-list_helptexts.php:185
1675
  msgid "Show a list of all available categories."
1676
  msgstr ""
1677
 
1678
+ #: includes/sc_event-list_helptexts.php:189
1679
  msgid "Add an entry to show events from all categories."
1680
  msgstr ""
1681
 
1682
+ #: includes/sc_event-list_helptexts.php:193
1683
  msgid "A link to reset the eventlist filter to standard."
1684
  msgstr ""
1685
 
1686
+ #: includes/sc_event-list_helptexts.php:195
1687
  msgid "any text"
1688
  msgstr ""
1689
 
1690
+ #: includes/sc_event-list_helptexts.php:197
1691
  msgid "Set the caption of the link."
1692
  msgstr ""
1693
 
1694
+ #: includes/sc_event-list_helptexts.php:201
1695
  msgid "Find below an overview of the available filterbar display options:"
1696
  msgstr ""
1697
 
1698
+ #: includes/sc_event-list_helptexts.php:205
1699
  msgid "display option"
1700
  msgstr ""
1701
 
1702
+ #: includes/sc_event-list_helptexts.php:207
1703
  msgid "available for"
1704
  msgstr ""
1705
 
1706
+ #: includes/sc_event-list_helptexts.php:211
1707
  #, php-format
1708
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1709
  msgstr ""
1710
 
1711
+ #: includes/sc_event-list_helptexts.php:216
1712
  msgid ""
1713
  "Shows a select box where an item can be choosen. After the selection of an "
1714
  "item the page is reloaded via javascript to show the filtered events."
1715
  msgstr ""
1716
 
1717
+ #: includes/sc_event-list_helptexts.php:219
1718
  msgid "Shows a simple link which can be clicked."
1719
  msgstr ""
1720
 
1721
+ #: includes/sc_event-list_helptexts.php:222
1722
  msgid "Find below some declaration examples with descriptions:"
1723
  msgstr ""
1724
 
1725
+ #: includes/sc_event-list_helptexts.php:225
1726
  #, php-format
1727
  msgid ""
1728
  "In this example you can see that the filterbar item and the used display "
1730
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1731
  msgstr ""
1732
 
1733
+ #: includes/sc_event-list_helptexts.php:231
1734
  #, php-format
1735
  msgid ""
1736
  "In this example you can see that filterbar options can be added in brackets "
1737
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1738
  msgstr ""
1739
 
1740
+ #: includes/sc_event-list_helptexts.php:232
1741
  msgid "option_name"
1742
  msgstr ""
1743
 
1744
+ #: includes/sc_event-list_helptexts.php:232
1745
  msgid "value"
1746
  msgstr ""
1747
 
1748
+ #: includes/sc_event-list_helptexts.php:236
1749
  #, php-format
1750
  msgid ""
1751
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1754
  "left-aligned and the reset link will be on the right side."
1755
  msgstr ""
1756
 
1757
+ #: includes/sc_event-list_helptexts.php:244
1758
+ #: includes/sc_event-list_helptexts.php:277
1759
  msgid ""
1760
  "This attribute specifies if the title should be truncated to the given "
1761
  "number of characters in the event list."
1762
  msgstr ""
1763
 
1764
+ #: includes/sc_event-list_helptexts.php:246
1765
+ #: includes/sc_event-list_helptexts.php:278
1766
  #, php-format
1767
  msgid ""
1768
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1769
  "is automatically truncated via css."
1770
  msgstr ""
1771
 
1772
+ #: includes/sc_event-list_helptexts.php:250
1773
+ #: includes/sc_event-list_helptexts.php:279
1774
+ #: includes/sc_event-list_helptexts.php:322
1775
  msgid "This attribute has no influence if only a single event is shown."
1776
  msgstr ""
1777
 
1778
+ #: includes/sc_event-list_helptexts.php:257
1779
  msgid ""
1780
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1781
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1782
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1786
  msgid ""
1787
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1788
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1789
+ "\t\t\t\t\tWith \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1790
  msgstr ""
1791
 
1792
+ #: includes/sc_event-list_helptexts.php:286
1793
  msgid ""
1794
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1795
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1796
+ "\t\t\t\t\tWith \"event_list_only\" the categories are 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:297
1800
  msgid ""
1801
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1802
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1803
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1804
  msgstr ""
1805
 
1806
+ #: includes/sc_event-list_helptexts.php:308
1807
  msgid ""
1808
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1809
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1810
+ "\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"
1811
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1812
+ "\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)."
1813
  msgstr ""
1814
 
1815
+ #: includes/sc_event-list_helptexts.php:320
1816
  msgid ""
1817
  "This attribute specifies if the content should be truncate to the given "
1818
  "number of characters in the event list."
1819
  msgstr ""
1820
 
1821
+ #: includes/sc_event-list_helptexts.php:321
1822
  #, php-format
1823
  msgid "With the standard value %1$s the full text is displayed."
1824
  msgstr ""
1825
 
1826
+ #: includes/sc_event-list_helptexts.php:329
1827
  msgid ""
1828
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1829
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1830
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1831
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1832
  msgstr ""
1833
 
1834
+ #: includes/sc_event-list_helptexts.php:341
1835
  msgid ""
1836
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1837
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1838
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1839
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1840
  msgstr ""
1841
 
1842
+ #: includes/sc_event-list_helptexts.php:353
1843
  msgid ""
1844
  "This attribute specifies if a rss feed link should be added.<br />\n"
1845
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1846
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1847
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1848
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1849
  msgstr ""
1850
 
1851
+ #: includes/sc_event-list_helptexts.php:366
1852
  msgid ""
1853
  "This attribute specifies if a ical feed link should be added.<br />\n"
1854
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1855
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1856
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1857
  msgstr ""
1858
 
1859
+ #: includes/sc_event-list_helptexts.php:378
1860
  msgid ""
1861
  "This attribute specifies the page or post url for event links.<br />\n"
1862
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1863
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1864
  msgstr ""
1865
 
1866
+ #: includes/sc_event-list_helptexts.php:391
1867
  msgid ""
1868
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1869
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1870
  msgstr ""
1871
 
1872
+ #: includes/sc_event-list.php:184
1873
  msgid "Sorry, the requested event is not available!"
1874
  msgstr ""
1875
 
1876
+ #: includes/sc_event-list.php:193
1877
  msgid "Event Information:"
1878
  msgstr "Informazioni Evento"
1879
 
1880
+ #: includes/sc_event-list.php:437
1881
  msgid "Link to RSS feed"
1882
  msgstr ""
1883
 
1884
+ #: includes/sc_event-list.php:447
1885
  msgid "Link to iCal feed"
1886
  msgstr ""
1887
 
1914
  msgid "Truncate event title to"
1915
  msgstr "Tronca il titolo dell'evento al"
1916
 
1917
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1918
+ #: includes/widget_helptexts.php:103
1919
  msgid "characters"
1920
  msgstr "caratteri"
1921
 
1922
+ #: includes/widget_helptexts.php:39
1923
  msgid ""
1924
  "This option defines the number of displayed characters for the event title."
1925
  msgstr ""
1926
 
1927
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1928
  #, php-format
1929
  msgid ""
1930
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1931
  "automatically truncate the text via css."
1932
  msgstr ""
1933
 
1934
+ #: includes/widget_helptexts.php:51
1935
  msgid "Show event starttime"
1936
  msgstr "Mostra l'ora di inizio dell'evento"
1937
 
1938
+ #: includes/widget_helptexts.php:53
1939
  msgid "This option defines if the event start time will be displayed."
1940
  msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
1941
 
1942
+ #: includes/widget_helptexts.php:60
1943
  msgid "Show event location"
1944
  msgstr "Mostra ubicazione evento"
1945
 
1946
+ #: includes/widget_helptexts.php:62
1947
  msgid "This option defines if the event location will be displayed."
1948
  msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
1949
 
1950
+ #: includes/widget_helptexts.php:69
1951
  msgid "Truncate location to"
1952
  msgstr "Tronca ubicazione al"
1953
 
1954
+ #: includes/widget_helptexts.php:72
1955
  msgid ""
1956
  "If the event location is diplayed this option defines the number of "
1957
  "displayed characters."
1958
  msgstr ""
1959
 
1960
+ #: includes/widget_helptexts.php:84
1961
  msgid "Show event excerpt"
1962
  msgstr ""
1963
 
1964
+ #: includes/widget_helptexts.php:86
1965
  msgid "This option defines if the event excerpt will be displayed."
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:93
1969
  msgid "Show event content"
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:95
1973
  msgid "This option defines if the event content will be displayed."
1974
  msgstr ""
1975
 
1976
+ #: includes/widget_helptexts.php:102
1977
  msgid "Truncate content to"
1978
  msgstr ""
1979
 
1980
+ #: includes/widget_helptexts.php:105
1981
  msgid ""
1982
  "If the event content are diplayed this option defines the number of diplayed"
1983
  " characters."
1984
  msgstr ""
1985
 
1986
+ #: includes/widget_helptexts.php:107
1987
  #, php-format
1988
  msgid "Set this value to %1$s to view the full text."
1989
  msgstr ""
1990
 
1991
+ #: includes/widget_helptexts.php:116
1992
  msgid "URL to the linked Event List page"
1993
  msgstr ""
1994
 
1995
+ #: includes/widget_helptexts.php:118
1996
  msgid ""
1997
  "This option defines the url to the linked Event List page. This option is "
1998
  "required if you want to use one of the options below."
1999
  msgstr ""
2000
 
2001
+ #: includes/widget_helptexts.php:125
2002
  msgid "Shortcode ID on linked page"
2003
  msgstr ""
2004
 
2005
+ #: includes/widget_helptexts.php:127
2006
  msgid ""
2007
  "This option defines the shortcode-id for the Event List on the linked page. "
2008
  "Normally the standard value 1 is correct, you only have to change it if you "
2009
  "use multiple event-list shortcodes on the linked page."
2010
  msgstr ""
2011
 
2012
+ #: includes/widget_helptexts.php:136
2013
  msgid ""
2014
  "With this option you can add a link to the single event page for every "
2015
  "displayed event. You have to specify the url to the page and the shortcode "
2016
  "id option if you want to use it."
2017
  msgstr ""
2018
 
2019
+ #: includes/widget_helptexts.php:145
2020
  msgid ""
2021
  "With this option you can add a link to the event-list page below the "
2022
  "diplayed events. You have to specify the url to page option if you want to "
2023
  "use it."
2024
  msgstr ""
2025
 
2026
+ #: includes/widget_helptexts.php:152
2027
  msgid "Caption for the link"
2028
  msgstr "Didascalia per il link"
2029
 
2030
+ #: includes/widget_helptexts.php:154
2031
  msgid ""
2032
  "This option defines the text for the link to the Event List page if the "
2033
  "approriate option is selected."
2034
  msgstr ""
2035
 
2036
+ #: includes/widget.php:38
2037
  msgid "With this widget a list of upcoming events can be displayed."
2038
  msgstr "Con questo widget può essere mostrata una lista di eventi"
2039
 
2040
+ #: includes/widget.php:43
2041
  msgid "Upcoming events"
2042
  msgstr "Prossimi eventi"
2043
 
2044
+ #: includes/widget.php:57
2045
  msgid "show events page"
2046
  msgstr "mostra pagina eventi"
languages/event-list-nl_NL.mo CHANGED
Binary file
languages/event-list-nl_NL.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
15
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
18
  "MIME-Version: 1.0\n"
@@ -21,117 +21,117 @@ msgstr ""
21
  "Language: nl_NL\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
 
24
- #: admin/admin.php:64
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr ""
28
 
29
- #: admin/admin.php:64
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
35
  msgid "Event List Settings"
36
  msgstr "Gebeurtenislijst Instellingen"
37
 
38
- #: admin/admin.php:116
39
  msgid "Settings"
40
  msgstr "Instellingen"
41
 
42
- #: admin/admin.php:120 admin/includes/admin-about.php:43
43
  msgid "About Event List"
44
  msgstr "Over Gebeurtenislijst"
45
 
46
- #: admin/admin.php:120
47
  msgid "About"
48
  msgstr "Over"
49
 
50
- #: admin/admin.php:144
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
54
  msgstr[0] ""
55
  msgstr[1] ""
56
 
57
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
58
  msgid "General"
59
  msgstr "Algemeen"
60
 
61
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
62
- #: admin/includes/admin-about.php:117
63
  msgid "Shortcode Attributes"
64
  msgstr "Shortcode Attributen"
65
 
66
- #: admin/includes/admin-about.php:82
67
  msgid "Help and Instructions"
68
  msgstr "Hulp en instructies"
69
 
70
- #: admin/includes/admin-about.php:83
71
  #, php-format
72
  msgid "You can manage the events %1$shere%2$s"
73
  msgstr ""
74
 
75
- #: admin/includes/admin-about.php:84
76
  msgid "To show the events on your site you have 2 possibilities"
77
  msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden"
78
 
79
- #: admin/includes/admin-about.php:85
80
  #, php-format
81
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
82
  msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen"
83
 
84
- #: admin/includes/admin-about.php:86
85
  #, php-format
86
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
87
  msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen"
88
 
89
- #: admin/includes/admin-about.php:87
90
  msgid ""
91
  "The displayed events and their style can be modified with the available "
92
  "widget settings and the available attributes for the shortcode."
93
  msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode."
94
 
95
- #: admin/includes/admin-about.php:88
96
  #, php-format
97
  msgid ""
98
  "A list of all available shortcode attributes with their descriptions is "
99
  "available in the %1$s tab."
100
  msgstr ""
101
 
102
- #: admin/includes/admin-about.php:89
103
  msgid "The available widget options are described in their tooltip text."
104
  msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst."
105
 
106
- #: admin/includes/admin-about.php:90
107
  #, php-format
108
  msgid ""
109
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
110
  " to insert an URL to the linked event-list page."
111
  msgstr ""
112
 
113
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
114
  msgid "Add links to the single events"
115
  msgstr "Voeg links toe aan de enkele gebeurtenis"
116
 
117
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
118
  msgid "Add a link to the Event List page"
119
  msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
120
 
121
- #: admin/includes/admin-about.php:91
122
  msgid ""
123
  "This is required because the widget does not know in which page or post the "
124
  "shortcode was included."
125
  msgstr ""
126
 
127
- #: admin/includes/admin-about.php:92
128
  msgid ""
129
  "Additionally you have to insert the correct Shortcode id on the linked page."
130
  " This id describes which shortcode should be used on the given page or post "
131
  "if you have more than one."
132
  msgstr ""
133
 
134
- #: admin/includes/admin-about.php:93
135
  #, php-format
136
  msgid ""
137
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -139,592 +139,596 @@ msgid ""
139
  "link on your linked page or post."
140
  msgstr ""
141
 
142
- #: admin/includes/admin-about.php:94
143
  #, php-format
144
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
145
  msgstr ""
146
 
147
- #: admin/includes/admin-about.php:96
148
  #, php-format
149
  msgid ""
150
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
151
  "want."
152
  msgstr ""
153
 
154
- #: admin/includes/admin-about.php:96
155
  msgid "Settings page"
156
  msgstr "Pagina instellingen"
157
 
158
- #: admin/includes/admin-about.php:103
159
  msgid "About the plugin author"
160
  msgstr "Over de plugin ontwikkelaar"
161
 
162
- #: admin/includes/admin-about.php:105
163
  #, php-format
164
  msgid ""
165
  "This plugin is developed by %1$s, you can find more information about the "
166
  "plugin on the %2$s."
167
  msgstr "Deze plugin is ontwikkeld door %1$s, meer informatie over de plugin vind je hier %2$s."
168
 
169
- #: admin/includes/admin-about.php:105
170
  msgid "WordPress plugin site"
171
  msgstr ""
172
 
173
- #: admin/includes/admin-about.php:106
174
  #, php-format
175
  msgid "If you like the plugin please rate it on the %1$s."
176
  msgstr ""
177
 
178
- #: admin/includes/admin-about.php:106
179
  msgid "WordPress plugin review site"
180
  msgstr ""
181
 
182
- #: admin/includes/admin-about.php:107
183
  msgid ""
184
  "If you want to support the plugin I would be happy to get a small donation"
185
  msgstr ""
186
 
187
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
188
- #: admin/includes/admin-about.php:110
189
  #, php-format
190
  msgid "Donate with %1$s"
191
  msgstr ""
192
 
193
- #: admin/includes/admin-about.php:119
194
  msgid ""
195
  "You have the possibility to modify the output if you add some of the "
196
  "following attributes to the shortcode."
197
  msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
198
 
199
- #: admin/includes/admin-about.php:120
200
  #, php-format
201
  msgid ""
202
  "You can combine and add as much attributes as you want. E.g. the shortcode "
203
  "including the attributes %1$s and %2$s would looks like this:"
204
  msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
205
 
206
- #: admin/includes/admin-about.php:122
207
  msgid ""
208
  "Below you can find a list of all supported attributes with their "
209
  "descriptions and available options:"
210
  msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
211
 
212
- #: admin/includes/admin-about.php:137
213
  msgid "Attribute name"
214
  msgstr "Attribuut naam"
215
 
216
- #: admin/includes/admin-about.php:138
217
  msgid "Value options"
218
  msgstr "Waarde opties"
219
 
220
- #: admin/includes/admin-about.php:139
221
  msgid "Default value"
222
  msgstr "Standaard waarde"
223
 
224
- #: admin/includes/admin-about.php:140
225
  msgid "Description"
226
  msgstr "Omschrijving"
227
 
228
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
229
- #: includes/sc_event-list_helptexts.php:42
230
  msgid "Filter Syntax"
231
  msgstr "Filter Syntax"
232
 
233
- #: admin/includes/admin-about.php:160
234
  msgid ""
235
  "For date and cat filters you can specify complex filters with the following "
236
  "syntax:"
237
  msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
238
 
239
- #: admin/includes/admin-about.php:161
240
  #, php-format
241
  msgid ""
242
  "You can use %1$s and %2$s connections to define complex filters. "
243
  "Additionally you can set brackets %3$s for nested queries."
244
  msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
245
 
246
- #: admin/includes/admin-about.php:161
247
  msgid "AND"
248
  msgstr "EN"
249
 
250
- #: admin/includes/admin-about.php:161
251
  msgid "OR"
252
  msgstr "OF"
253
 
254
- #: admin/includes/admin-about.php:161
255
  msgid "or"
256
  msgstr "of"
257
 
258
- #: admin/includes/admin-about.php:161
259
  msgid "and"
260
  msgstr "en"
261
 
262
- #: admin/includes/admin-about.php:162
263
  msgid "Examples for cat filters:"
264
  msgstr "Voorbeelden voor categorie filters:"
265
 
266
- #: admin/includes/admin-about.php:163
267
  #, php-format
268
  msgid "Show all events with category %1$s."
269
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
270
 
271
- #: admin/includes/admin-about.php:164
272
  #, php-format
273
  msgid "Show all events with category %1$s or %2$s."
274
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
275
 
276
- #: admin/includes/admin-about.php:165
277
  #, php-format
278
  msgid ""
279
  "Show all events with category %1$s and all events where category %2$s as "
280
  "well as %3$s is selected."
281
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
282
 
283
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
284
  msgid "Available Date Formats"
285
  msgstr "Beschikbare Datum Notaties"
286
 
287
- #: admin/includes/admin-about.php:172
288
  msgid "For date filters you can use the following date formats:"
289
  msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
290
 
291
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
292
  msgid "Available Date Range Formats"
293
  msgstr "Beschikbare Datum Bereik Notaties"
294
 
295
- #: admin/includes/admin-about.php:182
296
  msgid "For date filters you can use the following daterange formats:"
297
  msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
298
 
299
- #: admin/includes/admin-about.php:195
300
  msgid "Value"
301
  msgstr "Waarde"
302
 
303
- #: admin/includes/admin-about.php:199
304
  msgid "Example"
305
  msgstr "Voorbeeld"
306
 
307
- #: admin/includes/admin-categories.php:54
308
  msgid "Synchronize with post categories"
309
  msgstr ""
310
 
311
- #: admin/includes/admin-categories.php:63
312
  #, php-format
313
  msgid "%1$s categories modified (%2$s)"
314
  msgstr ""
315
 
316
- #: admin/includes/admin-categories.php:64
317
  #, php-format
318
  msgid "%1$s categories added (%2$s)"
319
  msgstr ""
320
 
321
- #: admin/includes/admin-categories.php:65
322
  #, php-format
323
  msgid "%1$s categories deleted (%2$s)"
324
  msgstr ""
325
 
326
- #: admin/includes/admin-categories.php:67
327
  #, php-format
328
  msgid "%1$s categories not modified (%2$s)"
329
  msgstr ""
330
 
331
- #: admin/includes/admin-categories.php:68
332
  #, php-format
333
  msgid "%1$s categories not added (%2$s)"
334
  msgstr ""
335
 
336
- #: admin/includes/admin-categories.php:69
337
  #, php-format
338
  msgid "%1$s categories not deleted (%2$s)"
339
  msgstr ""
340
 
341
- #: admin/includes/admin-categories.php:72
342
  msgid "An Error occured during the category sync"
343
  msgstr ""
344
 
345
- #: admin/includes/admin-categories.php:75
346
  msgid "Category sync finished"
347
  msgstr ""
348
 
349
- #: admin/includes/admin-category-sync.php:54
350
  msgid "Error: You are not allowed to view this page!"
351
  msgstr ""
352
 
353
- #: admin/includes/admin-category-sync.php:70
354
  msgid "Affected Categories when switching to seperate Event Categories"
355
  msgstr ""
356
 
357
- #: admin/includes/admin-category-sync.php:71
358
  msgid "Switch option to seperate Event Categories"
359
  msgstr ""
360
 
361
- #: admin/includes/admin-category-sync.php:72
362
  msgid ""
363
  "If you proceed, all post categories will be copied and all events will be "
364
  "re-assigned to this new categories."
365
  msgstr ""
366
 
367
- #: admin/includes/admin-category-sync.php:73
368
  msgid ""
369
  "Afterwards the event categories are independent of the post categories."
370
  msgstr ""
371
 
372
- #: admin/includes/admin-category-sync.php:75
373
  msgid "Affected Categories when switching to use Post Categories for events"
374
  msgstr ""
375
 
376
- #: admin/includes/admin-category-sync.php:76
377
  msgid "Switch option to use Post Categories for events"
378
  msgstr ""
379
 
380
- #: admin/includes/admin-category-sync.php:77
381
  msgid ""
382
  "Take a detailed look at the affected categories above before you proceed! "
383
  "All seperate event categories will be deleted, this cannot be undone!"
384
  msgstr ""
385
 
386
- #: admin/includes/admin-category-sync.php:79
387
  msgid "Event Categories: Synchronise with Post Categories"
388
  msgstr ""
389
 
390
- #: admin/includes/admin-category-sync.php:80
391
  msgid "Start synchronisation"
392
  msgstr ""
393
 
394
- #: admin/includes/admin-category-sync.php:81
395
  msgid ""
396
  "If this option is enabled the above listed categories will be deleted and "
397
  "removed from the existing events!"
398
  msgstr ""
399
 
400
- #: admin/includes/admin-category-sync.php:96
401
  msgid "Categories to modify"
402
  msgstr ""
403
 
404
- #: admin/includes/admin-category-sync.php:97
405
  msgid "Categories to add"
406
  msgstr ""
407
 
408
- #: admin/includes/admin-category-sync.php:98
409
  msgid "Categories to delete (optional)"
410
  msgstr ""
411
 
412
- #: admin/includes/admin-category-sync.php:99
413
  msgid "Delete not available post categories"
414
  msgstr ""
415
 
416
- #: admin/includes/admin-category-sync.php:102
417
  msgid "Categories with differences"
418
  msgstr ""
419
 
420
- #: admin/includes/admin-category-sync.php:103
421
  msgid "Categories to add (optional)"
422
  msgstr ""
423
 
424
- #: admin/includes/admin-category-sync.php:104
425
  msgid "Add not available post categories"
426
  msgstr ""
427
 
428
- #: admin/includes/admin-category-sync.php:123
429
  msgid "none"
430
  msgstr ""
431
 
432
- #: admin/includes/admin-import.php:58
433
  msgid "Import Events"
434
  msgstr "Importeer Gebeurtenissen"
435
 
436
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
437
- #: admin/includes/admin-import.php:220
438
  msgid "Step"
439
  msgstr "Stap"
440
 
441
- #: admin/includes/admin-import.php:79
442
  msgid "Set import file and options"
443
  msgstr "Stel het import bestand en opties in"
444
 
445
- #: admin/includes/admin-import.php:82
446
  #, php-format
447
  msgid "Proceed with Step %1$s"
448
  msgstr "Ga door naar stap %1$s"
449
 
450
- #: admin/includes/admin-import.php:85
451
  msgid "Example file"
452
  msgstr "Voorbeeld bestand"
453
 
454
- #: admin/includes/admin-import.php:86
455
  #, php-format
456
  msgid ""
457
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
458
  msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
459
 
460
- #: admin/includes/admin-import.php:87
461
  msgid "Note"
462
  msgstr "Aantekening"
463
 
464
- #: admin/includes/admin-import.php:87
465
  msgid ""
466
  "Do not change the column header and separator line (first two lines), "
467
  "otherwise the import will fail!"
468
  msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
469
 
470
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
471
  msgid "Sorry, there has been an error."
472
  msgstr "Sorry, er ging iets fout."
473
 
474
- #: admin/includes/admin-import.php:96
475
  msgid "The file does not exist, please try again."
476
  msgstr "Het bestand bestaat niet, probeer het nog eens."
477
 
478
- #: admin/includes/admin-import.php:104
479
  msgid "The uploaded file does not have the required csv extension."
480
  msgstr ""
481
 
482
- #: admin/includes/admin-import.php:116
483
  msgid "Events review and additonal category selection"
484
  msgstr ""
485
 
486
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
487
  msgid "Error"
488
  msgstr ""
489
 
490
- #: admin/includes/admin-import.php:122
491
  msgid "This CSV file cannot be imported"
492
  msgstr ""
493
 
494
- #: admin/includes/admin-import.php:133
495
  msgid "None of the events in this CSV file can be imported"
496
  msgstr ""
497
 
498
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
499
  msgid "Warning"
500
  msgstr ""
501
 
502
- #: admin/includes/admin-import.php:138
503
  #, php-format
504
  msgid "There is %1$s event which cannot be imported"
505
  msgid_plural "There are %1$s events which cannot be imported"
506
  msgstr[0] ""
507
  msgstr[1] ""
508
 
509
- #: admin/includes/admin-import.php:150
510
  #, php-format
511
  msgid "CSV line %1$s"
512
  msgstr ""
513
 
514
- #: admin/includes/admin-import.php:160
515
  msgid "You can still import all other events listed below."
516
  msgstr ""
517
 
518
- #: admin/includes/admin-import.php:179
519
  msgid ""
520
  "The following category slugs are not available and will be removed from the "
521
  "imported events"
522
  msgstr ""
523
 
524
- #: admin/includes/admin-import.php:185
525
  msgid ""
526
  "If you want to keep these categories, please create these Categories first "
527
  "and do the import afterwards."
528
  msgstr ""
529
 
530
- #: admin/includes/admin-import.php:220
531
  msgid "Import result"
532
  msgstr ""
533
 
534
- #: admin/includes/admin-import.php:223
535
  #, php-format
536
  msgid "Import of %1$s events successful!"
537
  msgstr ""
538
 
539
- #: admin/includes/admin-import.php:224
540
  msgid "Go back to All Events"
541
  msgstr "Ga terug naar Alle Gebeurtenissen"
542
 
543
- #: admin/includes/admin-import.php:227
544
  msgid "Errors during Import"
545
  msgstr ""
546
 
547
- #: admin/includes/admin-import.php:235
548
  msgid "Event from CSV-line"
549
  msgstr ""
550
 
551
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
552
  #: includes/widget_helptexts.php:9
553
  msgid "Title"
554
  msgstr "Titel"
555
 
556
- #: admin/includes/admin-import.php:248
557
  msgid "Start Date"
558
  msgstr "Start Datum"
559
 
560
- #: admin/includes/admin-import.php:249
561
  msgid "End Date"
562
  msgstr "Eind Datum"
563
 
564
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
565
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
566
  msgid "Time"
567
  msgstr "Tijd"
568
 
569
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
570
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
571
  #: includes/options_helptexts.php:76
572
  msgid "Location"
573
  msgstr "Locatie"
574
 
575
- #: admin/includes/admin-import.php:252
576
  msgid "Content"
577
  msgstr ""
578
 
579
- #: admin/includes/admin-import.php:253
580
  msgid "Category slugs"
581
  msgstr ""
582
 
583
- #: admin/includes/admin-import.php:297
584
  msgid "Header line is missing or not correct!"
585
  msgstr ""
586
 
587
- #: admin/includes/admin-import.php:298
588
  #, php-format
589
  msgid ""
590
  "Have a look at the %1$sexample file%2$s to see the correct header line "
591
  "format."
592
  msgstr ""
593
 
594
- #: admin/includes/admin-import.php:305
595
  #, php-format
596
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
597
  msgstr ""
598
 
599
- #: admin/includes/admin-import.php:334
600
  msgid "Empty event title found"
601
  msgstr ""
602
 
603
- #: admin/includes/admin-import.php:340
604
  msgid "Wrong date format for startdate"
605
  msgstr ""
606
 
607
- #: admin/includes/admin-import.php:348
608
  msgid "Wrong date format for enddate"
609
  msgstr ""
610
 
611
- #: admin/includes/admin-import.php:401
612
  msgid "Import events"
613
  msgstr "Importeer gebeurtenis"
614
 
615
- #: admin/includes/admin-import.php:402
616
  msgid "Add additional categories"
617
  msgstr "Voeg extra categorieën toe"
618
 
619
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
620
- msgid "Import"
621
- msgstr "Importeer"
622
-
623
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
624
  msgid "No events found"
625
  msgstr ""
626
 
627
- #: admin/includes/admin-import.php:473
628
  msgid "Saving of event failed!"
629
  msgstr ""
630
 
631
- #: admin/includes/admin-main.php:76
632
  msgid "Event Date"
633
  msgstr ""
634
 
635
- #: admin/includes/admin-main.php:80
636
  msgid "Author"
637
  msgstr "Auteur"
638
 
639
- #: admin/includes/admin-main.php:148
640
  #, php-format
641
  msgid "Add a copy of %1$s"
642
  msgstr ""
643
 
644
- #: admin/includes/admin-main.php:148
645
  msgid "Copy"
646
  msgstr ""
647
 
648
- #: admin/includes/admin-new.php:58
 
 
 
 
649
  msgid "Event data"
650
  msgstr ""
651
 
652
- #: admin/includes/admin-new.php:90
653
  msgid "Add Copy"
654
  msgstr ""
655
 
656
- #: admin/includes/admin-new.php:98
657
  msgid "Date"
658
  msgstr "Datum"
659
 
660
- #: admin/includes/admin-new.php:98
661
  msgid "required"
662
  msgstr "vereist"
663
 
664
- #: admin/includes/admin-new.php:101
665
  msgid "Multi-Day Event"
666
  msgstr "Meerdaagse gebeurtenis"
667
 
668
- #: admin/includes/admin-new.php:121
669
  msgid "Event Title"
670
  msgstr ""
671
 
672
- #: admin/includes/admin-new.php:137
673
  msgid "Event Content"
674
  msgstr ""
675
 
676
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
677
  msgid "Event updated."
678
  msgstr ""
679
 
680
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
681
  msgid "View event"
682
  msgstr ""
683
 
684
- #: admin/includes/admin-new.php:204
685
  #, php-format
686
  msgid "Event restored to revision from %1$s"
687
  msgstr ""
688
 
689
- #: admin/includes/admin-new.php:205
690
  msgid "Event published."
691
  msgstr ""
692
 
693
- #: admin/includes/admin-new.php:207
 
 
 
 
694
  msgid "Event submitted."
695
  msgstr ""
696
 
697
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
698
- #: admin/includes/admin-new.php:210
699
  msgid "Preview event"
700
  msgstr ""
701
 
702
- #: admin/includes/admin-new.php:208
703
  #, php-format
704
  msgid "Event scheduled for: %1$s>"
705
  msgstr ""
706
 
707
- #: admin/includes/admin-new.php:210
708
  msgid "Event draft updated."
709
  msgstr ""
710
 
711
- #: admin/includes/admin-settings.php:79
712
  msgid "Go to Event Category switching page"
713
  msgstr ""
714
 
715
- #: admin/includes/admin-settings.php:93
716
  msgid "Frontend Settings"
717
  msgstr "Frontend Instellingen"
718
 
719
- #: admin/includes/admin-settings.php:94
720
  msgid "Admin Page Settings"
721
  msgstr "Admin Pagina Instellingen"
722
 
723
- #: admin/includes/admin-settings.php:95
724
  msgid "Feed Settings"
725
  msgstr "Feed Instellingen"
726
 
727
- #: admin/includes/admin-settings.php:96
728
  msgid "Category Taxonomy"
729
  msgstr ""
730
 
@@ -732,255 +736,255 @@ msgstr ""
732
  msgid "Year"
733
  msgstr "Jaar"
734
 
735
- #: includes/daterange_helptexts.php:9
736
  msgid "A year can be specified in 4 digit format."
737
  msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
738
 
739
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
740
- #: includes/daterange_helptexts.php:47
741
  #, php-format
742
  msgid ""
743
  "For a start date filter the first day of %1$s is used, in an end date the "
744
  "last day."
745
  msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag"
746
 
747
- #: includes/daterange_helptexts.php:10
748
  msgid "the resulting year"
749
  msgstr "het betreffende jaar"
750
 
751
- #: includes/daterange_helptexts.php:15
752
  msgid "Month"
753
  msgstr "Maand"
754
 
755
- #: includes/daterange_helptexts.php:16
756
  msgid ""
757
  "A month can be specified with 4 digits for the year and 2 digits for the "
758
  "month, seperated by a hyphen (-)."
759
  msgstr "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)"
760
 
761
- #: includes/daterange_helptexts.php:17
762
  msgid "the resulting month"
763
  msgstr "de betreffende maand"
764
 
765
- #: includes/daterange_helptexts.php:22
766
  msgid "Day"
767
  msgstr "Dag"
768
 
769
- #: includes/daterange_helptexts.php:23
770
  msgid ""
771
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
772
  " month and 2 digets for the day, seperated by hyphens (-)."
773
  msgstr "Een dag kan aangegeven worden met 4 cijfers voor het jaar, 2 cijfers voor de maand en 2 cijfers voor de dag, gescheiden door een streepje (-)"
774
 
775
- #: includes/daterange_helptexts.php:28
776
  msgid "Relative Year"
777
  msgstr "Relatief Jaar"
778
 
779
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
780
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
781
  #, php-format
782
  msgid "%1$s from now can be specified in the following notation: %2$s"
783
  msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s"
784
 
785
- #: includes/daterange_helptexts.php:29
786
  msgid "A relative year"
787
  msgstr "Een relatief jaar"
788
 
789
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
790
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
791
  #, php-format
792
  msgid ""
793
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
794
  "%3$s or %4$s attached (see also the example below)."
795
  msgstr "Dit betekent dat je een een positief of negatief (%1$s) %2$s vanaf nu kan aangeven met %3$s of %4$s erachter gevoegd (zie ook het voorbeeld hieronder)."
796
 
797
- #: includes/daterange_helptexts.php:30
798
  msgid "number of years"
799
  msgstr "aantal jaar"
800
 
801
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
802
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
803
  #, php-format
804
  msgid "Additionally the following values are available: %1$s"
805
  msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s"
806
 
807
- #: includes/daterange_helptexts.php:36
808
  msgid "Relative Month"
809
  msgstr "Relatieve Maand"
810
 
811
- #: includes/daterange_helptexts.php:37
812
  msgid "A relative month"
813
  msgstr "Een relatieve maand"
814
 
815
- #: includes/daterange_helptexts.php:38
816
  msgid "number of months"
817
  msgstr "aantal maand"
818
 
819
- #: includes/daterange_helptexts.php:44
820
  msgid "Relative Week"
821
  msgstr "Relatieve Week"
822
 
823
- #: includes/daterange_helptexts.php:45
824
  msgid "A relative week"
825
  msgstr "Een relatieve week"
826
 
827
- #: includes/daterange_helptexts.php:46
828
  msgid "number of weeks"
829
  msgstr "aantal weken"
830
 
831
- #: includes/daterange_helptexts.php:47
832
  msgid "the resulting week"
833
  msgstr "de betreffende week"
834
 
835
- #: includes/daterange_helptexts.php:48
836
  #, php-format
837
  msgid ""
838
  "The first day of the week is depending on the option %1$s which can be found"
839
  " and changed in %2$s."
840
  msgstr "De eerste dag van de week is afhankelijk van de optie %1$s, die terug te vinden en aan te passen is bij %2$s."
841
 
842
- #: includes/daterange_helptexts.php:54
843
  msgid "Relative Day"
844
  msgstr "Relatieve Dag"
845
 
846
- #: includes/daterange_helptexts.php:55
847
  msgid "A relative day"
848
  msgstr "Een relatieve dag"
849
 
850
- #: includes/daterange_helptexts.php:56
851
  msgid "number of days"
852
  msgstr "aantal dagen"
853
 
854
- #: includes/daterange_helptexts.php:64
855
  msgid "Date range"
856
  msgstr "Datumbereik"
857
 
858
- #: includes/daterange_helptexts.php:66
859
  msgid ""
860
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
861
- "\t For the start and end date any available date format can be used."
862
- msgstr "Een datumbereik kan aangegeven worden via een startdatum en einddatum gescheiden door een tilde (~).<br />\n\t Voor de start- en einddatum kan elk datumnotatie gebruikt worden."
863
 
864
- #: includes/daterange_helptexts.php:75
865
  msgid "This value defines a range without any limits."
866
  msgstr "Deze waarde geeft een bereik zonder einde aan."
867
 
868
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
869
- #: includes/daterange_helptexts.php:90
870
  #, php-format
871
  msgid "The corresponding date_range format is: %1$s"
872
  msgstr "De bijbehorende date_range instelling is: %1$s"
873
 
874
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
875
  msgid "Upcoming"
876
  msgstr "Komende"
877
 
878
- #: includes/daterange_helptexts.php:82
879
  msgid "This value defines a range from the actual day to the future."
880
  msgstr "De waarde geeft een bereik aan van vandaag tot in de toekomst."
881
 
882
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
883
  msgid "Past"
884
  msgstr "Eerdere"
885
 
886
- #: includes/daterange_helptexts.php:89
887
  msgid "This value defines a range from the past to the previous day."
888
  msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
889
 
890
- #: includes/event.php:124
891
  msgid "No valid start date provided"
892
  msgstr ""
893
 
894
- #: includes/event.php:299 includes/event.php:301
895
- #: includes/sc_event-list.php:298
896
  msgid "read more"
897
  msgstr ""
898
 
899
- #: includes/events_post_type.php:69
900
  msgid "Events"
901
  msgstr "Gebeurtenissen"
902
 
903
- #: includes/events_post_type.php:70
904
  msgid "Event"
905
  msgstr ""
906
 
907
- #: includes/events_post_type.php:71
908
  msgid "Add New"
909
  msgstr "Nieuwe toevoegen"
910
 
911
- #: includes/events_post_type.php:72
912
  msgid "Add New Event"
913
  msgstr "Maak een nieuwe gebeurtenis"
914
 
915
- #: includes/events_post_type.php:73
916
  msgid "Edit Event"
917
  msgstr "Gebeurtenis Aanpassen"
918
 
919
- #: includes/events_post_type.php:74
920
  msgid "New Event"
921
  msgstr ""
922
 
923
- #: includes/events_post_type.php:75
924
  msgid "View Event"
925
  msgstr ""
926
 
927
- #: includes/events_post_type.php:76
928
  msgid "View Events"
929
  msgstr ""
930
 
931
- #: includes/events_post_type.php:77
932
  msgid "Search Events"
933
  msgstr ""
934
 
935
- #: includes/events_post_type.php:79
936
  msgid "No events found in Trash"
937
  msgstr ""
938
 
939
- #: includes/events_post_type.php:81
940
  msgid "All Events"
941
  msgstr "Alle gebeurtenissen"
942
 
943
- #: includes/events_post_type.php:82
944
  msgid "Event Archives"
945
  msgstr ""
946
 
947
- #: includes/events_post_type.php:83
948
  msgid "Event Attributes"
949
  msgstr ""
950
 
951
- #: includes/events_post_type.php:84
952
  msgid "Insert into event"
953
  msgstr ""
954
 
955
- #: includes/events_post_type.php:85
956
  msgid "Uploaded to this event"
957
  msgstr ""
958
 
959
- #: includes/events_post_type.php:86
960
  msgid "Event List"
961
  msgstr "Gebeurtenislijst"
962
 
963
- #: includes/events_post_type.php:87
964
  msgid "Filter events list"
965
  msgstr ""
966
 
967
- #: includes/events_post_type.php:88
968
  msgid "Events list navigation"
969
  msgstr ""
970
 
971
- #: includes/events_post_type.php:89
972
  msgid "Events list"
973
  msgstr ""
974
 
975
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
976
  msgid "Reset"
977
  msgstr "Herstel naar beginwaardes"
978
 
979
- #: includes/filterbar.php:296
980
  msgid "All"
981
  msgstr "Alles"
982
 
983
- #: includes/filterbar.php:298
984
  msgid "All Dates"
985
  msgstr ""
986
 
@@ -1420,23 +1424,23 @@ msgid ""
1420
  " switching page from here."
1421
  msgstr ""
1422
 
1423
- #: includes/options.php:73
1424
  msgid "events"
1425
  msgstr ""
1426
 
1427
- #: includes/options.php:77
1428
  msgid "Show content"
1429
  msgstr ""
1430
 
1431
- #: includes/options.php:81
1432
  msgid "Hide content"
1433
  msgstr ""
1434
 
1435
- #: includes/sc_event-list_helptexts.php:8
1436
  msgid "event-id"
1437
  msgstr "gebeurtenis-id"
1438
 
1439
- #: includes/sc_event-list_helptexts.php:9
1440
  #, php-format
1441
  msgid ""
1442
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1444,107 +1448,108 @@ msgid ""
1444
  "this event is shown."
1445
  msgstr ""
1446
 
1447
- #: includes/sc_event-list_helptexts.php:13
1448
- #: includes/sc_event-list_helptexts.php:31
1449
  msgid "year"
1450
  msgstr "jaar"
1451
 
1452
- #: includes/sc_event-list_helptexts.php:14
1453
  msgid ""
1454
  "This attribute defines which events are initially shown. The default is to "
1455
  "show the upcoming events only."
1456
  msgstr ""
1457
 
1458
- #: includes/sc_event-list_helptexts.php:15
1459
  #, php-format
1460
  msgid ""
1461
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1462
  "change the displayed event date range via the filterbar or url parameters."
1463
  msgstr ""
1464
 
1465
- #: includes/sc_event-list_helptexts.php:19
1466
  msgid "category slug"
1467
  msgstr ""
1468
 
1469
- #: includes/sc_event-list_helptexts.php:20
1470
  msgid ""
1471
  "This attribute defines the category of which events are initially shown. The"
1472
  " default is to show events of all categories."
1473
  msgstr ""
1474
 
1475
- #: includes/sc_event-list_helptexts.php:21
1476
  msgid ""
1477
  "Provide a category slug to change this behavior. It is still possible to "
1478
  "change the displayed categories via the filterbar or url parameters."
1479
  msgstr ""
1480
 
1481
- #: includes/sc_event-list_helptexts.php:26
1482
  msgid "This attribute defines the initial order of the events."
1483
  msgstr ""
1484
 
1485
- #: includes/sc_event-list_helptexts.php:27
 
1486
  msgid ""
1487
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1488
  "in the opposite direction (from new to old)."
1489
  msgstr ""
1490
 
1491
- #: includes/sc_event-list_helptexts.php:32
1492
  #, php-format
1493
  msgid ""
1494
  "This attribute defines the dates and date ranges of which events are "
1495
  "displayed. The default is %1$s to show all events."
1496
  msgstr ""
1497
 
1498
- #: includes/sc_event-list_helptexts.php:33
1499
  #, php-format
1500
  msgid ""
1501
  "Filtered events according to %1$s value are not available in the event list."
1502
  msgstr ""
1503
 
1504
- #: includes/sc_event-list_helptexts.php:34
1505
  #, php-format
1506
  msgid ""
1507
  "You can find all available values with a description and examples in the "
1508
  "sections %1$s and %2$s below."
1509
  msgstr ""
1510
 
1511
- #: includes/sc_event-list_helptexts.php:35
1512
  #, php-format
1513
  msgid "See %1$s description if you want to define complex filters."
1514
  msgstr ""
1515
 
1516
- #: includes/sc_event-list_helptexts.php:39
1517
  msgid "category slugs"
1518
  msgstr ""
1519
 
1520
- #: includes/sc_event-list_helptexts.php:40
1521
  msgid ""
1522
  "This attribute defines the category filter which filters the events to show."
1523
  " The default is $1$s or an empty string to show all events."
1524
  msgstr ""
1525
 
1526
- #: includes/sc_event-list_helptexts.php:41
1527
  #, php-format
1528
  msgid ""
1529
  "Events with categories that doesn´t match %1$s are not shown in the event "
1530
  "list. They are also not available if a manual url parameter is added."
1531
  msgstr ""
1532
 
1533
- #: includes/sc_event-list_helptexts.php:42
1534
  #, php-format
1535
  msgid ""
1536
  "The filter is specified via the given category slugs. See %1$s description "
1537
  "if you want to define complex filters."
1538
  msgstr ""
1539
 
1540
- #: includes/sc_event-list_helptexts.php:46
1541
- #: includes/sc_event-list_helptexts.php:111
1542
- #: includes/sc_event-list_helptexts.php:138
1543
- #: includes/sc_event-list_helptexts.php:177
1544
  msgid "number"
1545
  msgstr "nummer"
1546
 
1547
- #: includes/sc_event-list_helptexts.php:47
1548
  #, php-format
1549
  msgid ""
1550
  "This attribute defines how many events should be displayed if upcoming "
@@ -1552,109 +1557,109 @@ msgid ""
1552
  "displayed."
1553
  msgstr ""
1554
 
1555
- #: includes/sc_event-list_helptexts.php:48
1556
  msgid ""
1557
  "Please not that in the actual version there is no pagination of the events "
1558
  "available, so the event list can be very long."
1559
  msgstr ""
1560
 
1561
- #: includes/sc_event-list_helptexts.php:53
1562
  msgid ""
1563
  "This attribute defines if the filterbar should be displayed. The filterbar "
1564
  "allows the users to specify filters for the listed events."
1565
  msgstr ""
1566
 
1567
- #: includes/sc_event-list_helptexts.php:54
1568
  #, php-format
1569
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1570
  msgstr ""
1571
 
1572
- #: includes/sc_event-list_helptexts.php:55
1573
  #, php-format
1574
  msgid ""
1575
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1576
  " in the single event view."
1577
  msgstr ""
1578
 
1579
- #: includes/sc_event-list_helptexts.php:60
1580
  #, php-format
1581
  msgid ""
1582
  "This attribute specifies the available items in the filterbar. This options "
1583
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1584
  msgstr ""
1585
 
1586
- #: includes/sc_event-list_helptexts.php:61
1587
  msgid ""
1588
  "Find below an overview of the available filterbar items and their options:"
1589
  msgstr ""
1590
 
1591
- #: includes/sc_event-list_helptexts.php:64
1592
  msgid "filterbar item"
1593
  msgstr ""
1594
 
1595
- #: includes/sc_event-list_helptexts.php:64
1596
- #: includes/sc_event-list_helptexts.php:96
1597
  msgid "description"
1598
  msgstr "omschrijving"
1599
 
1600
- #: includes/sc_event-list_helptexts.php:64
1601
  msgid "item options"
1602
  msgstr "item opties"
1603
 
1604
- #: includes/sc_event-list_helptexts.php:64
1605
  msgid "option values"
1606
  msgstr "optie waarden"
1607
 
1608
- #: includes/sc_event-list_helptexts.php:64
1609
  msgid "default value"
1610
  msgstr "standaardwaarde"
1611
 
1612
- #: includes/sc_event-list_helptexts.php:64
1613
  msgid "option description"
1614
  msgstr "optie omschrijving"
1615
 
1616
- #: includes/sc_event-list_helptexts.php:67
1617
  msgid ""
1618
  "Show a list of all available years. Additional there are some special "
1619
  "entries available (see item options)."
1620
  msgstr ""
1621
 
1622
- #: includes/sc_event-list_helptexts.php:71
1623
- #: includes/sc_event-list_helptexts.php:82
1624
  msgid "Add an entry to show all events."
1625
  msgstr ""
1626
 
1627
- #: includes/sc_event-list_helptexts.php:73
1628
- #: includes/sc_event-list_helptexts.php:84
1629
  msgid "Add an entry to show all upcoming events."
1630
  msgstr ""
1631
 
1632
- #: includes/sc_event-list_helptexts.php:74
1633
- #: includes/sc_event-list_helptexts.php:85
1634
  msgid "Add an entry to show events in the past."
1635
  msgstr ""
1636
 
1637
- #: includes/sc_event-list_helptexts.php:75
1638
  msgid "Set descending or ascending order of year entries."
1639
  msgstr ""
1640
 
1641
- #: includes/sc_event-list_helptexts.php:78
1642
  msgid "Show a list of all available months."
1643
  msgstr ""
1644
 
1645
- #: includes/sc_event-list_helptexts.php:86
1646
  msgid "Set descending or ascending order of month entries."
1647
  msgstr ""
1648
 
1649
- #: includes/sc_event-list_helptexts.php:87
1650
  msgid "php date-formats"
1651
  msgstr ""
1652
 
1653
- #: includes/sc_event-list_helptexts.php:87
1654
  msgid "Set the displayed date format of the month entries."
1655
  msgstr ""
1656
 
1657
- #: includes/sc_event-list_helptexts.php:88
1658
  #, php-format
1659
  msgid ""
1660
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1662,65 +1667,65 @@ msgid ""
1662
  "order."
1663
  msgstr ""
1664
 
1665
- #: includes/sc_event-list_helptexts.php:88
1666
  #, php-format
1667
  msgid ""
1668
  "Specifies the displayed values and their order. The items must be seperated "
1669
  "by %1$s."
1670
  msgstr ""
1671
 
1672
- #: includes/sc_event-list_helptexts.php:89
1673
  msgid "Show a list of all available categories."
1674
  msgstr ""
1675
 
1676
- #: includes/sc_event-list_helptexts.php:89
1677
  msgid "Add an entry to show events from all categories."
1678
  msgstr ""
1679
 
1680
- #: includes/sc_event-list_helptexts.php:90
1681
  msgid "A link to reset the eventlist filter to standard."
1682
  msgstr ""
1683
 
1684
- #: includes/sc_event-list_helptexts.php:90
1685
  msgid "any text"
1686
  msgstr "elke tekst"
1687
 
1688
- #: includes/sc_event-list_helptexts.php:90
1689
  msgid "Set the caption of the link."
1690
  msgstr "Stel het bijschrift van de link in."
1691
 
1692
- #: includes/sc_event-list_helptexts.php:93
1693
  msgid "Find below an overview of the available filterbar display options:"
1694
  msgstr ""
1695
 
1696
- #: includes/sc_event-list_helptexts.php:96
1697
  msgid "display option"
1698
  msgstr "laat opties zien"
1699
 
1700
- #: includes/sc_event-list_helptexts.php:96
1701
  msgid "available for"
1702
  msgstr "beschikbaar voor"
1703
 
1704
- #: includes/sc_event-list_helptexts.php:97
1705
  #, php-format
1706
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1707
  msgstr ""
1708
 
1709
- #: includes/sc_event-list_helptexts.php:98
1710
  msgid ""
1711
  "Shows a select box where an item can be choosen. After the selection of an "
1712
  "item the page is reloaded via javascript to show the filtered events."
1713
  msgstr ""
1714
 
1715
- #: includes/sc_event-list_helptexts.php:99
1716
  msgid "Shows a simple link which can be clicked."
1717
  msgstr ""
1718
 
1719
- #: includes/sc_event-list_helptexts.php:102
1720
  msgid "Find below some declaration examples with descriptions:"
1721
  msgstr ""
1722
 
1723
- #: includes/sc_event-list_helptexts.php:104
1724
  #, php-format
1725
  msgid ""
1726
  "In this example you can see that the filterbar item and the used display "
@@ -1728,22 +1733,22 @@ msgid ""
1728
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1729
  msgstr ""
1730
 
1731
- #: includes/sc_event-list_helptexts.php:106
1732
  #, php-format
1733
  msgid ""
1734
  "In this example you can see that filterbar options can be added in brackets "
1735
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1736
  msgstr ""
1737
 
1738
- #: includes/sc_event-list_helptexts.php:106
1739
  msgid "option_name"
1740
  msgstr ""
1741
 
1742
- #: includes/sc_event-list_helptexts.php:106
1743
  msgid "value"
1744
  msgstr "waarde"
1745
 
1746
- #: includes/sc_event-list_helptexts.php:107
1747
  #, php-format
1748
  msgid ""
1749
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1752,134 +1757,134 @@ msgid ""
1752
  "left-aligned and the reset link will be on the right side."
1753
  msgstr ""
1754
 
1755
- #: includes/sc_event-list_helptexts.php:112
1756
- #: includes/sc_event-list_helptexts.php:139
1757
  msgid ""
1758
  "This attribute specifies if the title should be truncated to the given "
1759
  "number of characters in the event list."
1760
  msgstr ""
1761
 
1762
- #: includes/sc_event-list_helptexts.php:113
1763
- #: includes/sc_event-list_helptexts.php:140
1764
  #, php-format
1765
  msgid ""
1766
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1767
  "is automatically truncated via css."
1768
  msgstr ""
1769
 
1770
- #: includes/sc_event-list_helptexts.php:114
1771
- #: includes/sc_event-list_helptexts.php:141
1772
- #: includes/sc_event-list_helptexts.php:180
1773
  msgid "This attribute has no influence if only a single event is shown."
1774
  msgstr ""
1775
 
1776
- #: includes/sc_event-list_helptexts.php:120
1777
  msgid ""
1778
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1779
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1780
- "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1781
- msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1782
 
1783
- #: includes/sc_event-list_helptexts.php:130
1784
  msgid ""
1785
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1786
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1787
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1788
- msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1789
 
1790
- #: includes/sc_event-list_helptexts.php:147
1791
  msgid ""
1792
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1793
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1794
- "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1795
- msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
1796
 
1797
- #: includes/sc_event-list_helptexts.php:157
1798
  msgid ""
1799
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1800
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1801
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1802
  msgstr ""
1803
 
1804
- #: includes/sc_event-list_helptexts.php:167
1805
  msgid ""
1806
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1807
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1808
- "\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"
1809
- "\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"
1810
- "\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)."
1811
  msgstr ""
1812
 
1813
- #: includes/sc_event-list_helptexts.php:178
1814
  msgid ""
1815
  "This attribute specifies if the content should be truncate to the given "
1816
  "number of characters in the event list."
1817
  msgstr ""
1818
 
1819
- #: includes/sc_event-list_helptexts.php:179
1820
  #, php-format
1821
  msgid "With the standard value %1$s the full text is displayed."
1822
  msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven."
1823
 
1824
- #: includes/sc_event-list_helptexts.php:186
1825
  msgid ""
1826
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1827
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1828
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1829
- "\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."
1830
  msgstr ""
1831
 
1832
- #: includes/sc_event-list_helptexts.php:197
1833
  msgid ""
1834
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1835
- "\t Choose \"false\" to never add and \"true\" to always add the link.<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.<br />\n"
1837
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1838
  msgstr ""
1839
 
1840
- #: includes/sc_event-list_helptexts.php:208
1841
  msgid ""
1842
  "This attribute specifies if a rss feed link should be added.<br />\n"
1843
- "\t You have to enable the 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 />\n"
1846
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1847
- 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."
1848
 
1849
- #: includes/sc_event-list_helptexts.php:220
1850
  msgid ""
1851
  "This attribute specifies if a ical feed link should be added.<br />\n"
1852
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1853
- "\t On that page you can also find some settings to modify the output.<br />\n"
1854
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1855
  msgstr ""
1856
 
1857
- #: includes/sc_event-list_helptexts.php:231
1858
  msgid ""
1859
  "This attribute specifies the page or post url for event links.<br />\n"
1860
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1861
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1862
- 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."
1863
 
1864
- #: includes/sc_event-list_helptexts.php:243
1865
  msgid ""
1866
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1867
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1868
  msgstr ""
1869
 
1870
- #: includes/sc_event-list.php:154
1871
  msgid "Sorry, the requested event is not available!"
1872
  msgstr ""
1873
 
1874
- #: includes/sc_event-list.php:163
1875
  msgid "Event Information:"
1876
  msgstr "Evenement details:"
1877
 
1878
- #: includes/sc_event-list.php:405
1879
  msgid "Link to RSS feed"
1880
  msgstr ""
1881
 
1882
- #: includes/sc_event-list.php:414
1883
  msgid "Link to iCal feed"
1884
  msgstr ""
1885
 
@@ -1912,133 +1917,133 @@ msgstr "Het aantal komende evenementen om te tonen"
1912
  msgid "Truncate event title to"
1913
  msgstr "Kort evenementtitel in tot"
1914
 
1915
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1916
- #: includes/widget_helptexts.php:93
1917
  msgid "characters"
1918
  msgstr "tekens"
1919
 
1920
- #: includes/widget_helptexts.php:38
1921
  msgid ""
1922
  "This option defines the number of displayed characters for the event title."
1923
  msgstr ""
1924
 
1925
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1926
  #, php-format
1927
  msgid ""
1928
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1929
  "automatically truncate the text via css."
1930
  msgstr ""
1931
 
1932
- #: includes/widget_helptexts.php:46
1933
  msgid "Show event starttime"
1934
  msgstr "Toon starttijd evenement"
1935
 
1936
- #: includes/widget_helptexts.php:48
1937
  msgid "This option defines if the event start time will be displayed."
1938
  msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond"
1939
 
1940
- #: includes/widget_helptexts.php:55
1941
  msgid "Show event location"
1942
  msgstr "Toon evenementlocatie"
1943
 
1944
- #: includes/widget_helptexts.php:57
1945
  msgid "This option defines if the event location will be displayed."
1946
  msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond."
1947
 
1948
- #: includes/widget_helptexts.php:64
1949
  msgid "Truncate location to"
1950
  msgstr "Kort de locatie in tot"
1951
 
1952
- #: includes/widget_helptexts.php:66
1953
  msgid ""
1954
  "If the event location is diplayed this option defines the number of "
1955
  "displayed characters."
1956
  msgstr ""
1957
 
1958
- #: includes/widget_helptexts.php:74
1959
  msgid "Show event excerpt"
1960
  msgstr ""
1961
 
1962
- #: includes/widget_helptexts.php:76
1963
  msgid "This option defines if the event excerpt will be displayed."
1964
  msgstr ""
1965
 
1966
- #: includes/widget_helptexts.php:83
1967
  msgid "Show event content"
1968
  msgstr ""
1969
 
1970
- #: includes/widget_helptexts.php:85
1971
  msgid "This option defines if the event content will be displayed."
1972
  msgstr ""
1973
 
1974
- #: includes/widget_helptexts.php:92
1975
  msgid "Truncate content to"
1976
  msgstr ""
1977
 
1978
- #: includes/widget_helptexts.php:94
1979
  msgid ""
1980
  "If the event content are diplayed this option defines the number of diplayed"
1981
  " characters."
1982
  msgstr ""
1983
 
1984
- #: includes/widget_helptexts.php:95
1985
  #, php-format
1986
  msgid "Set this value to %1$s to view the full text."
1987
  msgstr ""
1988
 
1989
- #: includes/widget_helptexts.php:102
1990
  msgid "URL to the linked Event List page"
1991
  msgstr "URL naar de gelinkte evenementenlijst-pagina"
1992
 
1993
- #: includes/widget_helptexts.php:104
1994
  msgid ""
1995
  "This option defines the url to the linked Event List page. This option is "
1996
  "required if you want to use one of the options below."
1997
  msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
1998
 
1999
- #: includes/widget_helptexts.php:111
2000
  msgid "Shortcode ID on linked page"
2001
  msgstr "Shortcode ID op de gelinkte pagina"
2002
 
2003
- #: includes/widget_helptexts.php:113
2004
  msgid ""
2005
  "This option defines the shortcode-id for the Event List on the linked page. "
2006
  "Normally the standard value 1 is correct, you only have to change it if you "
2007
  "use multiple event-list shortcodes on the linked page."
2008
  msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
2009
 
2010
- #: includes/widget_helptexts.php:122
2011
  msgid ""
2012
  "With this option you can add a link to the single event page for every "
2013
  "displayed event. You have to specify the url to the page and the shortcode "
2014
  "id option if you want to use it."
2015
  msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
2016
 
2017
- #: includes/widget_helptexts.php:131
2018
  msgid ""
2019
  "With this option you can add a link to the event-list page below the "
2020
  "diplayed events. You have to specify the url to page option if you want to "
2021
  "use it."
2022
  msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
2023
 
2024
- #: includes/widget_helptexts.php:138
2025
  msgid "Caption for the link"
2026
  msgstr "Bijschrift bij de link"
2027
 
2028
- #: includes/widget_helptexts.php:140
2029
  msgid ""
2030
  "This option defines the text for the link to the Event List page if the "
2031
  "approriate option is selected."
2032
  msgstr "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd."
2033
 
2034
- #: includes/widget.php:21
2035
  msgid "With this widget a list of upcoming events can be displayed."
2036
  msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
2037
 
2038
- #: includes/widget.php:26
2039
  msgid "Upcoming events"
2040
  msgstr "Komende evenementen"
2041
 
2042
- #: includes/widget.php:40
2043
  msgid "show events page"
2044
  msgstr "toon evenementenpagina"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
15
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: nl_NL\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
 
24
+ #: admin/admin.php:90
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr ""
28
 
29
+ #: admin/admin.php:90
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr ""
33
 
34
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
35
  msgid "Event List Settings"
36
  msgstr "Gebeurtenislijst Instellingen"
37
 
38
+ #: admin/admin.php:142
39
  msgid "Settings"
40
  msgstr "Instellingen"
41
 
42
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
43
  msgid "About Event List"
44
  msgstr "Over Gebeurtenislijst"
45
 
46
+ #: admin/admin.php:146
47
  msgid "About"
48
  msgstr "Over"
49
 
50
+ #: admin/admin.php:170
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
54
  msgstr[0] ""
55
  msgstr[1] ""
56
 
57
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
58
  msgid "General"
59
  msgstr "Algemeen"
60
 
61
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
62
+ #: admin/includes/admin-about.php:137
63
  msgid "Shortcode Attributes"
64
  msgstr "Shortcode Attributen"
65
 
66
+ #: admin/includes/admin-about.php:102
67
  msgid "Help and Instructions"
68
  msgstr "Hulp en instructies"
69
 
70
+ #: admin/includes/admin-about.php:103
71
  #, php-format
72
  msgid "You can manage the events %1$shere%2$s"
73
  msgstr ""
74
 
75
+ #: admin/includes/admin-about.php:104
76
  msgid "To show the events on your site you have 2 possibilities"
77
  msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden"
78
 
79
+ #: admin/includes/admin-about.php:105
80
  #, php-format
81
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
82
  msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen"
83
 
84
+ #: admin/includes/admin-about.php:106
85
  #, php-format
86
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
87
  msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen"
88
 
89
+ #: admin/includes/admin-about.php:107
90
  msgid ""
91
  "The displayed events and their style can be modified with the available "
92
  "widget settings and the available attributes for the shortcode."
93
  msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode."
94
 
95
+ #: admin/includes/admin-about.php:108
96
  #, php-format
97
  msgid ""
98
  "A list of all available shortcode attributes with their descriptions is "
99
  "available in the %1$s tab."
100
  msgstr ""
101
 
102
+ #: admin/includes/admin-about.php:109
103
  msgid "The available widget options are described in their tooltip text."
104
  msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst."
105
 
106
+ #: admin/includes/admin-about.php:110
107
  #, php-format
108
  msgid ""
109
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
110
  " to insert an URL to the linked event-list page."
111
  msgstr ""
112
 
113
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
114
  msgid "Add links to the single events"
115
  msgstr "Voeg links toe aan de enkele gebeurtenis"
116
 
117
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
118
  msgid "Add a link to the Event List page"
119
  msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
120
 
121
+ #: admin/includes/admin-about.php:111
122
  msgid ""
123
  "This is required because the widget does not know in which page or post the "
124
  "shortcode was included."
125
  msgstr ""
126
 
127
+ #: admin/includes/admin-about.php:112
128
  msgid ""
129
  "Additionally you have to insert the correct Shortcode id on the linked page."
130
  " This id describes which shortcode should be used on the given page or post "
131
  "if you have more than one."
132
  msgstr ""
133
 
134
+ #: admin/includes/admin-about.php:113
135
  #, php-format
136
  msgid ""
137
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
139
  "link on your linked page or post."
140
  msgstr ""
141
 
142
+ #: admin/includes/admin-about.php:114
143
  #, php-format
144
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
145
  msgstr ""
146
 
147
+ #: admin/includes/admin-about.php:116
148
  #, php-format
149
  msgid ""
150
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
151
  "want."
152
  msgstr ""
153
 
154
+ #: admin/includes/admin-about.php:116
155
  msgid "Settings page"
156
  msgstr "Pagina instellingen"
157
 
158
+ #: admin/includes/admin-about.php:123
159
  msgid "About the plugin author"
160
  msgstr "Over de plugin ontwikkelaar"
161
 
162
+ #: admin/includes/admin-about.php:125
163
  #, php-format
164
  msgid ""
165
  "This plugin is developed by %1$s, you can find more information about the "
166
  "plugin on the %2$s."
167
  msgstr "Deze plugin is ontwikkeld door %1$s, meer informatie over de plugin vind je hier %2$s."
168
 
169
+ #: admin/includes/admin-about.php:125
170
  msgid "WordPress plugin site"
171
  msgstr ""
172
 
173
+ #: admin/includes/admin-about.php:126
174
  #, php-format
175
  msgid "If you like the plugin please rate it on the %1$s."
176
  msgstr ""
177
 
178
+ #: admin/includes/admin-about.php:126
179
  msgid "WordPress plugin review site"
180
  msgstr ""
181
 
182
+ #: admin/includes/admin-about.php:127
183
  msgid ""
184
  "If you want to support the plugin I would be happy to get a small donation"
185
  msgstr ""
186
 
187
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
188
+ #: admin/includes/admin-about.php:130
189
  #, php-format
190
  msgid "Donate with %1$s"
191
  msgstr ""
192
 
193
+ #: admin/includes/admin-about.php:139
194
  msgid ""
195
  "You have the possibility to modify the output if you add some of the "
196
  "following attributes to the shortcode."
197
  msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
198
 
199
+ #: admin/includes/admin-about.php:140
200
  #, php-format
201
  msgid ""
202
  "You can combine and add as much attributes as you want. E.g. the shortcode "
203
  "including the attributes %1$s and %2$s would looks like this:"
204
  msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
205
 
206
+ #: admin/includes/admin-about.php:142
207
  msgid ""
208
  "Below you can find a list of all supported attributes with their "
209
  "descriptions and available options:"
210
  msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
211
 
212
+ #: admin/includes/admin-about.php:157
213
  msgid "Attribute name"
214
  msgstr "Attribuut naam"
215
 
216
+ #: admin/includes/admin-about.php:158
217
  msgid "Value options"
218
  msgstr "Waarde opties"
219
 
220
+ #: admin/includes/admin-about.php:159
221
  msgid "Default value"
222
  msgstr "Standaard waarde"
223
 
224
+ #: admin/includes/admin-about.php:160
225
  msgid "Description"
226
  msgstr "Omschrijving"
227
 
228
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
229
+ #: includes/sc_event-list_helptexts.php:91
230
  msgid "Filter Syntax"
231
  msgstr "Filter Syntax"
232
 
233
+ #: admin/includes/admin-about.php:180
234
  msgid ""
235
  "For date and cat filters you can specify complex filters with the following "
236
  "syntax:"
237
  msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
238
 
239
+ #: admin/includes/admin-about.php:181
240
  #, php-format
241
  msgid ""
242
  "You can use %1$s and %2$s connections to define complex filters. "
243
  "Additionally you can set brackets %3$s for nested queries."
244
  msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
245
 
246
+ #: admin/includes/admin-about.php:181
247
  msgid "AND"
248
  msgstr "EN"
249
 
250
+ #: admin/includes/admin-about.php:181
251
  msgid "OR"
252
  msgstr "OF"
253
 
254
+ #: admin/includes/admin-about.php:181
255
  msgid "or"
256
  msgstr "of"
257
 
258
+ #: admin/includes/admin-about.php:181
259
  msgid "and"
260
  msgstr "en"
261
 
262
+ #: admin/includes/admin-about.php:182
263
  msgid "Examples for cat filters:"
264
  msgstr "Voorbeelden voor categorie filters:"
265
 
266
+ #: admin/includes/admin-about.php:183
267
  #, php-format
268
  msgid "Show all events with category %1$s."
269
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
270
 
271
+ #: admin/includes/admin-about.php:184
272
  #, php-format
273
  msgid "Show all events with category %1$s or %2$s."
274
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
275
 
276
+ #: admin/includes/admin-about.php:185
277
  #, php-format
278
  msgid ""
279
  "Show all events with category %1$s and all events where category %2$s as "
280
  "well as %3$s is selected."
281
  msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
282
 
283
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
284
  msgid "Available Date Formats"
285
  msgstr "Beschikbare Datum Notaties"
286
 
287
+ #: admin/includes/admin-about.php:192
288
  msgid "For date filters you can use the following date formats:"
289
  msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
290
 
291
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
292
  msgid "Available Date Range Formats"
293
  msgstr "Beschikbare Datum Bereik Notaties"
294
 
295
+ #: admin/includes/admin-about.php:202
296
  msgid "For date filters you can use the following daterange formats:"
297
  msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
298
 
299
+ #: admin/includes/admin-about.php:215
300
  msgid "Value"
301
  msgstr "Waarde"
302
 
303
+ #: admin/includes/admin-about.php:219
304
  msgid "Example"
305
  msgstr "Voorbeeld"
306
 
307
+ #: admin/includes/admin-categories.php:79
308
  msgid "Synchronize with post categories"
309
  msgstr ""
310
 
311
+ #: admin/includes/admin-categories.php:90
312
  #, php-format
313
  msgid "%1$s categories modified (%2$s)"
314
  msgstr ""
315
 
316
+ #: admin/includes/admin-categories.php:91
317
  #, php-format
318
  msgid "%1$s categories added (%2$s)"
319
  msgstr ""
320
 
321
+ #: admin/includes/admin-categories.php:92
322
  #, php-format
323
  msgid "%1$s categories deleted (%2$s)"
324
  msgstr ""
325
 
326
+ #: admin/includes/admin-categories.php:95
327
  #, php-format
328
  msgid "%1$s categories not modified (%2$s)"
329
  msgstr ""
330
 
331
+ #: admin/includes/admin-categories.php:96
332
  #, php-format
333
  msgid "%1$s categories not added (%2$s)"
334
  msgstr ""
335
 
336
+ #: admin/includes/admin-categories.php:97
337
  #, php-format
338
  msgid "%1$s categories not deleted (%2$s)"
339
  msgstr ""
340
 
341
+ #: admin/includes/admin-categories.php:100
342
  msgid "An Error occured during the category sync"
343
  msgstr ""
344
 
345
+ #: admin/includes/admin-categories.php:103
346
  msgid "Category sync finished"
347
  msgstr ""
348
 
349
+ #: admin/includes/admin-category-sync.php:77
350
  msgid "Error: You are not allowed to view this page!"
351
  msgstr ""
352
 
353
+ #: admin/includes/admin-category-sync.php:93
354
  msgid "Affected Categories when switching to seperate Event Categories"
355
  msgstr ""
356
 
357
+ #: admin/includes/admin-category-sync.php:94
358
  msgid "Switch option to seperate Event Categories"
359
  msgstr ""
360
 
361
+ #: admin/includes/admin-category-sync.php:95
362
  msgid ""
363
  "If you proceed, all post categories will be copied and all events will be "
364
  "re-assigned to this new categories."
365
  msgstr ""
366
 
367
+ #: admin/includes/admin-category-sync.php:96
368
  msgid ""
369
  "Afterwards the event categories are independent of the post categories."
370
  msgstr ""
371
 
372
+ #: admin/includes/admin-category-sync.php:98
373
  msgid "Affected Categories when switching to use Post Categories for events"
374
  msgstr ""
375
 
376
+ #: admin/includes/admin-category-sync.php:99
377
  msgid "Switch option to use Post Categories for events"
378
  msgstr ""
379
 
380
+ #: admin/includes/admin-category-sync.php:100
381
  msgid ""
382
  "Take a detailed look at the affected categories above before you proceed! "
383
  "All seperate event categories will be deleted, this cannot be undone!"
384
  msgstr ""
385
 
386
+ #: admin/includes/admin-category-sync.php:103
387
  msgid "Event Categories: Synchronise with Post Categories"
388
  msgstr ""
389
 
390
+ #: admin/includes/admin-category-sync.php:104
391
  msgid "Start synchronisation"
392
  msgstr ""
393
 
394
+ #: admin/includes/admin-category-sync.php:105
395
  msgid ""
396
  "If this option is enabled the above listed categories will be deleted and "
397
  "removed from the existing events!"
398
  msgstr ""
399
 
400
+ #: admin/includes/admin-category-sync.php:120
401
  msgid "Categories to modify"
402
  msgstr ""
403
 
404
+ #: admin/includes/admin-category-sync.php:121
405
  msgid "Categories to add"
406
  msgstr ""
407
 
408
+ #: admin/includes/admin-category-sync.php:122
409
  msgid "Categories to delete (optional)"
410
  msgstr ""
411
 
412
+ #: admin/includes/admin-category-sync.php:123
413
  msgid "Delete not available post categories"
414
  msgstr ""
415
 
416
+ #: admin/includes/admin-category-sync.php:126
417
  msgid "Categories with differences"
418
  msgstr ""
419
 
420
+ #: admin/includes/admin-category-sync.php:127
421
  msgid "Categories to add (optional)"
422
  msgstr ""
423
 
424
+ #: admin/includes/admin-category-sync.php:128
425
  msgid "Add not available post categories"
426
  msgstr ""
427
 
428
+ #: admin/includes/admin-category-sync.php:147
429
  msgid "none"
430
  msgstr ""
431
 
432
+ #: admin/includes/admin-import.php:91
433
  msgid "Import Events"
434
  msgstr "Importeer Gebeurtenissen"
435
 
436
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
437
+ #: admin/includes/admin-import.php:254
438
  msgid "Step"
439
  msgstr "Stap"
440
 
441
+ #: admin/includes/admin-import.php:110
442
  msgid "Set import file and options"
443
  msgstr "Stel het import bestand en opties in"
444
 
445
+ #: admin/includes/admin-import.php:113
446
  #, php-format
447
  msgid "Proceed with Step %1$s"
448
  msgstr "Ga door naar stap %1$s"
449
 
450
+ #: admin/includes/admin-import.php:116
451
  msgid "Example file"
452
  msgstr "Voorbeeld bestand"
453
 
454
+ #: admin/includes/admin-import.php:117
455
  #, php-format
456
  msgid ""
457
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
458
  msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
459
 
460
+ #: admin/includes/admin-import.php:118
461
  msgid "Note"
462
  msgstr "Aantekening"
463
 
464
+ #: admin/includes/admin-import.php:118
465
  msgid ""
466
  "Do not change the column header and separator line (first two lines), "
467
  "otherwise the import will fail!"
468
  msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
469
 
470
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
471
  msgid "Sorry, there has been an error."
472
  msgstr "Sorry, er ging iets fout."
473
 
474
+ #: admin/includes/admin-import.php:129
475
  msgid "The file does not exist, please try again."
476
  msgstr "Het bestand bestaat niet, probeer het nog eens."
477
 
478
+ #: admin/includes/admin-import.php:138
479
  msgid "The uploaded file does not have the required csv extension."
480
  msgstr ""
481
 
482
+ #: admin/includes/admin-import.php:150
483
  msgid "Events review and additonal category selection"
484
  msgstr ""
485
 
486
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
487
  msgid "Error"
488
  msgstr ""
489
 
490
+ #: admin/includes/admin-import.php:156
491
  msgid "This CSV file cannot be imported"
492
  msgstr ""
493
 
494
+ #: admin/includes/admin-import.php:167
495
  msgid "None of the events in this CSV file can be imported"
496
  msgstr ""
497
 
498
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
499
  msgid "Warning"
500
  msgstr ""
501
 
502
+ #: admin/includes/admin-import.php:172
503
  #, php-format
504
  msgid "There is %1$s event which cannot be imported"
505
  msgid_plural "There are %1$s events which cannot be imported"
506
  msgstr[0] ""
507
  msgstr[1] ""
508
 
509
+ #: admin/includes/admin-import.php:184
510
  #, php-format
511
  msgid "CSV line %1$s"
512
  msgstr ""
513
 
514
+ #: admin/includes/admin-import.php:194
515
  msgid "You can still import all other events listed below."
516
  msgstr ""
517
 
518
+ #: admin/includes/admin-import.php:213
519
  msgid ""
520
  "The following category slugs are not available and will be removed from the "
521
  "imported events"
522
  msgstr ""
523
 
524
+ #: admin/includes/admin-import.php:219
525
  msgid ""
526
  "If you want to keep these categories, please create these Categories first "
527
  "and do the import afterwards."
528
  msgstr ""
529
 
530
+ #: admin/includes/admin-import.php:254
531
  msgid "Import result"
532
  msgstr ""
533
 
534
+ #: admin/includes/admin-import.php:257
535
  #, php-format
536
  msgid "Import of %1$s events successful!"
537
  msgstr ""
538
 
539
+ #: admin/includes/admin-import.php:258
540
  msgid "Go back to All Events"
541
  msgstr "Ga terug naar Alle Gebeurtenissen"
542
 
543
+ #: admin/includes/admin-import.php:261
544
  msgid "Errors during Import"
545
  msgstr ""
546
 
547
+ #: admin/includes/admin-import.php:269
548
  msgid "Event from CSV-line"
549
  msgstr ""
550
 
551
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
552
  #: includes/widget_helptexts.php:9
553
  msgid "Title"
554
  msgstr "Titel"
555
 
556
+ #: admin/includes/admin-import.php:282
557
  msgid "Start Date"
558
  msgstr "Start Datum"
559
 
560
+ #: admin/includes/admin-import.php:283
561
  msgid "End Date"
562
  msgstr "Eind Datum"
563
 
564
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
565
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
566
  msgid "Time"
567
  msgstr "Tijd"
568
 
569
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
570
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
571
  #: includes/options_helptexts.php:76
572
  msgid "Location"
573
  msgstr "Locatie"
574
 
575
+ #: admin/includes/admin-import.php:286
576
  msgid "Content"
577
  msgstr ""
578
 
579
+ #: admin/includes/admin-import.php:287
580
  msgid "Category slugs"
581
  msgstr ""
582
 
583
+ #: admin/includes/admin-import.php:333
584
  msgid "Header line is missing or not correct!"
585
  msgstr ""
586
 
587
+ #: admin/includes/admin-import.php:334
588
  #, php-format
589
  msgid ""
590
  "Have a look at the %1$sexample file%2$s to see the correct header line "
591
  "format."
592
  msgstr ""
593
 
594
+ #: admin/includes/admin-import.php:341
595
  #, php-format
596
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
597
  msgstr ""
598
 
599
+ #: admin/includes/admin-import.php:371
600
  msgid "Empty event title found"
601
  msgstr ""
602
 
603
+ #: admin/includes/admin-import.php:377
604
  msgid "Wrong date format for startdate"
605
  msgstr ""
606
 
607
+ #: admin/includes/admin-import.php:385
608
  msgid "Wrong date format for enddate"
609
  msgstr ""
610
 
611
+ #: admin/includes/admin-import.php:439
612
  msgid "Import events"
613
  msgstr "Importeer gebeurtenis"
614
 
615
+ #: admin/includes/admin-import.php:440
616
  msgid "Add additional categories"
617
  msgstr "Voeg extra categorieën toe"
618
 
619
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
620
  msgid "No events found"
621
  msgstr ""
622
 
623
+ #: admin/includes/admin-import.php:518
624
  msgid "Saving of event failed!"
625
  msgstr ""
626
 
627
+ #: admin/includes/admin-main.php:108
628
  msgid "Event Date"
629
  msgstr ""
630
 
631
+ #: admin/includes/admin-main.php:113
632
  msgid "Author"
633
  msgstr "Auteur"
634
 
635
+ #: admin/includes/admin-main.php:182
636
  #, php-format
637
  msgid "Add a copy of %1$s"
638
  msgstr ""
639
 
640
+ #: admin/includes/admin-main.php:182
641
  msgid "Copy"
642
  msgstr ""
643
 
644
+ #: admin/includes/admin-main.php:268
645
+ msgid "Import"
646
+ msgstr "Importeer"
647
+
648
+ #: admin/includes/admin-new.php:83
649
  msgid "Event data"
650
  msgstr ""
651
 
652
+ #: admin/includes/admin-new.php:116
653
  msgid "Add Copy"
654
  msgstr ""
655
 
656
+ #: admin/includes/admin-new.php:124
657
  msgid "Date"
658
  msgstr "Datum"
659
 
660
+ #: admin/includes/admin-new.php:124
661
  msgid "required"
662
  msgstr "vereist"
663
 
664
+ #: admin/includes/admin-new.php:127
665
  msgid "Multi-Day Event"
666
  msgstr "Meerdaagse gebeurtenis"
667
 
668
+ #: admin/includes/admin-new.php:147
669
  msgid "Event Title"
670
  msgstr ""
671
 
672
+ #: admin/includes/admin-new.php:164
673
  msgid "Event Content"
674
  msgstr ""
675
 
676
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
677
  msgid "Event updated."
678
  msgstr ""
679
 
680
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
681
  msgid "View event"
682
  msgstr ""
683
 
684
+ #: admin/includes/admin-new.php:246
685
  #, php-format
686
  msgid "Event restored to revision from %1$s"
687
  msgstr ""
688
 
689
+ #: admin/includes/admin-new.php:247
690
  msgid "Event published."
691
  msgstr ""
692
 
693
+ #: admin/includes/admin-new.php:248
694
+ msgid "Event saved."
695
+ msgstr ""
696
+
697
+ #: admin/includes/admin-new.php:249
698
  msgid "Event submitted."
699
  msgstr ""
700
 
701
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
702
+ #: admin/includes/admin-new.php:253
703
  msgid "Preview event"
704
  msgstr ""
705
 
706
+ #: admin/includes/admin-new.php:251
707
  #, php-format
708
  msgid "Event scheduled for: %1$s>"
709
  msgstr ""
710
 
711
+ #: admin/includes/admin-new.php:253
712
  msgid "Event draft updated."
713
  msgstr ""
714
 
715
+ #: admin/includes/admin-settings.php:97
716
  msgid "Go to Event Category switching page"
717
  msgstr ""
718
 
719
+ #: admin/includes/admin-settings.php:111
720
  msgid "Frontend Settings"
721
  msgstr "Frontend Instellingen"
722
 
723
+ #: admin/includes/admin-settings.php:112
724
  msgid "Admin Page Settings"
725
  msgstr "Admin Pagina Instellingen"
726
 
727
+ #: admin/includes/admin-settings.php:113
728
  msgid "Feed Settings"
729
  msgstr "Feed Instellingen"
730
 
731
+ #: admin/includes/admin-settings.php:114
732
  msgid "Category Taxonomy"
733
  msgstr ""
734
 
736
  msgid "Year"
737
  msgstr "Jaar"
738
 
739
+ #: includes/daterange_helptexts.php:10
740
  msgid "A year can be specified in 4 digit format."
741
  msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
742
 
743
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
744
+ #: includes/daterange_helptexts.php:95
745
  #, php-format
746
  msgid ""
747
  "For a start date filter the first day of %1$s is used, in an end date the "
748
  "last day."
749
  msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag"
750
 
751
+ #: includes/daterange_helptexts.php:13
752
  msgid "the resulting year"
753
  msgstr "het betreffende jaar"
754
 
755
+ #: includes/daterange_helptexts.php:19
756
  msgid "Month"
757
  msgstr "Maand"
758
 
759
+ #: includes/daterange_helptexts.php:21
760
  msgid ""
761
  "A month can be specified with 4 digits for the year and 2 digits for the "
762
  "month, seperated by a hyphen (-)."
763
  msgstr "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)"
764
 
765
+ #: includes/daterange_helptexts.php:24
766
  msgid "the resulting month"
767
  msgstr "de betreffende maand"
768
 
769
+ #: includes/daterange_helptexts.php:30
770
  msgid "Day"
771
  msgstr "Dag"
772
 
773
+ #: includes/daterange_helptexts.php:31
774
  msgid ""
775
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
776
  " month and 2 digets for the day, seperated by hyphens (-)."
777
  msgstr "Een dag kan aangegeven worden met 4 cijfers voor het jaar, 2 cijfers voor de maand en 2 cijfers voor de dag, gescheiden door een streepje (-)"
778
 
779
+ #: includes/daterange_helptexts.php:36
780
  msgid "Relative Year"
781
  msgstr "Relatief Jaar"
782
 
783
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
784
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
785
  #, php-format
786
  msgid "%1$s from now can be specified in the following notation: %2$s"
787
  msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s"
788
 
789
+ #: includes/daterange_helptexts.php:40
790
  msgid "A relative year"
791
  msgstr "Een relatief jaar"
792
 
793
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
794
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
795
  #, php-format
796
  msgid ""
797
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
798
  "%3$s or %4$s attached (see also the example below)."
799
  msgstr "Dit betekent dat je een een positief of negatief (%1$s) %2$s vanaf nu kan aangeven met %3$s of %4$s erachter gevoegd (zie ook het voorbeeld hieronder)."
800
 
801
+ #: includes/daterange_helptexts.php:46
802
  msgid "number of years"
803
  msgstr "aantal jaar"
804
 
805
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
806
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
807
  #, php-format
808
  msgid "Additionally the following values are available: %1$s"
809
  msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s"
810
 
811
+ #: includes/daterange_helptexts.php:58
812
  msgid "Relative Month"
813
  msgstr "Relatieve Maand"
814
 
815
+ #: includes/daterange_helptexts.php:62
816
  msgid "A relative month"
817
  msgstr "Een relatieve maand"
818
 
819
+ #: includes/daterange_helptexts.php:68
820
  msgid "number of months"
821
  msgstr "aantal maand"
822
 
823
+ #: includes/daterange_helptexts.php:80
824
  msgid "Relative Week"
825
  msgstr "Relatieve Week"
826
 
827
+ #: includes/daterange_helptexts.php:84
828
  msgid "A relative week"
829
  msgstr "Een relatieve week"
830
 
831
+ #: includes/daterange_helptexts.php:90
832
  msgid "number of weeks"
833
  msgstr "aantal weken"
834
 
835
+ #: includes/daterange_helptexts.php:96
836
  msgid "the resulting week"
837
  msgstr "de betreffende week"
838
 
839
+ #: includes/daterange_helptexts.php:99
840
  #, php-format
841
  msgid ""
842
  "The first day of the week is depending on the option %1$s which can be found"
843
  " and changed in %2$s."
844
  msgstr "De eerste dag van de week is afhankelijk van de optie %1$s, die terug te vinden en aan te passen is bij %2$s."
845
 
846
+ #: includes/daterange_helptexts.php:110
847
  msgid "Relative Day"
848
  msgstr "Relatieve Dag"
849
 
850
+ #: includes/daterange_helptexts.php:114
851
  msgid "A relative day"
852
  msgstr "Een relatieve dag"
853
 
854
+ #: includes/daterange_helptexts.php:120
855
  msgid "number of days"
856
  msgstr "aantal dagen"
857
 
858
+ #: includes/daterange_helptexts.php:134
859
  msgid "Date range"
860
  msgstr "Datumbereik"
861
 
862
+ #: includes/daterange_helptexts.php:136
863
  msgid ""
864
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
865
+ "\t\t\tFor the start and end date any available date format can be used."
866
+ msgstr ""
867
 
868
+ #: includes/daterange_helptexts.php:147
869
  msgid "This value defines a range without any limits."
870
  msgstr "Deze waarde geeft een bereik zonder einde aan."
871
 
872
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
873
+ #: includes/daterange_helptexts.php:171
874
  #, php-format
875
  msgid "The corresponding date_range format is: %1$s"
876
  msgstr "De bijbehorende date_range instelling is: %1$s"
877
 
878
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
879
  msgid "Upcoming"
880
  msgstr "Komende"
881
 
882
+ #: includes/daterange_helptexts.php:158
883
  msgid "This value defines a range from the actual day to the future."
884
  msgstr "De waarde geeft een bereik aan van vandaag tot in de toekomst."
885
 
886
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
887
  msgid "Past"
888
  msgstr "Eerdere"
889
 
890
+ #: includes/daterange_helptexts.php:169
891
  msgid "This value defines a range from the past to the previous day."
892
  msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
893
 
894
+ #: includes/event.php:157
895
  msgid "No valid start date provided"
896
  msgstr ""
897
 
898
+ #: includes/event.php:343 includes/event.php:345
899
+ #: includes/sc_event-list.php:330
900
  msgid "read more"
901
  msgstr ""
902
 
903
+ #: includes/events_post_type.php:83
904
  msgid "Events"
905
  msgstr "Gebeurtenissen"
906
 
907
+ #: includes/events_post_type.php:84
908
  msgid "Event"
909
  msgstr ""
910
 
911
+ #: includes/events_post_type.php:85
912
  msgid "Add New"
913
  msgstr "Nieuwe toevoegen"
914
 
915
+ #: includes/events_post_type.php:86
916
  msgid "Add New Event"
917
  msgstr "Maak een nieuwe gebeurtenis"
918
 
919
+ #: includes/events_post_type.php:87
920
  msgid "Edit Event"
921
  msgstr "Gebeurtenis Aanpassen"
922
 
923
+ #: includes/events_post_type.php:88
924
  msgid "New Event"
925
  msgstr ""
926
 
927
+ #: includes/events_post_type.php:89
928
  msgid "View Event"
929
  msgstr ""
930
 
931
+ #: includes/events_post_type.php:90
932
  msgid "View Events"
933
  msgstr ""
934
 
935
+ #: includes/events_post_type.php:91
936
  msgid "Search Events"
937
  msgstr ""
938
 
939
+ #: includes/events_post_type.php:93
940
  msgid "No events found in Trash"
941
  msgstr ""
942
 
943
+ #: includes/events_post_type.php:95
944
  msgid "All Events"
945
  msgstr "Alle gebeurtenissen"
946
 
947
+ #: includes/events_post_type.php:96
948
  msgid "Event Archives"
949
  msgstr ""
950
 
951
+ #: includes/events_post_type.php:97
952
  msgid "Event Attributes"
953
  msgstr ""
954
 
955
+ #: includes/events_post_type.php:98
956
  msgid "Insert into event"
957
  msgstr ""
958
 
959
+ #: includes/events_post_type.php:99
960
  msgid "Uploaded to this event"
961
  msgstr ""
962
 
963
+ #: includes/events_post_type.php:100
964
  msgid "Event List"
965
  msgstr "Gebeurtenislijst"
966
 
967
+ #: includes/events_post_type.php:101
968
  msgid "Filter events list"
969
  msgstr ""
970
 
971
+ #: includes/events_post_type.php:102
972
  msgid "Events list navigation"
973
  msgstr ""
974
 
975
+ #: includes/events_post_type.php:103
976
  msgid "Events list"
977
  msgstr ""
978
 
979
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
980
  msgid "Reset"
981
  msgstr "Herstel naar beginwaardes"
982
 
983
+ #: includes/filterbar.php:329
984
  msgid "All"
985
  msgstr "Alles"
986
 
987
+ #: includes/filterbar.php:332
988
  msgid "All Dates"
989
  msgstr ""
990
 
1424
  " switching page from here."
1425
  msgstr ""
1426
 
1427
+ #: includes/options.php:92
1428
  msgid "events"
1429
  msgstr ""
1430
 
1431
+ #: includes/options.php:96
1432
  msgid "Show content"
1433
  msgstr ""
1434
 
1435
+ #: includes/options.php:100
1436
  msgid "Hide content"
1437
  msgstr ""
1438
 
1439
+ #: includes/sc_event-list_helptexts.php:20
1440
  msgid "event-id"
1441
  msgstr "gebeurtenis-id"
1442
 
1443
+ #: includes/sc_event-list_helptexts.php:23
1444
  #, php-format
1445
  msgid ""
1446
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1448
  "this event is shown."
1449
  msgstr ""
1450
 
1451
+ #: includes/sc_event-list_helptexts.php:29
1452
+ #: includes/sc_event-list_helptexts.php:57
1453
  msgid "year"
1454
  msgstr "jaar"
1455
 
1456
+ #: includes/sc_event-list_helptexts.php:31
1457
  msgid ""
1458
  "This attribute defines which events are initially shown. The default is to "
1459
  "show the upcoming events only."
1460
  msgstr ""
1461
 
1462
+ #: includes/sc_event-list_helptexts.php:33
1463
  #, php-format
1464
  msgid ""
1465
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1466
  "change the displayed event date range via the filterbar or url parameters."
1467
  msgstr ""
1468
 
1469
+ #: includes/sc_event-list_helptexts.php:39
1470
  msgid "category slug"
1471
  msgstr ""
1472
 
1473
+ #: includes/sc_event-list_helptexts.php:41
1474
  msgid ""
1475
  "This attribute defines the category of which events are initially shown. The"
1476
  " default is to show events of all categories."
1477
  msgstr ""
1478
 
1479
+ #: includes/sc_event-list_helptexts.php:42
1480
  msgid ""
1481
  "Provide a category slug to change this behavior. It is still possible to "
1482
  "change the displayed categories via the filterbar or url parameters."
1483
  msgstr ""
1484
 
1485
+ #: includes/sc_event-list_helptexts.php:48
1486
  msgid "This attribute defines the initial order of the events."
1487
  msgstr ""
1488
 
1489
+ #: includes/sc_event-list_helptexts.php:50
1490
+ #, php-format
1491
  msgid ""
1492
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1493
  "in the opposite direction (from new to old)."
1494
  msgstr ""
1495
 
1496
+ #: includes/sc_event-list_helptexts.php:60
1497
  #, php-format
1498
  msgid ""
1499
  "This attribute defines the dates and date ranges of which events are "
1500
  "displayed. The default is %1$s to show all events."
1501
  msgstr ""
1502
 
1503
+ #: includes/sc_event-list_helptexts.php:64
1504
  #, php-format
1505
  msgid ""
1506
  "Filtered events according to %1$s value are not available in the event list."
1507
  msgstr ""
1508
 
1509
+ #: includes/sc_event-list_helptexts.php:68
1510
  #, php-format
1511
  msgid ""
1512
  "You can find all available values with a description and examples in the "
1513
  "sections %1$s and %2$s below."
1514
  msgstr ""
1515
 
1516
+ #: includes/sc_event-list_helptexts.php:73
1517
  #, php-format
1518
  msgid "See %1$s description if you want to define complex filters."
1519
  msgstr ""
1520
 
1521
+ #: includes/sc_event-list_helptexts.php:79
1522
  msgid "category slugs"
1523
  msgstr ""
1524
 
1525
+ #: includes/sc_event-list_helptexts.php:82
1526
  msgid ""
1527
  "This attribute defines the category filter which filters the events to show."
1528
  " The default is $1$s or an empty string to show all events."
1529
  msgstr ""
1530
 
1531
+ #: includes/sc_event-list_helptexts.php:86
1532
  #, php-format
1533
  msgid ""
1534
  "Events with categories that doesn´t match %1$s are not shown in the event "
1535
  "list. They are also not available if a manual url parameter is added."
1536
  msgstr ""
1537
 
1538
+ #: includes/sc_event-list_helptexts.php:90
1539
  #, php-format
1540
  msgid ""
1541
  "The filter is specified via the given category slugs. See %1$s description "
1542
  "if you want to define complex filters."
1543
  msgstr ""
1544
 
1545
+ #: includes/sc_event-list_helptexts.php:96
1546
+ #: includes/sc_event-list_helptexts.php:242
1547
+ #: includes/sc_event-list_helptexts.php:276
1548
+ #: includes/sc_event-list_helptexts.php:318
1549
  msgid "number"
1550
  msgstr "nummer"
1551
 
1552
+ #: includes/sc_event-list_helptexts.php:99
1553
  #, php-format
1554
  msgid ""
1555
  "This attribute defines how many events should be displayed if upcoming "
1557
  "displayed."
1558
  msgstr ""
1559
 
1560
+ #: includes/sc_event-list_helptexts.php:102
1561
  msgid ""
1562
  "Please not that in the actual version there is no pagination of the events "
1563
  "available, so the event list can be very long."
1564
  msgstr ""
1565
 
1566
+ #: includes/sc_event-list_helptexts.php:108
1567
  msgid ""
1568
  "This attribute defines if the filterbar should be displayed. The filterbar "
1569
  "allows the users to specify filters for the listed events."
1570
  msgstr ""
1571
 
1572
+ #: includes/sc_event-list_helptexts.php:110
1573
  #, php-format
1574
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1575
  msgstr ""
1576
 
1577
+ #: includes/sc_event-list_helptexts.php:115
1578
  #, php-format
1579
  msgid ""
1580
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1581
  " in the single event view."
1582
  msgstr ""
1583
 
1584
+ #: includes/sc_event-list_helptexts.php:125
1585
  #, php-format
1586
  msgid ""
1587
  "This attribute specifies the available items in the filterbar. This options "
1588
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1589
  msgstr ""
1590
 
1591
+ #: includes/sc_event-list_helptexts.php:128
1592
  msgid ""
1593
  "Find below an overview of the available filterbar items and their options:"
1594
  msgstr ""
1595
 
1596
+ #: includes/sc_event-list_helptexts.php:132
1597
  msgid "filterbar item"
1598
  msgstr ""
1599
 
1600
+ #: includes/sc_event-list_helptexts.php:133
1601
+ #: includes/sc_event-list_helptexts.php:206
1602
  msgid "description"
1603
  msgstr "omschrijving"
1604
 
1605
+ #: includes/sc_event-list_helptexts.php:134
1606
  msgid "item options"
1607
  msgstr "item opties"
1608
 
1609
+ #: includes/sc_event-list_helptexts.php:135
1610
  msgid "option values"
1611
  msgstr "optie waarden"
1612
 
1613
+ #: includes/sc_event-list_helptexts.php:136
1614
  msgid "default value"
1615
  msgstr "standaardwaarde"
1616
 
1617
+ #: includes/sc_event-list_helptexts.php:137
1618
  msgid "option description"
1619
  msgstr "optie omschrijving"
1620
 
1621
+ #: includes/sc_event-list_helptexts.php:141
1622
  msgid ""
1623
  "Show a list of all available years. Additional there are some special "
1624
  "entries available (see item options)."
1625
  msgstr ""
1626
 
1627
+ #: includes/sc_event-list_helptexts.php:145
1628
+ #: includes/sc_event-list_helptexts.php:156
1629
  msgid "Add an entry to show all events."
1630
  msgstr ""
1631
 
1632
+ #: includes/sc_event-list_helptexts.php:147
1633
+ #: includes/sc_event-list_helptexts.php:158
1634
  msgid "Add an entry to show all upcoming events."
1635
  msgstr ""
1636
 
1637
+ #: includes/sc_event-list_helptexts.php:148
1638
+ #: includes/sc_event-list_helptexts.php:159
1639
  msgid "Add an entry to show events in the past."
1640
  msgstr ""
1641
 
1642
+ #: includes/sc_event-list_helptexts.php:149
1643
  msgid "Set descending or ascending order of year entries."
1644
  msgstr ""
1645
 
1646
+ #: includes/sc_event-list_helptexts.php:152
1647
  msgid "Show a list of all available months."
1648
  msgstr ""
1649
 
1650
+ #: includes/sc_event-list_helptexts.php:160
1651
  msgid "Set descending or ascending order of month entries."
1652
  msgstr ""
1653
 
1654
+ #: includes/sc_event-list_helptexts.php:163
1655
  msgid "php date-formats"
1656
  msgstr ""
1657
 
1658
+ #: includes/sc_event-list_helptexts.php:165
1659
  msgid "Set the displayed date format of the month entries."
1660
  msgstr ""
1661
 
1662
+ #: includes/sc_event-list_helptexts.php:170
1663
  #, php-format
1664
  msgid ""
1665
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1667
  "order."
1668
  msgstr ""
1669
 
1670
+ #: includes/sc_event-list_helptexts.php:179
1671
  #, php-format
1672
  msgid ""
1673
  "Specifies the displayed values and their order. The items must be seperated "
1674
  "by %1$s."
1675
  msgstr ""
1676
 
1677
+ #: includes/sc_event-list_helptexts.php:185
1678
  msgid "Show a list of all available categories."
1679
  msgstr ""
1680
 
1681
+ #: includes/sc_event-list_helptexts.php:189
1682
  msgid "Add an entry to show events from all categories."
1683
  msgstr ""
1684
 
1685
+ #: includes/sc_event-list_helptexts.php:193
1686
  msgid "A link to reset the eventlist filter to standard."
1687
  msgstr ""
1688
 
1689
+ #: includes/sc_event-list_helptexts.php:195
1690
  msgid "any text"
1691
  msgstr "elke tekst"
1692
 
1693
+ #: includes/sc_event-list_helptexts.php:197
1694
  msgid "Set the caption of the link."
1695
  msgstr "Stel het bijschrift van de link in."
1696
 
1697
+ #: includes/sc_event-list_helptexts.php:201
1698
  msgid "Find below an overview of the available filterbar display options:"
1699
  msgstr ""
1700
 
1701
+ #: includes/sc_event-list_helptexts.php:205
1702
  msgid "display option"
1703
  msgstr "laat opties zien"
1704
 
1705
+ #: includes/sc_event-list_helptexts.php:207
1706
  msgid "available for"
1707
  msgstr "beschikbaar voor"
1708
 
1709
+ #: includes/sc_event-list_helptexts.php:211
1710
  #, php-format
1711
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1712
  msgstr ""
1713
 
1714
+ #: includes/sc_event-list_helptexts.php:216
1715
  msgid ""
1716
  "Shows a select box where an item can be choosen. After the selection of an "
1717
  "item the page is reloaded via javascript to show the filtered events."
1718
  msgstr ""
1719
 
1720
+ #: includes/sc_event-list_helptexts.php:219
1721
  msgid "Shows a simple link which can be clicked."
1722
  msgstr ""
1723
 
1724
+ #: includes/sc_event-list_helptexts.php:222
1725
  msgid "Find below some declaration examples with descriptions:"
1726
  msgstr ""
1727
 
1728
+ #: includes/sc_event-list_helptexts.php:225
1729
  #, php-format
1730
  msgid ""
1731
  "In this example you can see that the filterbar item and the used display "
1733
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1734
  msgstr ""
1735
 
1736
+ #: includes/sc_event-list_helptexts.php:231
1737
  #, php-format
1738
  msgid ""
1739
  "In this example you can see that filterbar options can be added in brackets "
1740
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1741
  msgstr ""
1742
 
1743
+ #: includes/sc_event-list_helptexts.php:232
1744
  msgid "option_name"
1745
  msgstr ""
1746
 
1747
+ #: includes/sc_event-list_helptexts.php:232
1748
  msgid "value"
1749
  msgstr "waarde"
1750
 
1751
+ #: includes/sc_event-list_helptexts.php:236
1752
  #, php-format
1753
  msgid ""
1754
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1757
  "left-aligned and the reset link will be on the right side."
1758
  msgstr ""
1759
 
1760
+ #: includes/sc_event-list_helptexts.php:244
1761
+ #: includes/sc_event-list_helptexts.php:277
1762
  msgid ""
1763
  "This attribute specifies if the title should be truncated to the given "
1764
  "number of characters in the event list."
1765
  msgstr ""
1766
 
1767
+ #: includes/sc_event-list_helptexts.php:246
1768
+ #: includes/sc_event-list_helptexts.php:278
1769
  #, php-format
1770
  msgid ""
1771
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1772
  "is automatically truncated via css."
1773
  msgstr ""
1774
 
1775
+ #: includes/sc_event-list_helptexts.php:250
1776
+ #: includes/sc_event-list_helptexts.php:279
1777
+ #: includes/sc_event-list_helptexts.php:322
1778
  msgid "This attribute has no influence if only a single event is shown."
1779
  msgstr ""
1780
 
1781
+ #: includes/sc_event-list_helptexts.php:257
1782
  msgid ""
1783
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1784
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1785
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1789
  msgid ""
1790
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1791
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1792
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1796
  msgid ""
1797
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1798
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1799
+ "\t\t\t\t\tWith \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1800
+ msgstr ""
1801
 
1802
+ #: includes/sc_event-list_helptexts.php:297
1803
  msgid ""
1804
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1805
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1806
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1807
  msgstr ""
1808
 
1809
+ #: includes/sc_event-list_helptexts.php:308
1810
  msgid ""
1811
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1812
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1813
+ "\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"
1814
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1815
+ "\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)."
1816
  msgstr ""
1817
 
1818
+ #: includes/sc_event-list_helptexts.php:320
1819
  msgid ""
1820
  "This attribute specifies if the content should be truncate to the given "
1821
  "number of characters in the event list."
1822
  msgstr ""
1823
 
1824
+ #: includes/sc_event-list_helptexts.php:321
1825
  #, php-format
1826
  msgid "With the standard value %1$s the full text is displayed."
1827
  msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven."
1828
 
1829
+ #: includes/sc_event-list_helptexts.php:329
1830
  msgid ""
1831
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1832
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1833
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1834
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1835
  msgstr ""
1836
 
1837
+ #: includes/sc_event-list_helptexts.php:341
1838
  msgid ""
1839
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1840
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1841
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1842
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1843
  msgstr ""
1844
 
1845
+ #: includes/sc_event-list_helptexts.php:353
1846
  msgid ""
1847
  "This attribute specifies if a rss feed link should be added.<br />\n"
1848
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1849
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1850
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1851
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1852
+ msgstr ""
1853
 
1854
+ #: includes/sc_event-list_helptexts.php:366
1855
  msgid ""
1856
  "This attribute specifies if a ical feed link should be added.<br />\n"
1857
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1858
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1859
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1860
  msgstr ""
1861
 
1862
+ #: includes/sc_event-list_helptexts.php:378
1863
  msgid ""
1864
  "This attribute specifies the page or post url for event links.<br />\n"
1865
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1866
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1867
+ msgstr ""
1868
 
1869
+ #: includes/sc_event-list_helptexts.php:391
1870
  msgid ""
1871
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1872
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1873
  msgstr ""
1874
 
1875
+ #: includes/sc_event-list.php:184
1876
  msgid "Sorry, the requested event is not available!"
1877
  msgstr ""
1878
 
1879
+ #: includes/sc_event-list.php:193
1880
  msgid "Event Information:"
1881
  msgstr "Evenement details:"
1882
 
1883
+ #: includes/sc_event-list.php:437
1884
  msgid "Link to RSS feed"
1885
  msgstr ""
1886
 
1887
+ #: includes/sc_event-list.php:447
1888
  msgid "Link to iCal feed"
1889
  msgstr ""
1890
 
1917
  msgid "Truncate event title to"
1918
  msgstr "Kort evenementtitel in tot"
1919
 
1920
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1921
+ #: includes/widget_helptexts.php:103
1922
  msgid "characters"
1923
  msgstr "tekens"
1924
 
1925
+ #: includes/widget_helptexts.php:39
1926
  msgid ""
1927
  "This option defines the number of displayed characters for the event title."
1928
  msgstr ""
1929
 
1930
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1931
  #, php-format
1932
  msgid ""
1933
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1934
  "automatically truncate the text via css."
1935
  msgstr ""
1936
 
1937
+ #: includes/widget_helptexts.php:51
1938
  msgid "Show event starttime"
1939
  msgstr "Toon starttijd evenement"
1940
 
1941
+ #: includes/widget_helptexts.php:53
1942
  msgid "This option defines if the event start time will be displayed."
1943
  msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond"
1944
 
1945
+ #: includes/widget_helptexts.php:60
1946
  msgid "Show event location"
1947
  msgstr "Toon evenementlocatie"
1948
 
1949
+ #: includes/widget_helptexts.php:62
1950
  msgid "This option defines if the event location will be displayed."
1951
  msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond."
1952
 
1953
+ #: includes/widget_helptexts.php:69
1954
  msgid "Truncate location to"
1955
  msgstr "Kort de locatie in tot"
1956
 
1957
+ #: includes/widget_helptexts.php:72
1958
  msgid ""
1959
  "If the event location is diplayed this option defines the number of "
1960
  "displayed characters."
1961
  msgstr ""
1962
 
1963
+ #: includes/widget_helptexts.php:84
1964
  msgid "Show event excerpt"
1965
  msgstr ""
1966
 
1967
+ #: includes/widget_helptexts.php:86
1968
  msgid "This option defines if the event excerpt will be displayed."
1969
  msgstr ""
1970
 
1971
+ #: includes/widget_helptexts.php:93
1972
  msgid "Show event content"
1973
  msgstr ""
1974
 
1975
+ #: includes/widget_helptexts.php:95
1976
  msgid "This option defines if the event content will be displayed."
1977
  msgstr ""
1978
 
1979
+ #: includes/widget_helptexts.php:102
1980
  msgid "Truncate content to"
1981
  msgstr ""
1982
 
1983
+ #: includes/widget_helptexts.php:105
1984
  msgid ""
1985
  "If the event content are diplayed this option defines the number of diplayed"
1986
  " characters."
1987
  msgstr ""
1988
 
1989
+ #: includes/widget_helptexts.php:107
1990
  #, php-format
1991
  msgid "Set this value to %1$s to view the full text."
1992
  msgstr ""
1993
 
1994
+ #: includes/widget_helptexts.php:116
1995
  msgid "URL to the linked Event List page"
1996
  msgstr "URL naar de gelinkte evenementenlijst-pagina"
1997
 
1998
+ #: includes/widget_helptexts.php:118
1999
  msgid ""
2000
  "This option defines the url to the linked Event List page. This option is "
2001
  "required if you want to use one of the options below."
2002
  msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
2003
 
2004
+ #: includes/widget_helptexts.php:125
2005
  msgid "Shortcode ID on linked page"
2006
  msgstr "Shortcode ID op de gelinkte pagina"
2007
 
2008
+ #: includes/widget_helptexts.php:127
2009
  msgid ""
2010
  "This option defines the shortcode-id for the Event List on the linked page. "
2011
  "Normally the standard value 1 is correct, you only have to change it if you "
2012
  "use multiple event-list shortcodes on the linked page."
2013
  msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
2014
 
2015
+ #: includes/widget_helptexts.php:136
2016
  msgid ""
2017
  "With this option you can add a link to the single event page for every "
2018
  "displayed event. You have to specify the url to the page and the shortcode "
2019
  "id option if you want to use it."
2020
  msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
2021
 
2022
+ #: includes/widget_helptexts.php:145
2023
  msgid ""
2024
  "With this option you can add a link to the event-list page below the "
2025
  "diplayed events. You have to specify the url to page option if you want to "
2026
  "use it."
2027
  msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
2028
 
2029
+ #: includes/widget_helptexts.php:152
2030
  msgid "Caption for the link"
2031
  msgstr "Bijschrift bij de link"
2032
 
2033
+ #: includes/widget_helptexts.php:154
2034
  msgid ""
2035
  "This option defines the text for the link to the Event List page if the "
2036
  "approriate option is selected."
2037
  msgstr "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd."
2038
 
2039
+ #: includes/widget.php:38
2040
  msgid "With this widget a list of upcoming events can be displayed."
2041
  msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
2042
 
2043
+ #: includes/widget.php:43
2044
  msgid "Upcoming events"
2045
  msgstr "Komende evenementen"
2046
 
2047
+ #: includes/widget.php:57
2048
  msgid "show events page"
2049
  msgstr "toon evenementenpagina"
languages/event-list-pl_PL.mo CHANGED
Binary file
languages/event-list-pl_PL.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -8,8 +8,8 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
12
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
15
  "MIME-Version: 1.0\n"
@@ -18,33 +18,33 @@ msgstr ""
18
  "Language: pl_PL\n"
19
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
20
 
21
- #: admin/admin.php:64
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
- #: admin/admin.php:64
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
32
  msgid "Event List Settings"
33
  msgstr "Ustawienia Listy Wydarzeń"
34
 
35
- #: admin/admin.php:116
36
  msgid "Settings"
37
  msgstr "Ustawienia"
38
 
39
- #: admin/admin.php:120 admin/includes/admin-about.php:43
40
  msgid "About Event List"
41
  msgstr "O Liście Wydarzeń"
42
 
43
- #: admin/admin.php:120
44
  msgid "About"
45
  msgstr "O"
46
 
47
- #: admin/admin.php:144
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
@@ -53,84 +53,84 @@ msgstr[1] ""
53
  msgstr[2] ""
54
  msgstr[3] ""
55
 
56
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
57
  msgid "General"
58
  msgstr "Ogólne"
59
 
60
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
61
- #: admin/includes/admin-about.php:117
62
  msgid "Shortcode Attributes"
63
  msgstr "Atrybuty Skrótów"
64
 
65
- #: admin/includes/admin-about.php:82
66
  msgid "Help and Instructions"
67
  msgstr "Pomoc i instrukcje"
68
 
69
- #: admin/includes/admin-about.php:83
70
  #, php-format
71
  msgid "You can manage the events %1$shere%2$s"
72
  msgstr "%1$sTutaj%2$s możesz zarządzać wydarzeniami"
73
 
74
- #: admin/includes/admin-about.php:84
75
  msgid "To show the events on your site you have 2 possibilities"
76
  msgstr "Istnieją 2 sposoby na wyświetlanie wydarzeń na Twojej stronie"
77
 
78
- #: admin/includes/admin-about.php:85
79
  #, php-format
80
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
81
  msgstr "możesz umieścić następujący <strong>kod skrótowy</strong> %1$s na stronie lub w poście"
82
 
83
- #: admin/includes/admin-about.php:86
84
  #, php-format
85
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
86
  msgstr "możesz dodać widżet <strong>widget</strong> %1$s na panel boczny"
87
 
88
- #: admin/includes/admin-about.php:87
89
  msgid ""
90
  "The displayed events and their style can be modified with the available "
91
  "widget settings and the available attributes for the shortcode."
92
  msgstr "Wyświetlane wydarzenia i ich styl mogą być modyfikowane przy pomocy dostępnych ustawień widgetu lub dostępnych atrybutów we wstawionym kodzie skrótowym."
93
 
94
- #: admin/includes/admin-about.php:88
95
  #, php-format
96
  msgid ""
97
  "A list of all available shortcode attributes with their descriptions is "
98
  "available in the %1$s tab."
99
  msgstr "Lista dostępnych atrybutów jest dostępna w zakładce %1$s."
100
 
101
- #: admin/includes/admin-about.php:89
102
  msgid "The available widget options are described in their tooltip text."
103
  msgstr "Dostępne opcje widgetu zostały opisane w dymkach etykiet."
104
 
105
- #: admin/includes/admin-about.php:90
106
  #, php-format
107
  msgid ""
108
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
113
  msgid "Add links to the single events"
114
  msgstr "Dodaj łącza do pojedynczych wydarzeń"
115
 
116
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
117
  msgid "Add a link to the Event List page"
118
  msgstr "Dodaj łącze do strony Listy wydarzeń"
119
 
120
- #: admin/includes/admin-about.php:91
121
  msgid ""
122
  "This is required because the widget does not know in which page or post the "
123
  "shortcode was included."
124
  msgstr ""
125
 
126
- #: admin/includes/admin-about.php:92
127
  msgid ""
128
  "Additionally you have to insert the correct Shortcode id on the linked page."
129
  " This id describes which shortcode should be used on the given page or post "
130
  "if you have more than one."
131
  msgstr ""
132
 
133
- #: admin/includes/admin-about.php:93
134
  #, php-format
135
  msgid ""
136
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -138,367 +138,367 @@ msgid ""
138
  "link on your linked page or post."
139
  msgstr ""
140
 
141
- #: admin/includes/admin-about.php:94
142
  #, php-format
143
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
144
  msgstr "Id jest dostępne na końcu parametrów URL (np. %1$s)."
145
 
146
- #: admin/includes/admin-about.php:96
147
  #, php-format
148
  msgid ""
149
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
150
  "want."
151
  msgstr ""
152
 
153
- #: admin/includes/admin-about.php:96
154
  msgid "Settings page"
155
  msgstr "Ustawienia Listy Wydarzeń"
156
 
157
- #: admin/includes/admin-about.php:103
158
  msgid "About the plugin author"
159
  msgstr "O autorze wtyczki"
160
 
161
- #: admin/includes/admin-about.php:105
162
  #, php-format
163
  msgid ""
164
  "This plugin is developed by %1$s, you can find more information about the "
165
  "plugin on the %2$s."
166
  msgstr "Ta wtyczka jest rozwijana przez %1$s, więcej informacji na temat wtyczki można znaleźć na %2$s."
167
 
168
- #: admin/includes/admin-about.php:105
169
  msgid "WordPress plugin site"
170
  msgstr ""
171
 
172
- #: admin/includes/admin-about.php:106
173
  #, php-format
174
  msgid "If you like the plugin please rate it on the %1$s."
175
  msgstr "Jeśli podoba Ci się wtyczka możesz ocenić ją na %1$s."
176
 
177
- #: admin/includes/admin-about.php:106
178
  msgid "WordPress plugin review site"
179
  msgstr ""
180
 
181
- #: admin/includes/admin-about.php:107
182
  msgid ""
183
  "If you want to support the plugin I would be happy to get a small donation"
184
  msgstr "Jeśli chcesz wspomóc rozwój wtyczki byłbym wdzięczny za małą dotację"
185
 
186
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
187
- #: admin/includes/admin-about.php:110
188
  #, php-format
189
  msgid "Donate with %1$s"
190
  msgstr ""
191
 
192
- #: admin/includes/admin-about.php:119
193
  msgid ""
194
  "You have the possibility to modify the output if you add some of the "
195
  "following attributes to the shortcode."
196
  msgstr "Jest możliwość modyfikacji wyglądu za pomocą następujących atrybutów."
197
 
198
- #: admin/includes/admin-about.php:120
199
  #, php-format
200
  msgid ""
201
  "You can combine and add as much attributes as you want. E.g. the shortcode "
202
  "including the attributes %1$s and %2$s would looks like this:"
203
  msgstr ""
204
 
205
- #: admin/includes/admin-about.php:122
206
  msgid ""
207
  "Below you can find a list of all supported attributes with their "
208
  "descriptions and available options:"
209
  msgstr "Poniżej znajduje się lista wszystkich wspieranych atrybutów wraz z opisami i dostępnymi wartościami:"
210
 
211
- #: admin/includes/admin-about.php:137
212
  msgid "Attribute name"
213
  msgstr "Nazwa atrybutu"
214
 
215
- #: admin/includes/admin-about.php:138
216
  msgid "Value options"
217
  msgstr "Opcje wartości"
218
 
219
- #: admin/includes/admin-about.php:139
220
  msgid "Default value"
221
  msgstr "Domyślna wartość"
222
 
223
- #: admin/includes/admin-about.php:140
224
  msgid "Description"
225
  msgstr "Opis"
226
 
227
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
228
- #: includes/sc_event-list_helptexts.php:42
229
  msgid "Filter Syntax"
230
  msgstr "Składnia filtru"
231
 
232
- #: admin/includes/admin-about.php:160
233
  msgid ""
234
  "For date and cat filters you can specify complex filters with the following "
235
  "syntax:"
236
  msgstr "Zaawansowane filtry daty i kategorii mogą być ustawiane przy pomocy następującej składni:"
237
 
238
- #: admin/includes/admin-about.php:161
239
  #, php-format
240
  msgid ""
241
  "You can use %1$s and %2$s connections to define complex filters. "
242
  "Additionally you can set brackets %3$s for nested queries."
243
  msgstr ""
244
 
245
- #: admin/includes/admin-about.php:161
246
  msgid "AND"
247
  msgstr "I"
248
 
249
- #: admin/includes/admin-about.php:161
250
  msgid "OR"
251
  msgstr "LUB"
252
 
253
- #: admin/includes/admin-about.php:161
254
  msgid "or"
255
  msgstr "i"
256
 
257
- #: admin/includes/admin-about.php:161
258
  msgid "and"
259
  msgstr "lub"
260
 
261
- #: admin/includes/admin-about.php:162
262
  msgid "Examples for cat filters:"
263
  msgstr "Przykłady filtrów kategorii:"
264
 
265
- #: admin/includes/admin-about.php:163
266
  #, php-format
267
  msgid "Show all events with category %1$s."
268
  msgstr "Wyświetla wszystkie wydarzenia z kategorii %1$s."
269
 
270
- #: admin/includes/admin-about.php:164
271
  #, php-format
272
  msgid "Show all events with category %1$s or %2$s."
273
  msgstr "Wyświetla wszystkie wydarzenia z kategorii %1$s i %2$s."
274
 
275
- #: admin/includes/admin-about.php:165
276
  #, php-format
277
  msgid ""
278
  "Show all events with category %1$s and all events where category %2$s as "
279
  "well as %3$s is selected."
280
  msgstr ""
281
 
282
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
283
  msgid "Available Date Formats"
284
  msgstr "Dostępne formaty dat"
285
 
286
- #: admin/includes/admin-about.php:172
287
  msgid "For date filters you can use the following date formats:"
288
  msgstr ""
289
 
290
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
291
  msgid "Available Date Range Formats"
292
  msgstr "Dostępne formaty zakresu dat"
293
 
294
- #: admin/includes/admin-about.php:182
295
  msgid "For date filters you can use the following daterange formats:"
296
  msgstr ""
297
 
298
- #: admin/includes/admin-about.php:195
299
  msgid "Value"
300
  msgstr "Wartość"
301
 
302
- #: admin/includes/admin-about.php:199
303
  msgid "Example"
304
  msgstr "Przykład"
305
 
306
- #: admin/includes/admin-categories.php:54
307
  msgid "Synchronize with post categories"
308
  msgstr ""
309
 
310
- #: admin/includes/admin-categories.php:63
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
  msgstr ""
314
 
315
- #: admin/includes/admin-categories.php:64
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
  msgstr ""
319
 
320
- #: admin/includes/admin-categories.php:65
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
  msgstr ""
324
 
325
- #: admin/includes/admin-categories.php:67
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
  msgstr ""
329
 
330
- #: admin/includes/admin-categories.php:68
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
  msgstr ""
334
 
335
- #: admin/includes/admin-categories.php:69
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
  msgstr ""
339
 
340
- #: admin/includes/admin-categories.php:72
341
  msgid "An Error occured during the category sync"
342
  msgstr ""
343
 
344
- #: admin/includes/admin-categories.php:75
345
  msgid "Category sync finished"
346
  msgstr ""
347
 
348
- #: admin/includes/admin-category-sync.php:54
349
  msgid "Error: You are not allowed to view this page!"
350
  msgstr ""
351
 
352
- #: admin/includes/admin-category-sync.php:70
353
  msgid "Affected Categories when switching to seperate Event Categories"
354
  msgstr ""
355
 
356
- #: admin/includes/admin-category-sync.php:71
357
  msgid "Switch option to seperate Event Categories"
358
  msgstr ""
359
 
360
- #: admin/includes/admin-category-sync.php:72
361
  msgid ""
362
  "If you proceed, all post categories will be copied and all events will be "
363
  "re-assigned to this new categories."
364
  msgstr ""
365
 
366
- #: admin/includes/admin-category-sync.php:73
367
  msgid ""
368
  "Afterwards the event categories are independent of the post categories."
369
  msgstr ""
370
 
371
- #: admin/includes/admin-category-sync.php:75
372
  msgid "Affected Categories when switching to use Post Categories for events"
373
  msgstr ""
374
 
375
- #: admin/includes/admin-category-sync.php:76
376
  msgid "Switch option to use Post Categories for events"
377
  msgstr ""
378
 
379
- #: admin/includes/admin-category-sync.php:77
380
  msgid ""
381
  "Take a detailed look at the affected categories above before you proceed! "
382
  "All seperate event categories will be deleted, this cannot be undone!"
383
  msgstr ""
384
 
385
- #: admin/includes/admin-category-sync.php:79
386
  msgid "Event Categories: Synchronise with Post Categories"
387
  msgstr ""
388
 
389
- #: admin/includes/admin-category-sync.php:80
390
  msgid "Start synchronisation"
391
  msgstr ""
392
 
393
- #: admin/includes/admin-category-sync.php:81
394
  msgid ""
395
  "If this option is enabled the above listed categories will be deleted and "
396
  "removed from the existing events!"
397
  msgstr ""
398
 
399
- #: admin/includes/admin-category-sync.php:96
400
  msgid "Categories to modify"
401
  msgstr ""
402
 
403
- #: admin/includes/admin-category-sync.php:97
404
  msgid "Categories to add"
405
  msgstr ""
406
 
407
- #: admin/includes/admin-category-sync.php:98
408
  msgid "Categories to delete (optional)"
409
  msgstr ""
410
 
411
- #: admin/includes/admin-category-sync.php:99
412
  msgid "Delete not available post categories"
413
  msgstr ""
414
 
415
- #: admin/includes/admin-category-sync.php:102
416
  msgid "Categories with differences"
417
  msgstr ""
418
 
419
- #: admin/includes/admin-category-sync.php:103
420
  msgid "Categories to add (optional)"
421
  msgstr ""
422
 
423
- #: admin/includes/admin-category-sync.php:104
424
  msgid "Add not available post categories"
425
  msgstr ""
426
 
427
- #: admin/includes/admin-category-sync.php:123
428
  msgid "none"
429
  msgstr ""
430
 
431
- #: admin/includes/admin-import.php:58
432
  msgid "Import Events"
433
  msgstr "Importuj wydarzenia"
434
 
435
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
436
- #: admin/includes/admin-import.php:220
437
  msgid "Step"
438
  msgstr "Krok"
439
 
440
- #: admin/includes/admin-import.php:79
441
  msgid "Set import file and options"
442
  msgstr ""
443
 
444
- #: admin/includes/admin-import.php:82
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
  msgstr ""
448
 
449
- #: admin/includes/admin-import.php:85
450
  msgid "Example file"
451
  msgstr "Przykładowy plik"
452
 
453
- #: admin/includes/admin-import.php:86
454
  #, php-format
455
  msgid ""
456
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
457
  msgstr ""
458
 
459
- #: admin/includes/admin-import.php:87
460
  msgid "Note"
461
  msgstr "Uwaga"
462
 
463
- #: admin/includes/admin-import.php:87
464
  msgid ""
465
  "Do not change the column header and separator line (first two lines), "
466
  "otherwise the import will fail!"
467
  msgstr ""
468
 
469
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
470
  msgid "Sorry, there has been an error."
471
  msgstr ""
472
 
473
- #: admin/includes/admin-import.php:96
474
  msgid "The file does not exist, please try again."
475
  msgstr "Plik nie został znaleziony, proszę spróbować ponownie."
476
 
477
- #: admin/includes/admin-import.php:104
478
  msgid "The uploaded file does not have the required csv extension."
479
  msgstr ""
480
 
481
- #: admin/includes/admin-import.php:116
482
  msgid "Events review and additonal category selection"
483
  msgstr ""
484
 
485
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
486
  msgid "Error"
487
  msgstr ""
488
 
489
- #: admin/includes/admin-import.php:122
490
  msgid "This CSV file cannot be imported"
491
  msgstr ""
492
 
493
- #: admin/includes/admin-import.php:133
494
  msgid "None of the events in this CSV file can be imported"
495
  msgstr ""
496
 
497
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
498
  msgid "Warning"
499
  msgstr ""
500
 
501
- #: admin/includes/admin-import.php:138
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
@@ -507,225 +507,229 @@ msgstr[1] ""
507
  msgstr[2] ""
508
  msgstr[3] ""
509
 
510
- #: admin/includes/admin-import.php:150
511
  #, php-format
512
  msgid "CSV line %1$s"
513
  msgstr ""
514
 
515
- #: admin/includes/admin-import.php:160
516
  msgid "You can still import all other events listed below."
517
  msgstr ""
518
 
519
- #: admin/includes/admin-import.php:179
520
  msgid ""
521
  "The following category slugs are not available and will be removed from the "
522
  "imported events"
523
  msgstr ""
524
 
525
- #: admin/includes/admin-import.php:185
526
  msgid ""
527
  "If you want to keep these categories, please create these Categories first "
528
  "and do the import afterwards."
529
  msgstr ""
530
 
531
- #: admin/includes/admin-import.php:220
532
  msgid "Import result"
533
  msgstr ""
534
 
535
- #: admin/includes/admin-import.php:223
536
  #, php-format
537
  msgid "Import of %1$s events successful!"
538
  msgstr ""
539
 
540
- #: admin/includes/admin-import.php:224
541
  msgid "Go back to All Events"
542
  msgstr "Wróć do Wszystkie wydarzenia"
543
 
544
- #: admin/includes/admin-import.php:227
545
  msgid "Errors during Import"
546
  msgstr ""
547
 
548
- #: admin/includes/admin-import.php:235
549
  msgid "Event from CSV-line"
550
  msgstr ""
551
 
552
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
553
  #: includes/widget_helptexts.php:9
554
  msgid "Title"
555
  msgstr "Tytuł"
556
 
557
- #: admin/includes/admin-import.php:248
558
  msgid "Start Date"
559
  msgstr "Termin rozpoczęcia"
560
 
561
- #: admin/includes/admin-import.php:249
562
  msgid "End Date"
563
  msgstr "Termin zakończenia"
564
 
565
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
566
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
567
  msgid "Time"
568
  msgstr "Godzina"
569
 
570
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
571
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
572
  #: includes/options_helptexts.php:76
573
  msgid "Location"
574
  msgstr "Miejsce"
575
 
576
- #: admin/includes/admin-import.php:252
577
  msgid "Content"
578
  msgstr ""
579
 
580
- #: admin/includes/admin-import.php:253
581
  msgid "Category slugs"
582
  msgstr "Upr. nazwy kategorii"
583
 
584
- #: admin/includes/admin-import.php:297
585
  msgid "Header line is missing or not correct!"
586
  msgstr ""
587
 
588
- #: admin/includes/admin-import.php:298
589
  #, php-format
590
  msgid ""
591
  "Have a look at the %1$sexample file%2$s to see the correct header line "
592
  "format."
593
  msgstr ""
594
 
595
- #: admin/includes/admin-import.php:305
596
  #, php-format
597
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
598
  msgstr ""
599
 
600
- #: admin/includes/admin-import.php:334
601
  msgid "Empty event title found"
602
  msgstr ""
603
 
604
- #: admin/includes/admin-import.php:340
605
  msgid "Wrong date format for startdate"
606
  msgstr ""
607
 
608
- #: admin/includes/admin-import.php:348
609
  msgid "Wrong date format for enddate"
610
  msgstr ""
611
 
612
- #: admin/includes/admin-import.php:401
613
  msgid "Import events"
614
  msgstr "Importuj wydarzenia"
615
 
616
- #: admin/includes/admin-import.php:402
617
  msgid "Add additional categories"
618
  msgstr "Dodaj dodatkowe kategorie"
619
 
620
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
621
- msgid "Import"
622
- msgstr "Import"
623
-
624
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
625
  msgid "No events found"
626
  msgstr ""
627
 
628
- #: admin/includes/admin-import.php:473
629
  msgid "Saving of event failed!"
630
  msgstr ""
631
 
632
- #: admin/includes/admin-main.php:76
633
  msgid "Event Date"
634
  msgstr ""
635
 
636
- #: admin/includes/admin-main.php:80
637
  msgid "Author"
638
  msgstr "Autor"
639
 
640
- #: admin/includes/admin-main.php:148
641
  #, php-format
642
  msgid "Add a copy of %1$s"
643
  msgstr ""
644
 
645
- #: admin/includes/admin-main.php:148
646
  msgid "Copy"
647
  msgstr ""
648
 
649
- #: admin/includes/admin-new.php:58
 
 
 
 
650
  msgid "Event data"
651
  msgstr ""
652
 
653
- #: admin/includes/admin-new.php:90
654
  msgid "Add Copy"
655
  msgstr ""
656
 
657
- #: admin/includes/admin-new.php:98
658
  msgid "Date"
659
  msgstr "Termin"
660
 
661
- #: admin/includes/admin-new.php:98
662
  msgid "required"
663
  msgstr "wymagane"
664
 
665
- #: admin/includes/admin-new.php:101
666
  msgid "Multi-Day Event"
667
  msgstr "Wydarzenie kilkudniowe"
668
 
669
- #: admin/includes/admin-new.php:121
670
  msgid "Event Title"
671
  msgstr ""
672
 
673
- #: admin/includes/admin-new.php:137
674
  msgid "Event Content"
675
  msgstr ""
676
 
677
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
678
  msgid "Event updated."
679
  msgstr ""
680
 
681
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
682
  msgid "View event"
683
  msgstr ""
684
 
685
- #: admin/includes/admin-new.php:204
686
  #, php-format
687
  msgid "Event restored to revision from %1$s"
688
  msgstr ""
689
 
690
- #: admin/includes/admin-new.php:205
691
  msgid "Event published."
692
  msgstr ""
693
 
694
- #: admin/includes/admin-new.php:207
 
 
 
 
695
  msgid "Event submitted."
696
  msgstr ""
697
 
698
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
699
- #: admin/includes/admin-new.php:210
700
  msgid "Preview event"
701
  msgstr ""
702
 
703
- #: admin/includes/admin-new.php:208
704
  #, php-format
705
  msgid "Event scheduled for: %1$s>"
706
  msgstr ""
707
 
708
- #: admin/includes/admin-new.php:210
709
  msgid "Event draft updated."
710
  msgstr ""
711
 
712
- #: admin/includes/admin-settings.php:79
713
  msgid "Go to Event Category switching page"
714
  msgstr ""
715
 
716
- #: admin/includes/admin-settings.php:93
717
  msgid "Frontend Settings"
718
  msgstr "Strona frontowa"
719
 
720
- #: admin/includes/admin-settings.php:94
721
  msgid "Admin Page Settings"
722
  msgstr "Panel administratora"
723
 
724
- #: admin/includes/admin-settings.php:95
725
  msgid "Feed Settings"
726
  msgstr "Ustawienia kanału"
727
 
728
- #: admin/includes/admin-settings.php:96
729
  msgid "Category Taxonomy"
730
  msgstr ""
731
 
@@ -733,255 +737,255 @@ msgstr ""
733
  msgid "Year"
734
  msgstr "Rok"
735
 
736
- #: includes/daterange_helptexts.php:9
737
  msgid "A year can be specified in 4 digit format."
738
  msgstr "Rok może być określony formatem czterocyfrowym."
739
 
740
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
741
- #: includes/daterange_helptexts.php:47
742
  #, php-format
743
  msgid ""
744
  "For a start date filter the first day of %1$s is used, in an end date the "
745
  "last day."
746
  msgstr ""
747
 
748
- #: includes/daterange_helptexts.php:10
749
  msgid "the resulting year"
750
  msgstr ""
751
 
752
- #: includes/daterange_helptexts.php:15
753
  msgid "Month"
754
  msgstr "Miesiąc"
755
 
756
- #: includes/daterange_helptexts.php:16
757
  msgid ""
758
  "A month can be specified with 4 digits for the year and 2 digits for the "
759
  "month, seperated by a hyphen (-)."
760
  msgstr ""
761
 
762
- #: includes/daterange_helptexts.php:17
763
  msgid "the resulting month"
764
  msgstr ""
765
 
766
- #: includes/daterange_helptexts.php:22
767
  msgid "Day"
768
  msgstr "Dzień"
769
 
770
- #: includes/daterange_helptexts.php:23
771
  msgid ""
772
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
773
  " month and 2 digets for the day, seperated by hyphens (-)."
774
  msgstr ""
775
 
776
- #: includes/daterange_helptexts.php:28
777
  msgid "Relative Year"
778
  msgstr ""
779
 
780
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
781
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
782
  #, php-format
783
  msgid "%1$s from now can be specified in the following notation: %2$s"
784
  msgstr ""
785
 
786
- #: includes/daterange_helptexts.php:29
787
  msgid "A relative year"
788
  msgstr ""
789
 
790
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
791
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
792
  #, php-format
793
  msgid ""
794
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
795
  "%3$s or %4$s attached (see also the example below)."
796
  msgstr ""
797
 
798
- #: includes/daterange_helptexts.php:30
799
  msgid "number of years"
800
  msgstr "liczba lat"
801
 
802
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
803
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
804
  #, php-format
805
  msgid "Additionally the following values are available: %1$s"
806
  msgstr ""
807
 
808
- #: includes/daterange_helptexts.php:36
809
  msgid "Relative Month"
810
  msgstr ""
811
 
812
- #: includes/daterange_helptexts.php:37
813
  msgid "A relative month"
814
  msgstr ""
815
 
816
- #: includes/daterange_helptexts.php:38
817
  msgid "number of months"
818
  msgstr "liczba miesięcy"
819
 
820
- #: includes/daterange_helptexts.php:44
821
  msgid "Relative Week"
822
  msgstr ""
823
 
824
- #: includes/daterange_helptexts.php:45
825
  msgid "A relative week"
826
  msgstr ""
827
 
828
- #: includes/daterange_helptexts.php:46
829
  msgid "number of weeks"
830
  msgstr "liczba tygodni"
831
 
832
- #: includes/daterange_helptexts.php:47
833
  msgid "the resulting week"
834
  msgstr ""
835
 
836
- #: includes/daterange_helptexts.php:48
837
  #, php-format
838
  msgid ""
839
  "The first day of the week is depending on the option %1$s which can be found"
840
  " and changed in %2$s."
841
  msgstr ""
842
 
843
- #: includes/daterange_helptexts.php:54
844
  msgid "Relative Day"
845
  msgstr ""
846
 
847
- #: includes/daterange_helptexts.php:55
848
  msgid "A relative day"
849
  msgstr ""
850
 
851
- #: includes/daterange_helptexts.php:56
852
  msgid "number of days"
853
  msgstr "liczba dni"
854
 
855
- #: includes/daterange_helptexts.php:64
856
  msgid "Date range"
857
  msgstr "Zakres dat"
858
 
859
- #: includes/daterange_helptexts.php:66
860
  msgid ""
861
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
862
- "\t For the start and end date any available date format can be used."
863
  msgstr ""
864
 
865
- #: includes/daterange_helptexts.php:75
866
  msgid "This value defines a range without any limits."
867
  msgstr ""
868
 
869
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
870
- #: includes/daterange_helptexts.php:90
871
  #, php-format
872
  msgid "The corresponding date_range format is: %1$s"
873
  msgstr ""
874
 
875
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
876
  msgid "Upcoming"
877
  msgstr "Nadchodzące"
878
 
879
- #: includes/daterange_helptexts.php:82
880
  msgid "This value defines a range from the actual day to the future."
881
  msgstr ""
882
 
883
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
884
  msgid "Past"
885
  msgstr "Przeszłe"
886
 
887
- #: includes/daterange_helptexts.php:89
888
  msgid "This value defines a range from the past to the previous day."
889
  msgstr ""
890
 
891
- #: includes/event.php:124
892
  msgid "No valid start date provided"
893
  msgstr ""
894
 
895
- #: includes/event.php:299 includes/event.php:301
896
- #: includes/sc_event-list.php:298
897
  msgid "read more"
898
  msgstr ""
899
 
900
- #: includes/events_post_type.php:69
901
  msgid "Events"
902
  msgstr "Wydarzenia"
903
 
904
- #: includes/events_post_type.php:70
905
  msgid "Event"
906
  msgstr ""
907
 
908
- #: includes/events_post_type.php:71
909
  msgid "Add New"
910
  msgstr "Dodaj nowe"
911
 
912
- #: includes/events_post_type.php:72
913
  msgid "Add New Event"
914
  msgstr "Dodaj wydarzenie"
915
 
916
- #: includes/events_post_type.php:73
917
  msgid "Edit Event"
918
  msgstr "Edytuj wydarzenie"
919
 
920
- #: includes/events_post_type.php:74
921
  msgid "New Event"
922
  msgstr ""
923
 
924
- #: includes/events_post_type.php:75
925
  msgid "View Event"
926
  msgstr ""
927
 
928
- #: includes/events_post_type.php:76
929
  msgid "View Events"
930
  msgstr ""
931
 
932
- #: includes/events_post_type.php:77
933
  msgid "Search Events"
934
  msgstr ""
935
 
936
- #: includes/events_post_type.php:79
937
  msgid "No events found in Trash"
938
  msgstr ""
939
 
940
- #: includes/events_post_type.php:81
941
  msgid "All Events"
942
  msgstr "Wszystkie wydarzenia"
943
 
944
- #: includes/events_post_type.php:82
945
  msgid "Event Archives"
946
  msgstr ""
947
 
948
- #: includes/events_post_type.php:83
949
  msgid "Event Attributes"
950
  msgstr ""
951
 
952
- #: includes/events_post_type.php:84
953
  msgid "Insert into event"
954
  msgstr ""
955
 
956
- #: includes/events_post_type.php:85
957
  msgid "Uploaded to this event"
958
  msgstr ""
959
 
960
- #: includes/events_post_type.php:86
961
  msgid "Event List"
962
  msgstr "Lista wydarzeń"
963
 
964
- #: includes/events_post_type.php:87
965
  msgid "Filter events list"
966
  msgstr ""
967
 
968
- #: includes/events_post_type.php:88
969
  msgid "Events list navigation"
970
  msgstr ""
971
 
972
- #: includes/events_post_type.php:89
973
  msgid "Events list"
974
  msgstr ""
975
 
976
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
977
  msgid "Reset"
978
  msgstr ""
979
 
980
- #: includes/filterbar.php:296
981
  msgid "All"
982
  msgstr "Wszystkie"
983
 
984
- #: includes/filterbar.php:298
985
  msgid "All Dates"
986
  msgstr ""
987
 
@@ -1421,23 +1425,23 @@ msgid ""
1421
  " switching page from here."
1422
  msgstr ""
1423
 
1424
- #: includes/options.php:73
1425
  msgid "events"
1426
  msgstr ""
1427
 
1428
- #: includes/options.php:77
1429
  msgid "Show content"
1430
  msgstr ""
1431
 
1432
- #: includes/options.php:81
1433
  msgid "Hide content"
1434
  msgstr ""
1435
 
1436
- #: includes/sc_event-list_helptexts.php:8
1437
  msgid "event-id"
1438
  msgstr "event-id"
1439
 
1440
- #: includes/sc_event-list_helptexts.php:9
1441
  #, php-format
1442
  msgid ""
1443
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1445,107 +1449,108 @@ msgid ""
1445
  "this event is shown."
1446
  msgstr ""
1447
 
1448
- #: includes/sc_event-list_helptexts.php:13
1449
- #: includes/sc_event-list_helptexts.php:31
1450
  msgid "year"
1451
  msgstr "rok"
1452
 
1453
- #: includes/sc_event-list_helptexts.php:14
1454
  msgid ""
1455
  "This attribute defines which events are initially shown. The default is to "
1456
  "show the upcoming events only."
1457
  msgstr ""
1458
 
1459
- #: includes/sc_event-list_helptexts.php:15
1460
  #, php-format
1461
  msgid ""
1462
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1463
  "change the displayed event date range via the filterbar or url parameters."
1464
  msgstr ""
1465
 
1466
- #: includes/sc_event-list_helptexts.php:19
1467
  msgid "category slug"
1468
  msgstr "uproszczona nazwa kategorii"
1469
 
1470
- #: includes/sc_event-list_helptexts.php:20
1471
  msgid ""
1472
  "This attribute defines the category of which events are initially shown. The"
1473
  " default is to show events of all categories."
1474
  msgstr ""
1475
 
1476
- #: includes/sc_event-list_helptexts.php:21
1477
  msgid ""
1478
  "Provide a category slug to change this behavior. It is still possible to "
1479
  "change the displayed categories via the filterbar or url parameters."
1480
  msgstr ""
1481
 
1482
- #: includes/sc_event-list_helptexts.php:26
1483
  msgid "This attribute defines the initial order of the events."
1484
  msgstr ""
1485
 
1486
- #: includes/sc_event-list_helptexts.php:27
 
1487
  msgid ""
1488
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1489
  "in the opposite direction (from new to old)."
1490
  msgstr ""
1491
 
1492
- #: includes/sc_event-list_helptexts.php:32
1493
  #, php-format
1494
  msgid ""
1495
  "This attribute defines the dates and date ranges of which events are "
1496
  "displayed. The default is %1$s to show all events."
1497
  msgstr ""
1498
 
1499
- #: includes/sc_event-list_helptexts.php:33
1500
  #, php-format
1501
  msgid ""
1502
  "Filtered events according to %1$s value are not available in the event list."
1503
  msgstr ""
1504
 
1505
- #: includes/sc_event-list_helptexts.php:34
1506
  #, php-format
1507
  msgid ""
1508
  "You can find all available values with a description and examples in the "
1509
  "sections %1$s and %2$s below."
1510
  msgstr ""
1511
 
1512
- #: includes/sc_event-list_helptexts.php:35
1513
  #, php-format
1514
  msgid "See %1$s description if you want to define complex filters."
1515
  msgstr ""
1516
 
1517
- #: includes/sc_event-list_helptexts.php:39
1518
  msgid "category slugs"
1519
  msgstr "uproszczone nazwy kategorii"
1520
 
1521
- #: includes/sc_event-list_helptexts.php:40
1522
  msgid ""
1523
  "This attribute defines the category filter which filters the events to show."
1524
  " The default is $1$s or an empty string to show all events."
1525
  msgstr ""
1526
 
1527
- #: includes/sc_event-list_helptexts.php:41
1528
  #, php-format
1529
  msgid ""
1530
  "Events with categories that doesn´t match %1$s are not shown in the event "
1531
  "list. They are also not available if a manual url parameter is added."
1532
  msgstr ""
1533
 
1534
- #: includes/sc_event-list_helptexts.php:42
1535
  #, php-format
1536
  msgid ""
1537
  "The filter is specified via the given category slugs. See %1$s description "
1538
  "if you want to define complex filters."
1539
  msgstr ""
1540
 
1541
- #: includes/sc_event-list_helptexts.php:46
1542
- #: includes/sc_event-list_helptexts.php:111
1543
- #: includes/sc_event-list_helptexts.php:138
1544
- #: includes/sc_event-list_helptexts.php:177
1545
  msgid "number"
1546
  msgstr "liczba"
1547
 
1548
- #: includes/sc_event-list_helptexts.php:47
1549
  #, php-format
1550
  msgid ""
1551
  "This attribute defines how many events should be displayed if upcoming "
@@ -1553,109 +1558,109 @@ msgid ""
1553
  "displayed."
1554
  msgstr ""
1555
 
1556
- #: includes/sc_event-list_helptexts.php:48
1557
  msgid ""
1558
  "Please not that in the actual version there is no pagination of the events "
1559
  "available, so the event list can be very long."
1560
  msgstr ""
1561
 
1562
- #: includes/sc_event-list_helptexts.php:53
1563
  msgid ""
1564
  "This attribute defines if the filterbar should be displayed. The filterbar "
1565
  "allows the users to specify filters for the listed events."
1566
  msgstr ""
1567
 
1568
- #: includes/sc_event-list_helptexts.php:54
1569
  #, php-format
1570
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1571
  msgstr ""
1572
 
1573
- #: includes/sc_event-list_helptexts.php:55
1574
  #, php-format
1575
  msgid ""
1576
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1577
  " in the single event view."
1578
  msgstr ""
1579
 
1580
- #: includes/sc_event-list_helptexts.php:60
1581
  #, php-format
1582
  msgid ""
1583
  "This attribute specifies the available items in the filterbar. This options "
1584
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1585
  msgstr ""
1586
 
1587
- #: includes/sc_event-list_helptexts.php:61
1588
  msgid ""
1589
  "Find below an overview of the available filterbar items and their options:"
1590
  msgstr ""
1591
 
1592
- #: includes/sc_event-list_helptexts.php:64
1593
  msgid "filterbar item"
1594
  msgstr ""
1595
 
1596
- #: includes/sc_event-list_helptexts.php:64
1597
- #: includes/sc_event-list_helptexts.php:96
1598
  msgid "description"
1599
  msgstr ""
1600
 
1601
- #: includes/sc_event-list_helptexts.php:64
1602
  msgid "item options"
1603
  msgstr ""
1604
 
1605
- #: includes/sc_event-list_helptexts.php:64
1606
  msgid "option values"
1607
  msgstr ""
1608
 
1609
- #: includes/sc_event-list_helptexts.php:64
1610
  msgid "default value"
1611
  msgstr ""
1612
 
1613
- #: includes/sc_event-list_helptexts.php:64
1614
  msgid "option description"
1615
  msgstr ""
1616
 
1617
- #: includes/sc_event-list_helptexts.php:67
1618
  msgid ""
1619
  "Show a list of all available years. Additional there are some special "
1620
  "entries available (see item options)."
1621
  msgstr ""
1622
 
1623
- #: includes/sc_event-list_helptexts.php:71
1624
- #: includes/sc_event-list_helptexts.php:82
1625
  msgid "Add an entry to show all events."
1626
  msgstr ""
1627
 
1628
- #: includes/sc_event-list_helptexts.php:73
1629
- #: includes/sc_event-list_helptexts.php:84
1630
  msgid "Add an entry to show all upcoming events."
1631
  msgstr ""
1632
 
1633
- #: includes/sc_event-list_helptexts.php:74
1634
- #: includes/sc_event-list_helptexts.php:85
1635
  msgid "Add an entry to show events in the past."
1636
  msgstr ""
1637
 
1638
- #: includes/sc_event-list_helptexts.php:75
1639
  msgid "Set descending or ascending order of year entries."
1640
  msgstr ""
1641
 
1642
- #: includes/sc_event-list_helptexts.php:78
1643
  msgid "Show a list of all available months."
1644
  msgstr ""
1645
 
1646
- #: includes/sc_event-list_helptexts.php:86
1647
  msgid "Set descending or ascending order of month entries."
1648
  msgstr ""
1649
 
1650
- #: includes/sc_event-list_helptexts.php:87
1651
  msgid "php date-formats"
1652
  msgstr ""
1653
 
1654
- #: includes/sc_event-list_helptexts.php:87
1655
  msgid "Set the displayed date format of the month entries."
1656
  msgstr ""
1657
 
1658
- #: includes/sc_event-list_helptexts.php:88
1659
  #, php-format
1660
  msgid ""
1661
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1663,65 +1668,65 @@ msgid ""
1663
  "order."
1664
  msgstr ""
1665
 
1666
- #: includes/sc_event-list_helptexts.php:88
1667
  #, php-format
1668
  msgid ""
1669
  "Specifies the displayed values and their order. The items must be seperated "
1670
  "by %1$s."
1671
  msgstr ""
1672
 
1673
- #: includes/sc_event-list_helptexts.php:89
1674
  msgid "Show a list of all available categories."
1675
  msgstr ""
1676
 
1677
- #: includes/sc_event-list_helptexts.php:89
1678
  msgid "Add an entry to show events from all categories."
1679
  msgstr ""
1680
 
1681
- #: includes/sc_event-list_helptexts.php:90
1682
  msgid "A link to reset the eventlist filter to standard."
1683
  msgstr ""
1684
 
1685
- #: includes/sc_event-list_helptexts.php:90
1686
  msgid "any text"
1687
  msgstr ""
1688
 
1689
- #: includes/sc_event-list_helptexts.php:90
1690
  msgid "Set the caption of the link."
1691
  msgstr ""
1692
 
1693
- #: includes/sc_event-list_helptexts.php:93
1694
  msgid "Find below an overview of the available filterbar display options:"
1695
  msgstr ""
1696
 
1697
- #: includes/sc_event-list_helptexts.php:96
1698
  msgid "display option"
1699
  msgstr ""
1700
 
1701
- #: includes/sc_event-list_helptexts.php:96
1702
  msgid "available for"
1703
  msgstr ""
1704
 
1705
- #: includes/sc_event-list_helptexts.php:97
1706
  #, php-format
1707
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1708
  msgstr ""
1709
 
1710
- #: includes/sc_event-list_helptexts.php:98
1711
  msgid ""
1712
  "Shows a select box where an item can be choosen. After the selection of an "
1713
  "item the page is reloaded via javascript to show the filtered events."
1714
  msgstr ""
1715
 
1716
- #: includes/sc_event-list_helptexts.php:99
1717
  msgid "Shows a simple link which can be clicked."
1718
  msgstr ""
1719
 
1720
- #: includes/sc_event-list_helptexts.php:102
1721
  msgid "Find below some declaration examples with descriptions:"
1722
  msgstr ""
1723
 
1724
- #: includes/sc_event-list_helptexts.php:104
1725
  #, php-format
1726
  msgid ""
1727
  "In this example you can see that the filterbar item and the used display "
@@ -1729,22 +1734,22 @@ msgid ""
1729
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1730
  msgstr ""
1731
 
1732
- #: includes/sc_event-list_helptexts.php:106
1733
  #, php-format
1734
  msgid ""
1735
  "In this example you can see that filterbar options can be added in brackets "
1736
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1737
  msgstr ""
1738
 
1739
- #: includes/sc_event-list_helptexts.php:106
1740
  msgid "option_name"
1741
  msgstr ""
1742
 
1743
- #: includes/sc_event-list_helptexts.php:106
1744
  msgid "value"
1745
  msgstr ""
1746
 
1747
- #: includes/sc_event-list_helptexts.php:107
1748
  #, php-format
1749
  msgid ""
1750
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1753,134 +1758,134 @@ msgid ""
1753
  "left-aligned and the reset link will be on the right side."
1754
  msgstr ""
1755
 
1756
- #: includes/sc_event-list_helptexts.php:112
1757
- #: includes/sc_event-list_helptexts.php:139
1758
  msgid ""
1759
  "This attribute specifies if the title should be truncated to the given "
1760
  "number of characters in the event list."
1761
  msgstr ""
1762
 
1763
- #: includes/sc_event-list_helptexts.php:113
1764
- #: includes/sc_event-list_helptexts.php:140
1765
  #, php-format
1766
  msgid ""
1767
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1768
  "is automatically truncated via css."
1769
  msgstr ""
1770
 
1771
- #: includes/sc_event-list_helptexts.php:114
1772
- #: includes/sc_event-list_helptexts.php:141
1773
- #: includes/sc_event-list_helptexts.php:180
1774
  msgid "This attribute has no influence if only a single event is shown."
1775
  msgstr ""
1776
 
1777
- #: includes/sc_event-list_helptexts.php:120
1778
  msgid ""
1779
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1780
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1781
- "\t With \"event_list_only\" the starttime 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:130
1785
  msgid ""
1786
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1787
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1788
- "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
1789
  msgstr ""
1790
 
1791
- #: includes/sc_event-list_helptexts.php:147
1792
  msgid ""
1793
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1794
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1795
- "\t With \"event_list_only\" the categories are 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:157
1799
  msgid ""
1800
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1801
- "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1802
- "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1803
  msgstr ""
1804
 
1805
- #: includes/sc_event-list_helptexts.php:167
1806
  msgid ""
1807
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1808
- "\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1809
- "\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"
1810
- "\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"
1811
- "\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)."
1812
  msgstr ""
1813
 
1814
- #: includes/sc_event-list_helptexts.php:178
1815
  msgid ""
1816
  "This attribute specifies if the content should be truncate to the given "
1817
  "number of characters in the event list."
1818
  msgstr ""
1819
 
1820
- #: includes/sc_event-list_helptexts.php:179
1821
  #, php-format
1822
  msgid "With the standard value %1$s the full text is displayed."
1823
  msgstr ""
1824
 
1825
- #: includes/sc_event-list_helptexts.php:186
1826
  msgid ""
1827
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1828
- "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n"
1829
- "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1830
- "\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."
1831
  msgstr ""
1832
 
1833
- #: includes/sc_event-list_helptexts.php:197
1834
  msgid ""
1835
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1836
- "\t Choose \"false\" to never add and \"true\" to always add the link.<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.<br />\n"
1838
- "\t With \"events_with_content_only\" the link is only added in the event list for events with event content."
1839
  msgstr ""
1840
 
1841
- #: includes/sc_event-list_helptexts.php:208
1842
  msgid ""
1843
  "This attribute specifies if a rss feed link should be added.<br />\n"
1844
- "\t You have to enable the 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 />\n"
1847
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1848
  msgstr ""
1849
 
1850
- #: includes/sc_event-list_helptexts.php:220
1851
  msgid ""
1852
  "This attribute specifies if a ical feed link should be added.<br />\n"
1853
- "\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1854
- "\t On that page you can also find some settings to modify the output.<br />\n"
1855
- "\t Choose \"false\" to never add and \"true\" to always add the link.<br />"
1856
  msgstr ""
1857
 
1858
- #: includes/sc_event-list_helptexts.php:231
1859
  msgid ""
1860
  "This attribute specifies the page or post url for event links.<br />\n"
1861
- "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
1862
- "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1863
  msgstr ""
1864
 
1865
- #: includes/sc_event-list_helptexts.php:243
1866
  msgid ""
1867
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1868
- "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1869
  msgstr ""
1870
 
1871
- #: includes/sc_event-list.php:154
1872
  msgid "Sorry, the requested event is not available!"
1873
  msgstr ""
1874
 
1875
- #: includes/sc_event-list.php:163
1876
  msgid "Event Information:"
1877
  msgstr "Informacje o wydarzeniu:"
1878
 
1879
- #: includes/sc_event-list.php:405
1880
  msgid "Link to RSS feed"
1881
  msgstr ""
1882
 
1883
- #: includes/sc_event-list.php:414
1884
  msgid "Link to iCal feed"
1885
  msgstr ""
1886
 
@@ -1913,133 +1918,133 @@ msgstr "Liczba wyświetlanych wydarzeń"
1913
  msgid "Truncate event title to"
1914
  msgstr "Obetnij tytuł wydarzenia do"
1915
 
1916
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1917
- #: includes/widget_helptexts.php:93
1918
  msgid "characters"
1919
  msgstr "znaków"
1920
 
1921
- #: includes/widget_helptexts.php:38
1922
  msgid ""
1923
  "This option defines the number of displayed characters for the event title."
1924
  msgstr ""
1925
 
1926
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1927
  #, php-format
1928
  msgid ""
1929
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1930
  "automatically truncate the text via css."
1931
  msgstr ""
1932
 
1933
- #: includes/widget_helptexts.php:46
1934
  msgid "Show event starttime"
1935
  msgstr "Wyświetl czas rozpoczęcia wydarzenia"
1936
 
1937
- #: includes/widget_helptexts.php:48
1938
  msgid "This option defines if the event start time will be displayed."
1939
  msgstr ""
1940
 
1941
- #: includes/widget_helptexts.php:55
1942
  msgid "Show event location"
1943
  msgstr "Wyświetlaj miejsce wydarzenia"
1944
 
1945
- #: includes/widget_helptexts.php:57
1946
  msgid "This option defines if the event location will be displayed."
1947
  msgstr ""
1948
 
1949
- #: includes/widget_helptexts.php:64
1950
  msgid "Truncate location to"
1951
  msgstr "Obetnij miejsce do"
1952
 
1953
- #: includes/widget_helptexts.php:66
1954
  msgid ""
1955
  "If the event location is diplayed this option defines the number of "
1956
  "displayed characters."
1957
  msgstr ""
1958
 
1959
- #: includes/widget_helptexts.php:74
1960
  msgid "Show event excerpt"
1961
  msgstr ""
1962
 
1963
- #: includes/widget_helptexts.php:76
1964
  msgid "This option defines if the event excerpt will be displayed."
1965
  msgstr ""
1966
 
1967
- #: includes/widget_helptexts.php:83
1968
  msgid "Show event content"
1969
  msgstr ""
1970
 
1971
- #: includes/widget_helptexts.php:85
1972
  msgid "This option defines if the event content will be displayed."
1973
  msgstr ""
1974
 
1975
- #: includes/widget_helptexts.php:92
1976
  msgid "Truncate content to"
1977
  msgstr ""
1978
 
1979
- #: includes/widget_helptexts.php:94
1980
  msgid ""
1981
  "If the event content are diplayed this option defines the number of diplayed"
1982
  " characters."
1983
  msgstr ""
1984
 
1985
- #: includes/widget_helptexts.php:95
1986
  #, php-format
1987
  msgid "Set this value to %1$s to view the full text."
1988
  msgstr ""
1989
 
1990
- #: includes/widget_helptexts.php:102
1991
  msgid "URL to the linked Event List page"
1992
  msgstr "Łącze do strony Lista wydarzeń"
1993
 
1994
- #: includes/widget_helptexts.php:104
1995
  msgid ""
1996
  "This option defines the url to the linked Event List page. This option is "
1997
  "required if you want to use one of the options below."
1998
  msgstr "Ta opcja definiuje adres url do strony Listy wydarzeń. Ta opcja jest wymagana, jeśli chcesz użyć jednej z poniższych opcji."
1999
 
2000
- #: includes/widget_helptexts.php:111
2001
  msgid "Shortcode ID on linked page"
2002
  msgstr ""
2003
 
2004
- #: includes/widget_helptexts.php:113
2005
  msgid ""
2006
  "This option defines the shortcode-id for the Event List on the linked page. "
2007
  "Normally the standard value 1 is correct, you only have to change it if you "
2008
  "use multiple event-list shortcodes on the linked page."
2009
  msgstr ""
2010
 
2011
- #: includes/widget_helptexts.php:122
2012
  msgid ""
2013
  "With this option you can add a link to the single event page for every "
2014
  "displayed event. You have to specify the url to the page and the shortcode "
2015
  "id option if you want to use it."
2016
  msgstr ""
2017
 
2018
- #: includes/widget_helptexts.php:131
2019
  msgid ""
2020
  "With this option you can add a link to the event-list page below the "
2021
  "diplayed events. You have to specify the url to page option if you want to "
2022
  "use it."
2023
  msgstr ""
2024
 
2025
- #: includes/widget_helptexts.php:138
2026
  msgid "Caption for the link"
2027
  msgstr ""
2028
 
2029
- #: includes/widget_helptexts.php:140
2030
  msgid ""
2031
  "This option defines the text for the link to the Event List page if the "
2032
  "approriate option is selected."
2033
  msgstr ""
2034
 
2035
- #: includes/widget.php:21
2036
  msgid "With this widget a list of upcoming events can be displayed."
2037
  msgstr ""
2038
 
2039
- #: includes/widget.php:26
2040
  msgid "Upcoming events"
2041
  msgstr "Nadchodzące wydarzenia"
2042
 
2043
- #: includes/widget.php:40
2044
  msgid "show events page"
2045
  msgstr ""
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
8
  msgstr ""
9
  "Project-Id-Version: wp-event-list\n"
10
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
11
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
12
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
13
  "Last-Translator: mibuthu\n"
14
  "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
15
  "MIME-Version: 1.0\n"
18
  "Language: pl_PL\n"
19
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
20
 
21
+ #: admin/admin.php:90
22
  #, php-format
23
  msgid "Errors during upgrade of plugin %1$s"
24
  msgstr ""
25
 
26
+ #: admin/admin.php:90
27
  #, php-format
28
  msgid "Upgrade of plugin %1$s successful"
29
  msgstr ""
30
 
31
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
32
  msgid "Event List Settings"
33
  msgstr "Ustawienia Listy Wydarzeń"
34
 
35
+ #: admin/admin.php:142
36
  msgid "Settings"
37
  msgstr "Ustawienia"
38
 
39
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
40
  msgid "About Event List"
41
  msgstr "O Liście Wydarzeń"
42
 
43
+ #: admin/admin.php:146
44
  msgid "About"
45
  msgstr "O"
46
 
47
+ #: admin/admin.php:170
48
  #, php-format
49
  msgid "%s Event"
50
  msgid_plural "%s Events"
53
  msgstr[2] ""
54
  msgstr[3] ""
55
 
56
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
57
  msgid "General"
58
  msgstr "Ogólne"
59
 
60
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
61
+ #: admin/includes/admin-about.php:137
62
  msgid "Shortcode Attributes"
63
  msgstr "Atrybuty Skrótów"
64
 
65
+ #: admin/includes/admin-about.php:102
66
  msgid "Help and Instructions"
67
  msgstr "Pomoc i instrukcje"
68
 
69
+ #: admin/includes/admin-about.php:103
70
  #, php-format
71
  msgid "You can manage the events %1$shere%2$s"
72
  msgstr "%1$sTutaj%2$s możesz zarządzać wydarzeniami"
73
 
74
+ #: admin/includes/admin-about.php:104
75
  msgid "To show the events on your site you have 2 possibilities"
76
  msgstr "Istnieją 2 sposoby na wyświetlanie wydarzeń na Twojej stronie"
77
 
78
+ #: admin/includes/admin-about.php:105
79
  #, php-format
80
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
81
  msgstr "możesz umieścić następujący <strong>kod skrótowy</strong> %1$s na stronie lub w poście"
82
 
83
+ #: admin/includes/admin-about.php:106
84
  #, php-format
85
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
86
  msgstr "możesz dodać widżet <strong>widget</strong> %1$s na panel boczny"
87
 
88
+ #: admin/includes/admin-about.php:107
89
  msgid ""
90
  "The displayed events and their style can be modified with the available "
91
  "widget settings and the available attributes for the shortcode."
92
  msgstr "Wyświetlane wydarzenia i ich styl mogą być modyfikowane przy pomocy dostępnych ustawień widgetu lub dostępnych atrybutów we wstawionym kodzie skrótowym."
93
 
94
+ #: admin/includes/admin-about.php:108
95
  #, php-format
96
  msgid ""
97
  "A list of all available shortcode attributes with their descriptions is "
98
  "available in the %1$s tab."
99
  msgstr "Lista dostępnych atrybutów jest dostępna w zakładce %1$s."
100
 
101
+ #: admin/includes/admin-about.php:109
102
  msgid "The available widget options are described in their tooltip text."
103
  msgstr "Dostępne opcje widgetu zostały opisane w dymkach etykiet."
104
 
105
+ #: admin/includes/admin-about.php:110
106
  #, php-format
107
  msgid ""
108
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
109
  " to insert an URL to the linked event-list page."
110
  msgstr ""
111
 
112
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
113
  msgid "Add links to the single events"
114
  msgstr "Dodaj łącza do pojedynczych wydarzeń"
115
 
116
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
117
  msgid "Add a link to the Event List page"
118
  msgstr "Dodaj łącze do strony Listy wydarzeń"
119
 
120
+ #: admin/includes/admin-about.php:111
121
  msgid ""
122
  "This is required because the widget does not know in which page or post the "
123
  "shortcode was included."
124
  msgstr ""
125
 
126
+ #: admin/includes/admin-about.php:112
127
  msgid ""
128
  "Additionally you have to insert the correct Shortcode id on the linked page."
129
  " This id describes which shortcode should be used on the given page or post "
130
  "if you have more than one."
131
  msgstr ""
132
 
133
+ #: admin/includes/admin-about.php:113
134
  #, php-format
135
  msgid ""
136
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
138
  "link on your linked page or post."
139
  msgstr ""
140
 
141
+ #: admin/includes/admin-about.php:114
142
  #, php-format
143
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
144
  msgstr "Id jest dostępne na końcu parametrów URL (np. %1$s)."
145
 
146
+ #: admin/includes/admin-about.php:116
147
  #, php-format
148
  msgid ""
149
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
150
  "want."
151
  msgstr ""
152
 
153
+ #: admin/includes/admin-about.php:116
154
  msgid "Settings page"
155
  msgstr "Ustawienia Listy Wydarzeń"
156
 
157
+ #: admin/includes/admin-about.php:123
158
  msgid "About the plugin author"
159
  msgstr "O autorze wtyczki"
160
 
161
+ #: admin/includes/admin-about.php:125
162
  #, php-format
163
  msgid ""
164
  "This plugin is developed by %1$s, you can find more information about the "
165
  "plugin on the %2$s."
166
  msgstr "Ta wtyczka jest rozwijana przez %1$s, więcej informacji na temat wtyczki można znaleźć na %2$s."
167
 
168
+ #: admin/includes/admin-about.php:125
169
  msgid "WordPress plugin site"
170
  msgstr ""
171
 
172
+ #: admin/includes/admin-about.php:126
173
  #, php-format
174
  msgid "If you like the plugin please rate it on the %1$s."
175
  msgstr "Jeśli podoba Ci się wtyczka możesz ocenić ją na %1$s."
176
 
177
+ #: admin/includes/admin-about.php:126
178
  msgid "WordPress plugin review site"
179
  msgstr ""
180
 
181
+ #: admin/includes/admin-about.php:127
182
  msgid ""
183
  "If you want to support the plugin I would be happy to get a small donation"
184
  msgstr "Jeśli chcesz wspomóc rozwój wtyczki byłbym wdzięczny za małą dotację"
185
 
186
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
187
+ #: admin/includes/admin-about.php:130
188
  #, php-format
189
  msgid "Donate with %1$s"
190
  msgstr ""
191
 
192
+ #: admin/includes/admin-about.php:139
193
  msgid ""
194
  "You have the possibility to modify the output if you add some of the "
195
  "following attributes to the shortcode."
196
  msgstr "Jest możliwość modyfikacji wyglądu za pomocą następujących atrybutów."
197
 
198
+ #: admin/includes/admin-about.php:140
199
  #, php-format
200
  msgid ""
201
  "You can combine and add as much attributes as you want. E.g. the shortcode "
202
  "including the attributes %1$s and %2$s would looks like this:"
203
  msgstr ""
204
 
205
+ #: admin/includes/admin-about.php:142
206
  msgid ""
207
  "Below you can find a list of all supported attributes with their "
208
  "descriptions and available options:"
209
  msgstr "Poniżej znajduje się lista wszystkich wspieranych atrybutów wraz z opisami i dostępnymi wartościami:"
210
 
211
+ #: admin/includes/admin-about.php:157
212
  msgid "Attribute name"
213
  msgstr "Nazwa atrybutu"
214
 
215
+ #: admin/includes/admin-about.php:158
216
  msgid "Value options"
217
  msgstr "Opcje wartości"
218
 
219
+ #: admin/includes/admin-about.php:159
220
  msgid "Default value"
221
  msgstr "Domyślna wartość"
222
 
223
+ #: admin/includes/admin-about.php:160
224
  msgid "Description"
225
  msgstr "Opis"
226
 
227
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
228
+ #: includes/sc_event-list_helptexts.php:91
229
  msgid "Filter Syntax"
230
  msgstr "Składnia filtru"
231
 
232
+ #: admin/includes/admin-about.php:180
233
  msgid ""
234
  "For date and cat filters you can specify complex filters with the following "
235
  "syntax:"
236
  msgstr "Zaawansowane filtry daty i kategorii mogą być ustawiane przy pomocy następującej składni:"
237
 
238
+ #: admin/includes/admin-about.php:181
239
  #, php-format
240
  msgid ""
241
  "You can use %1$s and %2$s connections to define complex filters. "
242
  "Additionally you can set brackets %3$s for nested queries."
243
  msgstr ""
244
 
245
+ #: admin/includes/admin-about.php:181
246
  msgid "AND"
247
  msgstr "I"
248
 
249
+ #: admin/includes/admin-about.php:181
250
  msgid "OR"
251
  msgstr "LUB"
252
 
253
+ #: admin/includes/admin-about.php:181
254
  msgid "or"
255
  msgstr "i"
256
 
257
+ #: admin/includes/admin-about.php:181
258
  msgid "and"
259
  msgstr "lub"
260
 
261
+ #: admin/includes/admin-about.php:182
262
  msgid "Examples for cat filters:"
263
  msgstr "Przykłady filtrów kategorii:"
264
 
265
+ #: admin/includes/admin-about.php:183
266
  #, php-format
267
  msgid "Show all events with category %1$s."
268
  msgstr "Wyświetla wszystkie wydarzenia z kategorii %1$s."
269
 
270
+ #: admin/includes/admin-about.php:184
271
  #, php-format
272
  msgid "Show all events with category %1$s or %2$s."
273
  msgstr "Wyświetla wszystkie wydarzenia z kategorii %1$s i %2$s."
274
 
275
+ #: admin/includes/admin-about.php:185
276
  #, php-format
277
  msgid ""
278
  "Show all events with category %1$s and all events where category %2$s as "
279
  "well as %3$s is selected."
280
  msgstr ""
281
 
282
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
283
  msgid "Available Date Formats"
284
  msgstr "Dostępne formaty dat"
285
 
286
+ #: admin/includes/admin-about.php:192
287
  msgid "For date filters you can use the following date formats:"
288
  msgstr ""
289
 
290
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
291
  msgid "Available Date Range Formats"
292
  msgstr "Dostępne formaty zakresu dat"
293
 
294
+ #: admin/includes/admin-about.php:202
295
  msgid "For date filters you can use the following daterange formats:"
296
  msgstr ""
297
 
298
+ #: admin/includes/admin-about.php:215
299
  msgid "Value"
300
  msgstr "Wartość"
301
 
302
+ #: admin/includes/admin-about.php:219
303
  msgid "Example"
304
  msgstr "Przykład"
305
 
306
+ #: admin/includes/admin-categories.php:79
307
  msgid "Synchronize with post categories"
308
  msgstr ""
309
 
310
+ #: admin/includes/admin-categories.php:90
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
  msgstr ""
314
 
315
+ #: admin/includes/admin-categories.php:91
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
  msgstr ""
319
 
320
+ #: admin/includes/admin-categories.php:92
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
  msgstr ""
324
 
325
+ #: admin/includes/admin-categories.php:95
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
  msgstr ""
329
 
330
+ #: admin/includes/admin-categories.php:96
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
  msgstr ""
334
 
335
+ #: admin/includes/admin-categories.php:97
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
  msgstr ""
339
 
340
+ #: admin/includes/admin-categories.php:100
341
  msgid "An Error occured during the category sync"
342
  msgstr ""
343
 
344
+ #: admin/includes/admin-categories.php:103
345
  msgid "Category sync finished"
346
  msgstr ""
347
 
348
+ #: admin/includes/admin-category-sync.php:77
349
  msgid "Error: You are not allowed to view this page!"
350
  msgstr ""
351
 
352
+ #: admin/includes/admin-category-sync.php:93
353
  msgid "Affected Categories when switching to seperate Event Categories"
354
  msgstr ""
355
 
356
+ #: admin/includes/admin-category-sync.php:94
357
  msgid "Switch option to seperate Event Categories"
358
  msgstr ""
359
 
360
+ #: admin/includes/admin-category-sync.php:95
361
  msgid ""
362
  "If you proceed, all post categories will be copied and all events will be "
363
  "re-assigned to this new categories."
364
  msgstr ""
365
 
366
+ #: admin/includes/admin-category-sync.php:96
367
  msgid ""
368
  "Afterwards the event categories are independent of the post categories."
369
  msgstr ""
370
 
371
+ #: admin/includes/admin-category-sync.php:98
372
  msgid "Affected Categories when switching to use Post Categories for events"
373
  msgstr ""
374
 
375
+ #: admin/includes/admin-category-sync.php:99
376
  msgid "Switch option to use Post Categories for events"
377
  msgstr ""
378
 
379
+ #: admin/includes/admin-category-sync.php:100
380
  msgid ""
381
  "Take a detailed look at the affected categories above before you proceed! "
382
  "All seperate event categories will be deleted, this cannot be undone!"
383
  msgstr ""
384
 
385
+ #: admin/includes/admin-category-sync.php:103
386
  msgid "Event Categories: Synchronise with Post Categories"
387
  msgstr ""
388
 
389
+ #: admin/includes/admin-category-sync.php:104
390
  msgid "Start synchronisation"
391
  msgstr ""
392
 
393
+ #: admin/includes/admin-category-sync.php:105
394
  msgid ""
395
  "If this option is enabled the above listed categories will be deleted and "
396
  "removed from the existing events!"
397
  msgstr ""
398
 
399
+ #: admin/includes/admin-category-sync.php:120
400
  msgid "Categories to modify"
401
  msgstr ""
402
 
403
+ #: admin/includes/admin-category-sync.php:121
404
  msgid "Categories to add"
405
  msgstr ""
406
 
407
+ #: admin/includes/admin-category-sync.php:122
408
  msgid "Categories to delete (optional)"
409
  msgstr ""
410
 
411
+ #: admin/includes/admin-category-sync.php:123
412
  msgid "Delete not available post categories"
413
  msgstr ""
414
 
415
+ #: admin/includes/admin-category-sync.php:126
416
  msgid "Categories with differences"
417
  msgstr ""
418
 
419
+ #: admin/includes/admin-category-sync.php:127
420
  msgid "Categories to add (optional)"
421
  msgstr ""
422
 
423
+ #: admin/includes/admin-category-sync.php:128
424
  msgid "Add not available post categories"
425
  msgstr ""
426
 
427
+ #: admin/includes/admin-category-sync.php:147
428
  msgid "none"
429
  msgstr ""
430
 
431
+ #: admin/includes/admin-import.php:91
432
  msgid "Import Events"
433
  msgstr "Importuj wydarzenia"
434
 
435
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
436
+ #: admin/includes/admin-import.php:254
437
  msgid "Step"
438
  msgstr "Krok"
439
 
440
+ #: admin/includes/admin-import.php:110
441
  msgid "Set import file and options"
442
  msgstr ""
443
 
444
+ #: admin/includes/admin-import.php:113
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
  msgstr ""
448
 
449
+ #: admin/includes/admin-import.php:116
450
  msgid "Example file"
451
  msgstr "Przykładowy plik"
452
 
453
+ #: admin/includes/admin-import.php:117
454
  #, php-format
455
  msgid ""
456
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
457
  msgstr ""
458
 
459
+ #: admin/includes/admin-import.php:118
460
  msgid "Note"
461
  msgstr "Uwaga"
462
 
463
+ #: admin/includes/admin-import.php:118
464
  msgid ""
465
  "Do not change the column header and separator line (first two lines), "
466
  "otherwise the import will fail!"
467
  msgstr ""
468
 
469
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
470
  msgid "Sorry, there has been an error."
471
  msgstr ""
472
 
473
+ #: admin/includes/admin-import.php:129
474
  msgid "The file does not exist, please try again."
475
  msgstr "Plik nie został znaleziony, proszę spróbować ponownie."
476
 
477
+ #: admin/includes/admin-import.php:138
478
  msgid "The uploaded file does not have the required csv extension."
479
  msgstr ""
480
 
481
+ #: admin/includes/admin-import.php:150
482
  msgid "Events review and additonal category selection"
483
  msgstr ""
484
 
485
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
486
  msgid "Error"
487
  msgstr ""
488
 
489
+ #: admin/includes/admin-import.php:156
490
  msgid "This CSV file cannot be imported"
491
  msgstr ""
492
 
493
+ #: admin/includes/admin-import.php:167
494
  msgid "None of the events in this CSV file can be imported"
495
  msgstr ""
496
 
497
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
498
  msgid "Warning"
499
  msgstr ""
500
 
501
+ #: admin/includes/admin-import.php:172
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
507
  msgstr[2] ""
508
  msgstr[3] ""
509
 
510
+ #: admin/includes/admin-import.php:184
511
  #, php-format
512
  msgid "CSV line %1$s"
513
  msgstr ""
514
 
515
+ #: admin/includes/admin-import.php:194
516
  msgid "You can still import all other events listed below."
517
  msgstr ""
518
 
519
+ #: admin/includes/admin-import.php:213
520
  msgid ""
521
  "The following category slugs are not available and will be removed from the "
522
  "imported events"
523
  msgstr ""
524
 
525
+ #: admin/includes/admin-import.php:219
526
  msgid ""
527
  "If you want to keep these categories, please create these Categories first "
528
  "and do the import afterwards."
529
  msgstr ""
530
 
531
+ #: admin/includes/admin-import.php:254
532
  msgid "Import result"
533
  msgstr ""
534
 
535
+ #: admin/includes/admin-import.php:257
536
  #, php-format
537
  msgid "Import of %1$s events successful!"
538
  msgstr ""
539
 
540
+ #: admin/includes/admin-import.php:258
541
  msgid "Go back to All Events"
542
  msgstr "Wróć do Wszystkie wydarzenia"
543
 
544
+ #: admin/includes/admin-import.php:261
545
  msgid "Errors during Import"
546
  msgstr ""
547
 
548
+ #: admin/includes/admin-import.php:269
549
  msgid "Event from CSV-line"
550
  msgstr ""
551
 
552
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
553
  #: includes/widget_helptexts.php:9
554
  msgid "Title"
555
  msgstr "Tytuł"
556
 
557
+ #: admin/includes/admin-import.php:282
558
  msgid "Start Date"
559
  msgstr "Termin rozpoczęcia"
560
 
561
+ #: admin/includes/admin-import.php:283
562
  msgid "End Date"
563
  msgstr "Termin zakończenia"
564
 
565
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
566
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
567
  msgid "Time"
568
  msgstr "Godzina"
569
 
570
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
571
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
572
  #: includes/options_helptexts.php:76
573
  msgid "Location"
574
  msgstr "Miejsce"
575
 
576
+ #: admin/includes/admin-import.php:286
577
  msgid "Content"
578
  msgstr ""
579
 
580
+ #: admin/includes/admin-import.php:287
581
  msgid "Category slugs"
582
  msgstr "Upr. nazwy kategorii"
583
 
584
+ #: admin/includes/admin-import.php:333
585
  msgid "Header line is missing or not correct!"
586
  msgstr ""
587
 
588
+ #: admin/includes/admin-import.php:334
589
  #, php-format
590
  msgid ""
591
  "Have a look at the %1$sexample file%2$s to see the correct header line "
592
  "format."
593
  msgstr ""
594
 
595
+ #: admin/includes/admin-import.php:341
596
  #, php-format
597
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
598
  msgstr ""
599
 
600
+ #: admin/includes/admin-import.php:371
601
  msgid "Empty event title found"
602
  msgstr ""
603
 
604
+ #: admin/includes/admin-import.php:377
605
  msgid "Wrong date format for startdate"
606
  msgstr ""
607
 
608
+ #: admin/includes/admin-import.php:385
609
  msgid "Wrong date format for enddate"
610
  msgstr ""
611
 
612
+ #: admin/includes/admin-import.php:439
613
  msgid "Import events"
614
  msgstr "Importuj wydarzenia"
615
 
616
+ #: admin/includes/admin-import.php:440
617
  msgid "Add additional categories"
618
  msgstr "Dodaj dodatkowe kategorie"
619
 
620
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
621
  msgid "No events found"
622
  msgstr ""
623
 
624
+ #: admin/includes/admin-import.php:518
625
  msgid "Saving of event failed!"
626
  msgstr ""
627
 
628
+ #: admin/includes/admin-main.php:108
629
  msgid "Event Date"
630
  msgstr ""
631
 
632
+ #: admin/includes/admin-main.php:113
633
  msgid "Author"
634
  msgstr "Autor"
635
 
636
+ #: admin/includes/admin-main.php:182
637
  #, php-format
638
  msgid "Add a copy of %1$s"
639
  msgstr ""
640
 
641
+ #: admin/includes/admin-main.php:182
642
  msgid "Copy"
643
  msgstr ""
644
 
645
+ #: admin/includes/admin-main.php:268
646
+ msgid "Import"
647
+ msgstr "Import"
648
+
649
+ #: admin/includes/admin-new.php:83
650
  msgid "Event data"
651
  msgstr ""
652
 
653
+ #: admin/includes/admin-new.php:116
654
  msgid "Add Copy"
655
  msgstr ""
656
 
657
+ #: admin/includes/admin-new.php:124
658
  msgid "Date"
659
  msgstr "Termin"
660
 
661
+ #: admin/includes/admin-new.php:124
662
  msgid "required"
663
  msgstr "wymagane"
664
 
665
+ #: admin/includes/admin-new.php:127
666
  msgid "Multi-Day Event"
667
  msgstr "Wydarzenie kilkudniowe"
668
 
669
+ #: admin/includes/admin-new.php:147
670
  msgid "Event Title"
671
  msgstr ""
672
 
673
+ #: admin/includes/admin-new.php:164
674
  msgid "Event Content"
675
  msgstr ""
676
 
677
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
678
  msgid "Event updated."
679
  msgstr ""
680
 
681
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
682
  msgid "View event"
683
  msgstr ""
684
 
685
+ #: admin/includes/admin-new.php:246
686
  #, php-format
687
  msgid "Event restored to revision from %1$s"
688
  msgstr ""
689
 
690
+ #: admin/includes/admin-new.php:247
691
  msgid "Event published."
692
  msgstr ""
693
 
694
+ #: admin/includes/admin-new.php:248
695
+ msgid "Event saved."
696
+ msgstr ""
697
+
698
+ #: admin/includes/admin-new.php:249
699
  msgid "Event submitted."
700
  msgstr ""
701
 
702
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
703
+ #: admin/includes/admin-new.php:253
704
  msgid "Preview event"
705
  msgstr ""
706
 
707
+ #: admin/includes/admin-new.php:251
708
  #, php-format
709
  msgid "Event scheduled for: %1$s>"
710
  msgstr ""
711
 
712
+ #: admin/includes/admin-new.php:253
713
  msgid "Event draft updated."
714
  msgstr ""
715
 
716
+ #: admin/includes/admin-settings.php:97
717
  msgid "Go to Event Category switching page"
718
  msgstr ""
719
 
720
+ #: admin/includes/admin-settings.php:111
721
  msgid "Frontend Settings"
722
  msgstr "Strona frontowa"
723
 
724
+ #: admin/includes/admin-settings.php:112
725
  msgid "Admin Page Settings"
726
  msgstr "Panel administratora"
727
 
728
+ #: admin/includes/admin-settings.php:113
729
  msgid "Feed Settings"
730
  msgstr "Ustawienia kanału"
731
 
732
+ #: admin/includes/admin-settings.php:114
733
  msgid "Category Taxonomy"
734
  msgstr ""
735
 
737
  msgid "Year"
738
  msgstr "Rok"
739
 
740
+ #: includes/daterange_helptexts.php:10
741
  msgid "A year can be specified in 4 digit format."
742
  msgstr "Rok może być określony formatem czterocyfrowym."
743
 
744
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
745
+ #: includes/daterange_helptexts.php:95
746
  #, php-format
747
  msgid ""
748
  "For a start date filter the first day of %1$s is used, in an end date the "
749
  "last day."
750
  msgstr ""
751
 
752
+ #: includes/daterange_helptexts.php:13
753
  msgid "the resulting year"
754
  msgstr ""
755
 
756
+ #: includes/daterange_helptexts.php:19
757
  msgid "Month"
758
  msgstr "Miesiąc"
759
 
760
+ #: includes/daterange_helptexts.php:21
761
  msgid ""
762
  "A month can be specified with 4 digits for the year and 2 digits for the "
763
  "month, seperated by a hyphen (-)."
764
  msgstr ""
765
 
766
+ #: includes/daterange_helptexts.php:24
767
  msgid "the resulting month"
768
  msgstr ""
769
 
770
+ #: includes/daterange_helptexts.php:30
771
  msgid "Day"
772
  msgstr "Dzień"
773
 
774
+ #: includes/daterange_helptexts.php:31
775
  msgid ""
776
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
777
  " month and 2 digets for the day, seperated by hyphens (-)."
778
  msgstr ""
779
 
780
+ #: includes/daterange_helptexts.php:36
781
  msgid "Relative Year"
782
  msgstr ""
783
 
784
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
785
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
786
  #, php-format
787
  msgid "%1$s from now can be specified in the following notation: %2$s"
788
  msgstr ""
789
 
790
+ #: includes/daterange_helptexts.php:40
791
  msgid "A relative year"
792
  msgstr ""
793
 
794
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
795
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
796
  #, php-format
797
  msgid ""
798
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
799
  "%3$s or %4$s attached (see also the example below)."
800
  msgstr ""
801
 
802
+ #: includes/daterange_helptexts.php:46
803
  msgid "number of years"
804
  msgstr "liczba lat"
805
 
806
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
807
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
808
  #, php-format
809
  msgid "Additionally the following values are available: %1$s"
810
  msgstr ""
811
 
812
+ #: includes/daterange_helptexts.php:58
813
  msgid "Relative Month"
814
  msgstr ""
815
 
816
+ #: includes/daterange_helptexts.php:62
817
  msgid "A relative month"
818
  msgstr ""
819
 
820
+ #: includes/daterange_helptexts.php:68
821
  msgid "number of months"
822
  msgstr "liczba miesięcy"
823
 
824
+ #: includes/daterange_helptexts.php:80
825
  msgid "Relative Week"
826
  msgstr ""
827
 
828
+ #: includes/daterange_helptexts.php:84
829
  msgid "A relative week"
830
  msgstr ""
831
 
832
+ #: includes/daterange_helptexts.php:90
833
  msgid "number of weeks"
834
  msgstr "liczba tygodni"
835
 
836
+ #: includes/daterange_helptexts.php:96
837
  msgid "the resulting week"
838
  msgstr ""
839
 
840
+ #: includes/daterange_helptexts.php:99
841
  #, php-format
842
  msgid ""
843
  "The first day of the week is depending on the option %1$s which can be found"
844
  " and changed in %2$s."
845
  msgstr ""
846
 
847
+ #: includes/daterange_helptexts.php:110
848
  msgid "Relative Day"
849
  msgstr ""
850
 
851
+ #: includes/daterange_helptexts.php:114
852
  msgid "A relative day"
853
  msgstr ""
854
 
855
+ #: includes/daterange_helptexts.php:120
856
  msgid "number of days"
857
  msgstr "liczba dni"
858
 
859
+ #: includes/daterange_helptexts.php:134
860
  msgid "Date range"
861
  msgstr "Zakres dat"
862
 
863
+ #: includes/daterange_helptexts.php:136
864
  msgid ""
865
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
866
+ "\t\t\tFor the start and end date any available date format can be used."
867
  msgstr ""
868
 
869
+ #: includes/daterange_helptexts.php:147
870
  msgid "This value defines a range without any limits."
871
  msgstr ""
872
 
873
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
874
+ #: includes/daterange_helptexts.php:171
875
  #, php-format
876
  msgid "The corresponding date_range format is: %1$s"
877
  msgstr ""
878
 
879
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
880
  msgid "Upcoming"
881
  msgstr "Nadchodzące"
882
 
883
+ #: includes/daterange_helptexts.php:158
884
  msgid "This value defines a range from the actual day to the future."
885
  msgstr ""
886
 
887
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
888
  msgid "Past"
889
  msgstr "Przeszłe"
890
 
891
+ #: includes/daterange_helptexts.php:169
892
  msgid "This value defines a range from the past to the previous day."
893
  msgstr ""
894
 
895
+ #: includes/event.php:157
896
  msgid "No valid start date provided"
897
  msgstr ""
898
 
899
+ #: includes/event.php:343 includes/event.php:345
900
+ #: includes/sc_event-list.php:330
901
  msgid "read more"
902
  msgstr ""
903
 
904
+ #: includes/events_post_type.php:83
905
  msgid "Events"
906
  msgstr "Wydarzenia"
907
 
908
+ #: includes/events_post_type.php:84
909
  msgid "Event"
910
  msgstr ""
911
 
912
+ #: includes/events_post_type.php:85
913
  msgid "Add New"
914
  msgstr "Dodaj nowe"
915
 
916
+ #: includes/events_post_type.php:86
917
  msgid "Add New Event"
918
  msgstr "Dodaj wydarzenie"
919
 
920
+ #: includes/events_post_type.php:87
921
  msgid "Edit Event"
922
  msgstr "Edytuj wydarzenie"
923
 
924
+ #: includes/events_post_type.php:88
925
  msgid "New Event"
926
  msgstr ""
927
 
928
+ #: includes/events_post_type.php:89
929
  msgid "View Event"
930
  msgstr ""
931
 
932
+ #: includes/events_post_type.php:90
933
  msgid "View Events"
934
  msgstr ""
935
 
936
+ #: includes/events_post_type.php:91
937
  msgid "Search Events"
938
  msgstr ""
939
 
940
+ #: includes/events_post_type.php:93
941
  msgid "No events found in Trash"
942
  msgstr ""
943
 
944
+ #: includes/events_post_type.php:95
945
  msgid "All Events"
946
  msgstr "Wszystkie wydarzenia"
947
 
948
+ #: includes/events_post_type.php:96
949
  msgid "Event Archives"
950
  msgstr ""
951
 
952
+ #: includes/events_post_type.php:97
953
  msgid "Event Attributes"
954
  msgstr ""
955
 
956
+ #: includes/events_post_type.php:98
957
  msgid "Insert into event"
958
  msgstr ""
959
 
960
+ #: includes/events_post_type.php:99
961
  msgid "Uploaded to this event"
962
  msgstr ""
963
 
964
+ #: includes/events_post_type.php:100
965
  msgid "Event List"
966
  msgstr "Lista wydarzeń"
967
 
968
+ #: includes/events_post_type.php:101
969
  msgid "Filter events list"
970
  msgstr ""
971
 
972
+ #: includes/events_post_type.php:102
973
  msgid "Events list navigation"
974
  msgstr ""
975
 
976
+ #: includes/events_post_type.php:103
977
  msgid "Events list"
978
  msgstr ""
979
 
980
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
981
  msgid "Reset"
982
  msgstr ""
983
 
984
+ #: includes/filterbar.php:329
985
  msgid "All"
986
  msgstr "Wszystkie"
987
 
988
+ #: includes/filterbar.php:332
989
  msgid "All Dates"
990
  msgstr ""
991
 
1425
  " switching page from here."
1426
  msgstr ""
1427
 
1428
+ #: includes/options.php:92
1429
  msgid "events"
1430
  msgstr ""
1431
 
1432
+ #: includes/options.php:96
1433
  msgid "Show content"
1434
  msgstr ""
1435
 
1436
+ #: includes/options.php:100
1437
  msgid "Hide content"
1438
  msgstr ""
1439
 
1440
+ #: includes/sc_event-list_helptexts.php:20
1441
  msgid "event-id"
1442
  msgstr "event-id"
1443
 
1444
+ #: includes/sc_event-list_helptexts.php:23
1445
  #, php-format
1446
  msgid ""
1447
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1449
  "this event is shown."
1450
  msgstr ""
1451
 
1452
+ #: includes/sc_event-list_helptexts.php:29
1453
+ #: includes/sc_event-list_helptexts.php:57
1454
  msgid "year"
1455
  msgstr "rok"
1456
 
1457
+ #: includes/sc_event-list_helptexts.php:31
1458
  msgid ""
1459
  "This attribute defines which events are initially shown. The default is to "
1460
  "show the upcoming events only."
1461
  msgstr ""
1462
 
1463
+ #: includes/sc_event-list_helptexts.php:33
1464
  #, php-format
1465
  msgid ""
1466
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1467
  "change the displayed event date range via the filterbar or url parameters."
1468
  msgstr ""
1469
 
1470
+ #: includes/sc_event-list_helptexts.php:39
1471
  msgid "category slug"
1472
  msgstr "uproszczona nazwa kategorii"
1473
 
1474
+ #: includes/sc_event-list_helptexts.php:41
1475
  msgid ""
1476
  "This attribute defines the category of which events are initially shown. The"
1477
  " default is to show events of all categories."
1478
  msgstr ""
1479
 
1480
+ #: includes/sc_event-list_helptexts.php:42
1481
  msgid ""
1482
  "Provide a category slug to change this behavior. It is still possible to "
1483
  "change the displayed categories via the filterbar or url parameters."
1484
  msgstr ""
1485
 
1486
+ #: includes/sc_event-list_helptexts.php:48
1487
  msgid "This attribute defines the initial order of the events."
1488
  msgstr ""
1489
 
1490
+ #: includes/sc_event-list_helptexts.php:50
1491
+ #, php-format
1492
  msgid ""
1493
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1494
  "in the opposite direction (from new to old)."
1495
  msgstr ""
1496
 
1497
+ #: includes/sc_event-list_helptexts.php:60
1498
  #, php-format
1499
  msgid ""
1500
  "This attribute defines the dates and date ranges of which events are "
1501
  "displayed. The default is %1$s to show all events."
1502
  msgstr ""
1503
 
1504
+ #: includes/sc_event-list_helptexts.php:64
1505
  #, php-format
1506
  msgid ""
1507
  "Filtered events according to %1$s value are not available in the event list."
1508
  msgstr ""
1509
 
1510
+ #: includes/sc_event-list_helptexts.php:68
1511
  #, php-format
1512
  msgid ""
1513
  "You can find all available values with a description and examples in the "
1514
  "sections %1$s and %2$s below."
1515
  msgstr ""
1516
 
1517
+ #: includes/sc_event-list_helptexts.php:73
1518
  #, php-format
1519
  msgid "See %1$s description if you want to define complex filters."
1520
  msgstr ""
1521
 
1522
+ #: includes/sc_event-list_helptexts.php:79
1523
  msgid "category slugs"
1524
  msgstr "uproszczone nazwy kategorii"
1525
 
1526
+ #: includes/sc_event-list_helptexts.php:82
1527
  msgid ""
1528
  "This attribute defines the category filter which filters the events to show."
1529
  " The default is $1$s or an empty string to show all events."
1530
  msgstr ""
1531
 
1532
+ #: includes/sc_event-list_helptexts.php:86
1533
  #, php-format
1534
  msgid ""
1535
  "Events with categories that doesn´t match %1$s are not shown in the event "
1536
  "list. They are also not available if a manual url parameter is added."
1537
  msgstr ""
1538
 
1539
+ #: includes/sc_event-list_helptexts.php:90
1540
  #, php-format
1541
  msgid ""
1542
  "The filter is specified via the given category slugs. See %1$s description "
1543
  "if you want to define complex filters."
1544
  msgstr ""
1545
 
1546
+ #: includes/sc_event-list_helptexts.php:96
1547
+ #: includes/sc_event-list_helptexts.php:242
1548
+ #: includes/sc_event-list_helptexts.php:276
1549
+ #: includes/sc_event-list_helptexts.php:318
1550
  msgid "number"
1551
  msgstr "liczba"
1552
 
1553
+ #: includes/sc_event-list_helptexts.php:99
1554
  #, php-format
1555
  msgid ""
1556
  "This attribute defines how many events should be displayed if upcoming "
1558
  "displayed."
1559
  msgstr ""
1560
 
1561
+ #: includes/sc_event-list_helptexts.php:102
1562
  msgid ""
1563
  "Please not that in the actual version there is no pagination of the events "
1564
  "available, so the event list can be very long."
1565
  msgstr ""
1566
 
1567
+ #: includes/sc_event-list_helptexts.php:108
1568
  msgid ""
1569
  "This attribute defines if the filterbar should be displayed. The filterbar "
1570
  "allows the users to specify filters for the listed events."
1571
  msgstr ""
1572
 
1573
+ #: includes/sc_event-list_helptexts.php:110
1574
  #, php-format
1575
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1576
  msgstr ""
1577
 
1578
+ #: includes/sc_event-list_helptexts.php:115
1579
  #, php-format
1580
  msgid ""
1581
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1582
  " in the single event view."
1583
  msgstr ""
1584
 
1585
+ #: includes/sc_event-list_helptexts.php:125
1586
  #, php-format
1587
  msgid ""
1588
  "This attribute specifies the available items in the filterbar. This options "
1589
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1590
  msgstr ""
1591
 
1592
+ #: includes/sc_event-list_helptexts.php:128
1593
  msgid ""
1594
  "Find below an overview of the available filterbar items and their options:"
1595
  msgstr ""
1596
 
1597
+ #: includes/sc_event-list_helptexts.php:132
1598
  msgid "filterbar item"
1599
  msgstr ""
1600
 
1601
+ #: includes/sc_event-list_helptexts.php:133
1602
+ #: includes/sc_event-list_helptexts.php:206
1603
  msgid "description"
1604
  msgstr ""
1605
 
1606
+ #: includes/sc_event-list_helptexts.php:134
1607
  msgid "item options"
1608
  msgstr ""
1609
 
1610
+ #: includes/sc_event-list_helptexts.php:135
1611
  msgid "option values"
1612
  msgstr ""
1613
 
1614
+ #: includes/sc_event-list_helptexts.php:136
1615
  msgid "default value"
1616
  msgstr ""
1617
 
1618
+ #: includes/sc_event-list_helptexts.php:137
1619
  msgid "option description"
1620
  msgstr ""
1621
 
1622
+ #: includes/sc_event-list_helptexts.php:141
1623
  msgid ""
1624
  "Show a list of all available years. Additional there are some special "
1625
  "entries available (see item options)."
1626
  msgstr ""
1627
 
1628
+ #: includes/sc_event-list_helptexts.php:145
1629
+ #: includes/sc_event-list_helptexts.php:156
1630
  msgid "Add an entry to show all events."
1631
  msgstr ""
1632
 
1633
+ #: includes/sc_event-list_helptexts.php:147
1634
+ #: includes/sc_event-list_helptexts.php:158
1635
  msgid "Add an entry to show all upcoming events."
1636
  msgstr ""
1637
 
1638
+ #: includes/sc_event-list_helptexts.php:148
1639
+ #: includes/sc_event-list_helptexts.php:159
1640
  msgid "Add an entry to show events in the past."
1641
  msgstr ""
1642
 
1643
+ #: includes/sc_event-list_helptexts.php:149
1644
  msgid "Set descending or ascending order of year entries."
1645
  msgstr ""
1646
 
1647
+ #: includes/sc_event-list_helptexts.php:152
1648
  msgid "Show a list of all available months."
1649
  msgstr ""
1650
 
1651
+ #: includes/sc_event-list_helptexts.php:160
1652
  msgid "Set descending or ascending order of month entries."
1653
  msgstr ""
1654
 
1655
+ #: includes/sc_event-list_helptexts.php:163
1656
  msgid "php date-formats"
1657
  msgstr ""
1658
 
1659
+ #: includes/sc_event-list_helptexts.php:165
1660
  msgid "Set the displayed date format of the month entries."
1661
  msgstr ""
1662
 
1663
+ #: includes/sc_event-list_helptexts.php:170
1664
  #, php-format
1665
  msgid ""
1666
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1668
  "order."
1669
  msgstr ""
1670
 
1671
+ #: includes/sc_event-list_helptexts.php:179
1672
  #, php-format
1673
  msgid ""
1674
  "Specifies the displayed values and their order. The items must be seperated "
1675
  "by %1$s."
1676
  msgstr ""
1677
 
1678
+ #: includes/sc_event-list_helptexts.php:185
1679
  msgid "Show a list of all available categories."
1680
  msgstr ""
1681
 
1682
+ #: includes/sc_event-list_helptexts.php:189
1683
  msgid "Add an entry to show events from all categories."
1684
  msgstr ""
1685
 
1686
+ #: includes/sc_event-list_helptexts.php:193
1687
  msgid "A link to reset the eventlist filter to standard."
1688
  msgstr ""
1689
 
1690
+ #: includes/sc_event-list_helptexts.php:195
1691
  msgid "any text"
1692
  msgstr ""
1693
 
1694
+ #: includes/sc_event-list_helptexts.php:197
1695
  msgid "Set the caption of the link."
1696
  msgstr ""
1697
 
1698
+ #: includes/sc_event-list_helptexts.php:201
1699
  msgid "Find below an overview of the available filterbar display options:"
1700
  msgstr ""
1701
 
1702
+ #: includes/sc_event-list_helptexts.php:205
1703
  msgid "display option"
1704
  msgstr ""
1705
 
1706
+ #: includes/sc_event-list_helptexts.php:207
1707
  msgid "available for"
1708
  msgstr ""
1709
 
1710
+ #: includes/sc_event-list_helptexts.php:211
1711
  #, php-format
1712
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1713
  msgstr ""
1714
 
1715
+ #: includes/sc_event-list_helptexts.php:216
1716
  msgid ""
1717
  "Shows a select box where an item can be choosen. After the selection of an "
1718
  "item the page is reloaded via javascript to show the filtered events."
1719
  msgstr ""
1720
 
1721
+ #: includes/sc_event-list_helptexts.php:219
1722
  msgid "Shows a simple link which can be clicked."
1723
  msgstr ""
1724
 
1725
+ #: includes/sc_event-list_helptexts.php:222
1726
  msgid "Find below some declaration examples with descriptions:"
1727
  msgstr ""
1728
 
1729
+ #: includes/sc_event-list_helptexts.php:225
1730
  #, php-format
1731
  msgid ""
1732
  "In this example you can see that the filterbar item and the used display "
1734
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1735
  msgstr ""
1736
 
1737
+ #: includes/sc_event-list_helptexts.php:231
1738
  #, php-format
1739
  msgid ""
1740
  "In this example you can see that filterbar options can be added in brackets "
1741
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1742
  msgstr ""
1743
 
1744
+ #: includes/sc_event-list_helptexts.php:232
1745
  msgid "option_name"
1746
  msgstr ""
1747
 
1748
+ #: includes/sc_event-list_helptexts.php:232
1749
  msgid "value"
1750
  msgstr ""
1751
 
1752
+ #: includes/sc_event-list_helptexts.php:236
1753
  #, php-format
1754
  msgid ""
1755
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1758
  "left-aligned and the reset link will be on the right side."
1759
  msgstr ""
1760
 
1761
+ #: includes/sc_event-list_helptexts.php:244
1762
+ #: includes/sc_event-list_helptexts.php:277
1763
  msgid ""
1764
  "This attribute specifies if the title should be truncated to the given "
1765
  "number of characters in the event list."
1766
  msgstr ""
1767
 
1768
+ #: includes/sc_event-list_helptexts.php:246
1769
+ #: includes/sc_event-list_helptexts.php:278
1770
  #, php-format
1771
  msgid ""
1772
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1773
  "is automatically truncated via css."
1774
  msgstr ""
1775
 
1776
+ #: includes/sc_event-list_helptexts.php:250
1777
+ #: includes/sc_event-list_helptexts.php:279
1778
+ #: includes/sc_event-list_helptexts.php:322
1779
  msgid "This attribute has no influence if only a single event is shown."
1780
  msgstr ""
1781
 
1782
+ #: includes/sc_event-list_helptexts.php:257
1783
  msgid ""
1784
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1785
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1786
+ "\t\t\t\t\tWith \"event_list_only\" the starttime 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:268
1790
  msgid ""
1791
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1792
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1793
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1797
  msgid ""
1798
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1799
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1800
+ "\t\t\t\t\tWith \"event_list_only\" the categories are 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:297
1804
  msgid ""
1805
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1806
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1807
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1808
  msgstr ""
1809
 
1810
+ #: includes/sc_event-list_helptexts.php:308
1811
  msgid ""
1812
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1813
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1814
+ "\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"
1815
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1816
+ "\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)."
1817
  msgstr ""
1818
 
1819
+ #: includes/sc_event-list_helptexts.php:320
1820
  msgid ""
1821
  "This attribute specifies if the content should be truncate to the given "
1822
  "number of characters in the event list."
1823
  msgstr ""
1824
 
1825
+ #: includes/sc_event-list_helptexts.php:321
1826
  #, php-format
1827
  msgid "With the standard value %1$s the full text is displayed."
1828
  msgstr ""
1829
 
1830
+ #: includes/sc_event-list_helptexts.php:329
1831
  msgid ""
1832
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1833
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1834
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1835
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1836
  msgstr ""
1837
 
1838
+ #: includes/sc_event-list_helptexts.php:341
1839
  msgid ""
1840
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1841
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1842
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1843
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1844
  msgstr ""
1845
 
1846
+ #: includes/sc_event-list_helptexts.php:353
1847
  msgid ""
1848
  "This attribute specifies if a rss feed link should be added.<br />\n"
1849
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1850
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1851
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1852
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1853
  msgstr ""
1854
 
1855
+ #: includes/sc_event-list_helptexts.php:366
1856
  msgid ""
1857
  "This attribute specifies if a ical feed link should be added.<br />\n"
1858
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1859
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1860
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1861
  msgstr ""
1862
 
1863
+ #: includes/sc_event-list_helptexts.php:378
1864
  msgid ""
1865
  "This attribute specifies the page or post url for event links.<br />\n"
1866
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1867
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1868
  msgstr ""
1869
 
1870
+ #: includes/sc_event-list_helptexts.php:391
1871
  msgid ""
1872
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1873
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1874
  msgstr ""
1875
 
1876
+ #: includes/sc_event-list.php:184
1877
  msgid "Sorry, the requested event is not available!"
1878
  msgstr ""
1879
 
1880
+ #: includes/sc_event-list.php:193
1881
  msgid "Event Information:"
1882
  msgstr "Informacje o wydarzeniu:"
1883
 
1884
+ #: includes/sc_event-list.php:437
1885
  msgid "Link to RSS feed"
1886
  msgstr ""
1887
 
1888
+ #: includes/sc_event-list.php:447
1889
  msgid "Link to iCal feed"
1890
  msgstr ""
1891
 
1918
  msgid "Truncate event title to"
1919
  msgstr "Obetnij tytuł wydarzenia do"
1920
 
1921
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1922
+ #: includes/widget_helptexts.php:103
1923
  msgid "characters"
1924
  msgstr "znaków"
1925
 
1926
+ #: includes/widget_helptexts.php:39
1927
  msgid ""
1928
  "This option defines the number of displayed characters for the event title."
1929
  msgstr ""
1930
 
1931
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1932
  #, php-format
1933
  msgid ""
1934
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1935
  "automatically truncate the text via css."
1936
  msgstr ""
1937
 
1938
+ #: includes/widget_helptexts.php:51
1939
  msgid "Show event starttime"
1940
  msgstr "Wyświetl czas rozpoczęcia wydarzenia"
1941
 
1942
+ #: includes/widget_helptexts.php:53
1943
  msgid "This option defines if the event start time will be displayed."
1944
  msgstr ""
1945
 
1946
+ #: includes/widget_helptexts.php:60
1947
  msgid "Show event location"
1948
  msgstr "Wyświetlaj miejsce wydarzenia"
1949
 
1950
+ #: includes/widget_helptexts.php:62
1951
  msgid "This option defines if the event location will be displayed."
1952
  msgstr ""
1953
 
1954
+ #: includes/widget_helptexts.php:69
1955
  msgid "Truncate location to"
1956
  msgstr "Obetnij miejsce do"
1957
 
1958
+ #: includes/widget_helptexts.php:72
1959
  msgid ""
1960
  "If the event location is diplayed this option defines the number of "
1961
  "displayed characters."
1962
  msgstr ""
1963
 
1964
+ #: includes/widget_helptexts.php:84
1965
  msgid "Show event excerpt"
1966
  msgstr ""
1967
 
1968
+ #: includes/widget_helptexts.php:86
1969
  msgid "This option defines if the event excerpt will be displayed."
1970
  msgstr ""
1971
 
1972
+ #: includes/widget_helptexts.php:93
1973
  msgid "Show event content"
1974
  msgstr ""
1975
 
1976
+ #: includes/widget_helptexts.php:95
1977
  msgid "This option defines if the event content will be displayed."
1978
  msgstr ""
1979
 
1980
+ #: includes/widget_helptexts.php:102
1981
  msgid "Truncate content to"
1982
  msgstr ""
1983
 
1984
+ #: includes/widget_helptexts.php:105
1985
  msgid ""
1986
  "If the event content are diplayed this option defines the number of diplayed"
1987
  " characters."
1988
  msgstr ""
1989
 
1990
+ #: includes/widget_helptexts.php:107
1991
  #, php-format
1992
  msgid "Set this value to %1$s to view the full text."
1993
  msgstr ""
1994
 
1995
+ #: includes/widget_helptexts.php:116
1996
  msgid "URL to the linked Event List page"
1997
  msgstr "Łącze do strony Lista wydarzeń"
1998
 
1999
+ #: includes/widget_helptexts.php:118
2000
  msgid ""
2001
  "This option defines the url to the linked Event List page. This option is "
2002
  "required if you want to use one of the options below."
2003
  msgstr "Ta opcja definiuje adres url do strony Listy wydarzeń. Ta opcja jest wymagana, jeśli chcesz użyć jednej z poniższych opcji."
2004
 
2005
+ #: includes/widget_helptexts.php:125
2006
  msgid "Shortcode ID on linked page"
2007
  msgstr ""
2008
 
2009
+ #: includes/widget_helptexts.php:127
2010
  msgid ""
2011
  "This option defines the shortcode-id for the Event List on the linked page. "
2012
  "Normally the standard value 1 is correct, you only have to change it if you "
2013
  "use multiple event-list shortcodes on the linked page."
2014
  msgstr ""
2015
 
2016
+ #: includes/widget_helptexts.php:136
2017
  msgid ""
2018
  "With this option you can add a link to the single event page for every "
2019
  "displayed event. You have to specify the url to the page and the shortcode "
2020
  "id option if you want to use it."
2021
  msgstr ""
2022
 
2023
+ #: includes/widget_helptexts.php:145
2024
  msgid ""
2025
  "With this option you can add a link to the event-list page below the "
2026
  "diplayed events. You have to specify the url to page option if you want to "
2027
  "use it."
2028
  msgstr ""
2029
 
2030
+ #: includes/widget_helptexts.php:152
2031
  msgid "Caption for the link"
2032
  msgstr ""
2033
 
2034
+ #: includes/widget_helptexts.php:154
2035
  msgid ""
2036
  "This option defines the text for the link to the Event List page if the "
2037
  "approriate option is selected."
2038
  msgstr ""
2039
 
2040
+ #: includes/widget.php:38
2041
  msgid "With this widget a list of upcoming events can be displayed."
2042
  msgstr ""
2043
 
2044
+ #: includes/widget.php:43
2045
  msgid "Upcoming events"
2046
  msgstr "Nadchodzące wydarzenia"
2047
 
2048
+ #: includes/widget.php:57
2049
  msgid "show events page"
2050
  msgstr ""
languages/event-list-pt_BR.mo CHANGED
Binary file
languages/event-list-pt_BR.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -10,8 +10,8 @@ msgid ""
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
14
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
17
  "MIME-Version: 1.0\n"
@@ -20,117 +20,117 @@ msgstr ""
20
  "Language: pt_BR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
- #: admin/admin.php:64
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
- #: admin/admin.php:64
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
34
  msgid "Event List Settings"
35
  msgstr "Configurações da Lista de Eventos"
36
 
37
- #: admin/admin.php:116
38
  msgid "Settings"
39
  msgstr "Configurações"
40
 
41
- #: admin/admin.php:120 admin/includes/admin-about.php:43
42
  msgid "About Event List"
43
  msgstr "Sobre o Lista de Eventos"
44
 
45
- #: admin/admin.php:120
46
  msgid "About"
47
  msgstr "Sobre"
48
 
49
- #: admin/admin.php:144
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
57
  msgid "General"
58
  msgstr "Geral"
59
 
60
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
61
- #: admin/includes/admin-about.php:117
62
  msgid "Shortcode Attributes"
63
  msgstr "Atributos de Shortcode"
64
 
65
- #: admin/includes/admin-about.php:82
66
  msgid "Help and Instructions"
67
  msgstr "Ajuda e Instruções"
68
 
69
- #: admin/includes/admin-about.php:83
70
  #, php-format
71
  msgid "You can manage the events %1$shere%2$s"
72
  msgstr "Você pode gerenciar os eventos %1$saqui%2$s"
73
 
74
- #: admin/includes/admin-about.php:84
75
  msgid "To show the events on your site you have 2 possibilities"
76
  msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site"
77
 
78
- #: admin/includes/admin-about.php:85
79
  #, php-format
80
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
81
  msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post"
82
 
83
- #: admin/includes/admin-about.php:86
84
  #, php-format
85
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
86
  msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars"
87
 
88
- #: admin/includes/admin-about.php:87
89
  msgid ""
90
  "The displayed events and their style can be modified with the available "
91
  "widget settings and the available attributes for the shortcode."
92
  msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configurações disponíveis do widget e os atributos disponíveis para o shortcode."
93
 
94
- #: admin/includes/admin-about.php:88
95
  #, php-format
96
  msgid ""
97
  "A list of all available shortcode attributes with their descriptions is "
98
  "available in the %1$s tab."
99
  msgstr "A lista de todos os atributos de Shortcode disponíveis com suas descrições está na %1$saba."
100
 
101
- #: admin/includes/admin-about.php:89
102
  msgid "The available widget options are described in their tooltip text."
103
  msgstr "As opções de widgets disponíveis são descritas em suas dicas."
104
 
105
- #: admin/includes/admin-about.php:90
106
  #, php-format
107
  msgid ""
108
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
109
  " to insert an URL to the linked event-list page."
110
  msgstr "Se você habilitar uma das opções de links (%1$s ou %2$s) no widget, você deverá inserir uma URL para a página de lista de eventos linkada."
111
 
112
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
113
  msgid "Add links to the single events"
114
  msgstr "Adicionar links para os eventos individuais"
115
 
116
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
117
  msgid "Add a link to the Event List page"
118
  msgstr "Adicionar um link para a Página de Lista de Eventos"
119
 
120
- #: admin/includes/admin-about.php:91
121
  msgid ""
122
  "This is required because the widget does not know in which page or post the "
123
  "shortcode was included."
124
  msgstr "Isto é necessário porque o widget não sabe em qual página ou post o shortcode foi incluído."
125
 
126
- #: admin/includes/admin-about.php:92
127
  msgid ""
128
  "Additionally you have to insert the correct Shortcode id on the linked page."
129
  " This id describes which shortcode should be used on the given page or post "
130
  "if you have more than one."
131
  msgstr "Adicionalmente você deve inserir o ID correto do Shortcode na página linkada. Este ID descreve qual Shortcode deverá ser usado no post ou página especificada caso haja mais de um."
132
 
133
- #: admin/includes/admin-about.php:93
134
  #, php-format
135
  msgid ""
136
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -138,592 +138,596 @@ msgid ""
138
  "link on your linked page or post."
139
  msgstr "O valor padrão de %1$s normalmente está ok (para páginas com apenas 1 shortcode), mas se necessário, você pode conferir o ID olhando na URL de um link de evento na sua página linkada ou post."
140
 
141
- #: admin/includes/admin-about.php:94
142
  #, php-format
143
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
144
  msgstr "O ID está disponível no final dos parâmetros da URL (ex. %1$s)."
145
 
146
- #: admin/includes/admin-about.php:96
147
  #, php-format
148
  msgid ""
149
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
150
  "want."
151
  msgstr "Tenha certeza de também checar o %1$s para garantir que o plugin se comporte como você deseja."
152
 
153
- #: admin/includes/admin-about.php:96
154
  msgid "Settings page"
155
  msgstr "Configurações"
156
 
157
- #: admin/includes/admin-about.php:103
158
  msgid "About the plugin author"
159
  msgstr "Sobre o autor do plugin"
160
 
161
- #: admin/includes/admin-about.php:105
162
  #, php-format
163
  msgid ""
164
  "This plugin is developed by %1$s, you can find more information about the "
165
  "plugin on the %2$s."
166
  msgstr "Este plugin foi desenvolvido por %1$s, mais informações sobre o plugin poderão ser encontradas em %2$s."
167
 
168
- #: admin/includes/admin-about.php:105
169
  msgid "WordPress plugin site"
170
  msgstr ""
171
 
172
- #: admin/includes/admin-about.php:106
173
  #, php-format
174
  msgid "If you like the plugin please rate it on the %1$s."
175
  msgstr "Se você gostou deste plugin, favor dar uma nota no %1$s."
176
 
177
- #: admin/includes/admin-about.php:106
178
  msgid "WordPress plugin review site"
179
  msgstr ""
180
 
181
- #: admin/includes/admin-about.php:107
182
  msgid ""
183
  "If you want to support the plugin I would be happy to get a small donation"
184
  msgstr "Caso haja interesse em dar suporte ao desenvolvimento deste plugin, uma pequena doação será excelente!"
185
 
186
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
187
- #: admin/includes/admin-about.php:110
188
  #, php-format
189
  msgid "Donate with %1$s"
190
  msgstr ""
191
 
192
- #: admin/includes/admin-about.php:119
193
  msgid ""
194
  "You have the possibility to modify the output if you add some of the "
195
  "following attributes to the shortcode."
196
  msgstr "Você tem a possibilidade de modificar o resultado adicionando alguns dos atributos a seguir ao Shortcode."
197
 
198
- #: admin/includes/admin-about.php:120
199
  #, php-format
200
  msgid ""
201
  "You can combine and add as much attributes as you want. E.g. the shortcode "
202
  "including the attributes %1$s and %2$s would looks like this:"
203
  msgstr "Você pode combinar e adicionar quantos atributos desejar. Ex.: O shortcode que inclui oa atributos %1$s e %2$s ficará assim:"
204
 
205
- #: admin/includes/admin-about.php:122
206
  msgid ""
207
  "Below you can find a list of all supported attributes with their "
208
  "descriptions and available options:"
209
  msgstr "Abaixo encontra-se uma lista de todos os atributos suportados com suas descrições e opções disponíveis:"
210
 
211
- #: admin/includes/admin-about.php:137
212
  msgid "Attribute name"
213
  msgstr "Nome do atributo"
214
 
215
- #: admin/includes/admin-about.php:138
216
  msgid "Value options"
217
  msgstr "Opções de valor"
218
 
219
- #: admin/includes/admin-about.php:139
220
  msgid "Default value"
221
  msgstr "Valor padrão"
222
 
223
- #: admin/includes/admin-about.php:140
224
  msgid "Description"
225
  msgstr "Descrição"
226
 
227
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
228
- #: includes/sc_event-list_helptexts.php:42
229
  msgid "Filter Syntax"
230
  msgstr "Sintaxe do Filtro"
231
 
232
- #: admin/includes/admin-about.php:160
233
  msgid ""
234
  "For date and cat filters you can specify complex filters with the following "
235
  "syntax:"
236
  msgstr ""
237
 
238
- #: admin/includes/admin-about.php:161
239
  #, php-format
240
  msgid ""
241
  "You can use %1$s and %2$s connections to define complex filters. "
242
  "Additionally you can set brackets %3$s for nested queries."
243
  msgstr ""
244
 
245
- #: admin/includes/admin-about.php:161
246
  msgid "AND"
247
  msgstr "E"
248
 
249
- #: admin/includes/admin-about.php:161
250
  msgid "OR"
251
  msgstr "OU"
252
 
253
- #: admin/includes/admin-about.php:161
254
  msgid "or"
255
  msgstr "ou"
256
 
257
- #: admin/includes/admin-about.php:161
258
  msgid "and"
259
  msgstr "e"
260
 
261
- #: admin/includes/admin-about.php:162
262
  msgid "Examples for cat filters:"
263
  msgstr ""
264
 
265
- #: admin/includes/admin-about.php:163
266
  #, php-format
267
  msgid "Show all events with category %1$s."
268
  msgstr ""
269
 
270
- #: admin/includes/admin-about.php:164
271
  #, php-format
272
  msgid "Show all events with category %1$s or %2$s."
273
  msgstr ""
274
 
275
- #: admin/includes/admin-about.php:165
276
  #, php-format
277
  msgid ""
278
  "Show all events with category %1$s and all events where category %2$s as "
279
  "well as %3$s is selected."
280
  msgstr ""
281
 
282
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
283
  msgid "Available Date Formats"
284
  msgstr ""
285
 
286
- #: admin/includes/admin-about.php:172
287
  msgid "For date filters you can use the following date formats:"
288
  msgstr ""
289
 
290
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
291
  msgid "Available Date Range Formats"
292
  msgstr ""
293
 
294
- #: admin/includes/admin-about.php:182
295
  msgid "For date filters you can use the following daterange formats:"
296
  msgstr ""
297
 
298
- #: admin/includes/admin-about.php:195
299
  msgid "Value"
300
  msgstr "Valor"
301
 
302
- #: admin/includes/admin-about.php:199
303
  msgid "Example"
304
  msgstr "Exemplo"
305
 
306
- #: admin/includes/admin-categories.php:54
307
  msgid "Synchronize with post categories"
308
  msgstr ""
309
 
310
- #: admin/includes/admin-categories.php:63
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
  msgstr ""
314
 
315
- #: admin/includes/admin-categories.php:64
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
  msgstr ""
319
 
320
- #: admin/includes/admin-categories.php:65
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
  msgstr ""
324
 
325
- #: admin/includes/admin-categories.php:67
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
  msgstr ""
329
 
330
- #: admin/includes/admin-categories.php:68
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
  msgstr ""
334
 
335
- #: admin/includes/admin-categories.php:69
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
  msgstr ""
339
 
340
- #: admin/includes/admin-categories.php:72
341
  msgid "An Error occured during the category sync"
342
  msgstr ""
343
 
344
- #: admin/includes/admin-categories.php:75
345
  msgid "Category sync finished"
346
  msgstr ""
347
 
348
- #: admin/includes/admin-category-sync.php:54
349
  msgid "Error: You are not allowed to view this page!"
350
  msgstr ""
351
 
352
- #: admin/includes/admin-category-sync.php:70
353
  msgid "Affected Categories when switching to seperate Event Categories"
354
  msgstr ""
355
 
356
- #: admin/includes/admin-category-sync.php:71
357
  msgid "Switch option to seperate Event Categories"
358
  msgstr ""
359
 
360
- #: admin/includes/admin-category-sync.php:72
361
  msgid ""
362
  "If you proceed, all post categories will be copied and all events will be "
363
  "re-assigned to this new categories."
364
  msgstr ""
365
 
366
- #: admin/includes/admin-category-sync.php:73
367
  msgid ""
368
  "Afterwards the event categories are independent of the post categories."
369
  msgstr ""
370
 
371
- #: admin/includes/admin-category-sync.php:75
372
  msgid "Affected Categories when switching to use Post Categories for events"
373
  msgstr ""
374
 
375
- #: admin/includes/admin-category-sync.php:76
376
  msgid "Switch option to use Post Categories for events"
377
  msgstr ""
378
 
379
- #: admin/includes/admin-category-sync.php:77
380
  msgid ""
381
  "Take a detailed look at the affected categories above before you proceed! "
382
  "All seperate event categories will be deleted, this cannot be undone!"
383
  msgstr ""
384
 
385
- #: admin/includes/admin-category-sync.php:79
386
  msgid "Event Categories: Synchronise with Post Categories"
387
  msgstr ""
388
 
389
- #: admin/includes/admin-category-sync.php:80
390
  msgid "Start synchronisation"
391
  msgstr ""
392
 
393
- #: admin/includes/admin-category-sync.php:81
394
  msgid ""
395
  "If this option is enabled the above listed categories will be deleted and "
396
  "removed from the existing events!"
397
  msgstr ""
398
 
399
- #: admin/includes/admin-category-sync.php:96
400
  msgid "Categories to modify"
401
  msgstr ""
402
 
403
- #: admin/includes/admin-category-sync.php:97
404
  msgid "Categories to add"
405
  msgstr ""
406
 
407
- #: admin/includes/admin-category-sync.php:98
408
  msgid "Categories to delete (optional)"
409
  msgstr ""
410
 
411
- #: admin/includes/admin-category-sync.php:99
412
  msgid "Delete not available post categories"
413
  msgstr ""
414
 
415
- #: admin/includes/admin-category-sync.php:102
416
  msgid "Categories with differences"
417
  msgstr ""
418
 
419
- #: admin/includes/admin-category-sync.php:103
420
  msgid "Categories to add (optional)"
421
  msgstr ""
422
 
423
- #: admin/includes/admin-category-sync.php:104
424
  msgid "Add not available post categories"
425
  msgstr ""
426
 
427
- #: admin/includes/admin-category-sync.php:123
428
  msgid "none"
429
  msgstr ""
430
 
431
- #: admin/includes/admin-import.php:58
432
  msgid "Import Events"
433
  msgstr "Importar Eventos"
434
 
435
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
436
- #: admin/includes/admin-import.php:220
437
  msgid "Step"
438
  msgstr "Passo"
439
 
440
- #: admin/includes/admin-import.php:79
441
  msgid "Set import file and options"
442
  msgstr "Informar arquivo de importação e opções"
443
 
444
- #: admin/includes/admin-import.php:82
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
  msgstr ""
448
 
449
- #: admin/includes/admin-import.php:85
450
  msgid "Example file"
451
  msgstr "Arquivo de exemplo"
452
 
453
- #: admin/includes/admin-import.php:86
454
  #, php-format
455
  msgid ""
456
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
457
  msgstr ""
458
 
459
- #: admin/includes/admin-import.php:87
460
  msgid "Note"
461
  msgstr "Nota"
462
 
463
- #: admin/includes/admin-import.php:87
464
  msgid ""
465
  "Do not change the column header and separator line (first two lines), "
466
  "otherwise the import will fail!"
467
  msgstr ""
468
 
469
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
470
  msgid "Sorry, there has been an error."
471
  msgstr ""
472
 
473
- #: admin/includes/admin-import.php:96
474
  msgid "The file does not exist, please try again."
475
  msgstr ""
476
 
477
- #: admin/includes/admin-import.php:104
478
  msgid "The uploaded file does not have the required csv extension."
479
  msgstr ""
480
 
481
- #: admin/includes/admin-import.php:116
482
  msgid "Events review and additonal category selection"
483
  msgstr ""
484
 
485
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
486
  msgid "Error"
487
  msgstr ""
488
 
489
- #: admin/includes/admin-import.php:122
490
  msgid "This CSV file cannot be imported"
491
  msgstr ""
492
 
493
- #: admin/includes/admin-import.php:133
494
  msgid "None of the events in this CSV file can be imported"
495
  msgstr ""
496
 
497
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
498
  msgid "Warning"
499
  msgstr ""
500
 
501
- #: admin/includes/admin-import.php:138
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
505
  msgstr[0] ""
506
  msgstr[1] ""
507
 
508
- #: admin/includes/admin-import.php:150
509
  #, php-format
510
  msgid "CSV line %1$s"
511
  msgstr ""
512
 
513
- #: admin/includes/admin-import.php:160
514
  msgid "You can still import all other events listed below."
515
  msgstr ""
516
 
517
- #: admin/includes/admin-import.php:179
518
  msgid ""
519
  "The following category slugs are not available and will be removed from the "
520
  "imported events"
521
  msgstr ""
522
 
523
- #: admin/includes/admin-import.php:185
524
  msgid ""
525
  "If you want to keep these categories, please create these Categories first "
526
  "and do the import afterwards."
527
  msgstr ""
528
 
529
- #: admin/includes/admin-import.php:220
530
  msgid "Import result"
531
  msgstr ""
532
 
533
- #: admin/includes/admin-import.php:223
534
  #, php-format
535
  msgid "Import of %1$s events successful!"
536
  msgstr ""
537
 
538
- #: admin/includes/admin-import.php:224
539
  msgid "Go back to All Events"
540
  msgstr "Voltar para Todos os Eventos"
541
 
542
- #: admin/includes/admin-import.php:227
543
  msgid "Errors during Import"
544
  msgstr ""
545
 
546
- #: admin/includes/admin-import.php:235
547
  msgid "Event from CSV-line"
548
  msgstr ""
549
 
550
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
551
  #: includes/widget_helptexts.php:9
552
  msgid "Title"
553
  msgstr "Título"
554
 
555
- #: admin/includes/admin-import.php:248
556
  msgid "Start Date"
557
  msgstr "Início"
558
 
559
- #: admin/includes/admin-import.php:249
560
  msgid "End Date"
561
  msgstr "Término"
562
 
563
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
564
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
565
  msgid "Time"
566
  msgstr "Hora"
567
 
568
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
569
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
570
  #: includes/options_helptexts.php:76
571
  msgid "Location"
572
  msgstr "Localização"
573
 
574
- #: admin/includes/admin-import.php:252
575
  msgid "Content"
576
  msgstr ""
577
 
578
- #: admin/includes/admin-import.php:253
579
  msgid "Category slugs"
580
  msgstr ""
581
 
582
- #: admin/includes/admin-import.php:297
583
  msgid "Header line is missing or not correct!"
584
  msgstr ""
585
 
586
- #: admin/includes/admin-import.php:298
587
  #, php-format
588
  msgid ""
589
  "Have a look at the %1$sexample file%2$s to see the correct header line "
590
  "format."
591
  msgstr ""
592
 
593
- #: admin/includes/admin-import.php:305
594
  #, php-format
595
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
596
  msgstr ""
597
 
598
- #: admin/includes/admin-import.php:334
599
  msgid "Empty event title found"
600
  msgstr ""
601
 
602
- #: admin/includes/admin-import.php:340
603
  msgid "Wrong date format for startdate"
604
  msgstr ""
605
 
606
- #: admin/includes/admin-import.php:348
607
  msgid "Wrong date format for enddate"
608
  msgstr ""
609
 
610
- #: admin/includes/admin-import.php:401
611
  msgid "Import events"
612
  msgstr ""
613
 
614
- #: admin/includes/admin-import.php:402
615
  msgid "Add additional categories"
616
  msgstr ""
617
 
618
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
619
- msgid "Import"
620
- msgstr "Importar"
621
-
622
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
623
  msgid "No events found"
624
  msgstr ""
625
 
626
- #: admin/includes/admin-import.php:473
627
  msgid "Saving of event failed!"
628
  msgstr ""
629
 
630
- #: admin/includes/admin-main.php:76
631
  msgid "Event Date"
632
  msgstr ""
633
 
634
- #: admin/includes/admin-main.php:80
635
  msgid "Author"
636
  msgstr "Autor"
637
 
638
- #: admin/includes/admin-main.php:148
639
  #, php-format
640
  msgid "Add a copy of %1$s"
641
  msgstr ""
642
 
643
- #: admin/includes/admin-main.php:148
644
  msgid "Copy"
645
  msgstr ""
646
 
647
- #: admin/includes/admin-new.php:58
 
 
 
 
648
  msgid "Event data"
649
  msgstr ""
650
 
651
- #: admin/includes/admin-new.php:90
652
  msgid "Add Copy"
653
  msgstr ""
654
 
655
- #: admin/includes/admin-new.php:98
656
  msgid "Date"
657
  msgstr "Data"
658
 
659
- #: admin/includes/admin-new.php:98
660
  msgid "required"
661
  msgstr "obrigatório"
662
 
663
- #: admin/includes/admin-new.php:101
664
  msgid "Multi-Day Event"
665
  msgstr "Evento de vários dias"
666
 
667
- #: admin/includes/admin-new.php:121
668
  msgid "Event Title"
669
  msgstr ""
670
 
671
- #: admin/includes/admin-new.php:137
672
  msgid "Event Content"
673
  msgstr ""
674
 
675
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
676
  msgid "Event updated."
677
  msgstr ""
678
 
679
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
680
  msgid "View event"
681
  msgstr ""
682
 
683
- #: admin/includes/admin-new.php:204
684
  #, php-format
685
  msgid "Event restored to revision from %1$s"
686
  msgstr ""
687
 
688
- #: admin/includes/admin-new.php:205
689
  msgid "Event published."
690
  msgstr ""
691
 
692
- #: admin/includes/admin-new.php:207
 
 
 
 
693
  msgid "Event submitted."
694
  msgstr ""
695
 
696
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
697
- #: admin/includes/admin-new.php:210
698
  msgid "Preview event"
699
  msgstr ""
700
 
701
- #: admin/includes/admin-new.php:208
702
  #, php-format
703
  msgid "Event scheduled for: %1$s>"
704
  msgstr ""
705
 
706
- #: admin/includes/admin-new.php:210
707
  msgid "Event draft updated."
708
  msgstr ""
709
 
710
- #: admin/includes/admin-settings.php:79
711
  msgid "Go to Event Category switching page"
712
  msgstr ""
713
 
714
- #: admin/includes/admin-settings.php:93
715
  msgid "Frontend Settings"
716
  msgstr "Configurações de Frontend"
717
 
718
- #: admin/includes/admin-settings.php:94
719
  msgid "Admin Page Settings"
720
  msgstr "Configurações do Administrador"
721
 
722
- #: admin/includes/admin-settings.php:95
723
  msgid "Feed Settings"
724
  msgstr "Configurações de Feed"
725
 
726
- #: admin/includes/admin-settings.php:96
727
  msgid "Category Taxonomy"
728
  msgstr ""
729
 
@@ -731,255 +735,255 @@ msgstr ""
731
  msgid "Year"
732
  msgstr "Ano"
733
 
734
- #: includes/daterange_helptexts.php:9
735
  msgid "A year can be specified in 4 digit format."
736
  msgstr "Um ano pode ser especificado em formato de 4 dígitos."
737
 
738
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
739
- #: includes/daterange_helptexts.php:47
740
  #, php-format
741
  msgid ""
742
  "For a start date filter the first day of %1$s is used, in an end date the "
743
  "last day."
744
  msgstr ""
745
 
746
- #: includes/daterange_helptexts.php:10
747
  msgid "the resulting year"
748
  msgstr "o ano resultado"
749
 
750
- #: includes/daterange_helptexts.php:15
751
  msgid "Month"
752
  msgstr "Mês"
753
 
754
- #: includes/daterange_helptexts.php:16
755
  msgid ""
756
  "A month can be specified with 4 digits for the year and 2 digits for the "
757
  "month, seperated by a hyphen (-)."
758
  msgstr ""
759
 
760
- #: includes/daterange_helptexts.php:17
761
  msgid "the resulting month"
762
  msgstr "o mês resultado"
763
 
764
- #: includes/daterange_helptexts.php:22
765
  msgid "Day"
766
  msgstr "Dia"
767
 
768
- #: includes/daterange_helptexts.php:23
769
  msgid ""
770
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
771
  " month and 2 digets for the day, seperated by hyphens (-)."
772
  msgstr ""
773
 
774
- #: includes/daterange_helptexts.php:28
775
  msgid "Relative Year"
776
  msgstr "Ano Relativo"
777
 
778
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
779
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
780
  #, php-format
781
  msgid "%1$s from now can be specified in the following notation: %2$s"
782
  msgstr ""
783
 
784
- #: includes/daterange_helptexts.php:29
785
  msgid "A relative year"
786
  msgstr "Um ano relativo"
787
 
788
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
789
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
790
  #, php-format
791
  msgid ""
792
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
793
  "%3$s or %4$s attached (see also the example below)."
794
  msgstr ""
795
 
796
- #: includes/daterange_helptexts.php:30
797
  msgid "number of years"
798
  msgstr "número de anos"
799
 
800
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
801
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
802
  #, php-format
803
  msgid "Additionally the following values are available: %1$s"
804
  msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s"
805
 
806
- #: includes/daterange_helptexts.php:36
807
  msgid "Relative Month"
808
  msgstr "Mês Relativo"
809
 
810
- #: includes/daterange_helptexts.php:37
811
  msgid "A relative month"
812
  msgstr "Um mês relativo"
813
 
814
- #: includes/daterange_helptexts.php:38
815
  msgid "number of months"
816
  msgstr "número de meses"
817
 
818
- #: includes/daterange_helptexts.php:44
819
  msgid "Relative Week"
820
  msgstr "Semana Relativa"
821
 
822
- #: includes/daterange_helptexts.php:45
823
  msgid "A relative week"
824
  msgstr "Uma semana relativa"
825
 
826
- #: includes/daterange_helptexts.php:46
827
  msgid "number of weeks"
828
  msgstr "número de semanas"
829
 
830
- #: includes/daterange_helptexts.php:47
831
  msgid "the resulting week"
832
  msgstr "a semana resultante"
833
 
834
- #: includes/daterange_helptexts.php:48
835
  #, php-format
836
  msgid ""
837
  "The first day of the week is depending on the option %1$s which can be found"
838
  " and changed in %2$s."
839
  msgstr ""
840
 
841
- #: includes/daterange_helptexts.php:54
842
  msgid "Relative Day"
843
  msgstr "Dia Relativo"
844
 
845
- #: includes/daterange_helptexts.php:55
846
  msgid "A relative day"
847
  msgstr "Um dia relativo"
848
 
849
- #: includes/daterange_helptexts.php:56
850
  msgid "number of days"
851
  msgstr "número de dias"
852
 
853
- #: includes/daterange_helptexts.php:64
854
  msgid "Date range"
855
  msgstr "Intervalo de data"
856
 
857
- #: includes/daterange_helptexts.php:66
858
  msgid ""
859
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
860
- "\t For the start and end date any available date format can be used."
861
  msgstr ""
862
 
863
- #: includes/daterange_helptexts.php:75
864
  msgid "This value defines a range without any limits."
865
  msgstr "Este valor defina um intervalo sem qualquer limite."
866
 
867
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
868
- #: includes/daterange_helptexts.php:90
869
  #, php-format
870
  msgid "The corresponding date_range format is: %1$s"
871
  msgstr ""
872
 
873
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
874
  msgid "Upcoming"
875
  msgstr "Próximos"
876
 
877
- #: includes/daterange_helptexts.php:82
878
  msgid "This value defines a range from the actual day to the future."
879
  msgstr ""
880
 
881
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
882
  msgid "Past"
883
  msgstr "Passado"
884
 
885
- #: includes/daterange_helptexts.php:89
886
  msgid "This value defines a range from the past to the previous day."
887
  msgstr ""
888
 
889
- #: includes/event.php:124
890
  msgid "No valid start date provided"
891
  msgstr ""
892
 
893
- #: includes/event.php:299 includes/event.php:301
894
- #: includes/sc_event-list.php:298
895
  msgid "read more"
896
  msgstr ""
897
 
898
- #: includes/events_post_type.php:69
899
  msgid "Events"
900
  msgstr "Eventos"
901
 
902
- #: includes/events_post_type.php:70
903
  msgid "Event"
904
  msgstr ""
905
 
906
- #: includes/events_post_type.php:71
907
  msgid "Add New"
908
  msgstr "Adicionar Novo"
909
 
910
- #: includes/events_post_type.php:72
911
  msgid "Add New Event"
912
  msgstr "Adicionar Novo Evento"
913
 
914
- #: includes/events_post_type.php:73
915
  msgid "Edit Event"
916
  msgstr "Editar Evento"
917
 
918
- #: includes/events_post_type.php:74
919
  msgid "New Event"
920
  msgstr ""
921
 
922
- #: includes/events_post_type.php:75
923
  msgid "View Event"
924
  msgstr ""
925
 
926
- #: includes/events_post_type.php:76
927
  msgid "View Events"
928
  msgstr ""
929
 
930
- #: includes/events_post_type.php:77
931
  msgid "Search Events"
932
  msgstr ""
933
 
934
- #: includes/events_post_type.php:79
935
  msgid "No events found in Trash"
936
  msgstr ""
937
 
938
- #: includes/events_post_type.php:81
939
  msgid "All Events"
940
  msgstr "Todos os Eventos"
941
 
942
- #: includes/events_post_type.php:82
943
  msgid "Event Archives"
944
  msgstr ""
945
 
946
- #: includes/events_post_type.php:83
947
  msgid "Event Attributes"
948
  msgstr ""
949
 
950
- #: includes/events_post_type.php:84
951
  msgid "Insert into event"
952
  msgstr ""
953
 
954
- #: includes/events_post_type.php:85
955
  msgid "Uploaded to this event"
956
  msgstr ""
957
 
958
- #: includes/events_post_type.php:86
959
  msgid "Event List"
960
  msgstr "Lista de Eventos"
961
 
962
- #: includes/events_post_type.php:87
963
  msgid "Filter events list"
964
  msgstr ""
965
 
966
- #: includes/events_post_type.php:88
967
  msgid "Events list navigation"
968
  msgstr ""
969
 
970
- #: includes/events_post_type.php:89
971
  msgid "Events list"
972
  msgstr ""
973
 
974
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
975
  msgid "Reset"
976
  msgstr ""
977
 
978
- #: includes/filterbar.php:296
979
  msgid "All"
980
  msgstr "Tudo"
981
 
982
- #: includes/filterbar.php:298
983
  msgid "All Dates"
984
  msgstr ""
985
 
@@ -1419,23 +1423,23 @@ msgid ""
1419
  " switching page from here."
1420
  msgstr ""
1421
 
1422
- #: includes/options.php:73
1423
  msgid "events"
1424
  msgstr ""
1425
 
1426
- #: includes/options.php:77
1427
  msgid "Show content"
1428
  msgstr ""
1429
 
1430
- #: includes/options.php:81
1431
  msgid "Hide content"
1432
  msgstr ""
1433
 
1434
- #: includes/sc_event-list_helptexts.php:8
1435
  msgid "event-id"
1436
  msgstr ""
1437
 
1438
- #: includes/sc_event-list_helptexts.php:9
1439
  #, php-format
1440
  msgid ""
1441
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1443,107 +1447,108 @@ msgid ""
1443
  "this event is shown."
1444
  msgstr ""
1445
 
1446
- #: includes/sc_event-list_helptexts.php:13
1447
- #: includes/sc_event-list_helptexts.php:31
1448
  msgid "year"
1449
  msgstr ""
1450
 
1451
- #: includes/sc_event-list_helptexts.php:14
1452
  msgid ""
1453
  "This attribute defines which events are initially shown. The default is to "
1454
  "show the upcoming events only."
1455
  msgstr ""
1456
 
1457
- #: includes/sc_event-list_helptexts.php:15
1458
  #, php-format
1459
  msgid ""
1460
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1461
  "change the displayed event date range via the filterbar or url parameters."
1462
  msgstr ""
1463
 
1464
- #: includes/sc_event-list_helptexts.php:19
1465
  msgid "category slug"
1466
  msgstr ""
1467
 
1468
- #: includes/sc_event-list_helptexts.php:20
1469
  msgid ""
1470
  "This attribute defines the category of which events are initially shown. The"
1471
  " default is to show events of all categories."
1472
  msgstr ""
1473
 
1474
- #: includes/sc_event-list_helptexts.php:21
1475
  msgid ""
1476
  "Provide a category slug to change this behavior. It is still possible to "
1477
  "change the displayed categories via the filterbar or url parameters."
1478
  msgstr ""
1479
 
1480
- #: includes/sc_event-list_helptexts.php:26
1481
  msgid "This attribute defines the initial order of the events."
1482
  msgstr ""
1483
 
1484
- #: includes/sc_event-list_helptexts.php:27
 
1485
  msgid ""
1486
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1487
  "in the opposite direction (from new to old)."
1488
  msgstr ""
1489
 
1490
- #: includes/sc_event-list_helptexts.php:32
1491
  #, php-format
1492
  msgid ""
1493
  "This attribute defines the dates and date ranges of which events are "
1494
  "displayed. The default is %1$s to show all events."
1495
  msgstr ""
1496
 
1497
- #: includes/sc_event-list_helptexts.php:33
1498
  #, php-format
1499
  msgid ""
1500
  "Filtered events according to %1$s value are not available in the event list."
1501
  msgstr ""
1502
 
1503
- #: includes/sc_event-list_helptexts.php:34
1504
  #, php-format
1505
  msgid ""
1506
  "You can find all available values with a description and examples in the "
1507
  "sections %1$s and %2$s below."
1508
  msgstr ""
1509
 
1510
- #: includes/sc_event-list_helptexts.php:35
1511
  #, php-format
1512
  msgid "See %1$s description if you want to define complex filters."
1513
  msgstr ""
1514
 
1515
- #: includes/sc_event-list_helptexts.php:39
1516
  msgid "category slugs"
1517
  msgstr ""
1518
 
1519
- #: includes/sc_event-list_helptexts.php:40
1520
  msgid ""
1521
  "This attribute defines the category filter which filters the events to show."
1522
  " The default is $1$s or an empty string to show all events."
1523
  msgstr ""
1524
 
1525
- #: includes/sc_event-list_helptexts.php:41
1526
  #, php-format
1527
  msgid ""
1528
  "Events with categories that doesn´t match %1$s are not shown in the event "
1529
  "list. They are also not available if a manual url parameter is added."
1530
  msgstr ""
1531
 
1532
- #: includes/sc_event-list_helptexts.php:42
1533
  #, php-format
1534
  msgid ""
1535
  "The filter is specified via the given category slugs. See %1$s description "
1536
  "if you want to define complex filters."
1537
  msgstr ""
1538
 
1539
- #: includes/sc_event-list_helptexts.php:46
1540
- #: includes/sc_event-list_helptexts.php:111
1541
- #: includes/sc_event-list_helptexts.php:138
1542
- #: includes/sc_event-list_helptexts.php:177
1543
  msgid "number"
1544
  msgstr ""
1545
 
1546
- #: includes/sc_event-list_helptexts.php:47
1547
  #, php-format
1548
  msgid ""
1549
  "This attribute defines how many events should be displayed if upcoming "
@@ -1551,109 +1556,109 @@ msgid ""
1551
  "displayed."
1552
  msgstr ""
1553
 
1554
- #: includes/sc_event-list_helptexts.php:48
1555
  msgid ""
1556
  "Please not that in the actual version there is no pagination of the events "
1557
  "available, so the event list can be very long."
1558
  msgstr ""
1559
 
1560
- #: includes/sc_event-list_helptexts.php:53
1561
  msgid ""
1562
  "This attribute defines if the filterbar should be displayed. The filterbar "
1563
  "allows the users to specify filters for the listed events."
1564
  msgstr ""
1565
 
1566
- #: includes/sc_event-list_helptexts.php:54
1567
  #, php-format
1568
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1569
  msgstr ""
1570
 
1571
- #: includes/sc_event-list_helptexts.php:55
1572
  #, php-format
1573
  msgid ""
1574
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1575
  " in the single event view."
1576
  msgstr ""
1577
 
1578
- #: includes/sc_event-list_helptexts.php:60
1579
  #, php-format
1580
  msgid ""
1581
  "This attribute specifies the available items in the filterbar. This options "
1582
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1583
  msgstr ""
1584
 
1585
- #: includes/sc_event-list_helptexts.php:61
1586
  msgid ""
1587
  "Find below an overview of the available filterbar items and their options:"
1588
  msgstr ""
1589
 
1590
- #: includes/sc_event-list_helptexts.php:64
1591
  msgid "filterbar item"
1592
  msgstr ""
1593
 
1594
- #: includes/sc_event-list_helptexts.php:64
1595
- #: includes/sc_event-list_helptexts.php:96
1596
  msgid "description"
1597
  msgstr ""
1598
 
1599
- #: includes/sc_event-list_helptexts.php:64
1600
  msgid "item options"
1601
  msgstr ""
1602
 
1603
- #: includes/sc_event-list_helptexts.php:64
1604
  msgid "option values"
1605
  msgstr ""
1606
 
1607
- #: includes/sc_event-list_helptexts.php:64
1608
  msgid "default value"
1609
  msgstr ""
1610
 
1611
- #: includes/sc_event-list_helptexts.php:64
1612
  msgid "option description"
1613
  msgstr ""
1614
 
1615
- #: includes/sc_event-list_helptexts.php:67
1616
  msgid ""
1617
  "Show a list of all available years. Additional there are some special "
1618
  "entries available (see item options)."
1619
  msgstr ""
1620
 
1621
- #: includes/sc_event-list_helptexts.php:71
1622
- #: includes/sc_event-list_helptexts.php:82
1623
  msgid "Add an entry to show all events."
1624
  msgstr ""
1625
 
1626
- #: includes/sc_event-list_helptexts.php:73
1627
- #: includes/sc_event-list_helptexts.php:84
1628
  msgid "Add an entry to show all upcoming events."
1629
  msgstr ""
1630
 
1631
- #: includes/sc_event-list_helptexts.php:74
1632
- #: includes/sc_event-list_helptexts.php:85
1633
  msgid "Add an entry to show events in the past."
1634
  msgstr ""
1635
 
1636
- #: includes/sc_event-list_helptexts.php:75
1637
  msgid "Set descending or ascending order of year entries."
1638
  msgstr ""
1639
 
1640
- #: includes/sc_event-list_helptexts.php:78
1641
  msgid "Show a list of all available months."
1642
  msgstr ""
1643
 
1644
- #: includes/sc_event-list_helptexts.php:86
1645
  msgid "Set descending or ascending order of month entries."
1646
  msgstr ""
1647
 
1648
- #: includes/sc_event-list_helptexts.php:87
1649
  msgid "php date-formats"
1650
  msgstr ""
1651
 
1652
- #: includes/sc_event-list_helptexts.php:87
1653
  msgid "Set the displayed date format of the month entries."
1654
  msgstr ""
1655
 
1656
- #: includes/sc_event-list_helptexts.php:88
1657
  #, php-format
1658
  msgid ""
1659
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
@@ -1661,65 +1666,65 @@ msgid ""
1661
  "order."
1662
  msgstr ""
1663
 
1664
- #: includes/sc_event-list_helptexts.php:88
1665
  #, php-format
1666
  msgid ""
1667
  "Specifies the displayed values and their order. The items must be seperated "
1668
  "by %1$s."
1669
  msgstr ""
1670
 
1671
- #: includes/sc_event-list_helptexts.php:89
1672
  msgid "Show a list of all available categories."
1673
  msgstr ""
1674
 
1675
- #: includes/sc_event-list_helptexts.php:89
1676
  msgid "Add an entry to show events from all categories."
1677
  msgstr ""
1678
 
1679
- #: includes/sc_event-list_helptexts.php:90
1680
  msgid "A link to reset the eventlist filter to standard."
1681
  msgstr ""
1682
 
1683
- #: includes/sc_event-list_helptexts.php:90
1684
  msgid "any text"
1685
  msgstr ""
1686
 
1687
- #: includes/sc_event-list_helptexts.php:90
1688
  msgid "Set the caption of the link."
1689
  msgstr ""
1690
 
1691
- #: includes/sc_event-list_helptexts.php:93
1692
  msgid "Find below an overview of the available filterbar display options:"
1693
  msgstr ""
1694
 
1695
- #: includes/sc_event-list_helptexts.php:96
1696
  msgid "display option"
1697
  msgstr ""
1698
 
1699
- #: includes/sc_event-list_helptexts.php:96
1700
  msgid "available for"
1701
  msgstr ""
1702
 
1703
- #: includes/sc_event-list_helptexts.php:97
1704
  #, php-format
1705
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1706
  msgstr ""
1707
 
1708
- #: includes/sc_event-list_helptexts.php:98
1709
  msgid ""
1710
  "Shows a select box where an item can be choosen. After the selection of an "
1711
  "item the page is reloaded via javascript to show the filtered events."
1712
  msgstr ""
1713
 
1714
- #: includes/sc_event-list_helptexts.php:99
1715
  msgid "Shows a simple link which can be clicked."
1716
  msgstr ""
1717
 
1718
- #: includes/sc_event-list_helptexts.php:102
1719
  msgid "Find below some declaration examples with descriptions:"
1720
  msgstr ""
1721
 
1722
- #: includes/sc_event-list_helptexts.php:104
1723
  #, php-format
1724
  msgid ""
1725
  "In this example you can see that the filterbar item and the used display "
@@ -1727,22 +1732,22 @@ msgid ""
1727
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1728
  msgstr ""
1729
 
1730
- #: includes/sc_event-list_helptexts.php:106
1731
  #, php-format
1732
  msgid ""
1733
  "In this example you can see that filterbar options can be added in brackets "
1734
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1735
  msgstr ""
1736
 
1737
- #: includes/sc_event-list_helptexts.php:106
1738
  msgid "option_name"
1739
  msgstr ""
1740
 
1741
- #: includes/sc_event-list_helptexts.php:106
1742
  msgid "value"
1743
  msgstr ""
1744
 
1745
- #: includes/sc_event-list_helptexts.php:107
1746
  #, php-format
1747
  msgid ""
1748
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
@@ -1751,134 +1756,134 @@ msgid ""
1751
  "left-aligned and the reset link will be on the right side."
1752
  msgstr ""
1753
 
1754
- #: includes/sc_event-list_helptexts.php:112
1755
- #: includes/sc_event-list_helptexts.php:139
1756
  msgid ""
1757
  "This attribute specifies if the title should be truncated to the given "
1758
  "number of characters in the event list."
1759
  msgstr ""
1760
 
1761
- #: includes/sc_event-list_helptexts.php:113
1762
- #: includes/sc_event-list_helptexts.php:140
1763
  #, php-format
1764
  msgid ""
1765
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1766
  "is automatically truncated via css."
1767
  msgstr ""
1768
 
1769
- #: includes/sc_event-list_helptexts.php:114
1770
- #: includes/sc_event-list_helptexts.php:141
1771
- #: includes/sc_event-list_helptexts.php:180
1772
  msgid "This attribute has no influence if only a single event is shown."
1773
  msgstr ""
1774
 
1775
- #: includes/sc_event-list_helptexts.php:120
1776
  msgid ""
1777
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1778
- "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1779
- "\t With \"event_list_only\" the starttime 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:130
1783
  msgid ""
1784
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1785
- "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1786
- "\t With \"event_list_only\" the location 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:147
1790
  msgid ""
1791
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1792
- "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1793
- "\t With \"event_list_only\" the categories are 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:157
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:167
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:178
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 ""
1817
 
1818
- #: includes/sc_event-list_helptexts.php:179
1819
  #, php-format
1820
  msgid "With the standard value %1$s the full text is displayed."
1821
  msgstr ""
1822
 
1823
- #: includes/sc_event-list_helptexts.php:186
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:197
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"
1835
- "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
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:208
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"
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 />\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:220
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:231
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:243
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:154
1870
  msgid "Sorry, the requested event is not available!"
1871
  msgstr ""
1872
 
1873
- #: includes/sc_event-list.php:163
1874
  msgid "Event Information:"
1875
  msgstr "Informação do Evento:"
1876
 
1877
- #: includes/sc_event-list.php:405
1878
  msgid "Link to RSS feed"
1879
  msgstr ""
1880
 
1881
- #: includes/sc_event-list.php:414
1882
  msgid "Link to iCal feed"
1883
  msgstr ""
1884
 
@@ -1911,133 +1916,133 @@ msgstr "Número de próximos eventos a exibir"
1911
  msgid "Truncate event title to"
1912
  msgstr "Truncar título do evento em"
1913
 
1914
- #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65
1915
- #: includes/widget_helptexts.php:93
1916
  msgid "characters"
1917
  msgstr "caracteres"
1918
 
1919
- #: includes/widget_helptexts.php:38
1920
  msgid ""
1921
  "This option defines the number of displayed characters for the event title."
1922
  msgstr ""
1923
 
1924
- #: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67
1925
  #, php-format
1926
  msgid ""
1927
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1928
  "automatically truncate the text via css."
1929
  msgstr ""
1930
 
1931
- #: includes/widget_helptexts.php:46
1932
  msgid "Show event starttime"
1933
  msgstr "Exibir data de início do evento"
1934
 
1935
- #: includes/widget_helptexts.php:48
1936
  msgid "This option defines if the event start time will be displayed."
1937
  msgstr ""
1938
 
1939
- #: includes/widget_helptexts.php:55
1940
  msgid "Show event location"
1941
  msgstr "Exibir localização do evento"
1942
 
1943
- #: includes/widget_helptexts.php:57
1944
  msgid "This option defines if the event location will be displayed."
1945
  msgstr ""
1946
 
1947
- #: includes/widget_helptexts.php:64
1948
  msgid "Truncate location to"
1949
  msgstr "Truncar localização em"
1950
 
1951
- #: includes/widget_helptexts.php:66
1952
  msgid ""
1953
  "If the event location is diplayed this option defines the number of "
1954
  "displayed characters."
1955
  msgstr ""
1956
 
1957
- #: includes/widget_helptexts.php:74
1958
  msgid "Show event excerpt"
1959
  msgstr ""
1960
 
1961
- #: includes/widget_helptexts.php:76
1962
  msgid "This option defines if the event excerpt will be displayed."
1963
  msgstr ""
1964
 
1965
- #: includes/widget_helptexts.php:83
1966
  msgid "Show event content"
1967
  msgstr ""
1968
 
1969
- #: includes/widget_helptexts.php:85
1970
  msgid "This option defines if the event content will be displayed."
1971
  msgstr ""
1972
 
1973
- #: includes/widget_helptexts.php:92
1974
  msgid "Truncate content to"
1975
  msgstr ""
1976
 
1977
- #: includes/widget_helptexts.php:94
1978
  msgid ""
1979
  "If the event content are diplayed this option defines the number of diplayed"
1980
  " characters."
1981
  msgstr ""
1982
 
1983
- #: includes/widget_helptexts.php:95
1984
  #, php-format
1985
  msgid "Set this value to %1$s to view the full text."
1986
  msgstr ""
1987
 
1988
- #: includes/widget_helptexts.php:102
1989
  msgid "URL to the linked Event List page"
1990
  msgstr "URL para página associada ao Event List"
1991
 
1992
- #: includes/widget_helptexts.php:104
1993
  msgid ""
1994
  "This option defines the url to the linked Event List page. This option is "
1995
  "required if you want to use one of the options below."
1996
  msgstr ""
1997
 
1998
- #: includes/widget_helptexts.php:111
1999
  msgid "Shortcode ID on linked page"
2000
  msgstr "ID do Shortcode na página associada"
2001
 
2002
- #: includes/widget_helptexts.php:113
2003
  msgid ""
2004
  "This option defines the shortcode-id for the Event List on the linked page. "
2005
  "Normally the standard value 1 is correct, you only have to change it if you "
2006
  "use multiple event-list shortcodes on the linked page."
2007
  msgstr ""
2008
 
2009
- #: includes/widget_helptexts.php:122
2010
  msgid ""
2011
  "With this option you can add a link to the single event page for every "
2012
  "displayed event. You have to specify the url to the page and the shortcode "
2013
  "id option if you want to use it."
2014
  msgstr ""
2015
 
2016
- #: includes/widget_helptexts.php:131
2017
  msgid ""
2018
  "With this option you can add a link to the event-list page below the "
2019
  "diplayed events. You have to specify the url to page option if you want to "
2020
  "use it."
2021
  msgstr ""
2022
 
2023
- #: includes/widget_helptexts.php:138
2024
  msgid "Caption for the link"
2025
  msgstr "Legenda para o link"
2026
 
2027
- #: includes/widget_helptexts.php:140
2028
  msgid ""
2029
  "This option defines the text for the link to the Event List page if the "
2030
  "approriate option is selected."
2031
  msgstr ""
2032
 
2033
- #: includes/widget.php:21
2034
  msgid "With this widget a list of upcoming events can be displayed."
2035
  msgstr ""
2036
 
2037
- #: includes/widget.php:26
2038
  msgid "Upcoming events"
2039
  msgstr "Próximos eventos"
2040
 
2041
- #: includes/widget.php:40
2042
  msgid "show events page"
2043
  msgstr "exibir página de eventos"
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
10
  msgstr ""
11
  "Project-Id-Version: wp-event-list\n"
12
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
13
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
14
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
15
  "Last-Translator: mibuthu\n"
16
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
17
  "MIME-Version: 1.0\n"
20
  "Language: pt_BR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
 
23
+ #: admin/admin.php:90
24
  #, php-format
25
  msgid "Errors during upgrade of plugin %1$s"
26
  msgstr ""
27
 
28
+ #: admin/admin.php:90
29
  #, php-format
30
  msgid "Upgrade of plugin %1$s successful"
31
  msgstr ""
32
 
33
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
34
  msgid "Event List Settings"
35
  msgstr "Configurações da Lista de Eventos"
36
 
37
+ #: admin/admin.php:142
38
  msgid "Settings"
39
  msgstr "Configurações"
40
 
41
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
42
  msgid "About Event List"
43
  msgstr "Sobre o Lista de Eventos"
44
 
45
+ #: admin/admin.php:146
46
  msgid "About"
47
  msgstr "Sobre"
48
 
49
+ #: admin/admin.php:170
50
  #, php-format
51
  msgid "%s Event"
52
  msgid_plural "%s Events"
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
57
  msgid "General"
58
  msgstr "Geral"
59
 
60
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
61
+ #: admin/includes/admin-about.php:137
62
  msgid "Shortcode Attributes"
63
  msgstr "Atributos de Shortcode"
64
 
65
+ #: admin/includes/admin-about.php:102
66
  msgid "Help and Instructions"
67
  msgstr "Ajuda e Instruções"
68
 
69
+ #: admin/includes/admin-about.php:103
70
  #, php-format
71
  msgid "You can manage the events %1$shere%2$s"
72
  msgstr "Você pode gerenciar os eventos %1$saqui%2$s"
73
 
74
+ #: admin/includes/admin-about.php:104
75
  msgid "To show the events on your site you have 2 possibilities"
76
  msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site"
77
 
78
+ #: admin/includes/admin-about.php:105
79
  #, php-format
80
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
81
  msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post"
82
 
83
+ #: admin/includes/admin-about.php:106
84
  #, php-format
85
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
86
  msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars"
87
 
88
+ #: admin/includes/admin-about.php:107
89
  msgid ""
90
  "The displayed events and their style can be modified with the available "
91
  "widget settings and the available attributes for the shortcode."
92
  msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configurações disponíveis do widget e os atributos disponíveis para o shortcode."
93
 
94
+ #: admin/includes/admin-about.php:108
95
  #, php-format
96
  msgid ""
97
  "A list of all available shortcode attributes with their descriptions is "
98
  "available in the %1$s tab."
99
  msgstr "A lista de todos os atributos de Shortcode disponíveis com suas descrições está na %1$saba."
100
 
101
+ #: admin/includes/admin-about.php:109
102
  msgid "The available widget options are described in their tooltip text."
103
  msgstr "As opções de widgets disponíveis são descritas em suas dicas."
104
 
105
+ #: admin/includes/admin-about.php:110
106
  #, php-format
107
  msgid ""
108
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
109
  " to insert an URL to the linked event-list page."
110
  msgstr "Se você habilitar uma das opções de links (%1$s ou %2$s) no widget, você deverá inserir uma URL para a página de lista de eventos linkada."
111
 
112
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
113
  msgid "Add links to the single events"
114
  msgstr "Adicionar links para os eventos individuais"
115
 
116
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
117
  msgid "Add a link to the Event List page"
118
  msgstr "Adicionar um link para a Página de Lista de Eventos"
119
 
120
+ #: admin/includes/admin-about.php:111
121
  msgid ""
122
  "This is required because the widget does not know in which page or post the "
123
  "shortcode was included."
124
  msgstr "Isto é necessário porque o widget não sabe em qual página ou post o shortcode foi incluído."
125
 
126
+ #: admin/includes/admin-about.php:112
127
  msgid ""
128
  "Additionally you have to insert the correct Shortcode id on the linked page."
129
  " This id describes which shortcode should be used on the given page or post "
130
  "if you have more than one."
131
  msgstr "Adicionalmente você deve inserir o ID correto do Shortcode na página linkada. Este ID descreve qual Shortcode deverá ser usado no post ou página especificada caso haja mais de um."
132
 
133
+ #: admin/includes/admin-about.php:113
134
  #, php-format
135
  msgid ""
136
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
138
  "link on your linked page or post."
139
  msgstr "O valor padrão de %1$s normalmente está ok (para páginas com apenas 1 shortcode), mas se necessário, você pode conferir o ID olhando na URL de um link de evento na sua página linkada ou post."
140
 
141
+ #: admin/includes/admin-about.php:114
142
  #, php-format
143
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
144
  msgstr "O ID está disponível no final dos parâmetros da URL (ex. %1$s)."
145
 
146
+ #: admin/includes/admin-about.php:116
147
  #, php-format
148
  msgid ""
149
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
150
  "want."
151
  msgstr "Tenha certeza de também checar o %1$s para garantir que o plugin se comporte como você deseja."
152
 
153
+ #: admin/includes/admin-about.php:116
154
  msgid "Settings page"
155
  msgstr "Configurações"
156
 
157
+ #: admin/includes/admin-about.php:123
158
  msgid "About the plugin author"
159
  msgstr "Sobre o autor do plugin"
160
 
161
+ #: admin/includes/admin-about.php:125
162
  #, php-format
163
  msgid ""
164
  "This plugin is developed by %1$s, you can find more information about the "
165
  "plugin on the %2$s."
166
  msgstr "Este plugin foi desenvolvido por %1$s, mais informações sobre o plugin poderão ser encontradas em %2$s."
167
 
168
+ #: admin/includes/admin-about.php:125
169
  msgid "WordPress plugin site"
170
  msgstr ""
171
 
172
+ #: admin/includes/admin-about.php:126
173
  #, php-format
174
  msgid "If you like the plugin please rate it on the %1$s."
175
  msgstr "Se você gostou deste plugin, favor dar uma nota no %1$s."
176
 
177
+ #: admin/includes/admin-about.php:126
178
  msgid "WordPress plugin review site"
179
  msgstr ""
180
 
181
+ #: admin/includes/admin-about.php:127
182
  msgid ""
183
  "If you want to support the plugin I would be happy to get a small donation"
184
  msgstr "Caso haja interesse em dar suporte ao desenvolvimento deste plugin, uma pequena doação será excelente!"
185
 
186
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
187
+ #: admin/includes/admin-about.php:130
188
  #, php-format
189
  msgid "Donate with %1$s"
190
  msgstr ""
191
 
192
+ #: admin/includes/admin-about.php:139
193
  msgid ""
194
  "You have the possibility to modify the output if you add some of the "
195
  "following attributes to the shortcode."
196
  msgstr "Você tem a possibilidade de modificar o resultado adicionando alguns dos atributos a seguir ao Shortcode."
197
 
198
+ #: admin/includes/admin-about.php:140
199
  #, php-format
200
  msgid ""
201
  "You can combine and add as much attributes as you want. E.g. the shortcode "
202
  "including the attributes %1$s and %2$s would looks like this:"
203
  msgstr "Você pode combinar e adicionar quantos atributos desejar. Ex.: O shortcode que inclui oa atributos %1$s e %2$s ficará assim:"
204
 
205
+ #: admin/includes/admin-about.php:142
206
  msgid ""
207
  "Below you can find a list of all supported attributes with their "
208
  "descriptions and available options:"
209
  msgstr "Abaixo encontra-se uma lista de todos os atributos suportados com suas descrições e opções disponíveis:"
210
 
211
+ #: admin/includes/admin-about.php:157
212
  msgid "Attribute name"
213
  msgstr "Nome do atributo"
214
 
215
+ #: admin/includes/admin-about.php:158
216
  msgid "Value options"
217
  msgstr "Opções de valor"
218
 
219
+ #: admin/includes/admin-about.php:159
220
  msgid "Default value"
221
  msgstr "Valor padrão"
222
 
223
+ #: admin/includes/admin-about.php:160
224
  msgid "Description"
225
  msgstr "Descrição"
226
 
227
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
228
+ #: includes/sc_event-list_helptexts.php:91
229
  msgid "Filter Syntax"
230
  msgstr "Sintaxe do Filtro"
231
 
232
+ #: admin/includes/admin-about.php:180
233
  msgid ""
234
  "For date and cat filters you can specify complex filters with the following "
235
  "syntax:"
236
  msgstr ""
237
 
238
+ #: admin/includes/admin-about.php:181
239
  #, php-format
240
  msgid ""
241
  "You can use %1$s and %2$s connections to define complex filters. "
242
  "Additionally you can set brackets %3$s for nested queries."
243
  msgstr ""
244
 
245
+ #: admin/includes/admin-about.php:181
246
  msgid "AND"
247
  msgstr "E"
248
 
249
+ #: admin/includes/admin-about.php:181
250
  msgid "OR"
251
  msgstr "OU"
252
 
253
+ #: admin/includes/admin-about.php:181
254
  msgid "or"
255
  msgstr "ou"
256
 
257
+ #: admin/includes/admin-about.php:181
258
  msgid "and"
259
  msgstr "e"
260
 
261
+ #: admin/includes/admin-about.php:182
262
  msgid "Examples for cat filters:"
263
  msgstr ""
264
 
265
+ #: admin/includes/admin-about.php:183
266
  #, php-format
267
  msgid "Show all events with category %1$s."
268
  msgstr ""
269
 
270
+ #: admin/includes/admin-about.php:184
271
  #, php-format
272
  msgid "Show all events with category %1$s or %2$s."
273
  msgstr ""
274
 
275
+ #: admin/includes/admin-about.php:185
276
  #, php-format
277
  msgid ""
278
  "Show all events with category %1$s and all events where category %2$s as "
279
  "well as %3$s is selected."
280
  msgstr ""
281
 
282
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
283
  msgid "Available Date Formats"
284
  msgstr ""
285
 
286
+ #: admin/includes/admin-about.php:192
287
  msgid "For date filters you can use the following date formats:"
288
  msgstr ""
289
 
290
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
291
  msgid "Available Date Range Formats"
292
  msgstr ""
293
 
294
+ #: admin/includes/admin-about.php:202
295
  msgid "For date filters you can use the following daterange formats:"
296
  msgstr ""
297
 
298
+ #: admin/includes/admin-about.php:215
299
  msgid "Value"
300
  msgstr "Valor"
301
 
302
+ #: admin/includes/admin-about.php:219
303
  msgid "Example"
304
  msgstr "Exemplo"
305
 
306
+ #: admin/includes/admin-categories.php:79
307
  msgid "Synchronize with post categories"
308
  msgstr ""
309
 
310
+ #: admin/includes/admin-categories.php:90
311
  #, php-format
312
  msgid "%1$s categories modified (%2$s)"
313
  msgstr ""
314
 
315
+ #: admin/includes/admin-categories.php:91
316
  #, php-format
317
  msgid "%1$s categories added (%2$s)"
318
  msgstr ""
319
 
320
+ #: admin/includes/admin-categories.php:92
321
  #, php-format
322
  msgid "%1$s categories deleted (%2$s)"
323
  msgstr ""
324
 
325
+ #: admin/includes/admin-categories.php:95
326
  #, php-format
327
  msgid "%1$s categories not modified (%2$s)"
328
  msgstr ""
329
 
330
+ #: admin/includes/admin-categories.php:96
331
  #, php-format
332
  msgid "%1$s categories not added (%2$s)"
333
  msgstr ""
334
 
335
+ #: admin/includes/admin-categories.php:97
336
  #, php-format
337
  msgid "%1$s categories not deleted (%2$s)"
338
  msgstr ""
339
 
340
+ #: admin/includes/admin-categories.php:100
341
  msgid "An Error occured during the category sync"
342
  msgstr ""
343
 
344
+ #: admin/includes/admin-categories.php:103
345
  msgid "Category sync finished"
346
  msgstr ""
347
 
348
+ #: admin/includes/admin-category-sync.php:77
349
  msgid "Error: You are not allowed to view this page!"
350
  msgstr ""
351
 
352
+ #: admin/includes/admin-category-sync.php:93
353
  msgid "Affected Categories when switching to seperate Event Categories"
354
  msgstr ""
355
 
356
+ #: admin/includes/admin-category-sync.php:94
357
  msgid "Switch option to seperate Event Categories"
358
  msgstr ""
359
 
360
+ #: admin/includes/admin-category-sync.php:95
361
  msgid ""
362
  "If you proceed, all post categories will be copied and all events will be "
363
  "re-assigned to this new categories."
364
  msgstr ""
365
 
366
+ #: admin/includes/admin-category-sync.php:96
367
  msgid ""
368
  "Afterwards the event categories are independent of the post categories."
369
  msgstr ""
370
 
371
+ #: admin/includes/admin-category-sync.php:98
372
  msgid "Affected Categories when switching to use Post Categories for events"
373
  msgstr ""
374
 
375
+ #: admin/includes/admin-category-sync.php:99
376
  msgid "Switch option to use Post Categories for events"
377
  msgstr ""
378
 
379
+ #: admin/includes/admin-category-sync.php:100
380
  msgid ""
381
  "Take a detailed look at the affected categories above before you proceed! "
382
  "All seperate event categories will be deleted, this cannot be undone!"
383
  msgstr ""
384
 
385
+ #: admin/includes/admin-category-sync.php:103
386
  msgid "Event Categories: Synchronise with Post Categories"
387
  msgstr ""
388
 
389
+ #: admin/includes/admin-category-sync.php:104
390
  msgid "Start synchronisation"
391
  msgstr ""
392
 
393
+ #: admin/includes/admin-category-sync.php:105
394
  msgid ""
395
  "If this option is enabled the above listed categories will be deleted and "
396
  "removed from the existing events!"
397
  msgstr ""
398
 
399
+ #: admin/includes/admin-category-sync.php:120
400
  msgid "Categories to modify"
401
  msgstr ""
402
 
403
+ #: admin/includes/admin-category-sync.php:121
404
  msgid "Categories to add"
405
  msgstr ""
406
 
407
+ #: admin/includes/admin-category-sync.php:122
408
  msgid "Categories to delete (optional)"
409
  msgstr ""
410
 
411
+ #: admin/includes/admin-category-sync.php:123
412
  msgid "Delete not available post categories"
413
  msgstr ""
414
 
415
+ #: admin/includes/admin-category-sync.php:126
416
  msgid "Categories with differences"
417
  msgstr ""
418
 
419
+ #: admin/includes/admin-category-sync.php:127
420
  msgid "Categories to add (optional)"
421
  msgstr ""
422
 
423
+ #: admin/includes/admin-category-sync.php:128
424
  msgid "Add not available post categories"
425
  msgstr ""
426
 
427
+ #: admin/includes/admin-category-sync.php:147
428
  msgid "none"
429
  msgstr ""
430
 
431
+ #: admin/includes/admin-import.php:91
432
  msgid "Import Events"
433
  msgstr "Importar Eventos"
434
 
435
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
436
+ #: admin/includes/admin-import.php:254
437
  msgid "Step"
438
  msgstr "Passo"
439
 
440
+ #: admin/includes/admin-import.php:110
441
  msgid "Set import file and options"
442
  msgstr "Informar arquivo de importação e opções"
443
 
444
+ #: admin/includes/admin-import.php:113
445
  #, php-format
446
  msgid "Proceed with Step %1$s"
447
  msgstr ""
448
 
449
+ #: admin/includes/admin-import.php:116
450
  msgid "Example file"
451
  msgstr "Arquivo de exemplo"
452
 
453
+ #: admin/includes/admin-import.php:117
454
  #, php-format
455
  msgid ""
456
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
457
  msgstr ""
458
 
459
+ #: admin/includes/admin-import.php:118
460
  msgid "Note"
461
  msgstr "Nota"
462
 
463
+ #: admin/includes/admin-import.php:118
464
  msgid ""
465
  "Do not change the column header and separator line (first two lines), "
466
  "otherwise the import will fail!"
467
  msgstr ""
468
 
469
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
470
  msgid "Sorry, there has been an error."
471
  msgstr ""
472
 
473
+ #: admin/includes/admin-import.php:129
474
  msgid "The file does not exist, please try again."
475
  msgstr ""
476
 
477
+ #: admin/includes/admin-import.php:138
478
  msgid "The uploaded file does not have the required csv extension."
479
  msgstr ""
480
 
481
+ #: admin/includes/admin-import.php:150
482
  msgid "Events review and additonal category selection"
483
  msgstr ""
484
 
485
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
486
  msgid "Error"
487
  msgstr ""
488
 
489
+ #: admin/includes/admin-import.php:156
490
  msgid "This CSV file cannot be imported"
491
  msgstr ""
492
 
493
+ #: admin/includes/admin-import.php:167
494
  msgid "None of the events in this CSV file can be imported"
495
  msgstr ""
496
 
497
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
498
  msgid "Warning"
499
  msgstr ""
500
 
501
+ #: admin/includes/admin-import.php:172
502
  #, php-format
503
  msgid "There is %1$s event which cannot be imported"
504
  msgid_plural "There are %1$s events which cannot be imported"
505
  msgstr[0] ""
506
  msgstr[1] ""
507
 
508
+ #: admin/includes/admin-import.php:184
509
  #, php-format
510
  msgid "CSV line %1$s"
511
  msgstr ""
512
 
513
+ #: admin/includes/admin-import.php:194
514
  msgid "You can still import all other events listed below."
515
  msgstr ""
516
 
517
+ #: admin/includes/admin-import.php:213
518
  msgid ""
519
  "The following category slugs are not available and will be removed from the "
520
  "imported events"
521
  msgstr ""
522
 
523
+ #: admin/includes/admin-import.php:219
524
  msgid ""
525
  "If you want to keep these categories, please create these Categories first "
526
  "and do the import afterwards."
527
  msgstr ""
528
 
529
+ #: admin/includes/admin-import.php:254
530
  msgid "Import result"
531
  msgstr ""
532
 
533
+ #: admin/includes/admin-import.php:257
534
  #, php-format
535
  msgid "Import of %1$s events successful!"
536
  msgstr ""
537
 
538
+ #: admin/includes/admin-import.php:258
539
  msgid "Go back to All Events"
540
  msgstr "Voltar para Todos os Eventos"
541
 
542
+ #: admin/includes/admin-import.php:261
543
  msgid "Errors during Import"
544
  msgstr ""
545
 
546
+ #: admin/includes/admin-import.php:269
547
  msgid "Event from CSV-line"
548
  msgstr ""
549
 
550
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
551
  #: includes/widget_helptexts.php:9
552
  msgid "Title"
553
  msgstr "Título"
554
 
555
+ #: admin/includes/admin-import.php:282
556
  msgid "Start Date"
557
  msgstr "Início"
558
 
559
+ #: admin/includes/admin-import.php:283
560
  msgid "End Date"
561
  msgstr "Término"
562
 
563
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
564
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
565
  msgid "Time"
566
  msgstr "Hora"
567
 
568
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
569
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
570
  #: includes/options_helptexts.php:76
571
  msgid "Location"
572
  msgstr "Localização"
573
 
574
+ #: admin/includes/admin-import.php:286
575
  msgid "Content"
576
  msgstr ""
577
 
578
+ #: admin/includes/admin-import.php:287
579
  msgid "Category slugs"
580
  msgstr ""
581
 
582
+ #: admin/includes/admin-import.php:333
583
  msgid "Header line is missing or not correct!"
584
  msgstr ""
585
 
586
+ #: admin/includes/admin-import.php:334
587
  #, php-format
588
  msgid ""
589
  "Have a look at the %1$sexample file%2$s to see the correct header line "
590
  "format."
591
  msgstr ""
592
 
593
+ #: admin/includes/admin-import.php:341
594
  #, php-format
595
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
596
  msgstr ""
597
 
598
+ #: admin/includes/admin-import.php:371
599
  msgid "Empty event title found"
600
  msgstr ""
601
 
602
+ #: admin/includes/admin-import.php:377
603
  msgid "Wrong date format for startdate"
604
  msgstr ""
605
 
606
+ #: admin/includes/admin-import.php:385
607
  msgid "Wrong date format for enddate"
608
  msgstr ""
609
 
610
+ #: admin/includes/admin-import.php:439
611
  msgid "Import events"
612
  msgstr ""
613
 
614
+ #: admin/includes/admin-import.php:440
615
  msgid "Add additional categories"
616
  msgstr ""
617
 
618
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
619
  msgid "No events found"
620
  msgstr ""
621
 
622
+ #: admin/includes/admin-import.php:518
623
  msgid "Saving of event failed!"
624
  msgstr ""
625
 
626
+ #: admin/includes/admin-main.php:108
627
  msgid "Event Date"
628
  msgstr ""
629
 
630
+ #: admin/includes/admin-main.php:113
631
  msgid "Author"
632
  msgstr "Autor"
633
 
634
+ #: admin/includes/admin-main.php:182
635
  #, php-format
636
  msgid "Add a copy of %1$s"
637
  msgstr ""
638
 
639
+ #: admin/includes/admin-main.php:182
640
  msgid "Copy"
641
  msgstr ""
642
 
643
+ #: admin/includes/admin-main.php:268
644
+ msgid "Import"
645
+ msgstr "Importar"
646
+
647
+ #: admin/includes/admin-new.php:83
648
  msgid "Event data"
649
  msgstr ""
650
 
651
+ #: admin/includes/admin-new.php:116
652
  msgid "Add Copy"
653
  msgstr ""
654
 
655
+ #: admin/includes/admin-new.php:124
656
  msgid "Date"
657
  msgstr "Data"
658
 
659
+ #: admin/includes/admin-new.php:124
660
  msgid "required"
661
  msgstr "obrigatório"
662
 
663
+ #: admin/includes/admin-new.php:127
664
  msgid "Multi-Day Event"
665
  msgstr "Evento de vários dias"
666
 
667
+ #: admin/includes/admin-new.php:147
668
  msgid "Event Title"
669
  msgstr ""
670
 
671
+ #: admin/includes/admin-new.php:164
672
  msgid "Event Content"
673
  msgstr ""
674
 
675
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
676
  msgid "Event updated."
677
  msgstr ""
678
 
679
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
680
  msgid "View event"
681
  msgstr ""
682
 
683
+ #: admin/includes/admin-new.php:246
684
  #, php-format
685
  msgid "Event restored to revision from %1$s"
686
  msgstr ""
687
 
688
+ #: admin/includes/admin-new.php:247
689
  msgid "Event published."
690
  msgstr ""
691
 
692
+ #: admin/includes/admin-new.php:248
693
+ msgid "Event saved."
694
+ msgstr ""
695
+
696
+ #: admin/includes/admin-new.php:249
697
  msgid "Event submitted."
698
  msgstr ""
699
 
700
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
701
+ #: admin/includes/admin-new.php:253
702
  msgid "Preview event"
703
  msgstr ""
704
 
705
+ #: admin/includes/admin-new.php:251
706
  #, php-format
707
  msgid "Event scheduled for: %1$s>"
708
  msgstr ""
709
 
710
+ #: admin/includes/admin-new.php:253
711
  msgid "Event draft updated."
712
  msgstr ""
713
 
714
+ #: admin/includes/admin-settings.php:97
715
  msgid "Go to Event Category switching page"
716
  msgstr ""
717
 
718
+ #: admin/includes/admin-settings.php:111
719
  msgid "Frontend Settings"
720
  msgstr "Configurações de Frontend"
721
 
722
+ #: admin/includes/admin-settings.php:112
723
  msgid "Admin Page Settings"
724
  msgstr "Configurações do Administrador"
725
 
726
+ #: admin/includes/admin-settings.php:113
727
  msgid "Feed Settings"
728
  msgstr "Configurações de Feed"
729
 
730
+ #: admin/includes/admin-settings.php:114
731
  msgid "Category Taxonomy"
732
  msgstr ""
733
 
735
  msgid "Year"
736
  msgstr "Ano"
737
 
738
+ #: includes/daterange_helptexts.php:10
739
  msgid "A year can be specified in 4 digit format."
740
  msgstr "Um ano pode ser especificado em formato de 4 dígitos."
741
 
742
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
743
+ #: includes/daterange_helptexts.php:95
744
  #, php-format
745
  msgid ""
746
  "For a start date filter the first day of %1$s is used, in an end date the "
747
  "last day."
748
  msgstr ""
749
 
750
+ #: includes/daterange_helptexts.php:13
751
  msgid "the resulting year"
752
  msgstr "o ano resultado"
753
 
754
+ #: includes/daterange_helptexts.php:19
755
  msgid "Month"
756
  msgstr "Mês"
757
 
758
+ #: includes/daterange_helptexts.php:21
759
  msgid ""
760
  "A month can be specified with 4 digits for the year and 2 digits for the "
761
  "month, seperated by a hyphen (-)."
762
  msgstr ""
763
 
764
+ #: includes/daterange_helptexts.php:24
765
  msgid "the resulting month"
766
  msgstr "o mês resultado"
767
 
768
+ #: includes/daterange_helptexts.php:30
769
  msgid "Day"
770
  msgstr "Dia"
771
 
772
+ #: includes/daterange_helptexts.php:31
773
  msgid ""
774
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
775
  " month and 2 digets for the day, seperated by hyphens (-)."
776
  msgstr ""
777
 
778
+ #: includes/daterange_helptexts.php:36
779
  msgid "Relative Year"
780
  msgstr "Ano Relativo"
781
 
782
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
783
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
784
  #, php-format
785
  msgid "%1$s from now can be specified in the following notation: %2$s"
786
  msgstr ""
787
 
788
+ #: includes/daterange_helptexts.php:40
789
  msgid "A relative year"
790
  msgstr "Um ano relativo"
791
 
792
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
793
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
794
  #, php-format
795
  msgid ""
796
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
797
  "%3$s or %4$s attached (see also the example below)."
798
  msgstr ""
799
 
800
+ #: includes/daterange_helptexts.php:46
801
  msgid "number of years"
802
  msgstr "número de anos"
803
 
804
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
805
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
806
  #, php-format
807
  msgid "Additionally the following values are available: %1$s"
808
  msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s"
809
 
810
+ #: includes/daterange_helptexts.php:58
811
  msgid "Relative Month"
812
  msgstr "Mês Relativo"
813
 
814
+ #: includes/daterange_helptexts.php:62
815
  msgid "A relative month"
816
  msgstr "Um mês relativo"
817
 
818
+ #: includes/daterange_helptexts.php:68
819
  msgid "number of months"
820
  msgstr "número de meses"
821
 
822
+ #: includes/daterange_helptexts.php:80
823
  msgid "Relative Week"
824
  msgstr "Semana Relativa"
825
 
826
+ #: includes/daterange_helptexts.php:84
827
  msgid "A relative week"
828
  msgstr "Uma semana relativa"
829
 
830
+ #: includes/daterange_helptexts.php:90
831
  msgid "number of weeks"
832
  msgstr "número de semanas"
833
 
834
+ #: includes/daterange_helptexts.php:96
835
  msgid "the resulting week"
836
  msgstr "a semana resultante"
837
 
838
+ #: includes/daterange_helptexts.php:99
839
  #, php-format
840
  msgid ""
841
  "The first day of the week is depending on the option %1$s which can be found"
842
  " and changed in %2$s."
843
  msgstr ""
844
 
845
+ #: includes/daterange_helptexts.php:110
846
  msgid "Relative Day"
847
  msgstr "Dia Relativo"
848
 
849
+ #: includes/daterange_helptexts.php:114
850
  msgid "A relative day"
851
  msgstr "Um dia relativo"
852
 
853
+ #: includes/daterange_helptexts.php:120
854
  msgid "number of days"
855
  msgstr "número de dias"
856
 
857
+ #: includes/daterange_helptexts.php:134
858
  msgid "Date range"
859
  msgstr "Intervalo de data"
860
 
861
+ #: includes/daterange_helptexts.php:136
862
  msgid ""
863
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
864
+ "\t\t\tFor the start and end date any available date format can be used."
865
  msgstr ""
866
 
867
+ #: includes/daterange_helptexts.php:147
868
  msgid "This value defines a range without any limits."
869
  msgstr "Este valor defina um intervalo sem qualquer limite."
870
 
871
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
872
+ #: includes/daterange_helptexts.php:171
873
  #, php-format
874
  msgid "The corresponding date_range format is: %1$s"
875
  msgstr ""
876
 
877
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
878
  msgid "Upcoming"
879
  msgstr "Próximos"
880
 
881
+ #: includes/daterange_helptexts.php:158
882
  msgid "This value defines a range from the actual day to the future."
883
  msgstr ""
884
 
885
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
886
  msgid "Past"
887
  msgstr "Passado"
888
 
889
+ #: includes/daterange_helptexts.php:169
890
  msgid "This value defines a range from the past to the previous day."
891
  msgstr ""
892
 
893
+ #: includes/event.php:157
894
  msgid "No valid start date provided"
895
  msgstr ""
896
 
897
+ #: includes/event.php:343 includes/event.php:345
898
+ #: includes/sc_event-list.php:330
899
  msgid "read more"
900
  msgstr ""
901
 
902
+ #: includes/events_post_type.php:83
903
  msgid "Events"
904
  msgstr "Eventos"
905
 
906
+ #: includes/events_post_type.php:84
907
  msgid "Event"
908
  msgstr ""
909
 
910
+ #: includes/events_post_type.php:85
911
  msgid "Add New"
912
  msgstr "Adicionar Novo"
913
 
914
+ #: includes/events_post_type.php:86
915
  msgid "Add New Event"
916
  msgstr "Adicionar Novo Evento"
917
 
918
+ #: includes/events_post_type.php:87
919
  msgid "Edit Event"
920
  msgstr "Editar Evento"
921
 
922
+ #: includes/events_post_type.php:88
923
  msgid "New Event"
924
  msgstr ""
925
 
926
+ #: includes/events_post_type.php:89
927
  msgid "View Event"
928
  msgstr ""
929
 
930
+ #: includes/events_post_type.php:90
931
  msgid "View Events"
932
  msgstr ""
933
 
934
+ #: includes/events_post_type.php:91
935
  msgid "Search Events"
936
  msgstr ""
937
 
938
+ #: includes/events_post_type.php:93
939
  msgid "No events found in Trash"
940
  msgstr ""
941
 
942
+ #: includes/events_post_type.php:95
943
  msgid "All Events"
944
  msgstr "Todos os Eventos"
945
 
946
+ #: includes/events_post_type.php:96
947
  msgid "Event Archives"
948
  msgstr ""
949
 
950
+ #: includes/events_post_type.php:97
951
  msgid "Event Attributes"
952
  msgstr ""
953
 
954
+ #: includes/events_post_type.php:98
955
  msgid "Insert into event"
956
  msgstr ""
957
 
958
+ #: includes/events_post_type.php:99
959
  msgid "Uploaded to this event"
960
  msgstr ""
961
 
962
+ #: includes/events_post_type.php:100
963
  msgid "Event List"
964
  msgstr "Lista de Eventos"
965
 
966
+ #: includes/events_post_type.php:101
967
  msgid "Filter events list"
968
  msgstr ""
969
 
970
+ #: includes/events_post_type.php:102
971
  msgid "Events list navigation"
972
  msgstr ""
973
 
974
+ #: includes/events_post_type.php:103
975
  msgid "Events list"
976
  msgstr ""
977
 
978
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
979
  msgid "Reset"
980
  msgstr ""
981
 
982
+ #: includes/filterbar.php:329
983
  msgid "All"
984
  msgstr "Tudo"
985
 
986
+ #: includes/filterbar.php:332
987
  msgid "All Dates"
988
  msgstr ""
989
 
1423
  " switching page from here."
1424
  msgstr ""
1425
 
1426
+ #: includes/options.php:92
1427
  msgid "events"
1428
  msgstr ""
1429
 
1430
+ #: includes/options.php:96
1431
  msgid "Show content"
1432
  msgstr ""
1433
 
1434
+ #: includes/options.php:100
1435
  msgid "Hide content"
1436
  msgstr ""
1437
 
1438
+ #: includes/sc_event-list_helptexts.php:20
1439
  msgid "event-id"
1440
  msgstr ""
1441
 
1442
+ #: includes/sc_event-list_helptexts.php:23
1443
  #, php-format
1444
  msgid ""
1445
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1447
  "this event is shown."
1448
  msgstr ""
1449
 
1450
+ #: includes/sc_event-list_helptexts.php:29
1451
+ #: includes/sc_event-list_helptexts.php:57
1452
  msgid "year"
1453
  msgstr ""
1454
 
1455
+ #: includes/sc_event-list_helptexts.php:31
1456
  msgid ""
1457
  "This attribute defines which events are initially shown. The default is to "
1458
  "show the upcoming events only."
1459
  msgstr ""
1460
 
1461
+ #: includes/sc_event-list_helptexts.php:33
1462
  #, php-format
1463
  msgid ""
1464
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1465
  "change the displayed event date range via the filterbar or url parameters."
1466
  msgstr ""
1467
 
1468
+ #: includes/sc_event-list_helptexts.php:39
1469
  msgid "category slug"
1470
  msgstr ""
1471
 
1472
+ #: includes/sc_event-list_helptexts.php:41
1473
  msgid ""
1474
  "This attribute defines the category of which events are initially shown. The"
1475
  " default is to show events of all categories."
1476
  msgstr ""
1477
 
1478
+ #: includes/sc_event-list_helptexts.php:42
1479
  msgid ""
1480
  "Provide a category slug to change this behavior. It is still possible to "
1481
  "change the displayed categories via the filterbar or url parameters."
1482
  msgstr ""
1483
 
1484
+ #: includes/sc_event-list_helptexts.php:48
1485
  msgid "This attribute defines the initial order of the events."
1486
  msgstr ""
1487
 
1488
+ #: includes/sc_event-list_helptexts.php:50
1489
+ #, php-format
1490
  msgid ""
1491
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1492
  "in the opposite direction (from new to old)."
1493
  msgstr ""
1494
 
1495
+ #: includes/sc_event-list_helptexts.php:60
1496
  #, php-format
1497
  msgid ""
1498
  "This attribute defines the dates and date ranges of which events are "
1499
  "displayed. The default is %1$s to show all events."
1500
  msgstr ""
1501
 
1502
+ #: includes/sc_event-list_helptexts.php:64
1503
  #, php-format
1504
  msgid ""
1505
  "Filtered events according to %1$s value are not available in the event list."
1506
  msgstr ""
1507
 
1508
+ #: includes/sc_event-list_helptexts.php:68
1509
  #, php-format
1510
  msgid ""
1511
  "You can find all available values with a description and examples in the "
1512
  "sections %1$s and %2$s below."
1513
  msgstr ""
1514
 
1515
+ #: includes/sc_event-list_helptexts.php:73
1516
  #, php-format
1517
  msgid "See %1$s description if you want to define complex filters."
1518
  msgstr ""
1519
 
1520
+ #: includes/sc_event-list_helptexts.php:79
1521
  msgid "category slugs"
1522
  msgstr ""
1523
 
1524
+ #: includes/sc_event-list_helptexts.php:82
1525
  msgid ""
1526
  "This attribute defines the category filter which filters the events to show."
1527
  " The default is $1$s or an empty string to show all events."
1528
  msgstr ""
1529
 
1530
+ #: includes/sc_event-list_helptexts.php:86
1531
  #, php-format
1532
  msgid ""
1533
  "Events with categories that doesn´t match %1$s are not shown in the event "
1534
  "list. They are also not available if a manual url parameter is added."
1535
  msgstr ""
1536
 
1537
+ #: includes/sc_event-list_helptexts.php:90
1538
  #, php-format
1539
  msgid ""
1540
  "The filter is specified via the given category slugs. See %1$s description "
1541
  "if you want to define complex filters."
1542
  msgstr ""
1543
 
1544
+ #: includes/sc_event-list_helptexts.php:96
1545
+ #: includes/sc_event-list_helptexts.php:242
1546
+ #: includes/sc_event-list_helptexts.php:276
1547
+ #: includes/sc_event-list_helptexts.php:318
1548
  msgid "number"
1549
  msgstr ""
1550
 
1551
+ #: includes/sc_event-list_helptexts.php:99
1552
  #, php-format
1553
  msgid ""
1554
  "This attribute defines how many events should be displayed if upcoming "
1556
  "displayed."
1557
  msgstr ""
1558
 
1559
+ #: includes/sc_event-list_helptexts.php:102
1560
  msgid ""
1561
  "Please not that in the actual version there is no pagination of the events "
1562
  "available, so the event list can be very long."
1563
  msgstr ""
1564
 
1565
+ #: includes/sc_event-list_helptexts.php:108
1566
  msgid ""
1567
  "This attribute defines if the filterbar should be displayed. The filterbar "
1568
  "allows the users to specify filters for the listed events."
1569
  msgstr ""
1570
 
1571
+ #: includes/sc_event-list_helptexts.php:110
1572
  #, php-format
1573
  msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
1574
  msgstr ""
1575
 
1576
+ #: includes/sc_event-list_helptexts.php:115
1577
  #, php-format
1578
  msgid ""
1579
  "With %1$s the filterbar is only visible in the event list and with %2$s only"
1580
  " in the single event view."
1581
  msgstr ""
1582
 
1583
+ #: includes/sc_event-list_helptexts.php:125
1584
  #, php-format
1585
  msgid ""
1586
  "This attribute specifies the available items in the filterbar. This options "
1587
  "are only valid if the filterbar is displayed (see %1$s attribute)."
1588
  msgstr ""
1589
 
1590
+ #: includes/sc_event-list_helptexts.php:128
1591
  msgid ""
1592
  "Find below an overview of the available filterbar items and their options:"
1593
  msgstr ""
1594
 
1595
+ #: includes/sc_event-list_helptexts.php:132
1596
  msgid "filterbar item"
1597
  msgstr ""
1598
 
1599
+ #: includes/sc_event-list_helptexts.php:133
1600
+ #: includes/sc_event-list_helptexts.php:206
1601
  msgid "description"
1602
  msgstr ""
1603
 
1604
+ #: includes/sc_event-list_helptexts.php:134
1605
  msgid "item options"
1606
  msgstr ""
1607
 
1608
+ #: includes/sc_event-list_helptexts.php:135
1609
  msgid "option values"
1610
  msgstr ""
1611
 
1612
+ #: includes/sc_event-list_helptexts.php:136
1613
  msgid "default value"
1614
  msgstr ""
1615
 
1616
+ #: includes/sc_event-list_helptexts.php:137
1617
  msgid "option description"
1618
  msgstr ""
1619
 
1620
+ #: includes/sc_event-list_helptexts.php:141
1621
  msgid ""
1622
  "Show a list of all available years. Additional there are some special "
1623
  "entries available (see item options)."
1624
  msgstr ""
1625
 
1626
+ #: includes/sc_event-list_helptexts.php:145
1627
+ #: includes/sc_event-list_helptexts.php:156
1628
  msgid "Add an entry to show all events."
1629
  msgstr ""
1630
 
1631
+ #: includes/sc_event-list_helptexts.php:147
1632
+ #: includes/sc_event-list_helptexts.php:158
1633
  msgid "Add an entry to show all upcoming events."
1634
  msgstr ""
1635
 
1636
+ #: includes/sc_event-list_helptexts.php:148
1637
+ #: includes/sc_event-list_helptexts.php:159
1638
  msgid "Add an entry to show events in the past."
1639
  msgstr ""
1640
 
1641
+ #: includes/sc_event-list_helptexts.php:149
1642
  msgid "Set descending or ascending order of year entries."
1643
  msgstr ""
1644
 
1645
+ #: includes/sc_event-list_helptexts.php:152
1646
  msgid "Show a list of all available months."
1647
  msgstr ""
1648
 
1649
+ #: includes/sc_event-list_helptexts.php:160
1650
  msgid "Set descending or ascending order of month entries."
1651
  msgstr ""
1652
 
1653
+ #: includes/sc_event-list_helptexts.php:163
1654
  msgid "php date-formats"
1655
  msgstr ""
1656
 
1657
+ #: includes/sc_event-list_helptexts.php:165
1658
  msgid "Set the displayed date format of the month entries."
1659
  msgstr ""
1660
 
1661
+ #: includes/sc_event-list_helptexts.php:170
1662
  #, php-format
1663
  msgid ""
1664
  "With this item you can display the special entries %1$s, %2$s and %3$s. You "
1666
  "order."
1667
  msgstr ""
1668
 
1669
+ #: includes/sc_event-list_helptexts.php:179
1670
  #, php-format
1671
  msgid ""
1672
  "Specifies the displayed values and their order. The items must be seperated "
1673
  "by %1$s."
1674
  msgstr ""
1675
 
1676
+ #: includes/sc_event-list_helptexts.php:185
1677
  msgid "Show a list of all available categories."
1678
  msgstr ""
1679
 
1680
+ #: includes/sc_event-list_helptexts.php:189
1681
  msgid "Add an entry to show events from all categories."
1682
  msgstr ""
1683
 
1684
+ #: includes/sc_event-list_helptexts.php:193
1685
  msgid "A link to reset the eventlist filter to standard."
1686
  msgstr ""
1687
 
1688
+ #: includes/sc_event-list_helptexts.php:195
1689
  msgid "any text"
1690
  msgstr ""
1691
 
1692
+ #: includes/sc_event-list_helptexts.php:197
1693
  msgid "Set the caption of the link."
1694
  msgstr ""
1695
 
1696
+ #: includes/sc_event-list_helptexts.php:201
1697
  msgid "Find below an overview of the available filterbar display options:"
1698
  msgstr ""
1699
 
1700
+ #: includes/sc_event-list_helptexts.php:205
1701
  msgid "display option"
1702
  msgstr ""
1703
 
1704
+ #: includes/sc_event-list_helptexts.php:207
1705
  msgid "available for"
1706
  msgstr ""
1707
 
1708
+ #: includes/sc_event-list_helptexts.php:211
1709
  #, php-format
1710
  msgid "Shows a horizonal list seperated by %1$s with a link to each item."
1711
  msgstr ""
1712
 
1713
+ #: includes/sc_event-list_helptexts.php:216
1714
  msgid ""
1715
  "Shows a select box where an item can be choosen. After the selection of an "
1716
  "item the page is reloaded via javascript to show the filtered events."
1717
  msgstr ""
1718
 
1719
+ #: includes/sc_event-list_helptexts.php:219
1720
  msgid "Shows a simple link which can be clicked."
1721
  msgstr ""
1722
 
1723
+ #: includes/sc_event-list_helptexts.php:222
1724
  msgid "Find below some declaration examples with descriptions:"
1725
  msgstr ""
1726
 
1727
+ #: includes/sc_event-list_helptexts.php:225
1728
  #, php-format
1729
  msgid ""
1730
  "In this example you can see that the filterbar item and the used display "
1732
  "items seperated by a comma %2$s. These items will be displayed left-aligned."
1733
  msgstr ""
1734
 
1735
+ #: includes/sc_event-list_helptexts.php:231
1736
  #, php-format
1737
  msgid ""
1738
  "In this example you can see that filterbar options can be added in brackets "
1739
  "in format %1$s. You can also add multiple options seperated by a pipe %2$s."
1740
  msgstr ""
1741
 
1742
+ #: includes/sc_event-list_helptexts.php:232
1743
  msgid "option_name"
1744
  msgstr ""
1745
 
1746
+ #: includes/sc_event-list_helptexts.php:232
1747
  msgid "value"
1748
  msgstr ""
1749
 
1750
+ #: includes/sc_event-list_helptexts.php:236
1751
  #, php-format
1752
  msgid ""
1753
  "The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
1756
  "left-aligned and the reset link will be on the right side."
1757
  msgstr ""
1758
 
1759
+ #: includes/sc_event-list_helptexts.php:244
1760
+ #: includes/sc_event-list_helptexts.php:277
1761
  msgid ""
1762
  "This attribute specifies if the title should be truncated to the given "
1763
  "number of characters in the event list."
1764
  msgstr ""
1765
 
1766
+ #: includes/sc_event-list_helptexts.php:246
1767
+ #: includes/sc_event-list_helptexts.php:278
1768
  #, php-format
1769
  msgid ""
1770
  "With the standard value %1$s the full text is displayed, with %2$s the text "
1771
  "is automatically truncated via css."
1772
  msgstr ""
1773
 
1774
+ #: includes/sc_event-list_helptexts.php:250
1775
+ #: includes/sc_event-list_helptexts.php:279
1776
+ #: includes/sc_event-list_helptexts.php:322
1777
  msgid "This attribute has no influence if only a single event is shown."
1778
  msgstr ""
1779
 
1780
+ #: includes/sc_event-list_helptexts.php:257
1781
  msgid ""
1782
  "This attribute specifies if the starttime is displayed in the event list.<br />\n"
1783
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
1784
+ "\t\t\t\t\tWith \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
1785
  msgstr ""
1786
 
1787
+ #: includes/sc_event-list_helptexts.php:268
1788
  msgid ""
1789
  "This attribute specifies if the location is displayed in the event list.<br />\n"
1790
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the location.<br />\n"
1791
+ "\t\t\t\t\tWith \"event_list_only\" the location 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:286
1795
  msgid ""
1796
  "This attribute specifies if the categories are displayed in the event list.<br />\n"
1797
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the category.<br />\n"
1798
+ "\t\t\t\t\tWith \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
1799
  msgstr ""
1800
 
1801
+ #: includes/sc_event-list_helptexts.php:297
1802
  msgid ""
1803
  "This attribute specifies if the content is displayed in the event list.<br />\n"
1804
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the content.<br />\n"
1805
+ "\t\t\t\t\tWith \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event"
1806
  msgstr ""
1807
 
1808
+ #: includes/sc_event-list_helptexts.php:308
1809
  msgid ""
1810
  "This attribute specifies if the excerpt is displayed in the event list.<br />\n"
1811
+ "\t\t\t\t\tChoose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n"
1812
+ "\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"
1813
+ "\t\t\t\t\tIf no excerpt is set, the event content will be displayed instead.<br />\n"
1814
+ "\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)."
1815
  msgstr ""
1816
 
1817
+ #: includes/sc_event-list_helptexts.php:320
1818
  msgid ""
1819
  "This attribute specifies if the content should be truncate to the given "
1820
  "number of characters in the event list."
1821
  msgstr ""
1822
 
1823
+ #: includes/sc_event-list_helptexts.php:321
1824
  #, php-format
1825
  msgid "With the standard value %1$s the full text is displayed."
1826
  msgstr ""
1827
 
1828
+ #: includes/sc_event-list_helptexts.php:329
1829
  msgid ""
1830
  "This attribute specifies if the content or excerpt should be collapsed initially.<br />\n"
1831
+ "\t\t\t\t\tThen a link will be displayed instead of the content. By clicking this link the content is getting visible.<br />\n"
1832
+ "\t\t\t\t\tAvailable option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n"
1833
+ "\t\t\t\t\tWith \"event_list_only\" the content is only collapsed in the event list view and with \"single_event_only\" only in single event view."
1834
  msgstr ""
1835
 
1836
+ #: includes/sc_event-list_helptexts.php:341
1837
  msgid ""
1838
  "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
1839
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1840
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
1841
+ "\t\t\t\t\tWith \"events_with_content_only\" the link is only added in the event list for events with event content."
1842
  msgstr ""
1843
 
1844
+ #: includes/sc_event-list_helptexts.php:353
1845
  msgid ""
1846
  "This attribute specifies if a rss feed link should be added.<br />\n"
1847
+ "\t\t\t\t\tYou have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
1848
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1849
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />\n"
1850
+ "\t\t\t\t\tWith \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
1851
  msgstr ""
1852
 
1853
+ #: includes/sc_event-list_helptexts.php:366
1854
  msgid ""
1855
  "This attribute specifies if a ical feed link should be added.<br />\n"
1856
+ "\t\t\t\t\tYou have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n"
1857
+ "\t\t\t\t\tOn that page you can also find some settings to modify the output.<br />\n"
1858
+ "\t\t\t\t\tChoose \"false\" to never add and \"true\" to always add the link.<br />"
1859
  msgstr ""
1860
 
1861
+ #: includes/sc_event-list_helptexts.php:378
1862
  msgid ""
1863
  "This attribute specifies the page or post url for event links.<br />\n"
1864
+ "\t\t\t\t\tThe standard is an empty string. Then the url will be calculated automatically.<br />\n"
1865
+ "\t\t\t\t\tAn url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
1866
  msgstr ""
1867
 
1868
+ #: includes/sc_event-list_helptexts.php:391
1869
  msgid ""
1870
  "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
1871
+ "\t\t\t\t\tThe empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
1872
  msgstr ""
1873
 
1874
+ #: includes/sc_event-list.php:184
1875
  msgid "Sorry, the requested event is not available!"
1876
  msgstr ""
1877
 
1878
+ #: includes/sc_event-list.php:193
1879
  msgid "Event Information:"
1880
  msgstr "Informação do Evento:"
1881
 
1882
+ #: includes/sc_event-list.php:437
1883
  msgid "Link to RSS feed"
1884
  msgstr ""
1885
 
1886
+ #: includes/sc_event-list.php:447
1887
  msgid "Link to iCal feed"
1888
  msgstr ""
1889
 
1916
  msgid "Truncate event title to"
1917
  msgstr "Truncar título do evento em"
1918
 
1919
+ #: includes/widget_helptexts.php:37 includes/widget_helptexts.php:70
1920
+ #: includes/widget_helptexts.php:103
1921
  msgid "characters"
1922
  msgstr "caracteres"
1923
 
1924
+ #: includes/widget_helptexts.php:39
1925
  msgid ""
1926
  "This option defines the number of displayed characters for the event title."
1927
  msgstr ""
1928
 
1929
+ #: includes/widget_helptexts.php:41 includes/widget_helptexts.php:74
1930
  #, php-format
1931
  msgid ""
1932
  "Set this value to %1$s to view the full text, or set it to %2$s to "
1933
  "automatically truncate the text via css."
1934
  msgstr ""
1935
 
1936
+ #: includes/widget_helptexts.php:51
1937
  msgid "Show event starttime"
1938
  msgstr "Exibir data de início do evento"
1939
 
1940
+ #: includes/widget_helptexts.php:53
1941
  msgid "This option defines if the event start time will be displayed."
1942
  msgstr ""
1943
 
1944
+ #: includes/widget_helptexts.php:60
1945
  msgid "Show event location"
1946
  msgstr "Exibir localização do evento"
1947
 
1948
+ #: includes/widget_helptexts.php:62
1949
  msgid "This option defines if the event location will be displayed."
1950
  msgstr ""
1951
 
1952
+ #: includes/widget_helptexts.php:69
1953
  msgid "Truncate location to"
1954
  msgstr "Truncar localização em"
1955
 
1956
+ #: includes/widget_helptexts.php:72
1957
  msgid ""
1958
  "If the event location is diplayed this option defines the number of "
1959
  "displayed characters."
1960
  msgstr ""
1961
 
1962
+ #: includes/widget_helptexts.php:84
1963
  msgid "Show event excerpt"
1964
  msgstr ""
1965
 
1966
+ #: includes/widget_helptexts.php:86
1967
  msgid "This option defines if the event excerpt will be displayed."
1968
  msgstr ""
1969
 
1970
+ #: includes/widget_helptexts.php:93
1971
  msgid "Show event content"
1972
  msgstr ""
1973
 
1974
+ #: includes/widget_helptexts.php:95
1975
  msgid "This option defines if the event content will be displayed."
1976
  msgstr ""
1977
 
1978
+ #: includes/widget_helptexts.php:102
1979
  msgid "Truncate content to"
1980
  msgstr ""
1981
 
1982
+ #: includes/widget_helptexts.php:105
1983
  msgid ""
1984
  "If the event content are diplayed this option defines the number of diplayed"
1985
  " characters."
1986
  msgstr ""
1987
 
1988
+ #: includes/widget_helptexts.php:107
1989
  #, php-format
1990
  msgid "Set this value to %1$s to view the full text."
1991
  msgstr ""
1992
 
1993
+ #: includes/widget_helptexts.php:116
1994
  msgid "URL to the linked Event List page"
1995
  msgstr "URL para página associada ao Event List"
1996
 
1997
+ #: includes/widget_helptexts.php:118
1998
  msgid ""
1999
  "This option defines the url to the linked Event List page. This option is "
2000
  "required if you want to use one of the options below."
2001
  msgstr ""
2002
 
2003
+ #: includes/widget_helptexts.php:125
2004
  msgid "Shortcode ID on linked page"
2005
  msgstr "ID do Shortcode na página associada"
2006
 
2007
+ #: includes/widget_helptexts.php:127
2008
  msgid ""
2009
  "This option defines the shortcode-id for the Event List on the linked page. "
2010
  "Normally the standard value 1 is correct, you only have to change it if you "
2011
  "use multiple event-list shortcodes on the linked page."
2012
  msgstr ""
2013
 
2014
+ #: includes/widget_helptexts.php:136
2015
  msgid ""
2016
  "With this option you can add a link to the single event page for every "
2017
  "displayed event. You have to specify the url to the page and the shortcode "
2018
  "id option if you want to use it."
2019
  msgstr ""
2020
 
2021
+ #: includes/widget_helptexts.php:145
2022
  msgid ""
2023
  "With this option you can add a link to the event-list page below the "
2024
  "diplayed events. You have to specify the url to page option if you want to "
2025
  "use it."
2026
  msgstr ""
2027
 
2028
+ #: includes/widget_helptexts.php:152
2029
  msgid "Caption for the link"
2030
  msgstr "Legenda para o link"
2031
 
2032
+ #: includes/widget_helptexts.php:154
2033
  msgid ""
2034
  "This option defines the text for the link to the Event List page if the "
2035
  "approriate option is selected."
2036
  msgstr ""
2037
 
2038
+ #: includes/widget.php:38
2039
  msgid "With this widget a list of upcoming events can be displayed."
2040
  msgstr ""
2041
 
2042
+ #: includes/widget.php:43
2043
  msgid "Upcoming events"
2044
  msgstr "Próximos eventos"
2045
 
2046
+ #: includes/widget.php:57
2047
  msgid "show events page"
2048
  msgstr "exibir página de eventos"
languages/event-list-sk_SK.mo CHANGED
Binary file
languages/event-list-sk_SK.po CHANGED
@@ -1,5 +1,5 @@
1
  # Translation file for the 'Event List' WordPress plugin
2
- # Copyright (C) 2021 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
@@ -11,8 +11,8 @@ msgid ""
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
- "POT-Creation-Date: 2021-04-24 11:28+0200\n"
15
- "PO-Revision-Date: 2021-04-24 09:26+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
18
  "MIME-Version: 1.0\n"
@@ -21,33 +21,33 @@ msgstr ""
21
  "Language: sk_SK\n"
22
  "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
23
 
24
- #: admin/admin.php:64
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr "Chyba pri upgrade pluginu %1$s."
28
 
29
- #: admin/admin.php:64
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr "Upgrade pluginu %1$s bolo úspešné"
33
 
34
- #: admin/admin.php:116 admin/includes/admin-settings.php:73
35
  msgid "Event List Settings"
36
  msgstr "Nastavenia zoznamu udalostí"
37
 
38
- #: admin/admin.php:116
39
  msgid "Settings"
40
  msgstr "Nastavenia"
41
 
42
- #: admin/admin.php:120 admin/includes/admin-about.php:43
43
  msgid "About Event List"
44
  msgstr "O plugine Zoznam udalostí"
45
 
46
- #: admin/admin.php:120
47
  msgid "About"
48
  msgstr "O plugine"
49
 
50
- #: admin/admin.php:144
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
@@ -56,84 +56,84 @@ msgstr[1] ""
56
  msgstr[2] ""
57
  msgstr[3] ""
58
 
59
- #: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92
60
  msgid "General"
61
  msgstr "Všeobecné"
62
 
63
- #: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88
64
- #: admin/includes/admin-about.php:117
65
  msgid "Shortcode Attributes"
66
  msgstr "Atribúty skráteného kódu"
67
 
68
- #: admin/includes/admin-about.php:82
69
  msgid "Help and Instructions"
70
  msgstr "Pomocník a inštrukcie"
71
 
72
- #: admin/includes/admin-about.php:83
73
  #, php-format
74
  msgid "You can manage the events %1$shere%2$s"
75
  msgstr "Môžete spravovať udalosti 1%1$shere2%2$s"
76
 
77
- #: admin/includes/admin-about.php:84
78
  msgid "To show the events on your site you have 2 possibilities"
79
  msgstr "Na zobrazenie udalosti, na Vašej stránke, máte 2 možnosti"
80
 
81
- #: admin/includes/admin-about.php:85
82
  #, php-format
83
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
84
  msgstr "Môžete použiť <strong>skratku </strong>%1$s na stránke alebo článku"
85
 
86
- #: admin/includes/admin-about.php:86
87
  #, php-format
88
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
89
  msgstr "Môžete pridať <strong>aplikáciu</strong>%1$s do Vašej bočnej lišty"
90
 
91
- #: admin/includes/admin-about.php:87
92
  msgid ""
93
  "The displayed events and their style can be modified with the available "
94
  "widget settings and the available attributes for the shortcode."
95
  msgstr "Zobrazenie udalostí a ich štýl može byť zmenené pomocou Nastevení widgetu a atribútov skráteného kodu = shortcode."
96
 
97
- #: admin/includes/admin-about.php:88
98
  #, php-format
99
  msgid ""
100
  "A list of all available shortcode attributes with their descriptions is "
101
  "available in the %1$s tab."
102
  msgstr "Zoznam dostupných atribútov pre shortcode a ich popis je dostupný v záložke 1 %1$s."
103
 
104
- #: admin/includes/admin-about.php:89
105
  msgid "The available widget options are described in their tooltip text."
106
  msgstr "Možnosti widgetu sú popísané v ich tooltipe."
107
 
108
- #: admin/includes/admin-about.php:90
109
  #, php-format
110
  msgid ""
111
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
112
  " to insert an URL to the linked event-list page."
113
  msgstr "V prípade, že povolíte nastavenie hyperlinkov (%1$s alebo 2 %2$s) vo widgete musíte vložiť URL ns dtránku so zoznamom eventov."
114
 
115
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120
116
  msgid "Add links to the single events"
117
  msgstr "Pridaj odkaz na na akciu"
118
 
119
- #: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129
120
  msgid "Add a link to the Event List page"
121
  msgstr "Pridaj odkaz na stránku akcií"
122
 
123
- #: admin/includes/admin-about.php:91
124
  msgid ""
125
  "This is required because the widget does not know in which page or post the "
126
  "shortcode was included."
127
  msgstr "Pole je povinné keďže widget nevie na ktorej stránke, prípadne príspevku je shorcode vložený."
128
 
129
- #: admin/includes/admin-about.php:92
130
  msgid ""
131
  "Additionally you have to insert the correct Shortcode id on the linked page."
132
  " This id describes which shortcode should be used on the given page or post "
133
  "if you have more than one."
134
  msgstr ""
135
 
136
- #: admin/includes/admin-about.php:93
137
  #, php-format
138
  msgid ""
139
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
@@ -141,367 +141,367 @@ msgid ""
141
  "link on your linked page or post."
142
  msgstr ""
143
 
144
- #: admin/includes/admin-about.php:94
145
  #, php-format
146
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
147
  msgstr ""
148
 
149
- #: admin/includes/admin-about.php:96
150
  #, php-format
151
  msgid ""
152
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
153
  "want."
154
  msgstr ""
155
 
156
- #: admin/includes/admin-about.php:96
157
  msgid "Settings page"
158
  msgstr "Stránka nastavení"
159
 
160
- #: admin/includes/admin-about.php:103
161
  msgid "About the plugin author"
162
  msgstr ""
163
 
164
- #: admin/includes/admin-about.php:105
165
  #, php-format
166
  msgid ""
167
  "This plugin is developed by %1$s, you can find more information about the "
168
  "plugin on the %2$s."
169
  msgstr ""
170
 
171
- #: admin/includes/admin-about.php:105
172
  msgid "WordPress plugin site"
173
  msgstr ""
174
 
175
- #: admin/includes/admin-about.php:106
176
  #, php-format
177
  msgid "If you like the plugin please rate it on the %1$s."
178
  msgstr ""
179
 
180
- #: admin/includes/admin-about.php:106
181
  msgid "WordPress plugin review site"
182
  msgstr ""
183
 
184
- #: admin/includes/admin-about.php:107
185
  msgid ""
186
  "If you want to support the plugin I would be happy to get a small donation"
187
  msgstr ""
188
 
189
- #: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109
190
- #: admin/includes/admin-about.php:110
191
  #, php-format
192
  msgid "Donate with %1$s"
193
  msgstr ""
194
 
195
- #: admin/includes/admin-about.php:119
196
  msgid ""
197
  "You have the possibility to modify the output if you add some of the "
198
  "following attributes to the shortcode."
199
  msgstr ""
200
 
201
- #: admin/includes/admin-about.php:120
202
  #, php-format
203
  msgid ""
204
  "You can combine and add as much attributes as you want. E.g. the shortcode "
205
  "including the attributes %1$s and %2$s would looks like this:"
206
  msgstr ""
207
 
208
- #: admin/includes/admin-about.php:122
209
  msgid ""
210
  "Below you can find a list of all supported attributes with their "
211
  "descriptions and available options:"
212
  msgstr ""
213
 
214
- #: admin/includes/admin-about.php:137
215
  msgid "Attribute name"
216
  msgstr "Názov atribútu"
217
 
218
- #: admin/includes/admin-about.php:138
219
  msgid "Value options"
220
  msgstr "Moznosti hodnoty"
221
 
222
- #: admin/includes/admin-about.php:139
223
  msgid "Default value"
224
  msgstr "Predvolená hodnota"
225
 
226
- #: admin/includes/admin-about.php:140
227
  msgid "Description"
228
  msgstr "Popis"
229
 
230
- #: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35
231
- #: includes/sc_event-list_helptexts.php:42
232
  msgid "Filter Syntax"
233
  msgstr "Syntax filtra"
234
 
235
- #: admin/includes/admin-about.php:160
236
  msgid ""
237
  "For date and cat filters you can specify complex filters with the following "
238
  "syntax:"
239
  msgstr ""
240
 
241
- #: admin/includes/admin-about.php:161
242
  #, php-format
243
  msgid ""
244
  "You can use %1$s and %2$s connections to define complex filters. "
245
  "Additionally you can set brackets %3$s for nested queries."
246
  msgstr ""
247
 
248
- #: admin/includes/admin-about.php:161
249
  msgid "AND"
250
  msgstr "A"
251
 
252
- #: admin/includes/admin-about.php:161
253
  msgid "OR"
254
  msgstr "ALEBO"
255
 
256
- #: admin/includes/admin-about.php:161
257
  msgid "or"
258
  msgstr "alebo"
259
 
260
- #: admin/includes/admin-about.php:161
261
  msgid "and"
262
  msgstr "a"
263
 
264
- #: admin/includes/admin-about.php:162
265
  msgid "Examples for cat filters:"
266
  msgstr ""
267
 
268
- #: admin/includes/admin-about.php:163
269
  #, php-format
270
  msgid "Show all events with category %1$s."
271
  msgstr ""
272
 
273
- #: admin/includes/admin-about.php:164
274
  #, php-format
275
  msgid "Show all events with category %1$s or %2$s."
276
  msgstr ""
277
 
278
- #: admin/includes/admin-about.php:165
279
  #, php-format
280
  msgid ""
281
  "Show all events with category %1$s and all events where category %2$s as "
282
  "well as %3$s is selected."
283
  msgstr ""
284
 
285
- #: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34
286
  msgid "Available Date Formats"
287
  msgstr "Dostupné formáty dátumu"
288
 
289
- #: admin/includes/admin-about.php:172
290
  msgid "For date filters you can use the following date formats:"
291
  msgstr ""
292
 
293
- #: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34
294
  msgid "Available Date Range Formats"
295
  msgstr "Formáty rozmedzia dátumov "
296
 
297
- #: admin/includes/admin-about.php:182
298
  msgid "For date filters you can use the following daterange formats:"
299
  msgstr "Pre filtrovanie rozmedzia dátumov môžete použiť formáty:"
300
 
301
- #: admin/includes/admin-about.php:195
302
  msgid "Value"
303
  msgstr "Hodnota"
304
 
305
- #: admin/includes/admin-about.php:199
306
  msgid "Example"
307
  msgstr "Príklad"
308
 
309
- #: admin/includes/admin-categories.php:54
310
  msgid "Synchronize with post categories"
311
  msgstr "Synchronizovať s kategóriami príspevkov"
312
 
313
- #: admin/includes/admin-categories.php:63
314
  #, php-format
315
  msgid "%1$s categories modified (%2$s)"
316
  msgstr "%1$s modifik. kategórie (%2$s)"
317
 
318
- #: admin/includes/admin-categories.php:64
319
  #, php-format
320
  msgid "%1$s categories added (%2$s)"
321
  msgstr "%1$s pridané kategórie (%2$s)"
322
 
323
- #: admin/includes/admin-categories.php:65
324
  #, php-format
325
  msgid "%1$s categories deleted (%2$s)"
326
  msgstr "%1$s zmazané kategórie (%2$s)"
327
 
328
- #: admin/includes/admin-categories.php:67
329
  #, php-format
330
  msgid "%1$s categories not modified (%2$s)"
331
  msgstr "%1$s nezmenené kategórie (%2$s)"
332
 
333
- #: admin/includes/admin-categories.php:68
334
  #, php-format
335
  msgid "%1$s categories not added (%2$s)"
336
  msgstr "%1$s nepridané kategórie (%2$s)"
337
 
338
- #: admin/includes/admin-categories.php:69
339
  #, php-format
340
  msgid "%1$s categories not deleted (%2$s)"
341
  msgstr "%1$s nezmazané kategórie (%2$s)"
342
 
343
- #: admin/includes/admin-categories.php:72
344
  msgid "An Error occured during the category sync"
345
  msgstr ""
346
 
347
- #: admin/includes/admin-categories.php:75
348
  msgid "Category sync finished"
349
  msgstr ""
350
 
351
- #: admin/includes/admin-category-sync.php:54
352
  msgid "Error: You are not allowed to view this page!"
353
  msgstr "Chyba: Nemáte oprávnenie zobraziť túto stránku!"
354
 
355
- #: admin/includes/admin-category-sync.php:70
356
  msgid "Affected Categories when switching to seperate Event Categories"
357
  msgstr ""
358
 
359
- #: admin/includes/admin-category-sync.php:71
360
  msgid "Switch option to seperate Event Categories"
361
  msgstr ""
362
 
363
- #: admin/includes/admin-category-sync.php:72
364
  msgid ""
365
  "If you proceed, all post categories will be copied and all events will be "
366
  "re-assigned to this new categories."
367
  msgstr ""
368
 
369
- #: admin/includes/admin-category-sync.php:73
370
  msgid ""
371
  "Afterwards the event categories are independent of the post categories."
372
  msgstr ""
373
 
374
- #: admin/includes/admin-category-sync.php:75
375
  msgid "Affected Categories when switching to use Post Categories for events"
376
  msgstr ""
377
 
378
- #: admin/includes/admin-category-sync.php:76
379
  msgid "Switch option to use Post Categories for events"
380
  msgstr ""
381
 
382
- #: admin/includes/admin-category-sync.php:77
383
  msgid ""
384
  "Take a detailed look at the affected categories above before you proceed! "
385
  "All seperate event categories will be deleted, this cannot be undone!"
386
  msgstr ""
387
 
388
- #: admin/includes/admin-category-sync.php:79
389
  msgid "Event Categories: Synchronise with Post Categories"
390
  msgstr ""
391
 
392
- #: admin/includes/admin-category-sync.php:80
393
  msgid "Start synchronisation"
394
  msgstr "Začať synchronizovať"
395
 
396
- #: admin/includes/admin-category-sync.php:81
397
  msgid ""
398
  "If this option is enabled the above listed categories will be deleted and "
399
  "removed from the existing events!"
400
  msgstr ""
401
 
402
- #: admin/includes/admin-category-sync.php:96
403
  msgid "Categories to modify"
404
  msgstr "Kategórie na modifikáciu"
405
 
406
- #: admin/includes/admin-category-sync.php:97
407
  msgid "Categories to add"
408
  msgstr "Kategórie na pridanie"
409
 
410
- #: admin/includes/admin-category-sync.php:98
411
  msgid "Categories to delete (optional)"
412
  msgstr "Kategórie ma zmazanie (voliteľné)"
413
 
414
- #: admin/includes/admin-category-sync.php:99
415
  msgid "Delete not available post categories"
416
  msgstr ""
417
 
418
- #: admin/includes/admin-category-sync.php:102
419
  msgid "Categories with differences"
420
  msgstr "Kategórie s rozdielmi"
421
 
422
- #: admin/includes/admin-category-sync.php:103
423
  msgid "Categories to add (optional)"
424
  msgstr "Kategórie na pridanie (voliteľné)"
425
 
426
- #: admin/includes/admin-category-sync.php:104
427
  msgid "Add not available post categories"
428
  msgstr ""
429
 
430
- #: admin/includes/admin-category-sync.php:123
431
  msgid "none"
432
  msgstr "nič"
433
 
434
- #: admin/includes/admin-import.php:58
435
  msgid "Import Events"
436
  msgstr "Importovať udalosti"
437
 
438
- #: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116
439
- #: admin/includes/admin-import.php:220
440
  msgid "Step"
441
  msgstr "Krok"
442
 
443
- #: admin/includes/admin-import.php:79
444
  msgid "Set import file and options"
445
  msgstr ""
446
 
447
- #: admin/includes/admin-import.php:82
448
  #, php-format
449
  msgid "Proceed with Step %1$s"
450
  msgstr "Pokračuj krokom %1$s"
451
 
452
- #: admin/includes/admin-import.php:85
453
  msgid "Example file"
454
  msgstr "Príklad"
455
 
456
- #: admin/includes/admin-import.php:86
457
  #, php-format
458
  msgid ""
459
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
460
  msgstr ""
461
 
462
- #: admin/includes/admin-import.php:87
463
  msgid "Note"
464
  msgstr "Poznámka"
465
 
466
- #: admin/includes/admin-import.php:87
467
  msgid ""
468
  "Do not change the column header and separator line (first two lines), "
469
  "otherwise the import will fail!"
470
  msgstr ""
471
 
472
- #: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103
473
  msgid "Sorry, there has been an error."
474
  msgstr "Je nám ľúto, došlo k chybe."
475
 
476
- #: admin/includes/admin-import.php:96
477
  msgid "The file does not exist, please try again."
478
  msgstr ""
479
 
480
- #: admin/includes/admin-import.php:104
481
  msgid "The uploaded file does not have the required csv extension."
482
  msgstr ""
483
 
484
- #: admin/includes/admin-import.php:116
485
  msgid "Events review and additonal category selection"
486
  msgstr ""
487
 
488
- #: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133
489
  msgid "Error"
490
  msgstr ""
491
 
492
- #: admin/includes/admin-import.php:122
493
  msgid "This CSV file cannot be imported"
494
  msgstr ""
495
 
496
- #: admin/includes/admin-import.php:133
497
  msgid "None of the events in this CSV file can be imported"
498
  msgstr ""
499
 
500
- #: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179
501
  msgid "Warning"
502
  msgstr ""
503
 
504
- #: admin/includes/admin-import.php:138
505
  #, php-format
506
  msgid "There is %1$s event which cannot be imported"
507
  msgid_plural "There are %1$s events which cannot be imported"
@@ -510,225 +510,229 @@ msgstr[1] ""
510
  msgstr[2] ""
511
  msgstr[3] ""
512
 
513
- #: admin/includes/admin-import.php:150
514
  #, php-format
515
  msgid "CSV line %1$s"
516
  msgstr ""
517
 
518
- #: admin/includes/admin-import.php:160
519
  msgid "You can still import all other events listed below."
520
  msgstr ""
521
 
522
- #: admin/includes/admin-import.php:179
523
  msgid ""
524
  "The following category slugs are not available and will be removed from the "
525
  "imported events"
526
  msgstr ""
527
 
528
- #: admin/includes/admin-import.php:185
529
  msgid ""
530
  "If you want to keep these categories, please create these Categories first "
531
  "and do the import afterwards."
532
  msgstr ""
533
 
534
- #: admin/includes/admin-import.php:220
535
  msgid "Import result"
536
  msgstr ""
537
 
538
- #: admin/includes/admin-import.php:223
539
  #, php-format
540
  msgid "Import of %1$s events successful!"
541
  msgstr ""
542
 
543
- #: admin/includes/admin-import.php:224
544
  msgid "Go back to All Events"
545
  msgstr "Ísť späť na Všetky udalosti"
546
 
547
- #: admin/includes/admin-import.php:227
548
  msgid "Errors during Import"
549
  msgstr ""
550
 
551
- #: admin/includes/admin-import.php:235
552
  msgid "Event from CSV-line"
553
  msgstr ""
554
 
555
- #: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77
556
  #: includes/widget_helptexts.php:9
557
  msgid "Title"
558
  msgstr "Nadpis"
559
 
560
- #: admin/includes/admin-import.php:248
561
  msgid "Start Date"
562
  msgstr "Počiatočný deň"
563
 
564
- #: admin/includes/admin-import.php:249
565
  msgid "End Date"
566
  msgstr "Posledný deň"
567
 
568
- #: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105
569
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
570
  msgid "Time"
571
  msgstr "Čas"
572
 
573
- #: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78
574
- #: admin/includes/admin-new.php:107 includes/options_helptexts.php:75
575
  #: includes/options_helptexts.php:76
576
  msgid "Location"
577
  msgstr "Miesto"
578
 
579
- #: admin/includes/admin-import.php:252
580
  msgid "Content"
581
  msgstr "Obsah"
582
 
583
- #: admin/includes/admin-import.php:253
584
  msgid "Category slugs"
585
  msgstr "Slugs kategória"
586
 
587
- #: admin/includes/admin-import.php:297
588
  msgid "Header line is missing or not correct!"
589
  msgstr ""
590
 
591
- #: admin/includes/admin-import.php:298
592
  #, php-format
593
  msgid ""
594
  "Have a look at the %1$sexample file%2$s to see the correct header line "
595
  "format."
596
  msgstr ""
597
 
598
- #: admin/includes/admin-import.php:305
599
  #, php-format
600
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
601
  msgstr ""
602
 
603
- #: admin/includes/admin-import.php:334
604
  msgid "Empty event title found"
605
  msgstr ""
606
 
607
- #: admin/includes/admin-import.php:340
608
  msgid "Wrong date format for startdate"
609
  msgstr ""
610
 
611
- #: admin/includes/admin-import.php:348
612
  msgid "Wrong date format for enddate"
613
  msgstr ""
614
 
615
- #: admin/includes/admin-import.php:401
616
  msgid "Import events"
617
  msgstr "Importovať udalosti"
618
 
619
- #: admin/includes/admin-import.php:402
620
  msgid "Add additional categories"
621
  msgstr "Pridať ďalšie categórie"
622
 
623
- #: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257
624
- msgid "Import"
625
- msgstr "Import"
626
-
627
- #: admin/includes/admin-import.php:428 includes/events_post_type.php:78
628
  msgid "No events found"
629
  msgstr "Nenašli sa žiadne udalosti."
630
 
631
- #: admin/includes/admin-import.php:473
632
  msgid "Saving of event failed!"
633
  msgstr ""
634
 
635
- #: admin/includes/admin-main.php:76
636
  msgid "Event Date"
637
  msgstr "Deň udalosti"
638
 
639
- #: admin/includes/admin-main.php:80
640
  msgid "Author"
641
  msgstr "Autor"
642
 
643
- #: admin/includes/admin-main.php:148
644
  #, php-format
645
  msgid "Add a copy of %1$s"
646
  msgstr "Pridať kópiu %1$s"
647
 
648
- #: admin/includes/admin-main.php:148
649
  msgid "Copy"
650
  msgstr "Kópia"
651
 
652
- #: admin/includes/admin-new.php:58
 
 
 
 
653
  msgid "Event data"
654
  msgstr "Informácie o udalosti"
655
 
656
- #: admin/includes/admin-new.php:90
657
  msgid "Add Copy"
658
  msgstr "Pridaj kópiu"
659
 
660
- #: admin/includes/admin-new.php:98
661
  msgid "Date"
662
  msgstr "Dátum"
663
 
664
- #: admin/includes/admin-new.php:98
665
  msgid "required"
666
  msgstr "Požadované"
667
 
668
- #: admin/includes/admin-new.php:101
669
  msgid "Multi-Day Event"
670
  msgstr "Viacdenná udalosť"
671
 
672
- #: admin/includes/admin-new.php:121
673
  msgid "Event Title"
674
  msgstr "Názov udalosti"
675
 
676
- #: admin/includes/admin-new.php:137
677
  msgid "Event Content"
678
  msgstr "Obsah udalosti"
679
 
680
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203
681
  msgid "Event updated."
682
  msgstr "Udalosť bola aktualizovaná."
683
 
684
- #: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205
685
  msgid "View event"
686
  msgstr "Pozri si udalosť"
687
 
688
- #: admin/includes/admin-new.php:204
689
  #, php-format
690
  msgid "Event restored to revision from %1$s"
691
  msgstr ""
692
 
693
- #: admin/includes/admin-new.php:205
694
  msgid "Event published."
695
  msgstr "Udalosť bola publikovaná."
696
 
697
- #: admin/includes/admin-new.php:207
 
 
 
 
698
  msgid "Event submitted."
699
  msgstr "Udalosť bola odoslaná."
700
 
701
- #: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209
702
- #: admin/includes/admin-new.php:210
703
  msgid "Preview event"
704
  msgstr "Pozrieť podrobnosti udalosti."
705
 
706
- #: admin/includes/admin-new.php:208
707
  #, php-format
708
  msgid "Event scheduled for: %1$s>"
709
  msgstr "Udalosť naplánovaná na: %1$s>"
710
 
711
- #: admin/includes/admin-new.php:210
712
  msgid "Event draft updated."
713
  msgstr "Koncept udalosti bol aktualizovaný."
714
 
715
- #: admin/includes/admin-settings.php:79
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:93
720
  msgid "Frontend Settings"
721
  msgstr "Nastavenia Frontendu"
722
 
723
- #: admin/includes/admin-settings.php:94
724
  msgid "Admin Page Settings"
725
  msgstr "Nastavenia Administračnej stránky"
726
 
727
- #: admin/includes/admin-settings.php:95
728
  msgid "Feed Settings"
729
  msgstr "Nastavenia Feedu"
730
 
731
- #: admin/includes/admin-settings.php:96
732
  msgid "Category Taxonomy"
733
  msgstr ""
734
 
@@ -736,255 +740,255 @@ msgstr ""
736
  msgid "Year"
737
  msgstr "Rok"
738
 
739
- #: includes/daterange_helptexts.php:9
740
  msgid "A year can be specified in 4 digit format."
741
  msgstr "Rok možno špecifikovať v 4-miestnom formáte."
742
 
743
- #: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17
744
- #: includes/daterange_helptexts.php:47
745
  #, php-format
746
  msgid ""
747
  "For a start date filter the first day of %1$s is used, in an end date the "
748
  "last day."
749
  msgstr ""
750
 
751
- #: includes/daterange_helptexts.php:10
752
  msgid "the resulting year"
753
  msgstr ""
754
 
755
- #: includes/daterange_helptexts.php:15
756
  msgid "Month"
757
  msgstr "mesiac"
758
 
759
- #: includes/daterange_helptexts.php:16
760
  msgid ""
761
  "A month can be specified with 4 digits for the year and 2 digits for the "
762
  "month, seperated by a hyphen (-)."
763
  msgstr ""
764
 
765
- #: includes/daterange_helptexts.php:17
766
  msgid "the resulting month"
767
  msgstr ""
768
 
769
- #: includes/daterange_helptexts.php:22
770
  msgid "Day"
771
  msgstr "deň"
772
 
773
- #: includes/daterange_helptexts.php:23
774
  msgid ""
775
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
776
  " month and 2 digets for the day, seperated by hyphens (-)."
777
  msgstr "Deň môže byť zadaný vo formáte 4 číslice za rok, 2 číslice za mesiac a 2 císlice za deň, oddelené pomlčkami (-)."
778
 
779
- #: includes/daterange_helptexts.php:28
780
  msgid "Relative Year"
781
  msgstr "Relatívny rok"
782
 
783
- #: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37
784
- #: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55
785
  #, php-format
786
  msgid "%1$s from now can be specified in the following notation: %2$s"
787
  msgstr ""
788
 
789
- #: includes/daterange_helptexts.php:29
790
  msgid "A relative year"
791
  msgstr "Relatívny rok"
792
 
793
- #: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38
794
- #: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56
795
  #, php-format
796
  msgid ""
797
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
798
  "%3$s or %4$s attached (see also the example below)."
799
  msgstr ""
800
 
801
- #: includes/daterange_helptexts.php:30
802
  msgid "number of years"
803
  msgstr "počet rokov"
804
 
805
- #: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39
806
- #: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57
807
  #, php-format
808
  msgid "Additionally the following values are available: %1$s"
809
  msgstr "Okrem toho sú k dispozícii nasledujúce hodnoty: %1$s"
810
 
811
- #: includes/daterange_helptexts.php:36
812
  msgid "Relative Month"
813
  msgstr "Relatívny mesiac"
814
 
815
- #: includes/daterange_helptexts.php:37
816
  msgid "A relative month"
817
  msgstr "Relatívny mesiac"
818
 
819
- #: includes/daterange_helptexts.php:38
820
  msgid "number of months"
821
  msgstr "počet mesiacov"
822
 
823
- #: includes/daterange_helptexts.php:44
824
  msgid "Relative Week"
825
  msgstr "Relatívny týždeň"
826
 
827
- #: includes/daterange_helptexts.php:45
828
  msgid "A relative week"
829
  msgstr "Relatívny týždeň"
830
 
831
- #: includes/daterange_helptexts.php:46
832
  msgid "number of weeks"
833
  msgstr "počet týždňov"
834
 
835
- #: includes/daterange_helptexts.php:47
836
  msgid "the resulting week"
837
  msgstr ""
838
 
839
- #: includes/daterange_helptexts.php:48
840
  #, php-format
841
  msgid ""
842
  "The first day of the week is depending on the option %1$s which can be found"
843
  " and changed in %2$s."
844
  msgstr ""
845
 
846
- #: includes/daterange_helptexts.php:54
847
  msgid "Relative Day"
848
  msgstr "Relatívny deň"
849
 
850
- #: includes/daterange_helptexts.php:55
851
  msgid "A relative day"
852
  msgstr "Relatívny deň"
853
 
854
- #: includes/daterange_helptexts.php:56
855
  msgid "number of days"
856
  msgstr "počet dní"
857
 
858
- #: includes/daterange_helptexts.php:64
859
  msgid "Date range"
860
  msgstr "Rozmedzie dátumov"
861
 
862
- #: includes/daterange_helptexts.php:66
863
  msgid ""
864
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
865
- "\t For the start and end date any available date format can be used."
866
  msgstr ""
867
 
868
- #: includes/daterange_helptexts.php:75
869
  msgid "This value defines a range without any limits."
870
  msgstr "Táto hodnota definuje rozsah bez akýchkoľvek obmedzení."
871
 
872
- #: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83
873
- #: includes/daterange_helptexts.php:90
874
  #, php-format
875
  msgid "The corresponding date_range format is: %1$s"
876
  msgstr ""
877
 
878
- #: includes/daterange_helptexts.php:81 includes/filterbar.php:310
879
  msgid "Upcoming"
880
  msgstr "Nadchádzajúce"
881
 
882
- #: includes/daterange_helptexts.php:82
883
  msgid "This value defines a range from the actual day to the future."
884
  msgstr "Táto hodnota definuje rozsah od aktuálneho dňa do budúcnosti."
885
 
886
- #: includes/daterange_helptexts.php:88 includes/filterbar.php:318
887
  msgid "Past"
888
  msgstr "Munulé"
889
 
890
- #: includes/daterange_helptexts.php:89
891
  msgid "This value defines a range from the past to the previous day."
892
  msgstr "Táto hodnota definuje rozsah od minulosti do predchádzajúceho dňa."
893
 
894
- #: includes/event.php:124
895
  msgid "No valid start date provided"
896
  msgstr "Nie je k dispozícii platný dátum začiatku"
897
 
898
- #: includes/event.php:299 includes/event.php:301
899
- #: includes/sc_event-list.php:298
900
  msgid "read more"
901
  msgstr ""
902
 
903
- #: includes/events_post_type.php:69
904
  msgid "Events"
905
  msgstr "Udalosti"
906
 
907
- #: includes/events_post_type.php:70
908
  msgid "Event"
909
  msgstr "Udalosť"
910
 
911
- #: includes/events_post_type.php:71
912
  msgid "Add New"
913
  msgstr "Pridať novú"
914
 
915
- #: includes/events_post_type.php:72
916
  msgid "Add New Event"
917
  msgstr "pridať udalosť"
918
 
919
- #: includes/events_post_type.php:73
920
  msgid "Edit Event"
921
  msgstr "Upraviť udalosť"
922
 
923
- #: includes/events_post_type.php:74
924
  msgid "New Event"
925
  msgstr "Nová udalosť"
926
 
927
- #: includes/events_post_type.php:75
928
  msgid "View Event"
929
  msgstr "Zobraziť udalosť"
930
 
931
- #: includes/events_post_type.php:76
932
  msgid "View Events"
933
  msgstr "Zobraziť udalosti"
934
 
935
- #: includes/events_post_type.php:77
936
  msgid "Search Events"
937
  msgstr "Vyhľadaj udalosti"
938
 
939
- #: includes/events_post_type.php:79
940
  msgid "No events found in Trash"
941
  msgstr "V koši neboli nájdené žiadne udalosti"
942
 
943
- #: includes/events_post_type.php:81
944
  msgid "All Events"
945
  msgstr "Všetky udalosti"
946
 
947
- #: includes/events_post_type.php:82
948
  msgid "Event Archives"
949
  msgstr "Archív udalostí"
950
 
951
- #: includes/events_post_type.php:83
952
  msgid "Event Attributes"
953
  msgstr "Vlastnosti udalostí"
954
 
955
- #: includes/events_post_type.php:84
956
  msgid "Insert into event"
957
  msgstr "Vložiť do udalosti"
958
 
959
- #: includes/events_post_type.php:85
960
  msgid "Uploaded to this event"
961
  msgstr "Nahrané do tejto udalosti"
962
 
963
- #: includes/events_post_type.php:86
964
  msgid "Event List"
965
  msgstr "Zoznam udalostí"
966
 
967
- #: includes/events_post_type.php:87
968
  msgid "Filter events list"
969
  msgstr "Filtrovať zoznam udalostí"
970
 
971
- #: includes/events_post_type.php:88
972
  msgid "Events list navigation"
973
  msgstr "Navigácia v zozname udalostí"
974
 
975
- #: includes/events_post_type.php:89
976
  msgid "Events list"
977
  msgstr "Zoznam udalostí"
978
 
979
- #: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90
980
  msgid "Reset"
981
  msgstr "Resetovať - znovu nastaviť"
982
 
983
- #: includes/filterbar.php:296
984
  msgid "All"
985
  msgstr "Všetko"
986
 
987
- #: includes/filterbar.php:298
988
  msgid "All Dates"
989
  msgstr "Všetky dátumy"
990
 
@@ -1424,23 +1428,23 @@ msgid ""
1424
  " switching page from here."
1425
  msgstr "Táto možnosť sa nedá zmeniť priamo, ale môžete prejsť na stránku prepínania kategórií udalostí"
1426
 
1427
- #: includes/options.php:73
1428
  msgid "events"
1429
  msgstr "udalosti"
1430
 
1431
- #: includes/options.php:77
1432
  msgid "Show content"
1433
  msgstr "Zobraziť obsah"
1434
 
1435
- #: includes/options.php:81
1436
  msgid "Hide content"
1437
  msgstr "Skryť obsah"
1438
 
1439
- #: includes/sc_event-list_helptexts.php:8
1440
  msgid "event-id"
1441
  msgstr "identifikátor udalosti"
1442
 
1443
- #: includes/sc_event-list_helptexts.php:9
1444
  #, php-format
1445
  msgid ""
1446
  "By default the event-list is displayed initially. But if an event-id (e.g. "
@@ -1448,107 +1452,108 @@ msgid ""
1448
  "this event is shown."
1449
  msgstr ""
1450
 
1451
- #: includes/sc_event-list_helptexts.php:13
1452
- #: includes/sc_event-list_helptexts.php:31
1453
  msgid "year"
1454
  msgstr "Rok"
1455
 
1456
- #: includes/sc_event-list_helptexts.php:14
1457
  msgid ""
1458
  "This attribute defines which events are initially shown. The default is to "
1459
  "show the upcoming events only."
1460
  msgstr "Tento atribút definuje, ktoré udalosti sa na začiatku zobrazujú. Predvolenou možnosťou je zobraziť len nadchádzajúce udalosti."
1461
 
1462
- #: includes/sc_event-list_helptexts.php:15
1463
  #, php-format
1464
  msgid ""
1465
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1466
  "change the displayed event date range via the filterbar or url parameters."
1467
  msgstr ""
1468
 
1469
- #: includes/sc_event-list_helptexts.php:19
1470
  msgid "category slug"
1471
  msgstr ""
1472
 
1473
- #: includes/sc_event-list_helptexts.php:20
1474
  msgid ""
1475
  "This attribute defines the category of which events are initially shown. The"
1476
  " default is to show events of all categories."
1477
  msgstr "Tento atribút definuje kategóriu udalostí, ktoré sú na začiatku zobrazené. Predvolená hodnota je zobrazovať udalosti všetkých kategórií."
1478
 
1479
- #: includes/sc_event-list_helptexts.php:21
1480
  msgid ""
1481
  "Provide a category slug to change this behavior. It is still possible to "
1482
  "change the displayed categories via the filterbar or url parameters."
1483
  msgstr ""
1484
 
1485
- #: includes/sc_event-list_helptexts.php:26
1486
  msgid "This attribute defines the initial order of the events."
1487
  msgstr "Tento atribút definuje počiatočné poradie udalostí."
1488
 
1489
- #: includes/sc_event-list_helptexts.php:27
 
1490
  msgid ""
1491
- "With %1$S (default value) the events are sorted from old to new, with %2$s "
1492
  "in the opposite direction (from new to old)."
1493
  msgstr ""
1494
 
1495
- #: includes/sc_event-list_helptexts.php:32
1496
  #, php-format
1497
  msgid ""
1498
  "This attribute defines the dates and date ranges of which events are "
1499
  "displayed. The default is %1$s to show all events."
1500
  msgstr ""
1501
 
1502
- #: includes/sc_event-list_helptexts.php:33
1503
  #, php-format
1504
  msgid ""
1505
  "Filtered events according to %1$s value are n
1
  # Translation file for the 'Event List' WordPress plugin
2
+ # Copyright (C) 2022 by mibuthu
3
  # This file is distributed under the same license as the corresponding wordpress plugin.
4
  #
5
  # Translators:
11
  msgstr ""
12
  "Project-Id-Version: wp-event-list\n"
13
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
14
+ "POT-Creation-Date: 2022-02-19 18:08+0100\n"
15
+ "PO-Revision-Date: 2022-02-19 17:09+0000\n"
16
  "Last-Translator: mibuthu\n"
17
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
18
  "MIME-Version: 1.0\n"
21
  "Language: sk_SK\n"
22
  "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
23
 
24
+ #: admin/admin.php:90
25
  #, php-format
26
  msgid "Errors during upgrade of plugin %1$s"
27
  msgstr "Chyba pri upgrade pluginu %1$s."
28
 
29
+ #: admin/admin.php:90
30
  #, php-format
31
  msgid "Upgrade of plugin %1$s successful"
32
  msgstr "Upgrade pluginu %1$s bolo úspešné"
33
 
34
+ #: admin/admin.php:142 admin/includes/admin-settings.php:91
35
  msgid "Event List Settings"
36
  msgstr "Nastavenia zoznamu udalostí"
37
 
38
+ #: admin/admin.php:142
39
  msgid "Settings"
40
  msgstr "Nastavenia"
41
 
42
+ #: admin/admin.php:146 admin/includes/admin-about.php:63
43
  msgid "About Event List"
44
  msgstr "O plugine Zoznam udalostí"
45
 
46
+ #: admin/admin.php:146
47
  msgid "About"
48
  msgstr "O plugine"
49
 
50
+ #: admin/admin.php:170
51
  #, php-format
52
  msgid "%s Event"
53
  msgid_plural "%s Events"
56
  msgstr[2] ""
57
  msgstr[3] ""
58
 
59
+ #: admin/includes/admin-about.php:87 admin/includes/admin-settings.php:110
60
  msgid "General"
61
  msgstr "Všeobecné"
62
 
63
+ #: admin/includes/admin-about.php:88 admin/includes/admin-about.php:108
64
+ #: admin/includes/admin-about.php:137
65
  msgid "Shortcode Attributes"
66
  msgstr "Atribúty skráteného kódu"
67
 
68
+ #: admin/includes/admin-about.php:102
69
  msgid "Help and Instructions"
70
  msgstr "Pomocník a inštrukcie"
71
 
72
+ #: admin/includes/admin-about.php:103
73
  #, php-format
74
  msgid "You can manage the events %1$shere%2$s"
75
  msgstr "Môžete spravovať udalosti 1%1$shere2%2$s"
76
 
77
+ #: admin/includes/admin-about.php:104
78
  msgid "To show the events on your site you have 2 possibilities"
79
  msgstr "Na zobrazenie udalosti, na Vašej stránke, máte 2 možnosti"
80
 
81
+ #: admin/includes/admin-about.php:105
82
  #, php-format
83
  msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
84
  msgstr "Môžete použiť <strong>skratku </strong>%1$s na stránke alebo článku"
85
 
86
+ #: admin/includes/admin-about.php:106
87
  #, php-format
88
  msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
89
  msgstr "Môžete pridať <strong>aplikáciu</strong>%1$s do Vašej bočnej lišty"
90
 
91
+ #: admin/includes/admin-about.php:107
92
  msgid ""
93
  "The displayed events and their style can be modified with the available "
94
  "widget settings and the available attributes for the shortcode."
95
  msgstr "Zobrazenie udalostí a ich štýl može byť zmenené pomocou Nastevení widgetu a atribútov skráteného kodu = shortcode."
96
 
97
+ #: admin/includes/admin-about.php:108
98
  #, php-format
99
  msgid ""
100
  "A list of all available shortcode attributes with their descriptions is "
101
  "available in the %1$s tab."
102
  msgstr "Zoznam dostupných atribútov pre shortcode a ich popis je dostupný v záložke 1 %1$s."
103
 
104
+ #: admin/includes/admin-about.php:109
105
  msgid "The available widget options are described in their tooltip text."
106
  msgstr "Možnosti widgetu sú popísané v ich tooltipe."
107
 
108
+ #: admin/includes/admin-about.php:110
109
  #, php-format
110
  msgid ""
111
  "If you enable one of the links options (%1$s or %2$s) in the widget you have"
112
  " to insert an URL to the linked event-list page."
113
  msgstr "V prípade, že povolíte nastavenie hyperlinkov (%1$s alebo 2 %2$s) vo widgete musíte vložiť URL ns dtránku so zoznamom eventov."
114
 
115
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:134
116
  msgid "Add links to the single events"
117
  msgstr "Pridaj odkaz na na akciu"
118
 
119
+ #: admin/includes/admin-about.php:110 includes/widget_helptexts.php:143
120
  msgid "Add a link to the Event List page"
121
  msgstr "Pridaj odkaz na stránku akcií"
122
 
123
+ #: admin/includes/admin-about.php:111
124
  msgid ""
125
  "This is required because the widget does not know in which page or post the "
126
  "shortcode was included."
127
  msgstr "Pole je povinné keďže widget nevie na ktorej stránke, prípadne príspevku je shorcode vložený."
128
 
129
+ #: admin/includes/admin-about.php:112
130
  msgid ""
131
  "Additionally you have to insert the correct Shortcode id on the linked page."
132
  " This id describes which shortcode should be used on the given page or post "
133
  "if you have more than one."
134
  msgstr ""
135
 
136
+ #: admin/includes/admin-about.php:113
137
  #, php-format
138
  msgid ""
139
  "The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
141
  "link on your linked page or post."
142
  msgstr ""
143
 
144
+ #: admin/includes/admin-about.php:114
145
  #, php-format
146
  msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
147
  msgstr ""
148
 
149
+ #: admin/includes/admin-about.php:116
150
  #, php-format
151
  msgid ""
152
  "Be sure to also check the %1$s to get the plugin behaving just the way you "
153
  "want."
154
  msgstr ""
155
 
156
+ #: admin/includes/admin-about.php:116
157
  msgid "Settings page"
158
  msgstr "Stránka nastavení"
159
 
160
+ #: admin/includes/admin-about.php:123
161
  msgid "About the plugin author"
162
  msgstr ""
163
 
164
+ #: admin/includes/admin-about.php:125
165
  #, php-format
166
  msgid ""
167
  "This plugin is developed by %1$s, you can find more information about the "
168
  "plugin on the %2$s."
169
  msgstr ""
170
 
171
+ #: admin/includes/admin-about.php:125
172
  msgid "WordPress plugin site"
173
  msgstr ""
174
 
175
+ #: admin/includes/admin-about.php:126
176
  #, php-format
177
  msgid "If you like the plugin please rate it on the %1$s."
178
  msgstr ""
179
 
180
+ #: admin/includes/admin-about.php:126
181
  msgid "WordPress plugin review site"
182
  msgstr ""
183
 
184
+ #: admin/includes/admin-about.php:127
185
  msgid ""
186
  "If you want to support the plugin I would be happy to get a small donation"
187
  msgstr ""
188
 
189
+ #: admin/includes/admin-about.php:128 admin/includes/admin-about.php:129
190
+ #: admin/includes/admin-about.php:130
191
  #, php-format
192
  msgid "Donate with %1$s"
193
  msgstr ""
194
 
195
+ #: admin/includes/admin-about.php:139
196
  msgid ""
197
  "You have the possibility to modify the output if you add some of the "
198
  "following attributes to the shortcode."
199
  msgstr ""
200
 
201
+ #: admin/includes/admin-about.php:140
202
  #, php-format
203
  msgid ""
204
  "You can combine and add as much attributes as you want. E.g. the shortcode "
205
  "including the attributes %1$s and %2$s would looks like this:"
206
  msgstr ""
207
 
208
+ #: admin/includes/admin-about.php:142
209
  msgid ""
210
  "Below you can find a list of all supported attributes with their "
211
  "descriptions and available options:"
212
  msgstr ""
213
 
214
+ #: admin/includes/admin-about.php:157
215
  msgid "Attribute name"
216
  msgstr "Názov atribútu"
217
 
218
+ #: admin/includes/admin-about.php:158
219
  msgid "Value options"
220
  msgstr "Moznosti hodnoty"
221
 
222
+ #: admin/includes/admin-about.php:159
223
  msgid "Default value"
224
  msgstr "Predvolená hodnota"
225
 
226
+ #: admin/includes/admin-about.php:160
227
  msgid "Description"
228
  msgstr "Popis"
229
 
230
+ #: admin/includes/admin-about.php:179 includes/sc_event-list_helptexts.php:74
231
+ #: includes/sc_event-list_helptexts.php:91
232
  msgid "Filter Syntax"
233
  msgstr "Syntax filtra"
234
 
235
+ #: admin/includes/admin-about.php:180
236
  msgid ""
237
  "For date and cat filters you can specify complex filters with the following "
238
  "syntax:"
239
  msgstr ""
240
 
241
+ #: admin/includes/admin-about.php:181
242
  #, php-format
243
  msgid ""
244
  "You can use %1$s and %2$s connections to define complex filters. "
245
  "Additionally you can set brackets %3$s for nested queries."
246
  msgstr ""
247
 
248
+ #: admin/includes/admin-about.php:181
249
  msgid "AND"
250
  msgstr "A"
251
 
252
+ #: admin/includes/admin-about.php:181
253
  msgid "OR"
254
  msgstr "ALEBO"
255
 
256
+ #: admin/includes/admin-about.php:181
257
  msgid "or"
258
  msgstr "alebo"
259
 
260
+ #: admin/includes/admin-about.php:181
261
  msgid "and"
262
  msgstr "a"
263
 
264
+ #: admin/includes/admin-about.php:182
265
  msgid "Examples for cat filters:"
266
  msgstr ""
267
 
268
+ #: admin/includes/admin-about.php:183
269
  #, php-format
270
  msgid "Show all events with category %1$s."
271
  msgstr ""
272
 
273
+ #: admin/includes/admin-about.php:184
274
  #, php-format
275
  msgid "Show all events with category %1$s or %2$s."
276
  msgstr ""
277
 
278
+ #: admin/includes/admin-about.php:185
279
  #, php-format
280
  msgid ""
281
  "Show all events with category %1$s and all events where category %2$s as "
282
  "well as %3$s is selected."
283
  msgstr ""
284
 
285
+ #: admin/includes/admin-about.php:191 includes/sc_event-list_helptexts.php:69
286
  msgid "Available Date Formats"
287
  msgstr "Dostupné formáty dátumu"
288
 
289
+ #: admin/includes/admin-about.php:192
290
  msgid "For date filters you can use the following date formats:"
291
  msgstr ""
292
 
293
+ #: admin/includes/admin-about.php:201 includes/sc_event-list_helptexts.php:70
294
  msgid "Available Date Range Formats"
295
  msgstr "Formáty rozmedzia dátumov "
296
 
297
+ #: admin/includes/admin-about.php:202
298
  msgid "For date filters you can use the following daterange formats:"
299
  msgstr "Pre filtrovanie rozmedzia dátumov môžete použiť formáty:"
300
 
301
+ #: admin/includes/admin-about.php:215
302
  msgid "Value"
303
  msgstr "Hodnota"
304
 
305
+ #: admin/includes/admin-about.php:219
306
  msgid "Example"
307
  msgstr "Príklad"
308
 
309
+ #: admin/includes/admin-categories.php:79
310
  msgid "Synchronize with post categories"
311
  msgstr "Synchronizovať s kategóriami príspevkov"
312
 
313
+ #: admin/includes/admin-categories.php:90
314
  #, php-format
315
  msgid "%1$s categories modified (%2$s)"
316
  msgstr "%1$s modifik. kategórie (%2$s)"
317
 
318
+ #: admin/includes/admin-categories.php:91
319
  #, php-format
320
  msgid "%1$s categories added (%2$s)"
321
  msgstr "%1$s pridané kategórie (%2$s)"
322
 
323
+ #: admin/includes/admin-categories.php:92
324
  #, php-format
325
  msgid "%1$s categories deleted (%2$s)"
326
  msgstr "%1$s zmazané kategórie (%2$s)"
327
 
328
+ #: admin/includes/admin-categories.php:95
329
  #, php-format
330
  msgid "%1$s categories not modified (%2$s)"
331
  msgstr "%1$s nezmenené kategórie (%2$s)"
332
 
333
+ #: admin/includes/admin-categories.php:96
334
  #, php-format
335
  msgid "%1$s categories not added (%2$s)"
336
  msgstr "%1$s nepridané kategórie (%2$s)"
337
 
338
+ #: admin/includes/admin-categories.php:97
339
  #, php-format
340
  msgid "%1$s categories not deleted (%2$s)"
341
  msgstr "%1$s nezmazané kategórie (%2$s)"
342
 
343
+ #: admin/includes/admin-categories.php:100
344
  msgid "An Error occured during the category sync"
345
  msgstr ""
346
 
347
+ #: admin/includes/admin-categories.php:103
348
  msgid "Category sync finished"
349
  msgstr ""
350
 
351
+ #: admin/includes/admin-category-sync.php:77
352
  msgid "Error: You are not allowed to view this page!"
353
  msgstr "Chyba: Nemáte oprávnenie zobraziť túto stránku!"
354
 
355
+ #: admin/includes/admin-category-sync.php:93
356
  msgid "Affected Categories when switching to seperate Event Categories"
357
  msgstr ""
358
 
359
+ #: admin/includes/admin-category-sync.php:94
360
  msgid "Switch option to seperate Event Categories"
361
  msgstr ""
362
 
363
+ #: admin/includes/admin-category-sync.php:95
364
  msgid ""
365
  "If you proceed, all post categories will be copied and all events will be "
366
  "re-assigned to this new categories."
367
  msgstr ""
368
 
369
+ #: admin/includes/admin-category-sync.php:96
370
  msgid ""
371
  "Afterwards the event categories are independent of the post categories."
372
  msgstr ""
373
 
374
+ #: admin/includes/admin-category-sync.php:98
375
  msgid "Affected Categories when switching to use Post Categories for events"
376
  msgstr ""
377
 
378
+ #: admin/includes/admin-category-sync.php:99
379
  msgid "Switch option to use Post Categories for events"
380
  msgstr ""
381
 
382
+ #: admin/includes/admin-category-sync.php:100
383
  msgid ""
384
  "Take a detailed look at the affected categories above before you proceed! "
385
  "All seperate event categories will be deleted, this cannot be undone!"
386
  msgstr ""
387
 
388
+ #: admin/includes/admin-category-sync.php:103
389
  msgid "Event Categories: Synchronise with Post Categories"
390
  msgstr ""
391
 
392
+ #: admin/includes/admin-category-sync.php:104
393
  msgid "Start synchronisation"
394
  msgstr "Začať synchronizovať"
395
 
396
+ #: admin/includes/admin-category-sync.php:105
397
  msgid ""
398
  "If this option is enabled the above listed categories will be deleted and "
399
  "removed from the existing events!"
400
  msgstr ""
401
 
402
+ #: admin/includes/admin-category-sync.php:120
403
  msgid "Categories to modify"
404
  msgstr "Kategórie na modifikáciu"
405
 
406
+ #: admin/includes/admin-category-sync.php:121
407
  msgid "Categories to add"
408
  msgstr "Kategórie na pridanie"
409
 
410
+ #: admin/includes/admin-category-sync.php:122
411
  msgid "Categories to delete (optional)"
412
  msgstr "Kategórie ma zmazanie (voliteľné)"
413
 
414
+ #: admin/includes/admin-category-sync.php:123
415
  msgid "Delete not available post categories"
416
  msgstr ""
417
 
418
+ #: admin/includes/admin-category-sync.php:126
419
  msgid "Categories with differences"
420
  msgstr "Kategórie s rozdielmi"
421
 
422
+ #: admin/includes/admin-category-sync.php:127
423
  msgid "Categories to add (optional)"
424
  msgstr "Kategórie na pridanie (voliteľné)"
425
 
426
+ #: admin/includes/admin-category-sync.php:128
427
  msgid "Add not available post categories"
428
  msgstr ""
429
 
430
+ #: admin/includes/admin-category-sync.php:147
431
  msgid "none"
432
  msgstr "nič"
433
 
434
+ #: admin/includes/admin-import.php:91
435
  msgid "Import Events"
436
  msgstr "Importovať udalosti"
437
 
438
+ #: admin/includes/admin-import.php:110 admin/includes/admin-import.php:150
439
+ #: admin/includes/admin-import.php:254
440
  msgid "Step"
441
  msgstr "Krok"
442
 
443
+ #: admin/includes/admin-import.php:110
444
  msgid "Set import file and options"
445
  msgstr ""
446
 
447
+ #: admin/includes/admin-import.php:113
448
  #, php-format
449
  msgid "Proceed with Step %1$s"
450
  msgstr "Pokračuj krokom %1$s"
451
 
452
+ #: admin/includes/admin-import.php:116
453
  msgid "Example file"
454
  msgstr "Príklad"
455
 
456
+ #: admin/includes/admin-import.php:117
457
  #, php-format
458
  msgid ""
459
  "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
460
  msgstr ""
461
 
462
+ #: admin/includes/admin-import.php:118
463
  msgid "Note"
464
  msgstr "Poznámka"
465
 
466
+ #: admin/includes/admin-import.php:118
467
  msgid ""
468
  "Do not change the column header and separator line (first two lines), "
469
  "otherwise the import will fail!"
470
  msgstr ""
471
 
472
+ #: admin/includes/admin-import.php:128 admin/includes/admin-import.php:137
473
  msgid "Sorry, there has been an error."
474
  msgstr "Je nám ľúto, došlo k chybe."
475
 
476
+ #: admin/includes/admin-import.php:129
477
  msgid "The file does not exist, please try again."
478
  msgstr ""
479
 
480
+ #: admin/includes/admin-import.php:138
481
  msgid "The uploaded file does not have the required csv extension."
482
  msgstr ""
483
 
484
+ #: admin/includes/admin-import.php:150
485
  msgid "Events review and additonal category selection"
486
  msgstr ""
487
 
488
+ #: admin/includes/admin-import.php:156 admin/includes/admin-import.php:167
489
  msgid "Error"
490
  msgstr ""
491
 
492
+ #: admin/includes/admin-import.php:156
493
  msgid "This CSV file cannot be imported"
494
  msgstr ""
495
 
496
+ #: admin/includes/admin-import.php:167
497
  msgid "None of the events in this CSV file can be imported"
498
  msgstr ""
499
 
500
+ #: admin/includes/admin-import.php:170 admin/includes/admin-import.php:213
501
  msgid "Warning"
502
  msgstr ""
503
 
504
+ #: admin/includes/admin-import.php:172
505
  #, php-format
506
  msgid "There is %1$s event which cannot be imported"
507
  msgid_plural "There are %1$s events which cannot be imported"
510
  msgstr[2] ""
511
  msgstr[3] ""
512
 
513
+ #: admin/includes/admin-import.php:184
514
  #, php-format
515
  msgid "CSV line %1$s"
516
  msgstr ""
517
 
518
+ #: admin/includes/admin-import.php:194
519
  msgid "You can still import all other events listed below."
520
  msgstr ""
521
 
522
+ #: admin/includes/admin-import.php:213
523
  msgid ""
524
  "The following category slugs are not available and will be removed from the "
525
  "imported events"
526
  msgstr ""
527
 
528
+ #: admin/includes/admin-import.php:219
529
  msgid ""
530
  "If you want to keep these categories, please create these Categories first "
531
  "and do the import afterwards."
532
  msgstr ""
533
 
534
+ #: admin/includes/admin-import.php:254
535
  msgid "Import result"
536
  msgstr ""
537
 
538
+ #: admin/includes/admin-import.php:257
539
  #, php-format
540
  msgid "Import of %1$s events successful!"
541
  msgstr ""
542
 
543
+ #: admin/includes/admin-import.php:258
544
  msgid "Go back to All Events"
545
  msgstr "Ísť späť na Všetky udalosti"
546
 
547
+ #: admin/includes/admin-import.php:261
548
  msgid "Errors during Import"
549
  msgstr ""
550
 
551
+ #: admin/includes/admin-import.php:269
552
  msgid "Event from CSV-line"
553
  msgstr ""
554
 
555
+ #: admin/includes/admin-import.php:281 admin/includes/admin-main.php:109
556
  #: includes/widget_helptexts.php:9
557
  msgid "Title"
558
  msgstr "Nadpis"
559
 
560
+ #: admin/includes/admin-import.php:282
561
  msgid "Start Date"
562
  msgstr "Počiatočný deň"
563
 
564
+ #: admin/includes/admin-import.php:283
565
  msgid "End Date"
566
  msgstr "Posledný deň"
567
 
568
+ #: admin/includes/admin-import.php:284 admin/includes/admin-new.php:131
569
  #: includes/options_helptexts.php:68 includes/options_helptexts.php:69
570
  msgid "Time"
571
  msgstr "Čas"
572
 
573
+ #: admin/includes/admin-import.php:285 admin/includes/admin-main.php:110
574
+ #: admin/includes/admin-new.php:133 includes/options_helptexts.php:75
575
  #: includes/options_helptexts.php:76
576
  msgid "Location"
577
  msgstr "Miesto"
578
 
579
+ #: admin/includes/admin-import.php:286
580
  msgid "Content"
581
  msgstr "Obsah"
582
 
583
+ #: admin/includes/admin-import.php:287
584
  msgid "Category slugs"
585
  msgstr "Slugs kategória"
586
 
587
+ #: admin/includes/admin-import.php:333
588
  msgid "Header line is missing or not correct!"
589
  msgstr ""
590
 
591
+ #: admin/includes/admin-import.php:334
592
  #, php-format
593
  msgid ""
594
  "Have a look at the %1$sexample file%2$s to see the correct header line "
595
  "format."
596
  msgstr ""
597
 
598
+ #: admin/includes/admin-import.php:341
599
  #, php-format
600
  msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
601
  msgstr ""
602
 
603
+ #: admin/includes/admin-import.php:371
604
  msgid "Empty event title found"
605
  msgstr ""
606
 
607
+ #: admin/includes/admin-import.php:377
608
  msgid "Wrong date format for startdate"
609
  msgstr ""
610
 
611
+ #: admin/includes/admin-import.php:385
612
  msgid "Wrong date format for enddate"
613
  msgstr ""
614
 
615
+ #: admin/includes/admin-import.php:439
616
  msgid "Import events"
617
  msgstr "Importovať udalosti"
618
 
619
+ #: admin/includes/admin-import.php:440
620
  msgid "Add additional categories"
621
  msgstr "Pridať ďalšie categórie"
622
 
623
+ #: admin/includes/admin-import.php:470 includes/events_post_type.php:92
 
 
 
 
624
  msgid "No events found"
625
  msgstr "Nenašli sa žiadne udalosti."
626
 
627
+ #: admin/includes/admin-import.php:518
628
  msgid "Saving of event failed!"
629
  msgstr ""
630
 
631
+ #: admin/includes/admin-main.php:108
632
  msgid "Event Date"
633
  msgstr "Deň udalosti"
634
 
635
+ #: admin/includes/admin-main.php:113
636
  msgid "Author"
637
  msgstr "Autor"
638
 
639
+ #: admin/includes/admin-main.php:182
640
  #, php-format
641
  msgid "Add a copy of %1$s"
642
  msgstr "Pridať kópiu %1$s"
643
 
644
+ #: admin/includes/admin-main.php:182
645
  msgid "Copy"
646
  msgstr "Kópia"
647
 
648
+ #: admin/includes/admin-main.php:268
649
+ msgid "Import"
650
+ msgstr "Import"
651
+
652
+ #: admin/includes/admin-new.php:83
653
  msgid "Event data"
654
  msgstr "Informácie o udalosti"
655
 
656
+ #: admin/includes/admin-new.php:116
657
  msgid "Add Copy"
658
  msgstr "Pridaj kópiu"
659
 
660
+ #: admin/includes/admin-new.php:124
661
  msgid "Date"
662
  msgstr "Dátum"
663
 
664
+ #: admin/includes/admin-new.php:124
665
  msgid "required"
666
  msgstr "Požadované"
667
 
668
+ #: admin/includes/admin-new.php:127
669
  msgid "Multi-Day Event"
670
  msgstr "Viacdenná udalosť"
671
 
672
+ #: admin/includes/admin-new.php:147
673
  msgid "Event Title"
674
  msgstr "Názov udalosti"
675
 
676
+ #: admin/includes/admin-new.php:164
677
  msgid "Event Content"
678
  msgstr "Obsah udalosti"
679
 
680
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:245
681
  msgid "Event updated."
682
  msgstr "Udalosť bola aktualizovaná."
683
 
684
+ #: admin/includes/admin-new.php:240 admin/includes/admin-new.php:247
685
  msgid "View event"
686
  msgstr "Pozri si udalosť"
687
 
688
+ #: admin/includes/admin-new.php:246
689
  #, php-format
690
  msgid "Event restored to revision from %1$s"
691
  msgstr ""
692
 
693
+ #: admin/includes/admin-new.php:247
694
  msgid "Event published."
695
  msgstr "Udalosť bola publikovaná."
696
 
697
+ #: admin/includes/admin-new.php:248
698
+ msgid "Event saved."
699
+ msgstr ""
700
+
701
+ #: admin/includes/admin-new.php:249
702
  msgid "Event submitted."
703
  msgstr "Udalosť bola odoslaná."
704
 
705
+ #: admin/includes/admin-new.php:249 admin/includes/admin-new.php:252
706
+ #: admin/includes/admin-new.php:253
707
  msgid "Preview event"
708
  msgstr "Pozrieť podrobnosti udalosti."
709
 
710
+ #: admin/includes/admin-new.php:251
711
  #, php-format
712
  msgid "Event scheduled for: %1$s>"
713
  msgstr "Udalosť naplánovaná na: %1$s>"
714
 
715
+ #: admin/includes/admin-new.php:253
716
  msgid "Event draft updated."
717
  msgstr "Koncept udalosti bol aktualizovaný."
718
 
719
+ #: admin/includes/admin-settings.php:97
720
  msgid "Go to Event Category switching page"
721
  msgstr "Prejdite na stránku prepínania kategórií udalostí"
722
 
723
+ #: admin/includes/admin-settings.php:111
724
  msgid "Frontend Settings"
725
  msgstr "Nastavenia Frontendu"
726
 
727
+ #: admin/includes/admin-settings.php:112
728
  msgid "Admin Page Settings"
729
  msgstr "Nastavenia Administračnej stránky"
730
 
731
+ #: admin/includes/admin-settings.php:113
732
  msgid "Feed Settings"
733
  msgstr "Nastavenia Feedu"
734
 
735
+ #: admin/includes/admin-settings.php:114
736
  msgid "Category Taxonomy"
737
  msgstr ""
738
 
740
  msgid "Year"
741
  msgstr "Rok"
742
 
743
+ #: includes/daterange_helptexts.php:10
744
  msgid "A year can be specified in 4 digit format."
745
  msgstr "Rok možno špecifikovať v 4-miestnom formáte."
746
 
747
+ #: includes/daterange_helptexts.php:12 includes/daterange_helptexts.php:23
748
+ #: includes/daterange_helptexts.php:95
749
  #, php-format
750
  msgid ""
751
  "For a start date filter the first day of %1$s is used, in an end date the "
752
  "last day."
753
  msgstr ""
754
 
755
+ #: includes/daterange_helptexts.php:13
756
  msgid "the resulting year"
757
  msgstr ""
758
 
759
+ #: includes/daterange_helptexts.php:19
760
  msgid "Month"
761
  msgstr "mesiac"
762
 
763
+ #: includes/daterange_helptexts.php:21
764
  msgid ""
765
  "A month can be specified with 4 digits for the year and 2 digits for the "
766
  "month, seperated by a hyphen (-)."
767
  msgstr ""
768
 
769
+ #: includes/daterange_helptexts.php:24
770
  msgid "the resulting month"
771
  msgstr ""
772
 
773
+ #: includes/daterange_helptexts.php:30
774
  msgid "Day"
775
  msgstr "deň"
776
 
777
+ #: includes/daterange_helptexts.php:31
778
  msgid ""
779
  "A day can be specified in the format 4 digits for the year, 2 digits for the"
780
  " month and 2 digets for the day, seperated by hyphens (-)."
781
  msgstr "Deň môže byť zadaný vo formáte 4 číslice za rok, 2 číslice za mesiac a 2 císlice za deň, oddelené pomlčkami (-)."
782
 
783
+ #: includes/daterange_helptexts.php:36
784
  msgid "Relative Year"
785
  msgstr "Relatívny rok"
786
 
787
+ #: includes/daterange_helptexts.php:39 includes/daterange_helptexts.php:61
788
+ #: includes/daterange_helptexts.php:83 includes/daterange_helptexts.php:113
789
  #, php-format
790
  msgid "%1$s from now can be specified in the following notation: %2$s"
791
  msgstr ""
792
 
793
+ #: includes/daterange_helptexts.php:40
794
  msgid "A relative year"
795
  msgstr "Relatívny rok"
796
 
797
+ #: includes/daterange_helptexts.php:44 includes/daterange_helptexts.php:66
798
+ #: includes/daterange_helptexts.php:88 includes/daterange_helptexts.php:118
799
  #, php-format
800
  msgid ""
801
  "This means you can specify a positive or negative (%1$s) %2$s from now with "
802
  "%3$s or %4$s attached (see also the example below)."
803
  msgstr ""
804
 
805
+ #: includes/daterange_helptexts.php:46
806
  msgid "number of years"
807
  msgstr "počet rokov"
808
 
809
+ #: includes/daterange_helptexts.php:51 includes/daterange_helptexts.php:73
810
+ #: includes/daterange_helptexts.php:105 includes/daterange_helptexts.php:125
811
  #, php-format
812
  msgid "Additionally the following values are available: %1$s"
813
  msgstr "Okrem toho sú k dispozícii nasledujúce hodnoty: %1$s"
814
 
815
+ #: includes/daterange_helptexts.php:58
816
  msgid "Relative Month"
817
  msgstr "Relatívny mesiac"
818
 
819
+ #: includes/daterange_helptexts.php:62
820
  msgid "A relative month"
821
  msgstr "Relatívny mesiac"
822
 
823
+ #: includes/daterange_helptexts.php:68
824
  msgid "number of months"
825
  msgstr "počet mesiacov"
826
 
827
+ #: includes/daterange_helptexts.php:80
828
  msgid "Relative Week"
829
  msgstr "Relatívny týždeň"
830
 
831
+ #: includes/daterange_helptexts.php:84
832
  msgid "A relative week"
833
  msgstr "Relatívny týždeň"
834
 
835
+ #: includes/daterange_helptexts.php:90
836
  msgid "number of weeks"
837
  msgstr "počet týždňov"
838
 
839
+ #: includes/daterange_helptexts.php:96
840
  msgid "the resulting week"
841
  msgstr ""
842
 
843
+ #: includes/daterange_helptexts.php:99
844
  #, php-format
845
  msgid ""
846
  "The first day of the week is depending on the option %1$s which can be found"
847
  " and changed in %2$s."
848
  msgstr ""
849
 
850
+ #: includes/daterange_helptexts.php:110
851
  msgid "Relative Day"
852
  msgstr "Relatívny deň"
853
 
854
+ #: includes/daterange_helptexts.php:114
855
  msgid "A relative day"
856
  msgstr "Relatívny deň"
857
 
858
+ #: includes/daterange_helptexts.php:120
859
  msgid "number of days"
860
  msgstr "počet dní"
861
 
862
+ #: includes/daterange_helptexts.php:134
863
  msgid "Date range"
864
  msgstr "Rozmedzie dátumov"
865
 
866
+ #: includes/daterange_helptexts.php:136
867
  msgid ""
868
  "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
869
+ "\t\t\tFor the start and end date any available date format can be used."
870
  msgstr ""
871
 
872
+ #: includes/daterange_helptexts.php:147
873
  msgid "This value defines a range without any limits."
874
  msgstr "Táto hodnota definuje rozsah bez akýchkoľvek obmedzení."
875
 
876
+ #: includes/daterange_helptexts.php:149 includes/daterange_helptexts.php:160
877
+ #: includes/daterange_helptexts.php:171
878
  #, php-format
879
  msgid "The corresponding date_range format is: %1$s"
880
  msgstr ""
881
 
882
+ #: includes/daterange_helptexts.php:156 includes/filterbar.php:344
883
  msgid "Upcoming"
884
  msgstr "Nadchádzajúce"
885
 
886
+ #: includes/daterange_helptexts.php:158
887
  msgid "This value defines a range from the actual day to the future."
888
  msgstr "Táto hodnota definuje rozsah od aktuálneho dňa do budúcnosti."
889
 
890
+ #: includes/daterange_helptexts.php:167 includes/filterbar.php:352
891
  msgid "Past"
892
  msgstr "Munulé"
893
 
894
+ #: includes/daterange_helptexts.php:169
895
  msgid "This value defines a range from the past to the previous day."
896
  msgstr "Táto hodnota definuje rozsah od minulosti do predchádzajúceho dňa."
897
 
898
+ #: includes/event.php:157
899
  msgid "No valid start date provided"
900
  msgstr "Nie je k dispozícii platný dátum začiatku"
901
 
902
+ #: includes/event.php:343 includes/event.php:345
903
+ #: includes/sc_event-list.php:330
904
  msgid "read more"
905
  msgstr ""
906
 
907
+ #: includes/events_post_type.php:83
908
  msgid "Events"
909
  msgstr "Udalosti"
910
 
911
+ #: includes/events_post_type.php:84
912
  msgid "Event"
913
  msgstr "Udalosť"
914
 
915
+ #: includes/events_post_type.php:85
916
  msgid "Add New"
917
  msgstr "Pridať novú"
918
 
919
+ #: includes/events_post_type.php:86
920
  msgid "Add New Event"
921
  msgstr "pridať udalosť"
922
 
923
+ #: includes/events_post_type.php:87
924
  msgid "Edit Event"
925
  msgstr "Upraviť udalosť"
926
 
927
+ #: includes/events_post_type.php:88
928
  msgid "New Event"
929
  msgstr "Nová udalosť"
930
 
931
+ #: includes/events_post_type.php:89
932
  msgid "View Event"
933
  msgstr "Zobraziť udalosť"
934
 
935
+ #: includes/events_post_type.php:90
936
  msgid "View Events"
937
  msgstr "Zobraziť udalosti"
938
 
939
+ #: includes/events_post_type.php:91
940
  msgid "Search Events"
941
  msgstr "Vyhľadaj udalosti"
942
 
943
+ #: includes/events_post_type.php:93
944
  msgid "No events found in Trash"
945
  msgstr "V koši neboli nájdené žiadne udalosti"
946
 
947
+ #: includes/events_post_type.php:95
948
  msgid "All Events"
949
  msgstr "Všetky udalosti"
950
 
951
+ #: includes/events_post_type.php:96
952
  msgid "Event Archives"
953
  msgstr "Archív udalostí"
954
 
955
+ #: includes/events_post_type.php:97
956
  msgid "Event Attributes"
957
  msgstr "Vlastnosti udalostí"
958
 
959
+ #: includes/events_post_type.php:98
960
  msgid "Insert into event"
961
  msgstr "Vložiť do udalosti"
962
 
963
+ #: includes/events_post_type.php:99
964
  msgid "Uploaded to this event"
965
  msgstr "Nahrané do tejto udalosti"
966
 
967
+ #: includes/events_post_type.php:100
968
  msgid "Event List"
969
  msgstr "Zoznam udalostí"
970
 
971
+ #: includes/events_post_type.php:101
972
  msgid "Filter events list"
973
  msgstr "Filtrovať zoznam udalostí"
974
 
975
+ #: includes/events_post_type.php:102
976
  msgid "Events list navigation"
977
  msgstr "Navigácia v zozname udalostí"
978
 
979
+ #: includes/events_post_type.php:103
980
  msgid "Events list"
981
  msgstr "Zoznam udalostí"
982
 
983
+ #: includes/filterbar.php:277 includes/sc_event-list_helptexts.php:196
984
  msgid "Reset"
985
  msgstr "Resetovať - znovu nastaviť"
986
 
987
+ #: includes/filterbar.php:329
988
  msgid "All"
989
  msgstr "Všetko"
990
 
991
+ #: includes/filterbar.php:332
992
  msgid "All Dates"
993
  msgstr "Všetky dátumy"
994
 
1428
  " switching page from here."
1429
  msgstr "Táto možnosť sa nedá zmeniť priamo, ale môžete prejsť na stránku prepínania kategórií udalostí"
1430
 
1431
+ #: includes/options.php:92
1432
  msgid "events"
1433
  msgstr "udalosti"
1434
 
1435
+ #: includes/options.php:96
1436
  msgid "Show content"
1437
  msgstr "Zobraziť obsah"
1438
 
1439
+ #: includes/options.php:100
1440
  msgid "Hide content"
1441
  msgstr "Skryť obsah"
1442
 
1443
+ #: includes/sc_event-list_helptexts.php:20
1444
  msgid "event-id"
1445
  msgstr "identifikátor udalosti"
1446
 
1447
+ #: includes/sc_event-list_helptexts.php:23
1448
  #, php-format
1449
  msgid ""
1450
  "By default the event-list is displayed initially. But if an event-id (e.g. "
1452
  "this event is shown."
1453
  msgstr ""
1454
 
1455
+ #: includes/sc_event-list_helptexts.php:29
1456
+ #: includes/sc_event-list_helptexts.php:57
1457
  msgid "year"
1458
  msgstr "Rok"
1459
 
1460
+ #: includes/sc_event-list_helptexts.php:31
1461
  msgid ""
1462
  "This attribute defines which events are initially shown. The default is to "
1463
  "show the upcoming events only."
1464
  msgstr "Tento atribút definuje, ktoré udalosti sa na začiatku zobrazujú. Predvolenou možnosťou je zobraziť len nadchádzajúce udalosti."
1465
 
1466
+ #: includes/sc_event-list_helptexts.php:33
1467
  #, php-format
1468
  msgid ""
1469
  "Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
1470
  "change the displayed event date range via the filterbar or url parameters."
1471
  msgstr ""
1472
 
1473
+ #: includes/sc_event-list_helptexts.php:39
1474
  msgid "category slug"
1475
  msgstr ""
1476
 
1477
+ #: includes/sc_event-list_helptexts.php:41
1478
  msgid ""
1479
  "This attribute defines the category of which events are initially shown. The"
1480
  " default is to show events of all categories."
1481
  msgstr "Tento atribút definuje kategóriu udalostí, ktoré sú na začiatku zobrazené. Predvolená hodnota je zobrazovať udalosti všetkých kategórií."
1482
 
1483
+ #: includes/sc_event-list_helptexts.php:42
1484
  msgid ""
1485
  "Provide a category slug to change this behavior. It is still possible to "
1486
  "change the displayed categories via the filterbar or url parameters."
1487
  msgstr ""
1488
 
1489
+ #: includes/sc_event-list_helptexts.php:48
1490
  msgid "This attribute defines the initial order of the events."
1491
  msgstr "Tento atribút definuje počiatočné poradie udalostí."
1492
 
1493
+ #: includes/sc_event-list_helptexts.php:50
1494
+ #, php-format
1495
  msgid ""
1496
+ "With %1$s (default value) the events are sorted from old to new, with %2$s "
1497
  "in the opposite direction (from new to old)."
1498
  msgstr ""
1499
 
1500
+ #: includes/sc_event-list_helptexts.php:60
1501
  #, php-format
1502
  msgid ""
1503
  "This attribute defines the dates and date ranges of which events are "
1504
  "displayed. The default is %1$s to show all events."
1505
  msgstr ""
1506
 
1507
+ #: includes/sc_event-list_helptexts.php:64
1508
  #, php-format
1509
  msgid ""
1510
  "Filtered events according to %1$s value are n